Файловый менеджер - Редактировать - /home/goldin10/public_html/wp-content/plugins-BAK/woocommerce/classes/abstracts/abstract-wc-session.php
Error occurred
Назад
<?php /** * Handle data for the current customers session. * * @class WC_Session * @version 2.0.0 * @package WooCommerce/Abstracts * @category Abstract Class * @author WooThemes */ abstract class WC_Session { /** customer_id */ protected $_customer_id; /** _data */ protected $_data = array(); /** When something changes */ protected $_dirty = false; /** * __get function. * * @access public * @param mixed $property * @return mixed */ public function __get( $property ) { return isset( $this->_data[ $property ] ) ? $this->_data[ $property ] : null; } /** * __set function. * * @access public * @param mixed $property * @param mixed $value * @return void */ public function __set( $property, $value ) { $this->_data[ $property ] = $value; $this->_dirty = true; } /** * __isset function. * * @access public * @param mixed $property * @return bool */ public function __isset( $property ) { return isset( $this->_data[ $property ] ); } /** * __unset function. * * @access public * @param mixed $property * @return void */ public function __unset( $property ) { if ( isset( $this->_data[ $property ] ) ) { unset( $this->_data[ $property ] ); $this->_dirty = true; } } /** * get_customer_id function. * * @access public * @return void */ public function get_customer_id() { return $this->_customer_id; } }
| ver. 1.4 |
Github
|
.
| PHP 7.2.34 | Генерация страницы: 0.05 |
proxy
|
phpinfo
|
Настройка