|
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
|
Public Member Functions | |
| __construct (Zend_Memory_Container_Movable $memContainer) | |
| __destruct () | |
| & | getRef () |
| touch () | |
| lock () | |
| unlock () | |
| isLocked () | |
| __get ($property) | |
| __set ($property, $value) | |
Definition at line 44 of file AccessController.php.
| __construct | ( | Zend_Memory_Container_Movable | $memContainer | ) |
Object constructor
| Zend_Memory_Container_Movable | $memoryManager |
Definition at line 59 of file AccessController.php.
| __destruct | ( | ) |
Object destructor
Definition at line 67 of file AccessController.php.
| __get | ( | $property | ) |
Get handler
Loads object if necessary and moves it to the top of loaded objects list. Swaps objects from the bottom of loaded objects list, if necessary.
| string | $property |
| Zend_Memory_Exception |
Definition at line 133 of file AccessController.php.
| __set | ( | $property, | |
| $value | |||
| ) |
Set handler
| string | $property | |
| string | $value |
| Zend_Exception |
Definition at line 145 of file AccessController.php.
| & getRef | ( | ) |
Get string value reference
Must be used for value access before PHP v 5.2 or may be used for performance considerations
Implements Zend_Memory_Container_Interface.
Definition at line 81 of file AccessController.php.
| isLocked | ( | ) |
Return true if object is locked
Implements Zend_Memory_Container_Interface.
Definition at line 118 of file AccessController.php.
| lock | ( | ) |
Lock object in memory.
Implements Zend_Memory_Container_Interface.
Definition at line 99 of file AccessController.php.
| touch | ( | ) |
Signal, that value is updated by external code.
Should be used together with getRef()
Implements Zend_Memory_Container_Interface.
Definition at line 91 of file AccessController.php.
| unlock | ( | ) |
Unlock object
Implements Zend_Memory_Container_Interface.
Definition at line 108 of file AccessController.php.