shopbase / globalizer
Library to globalize classes
1.0.0.0
2019-01-13 22:10 UTC
Requires
- php: ^7.1.3
This package is auto-updated.
Last update: 2025-03-10 02:13:40 UTC
README
This Library is used to globalize Class instances.
Usage
To initialize, get, reset and delete the globalizer there are several functions inclued.
\Shopbase\Globalizer\Globalizer::init(); // initialize the globalizer and add a gobal instance \Shopbase\Globalizer\Globalizer::get(); // get the global instance \Shopbase\Globalizer\Globalizer::reset(); // reset the global instance \Shopbase\Globalizer\Globalizer::delete(); // delete the global instance
To handle the instances of classes which are saved in globalizer there are the following functions inclued
setClass(string $class) // Set new global instance of an class getClass(string $class) // get global instance of an class removeClass(string $class) // remove global instance of an class syncWithGlobal() // sync global instances
Examples
class Foo { protected $bar = 'FooBar'; public function getBar() : string { return $this->bar; } } \Shopbase\Globalizer\Globalizer::init()->setClass('Foo'); echo \Shopbase\Globalizer\Globalizer::get()->getClass('Foo'); // Result will be: 'FooBar';