PATH:
home
/
letacommog
/
camarsac
/
wp-content
/
plugins
/
jet-booking
/
includes
<?php namespace JET_ABAF; // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } /** * Session manager */ class Session { public $key = 'jet_booking'; public function __construct() {} /** * Set session value */ public function set( $key, $value ) { if ( ! session_id() ) { session_start(); } if ( empty( $_SESSION[ $this->key ] ) ) { $_SESSION[ $this->key ] = array(); } $_SESSION[ $this->key ][ $key ] = $value; } /** * Get session value */ public function get( $key, $default = false ) { if ( empty( $_SESSION[ $this->key ] ) ) { $_SESSION[ $this->key ] = array(); } return isset( $_SESSION[ $this->key ][ $key ] ) ? $_SESSION[ $this->key ][ $key ] : $default; } }
[+]
..
[-] wc-order-details-builder.php
[edit]
[-] db.php
[edit]
[-] session.php
[edit]
[-] set-up.php
[edit]
[-] google-calendar.php
[edit]
[+]
render
[+]
rest-api
[-] engine-plugin.php
[edit]
[-] advanced-price-rates.php
[edit]
[+]
updater
[-] filters-plugin.php
[edit]
[-] autoloader.php
[edit]
[-] upgrade.php
[edit]
[-] wc-integration.php
[edit]
[-] plugin.php
[edit]
[-] statuses.php
[edit]
[+]
dashboard
[+]
elementor-integration
[-] ical.php
[edit]
[-] settings.php
[edit]
[+]
vendor