HCE Project DC service web UI
0.2
Hierarchical Cluster Engine DC service web UI
|
Modified for YiiBooster
Maintenance
Maintenance
Maintenance
Bootstrap 3.1.1
This is the main YiiBooster component which you should attach to your Yii CWebApplication instance.
Almost all configuration options are meaningful only at the initialization time, changing them after Booster
was attached to application will have no effect.
Provides a very simple way to persistent JSON storage. Acts as a registry key saver.
Example of use:
$j = new JSONStorage();
$j->addRegistry('custom'); echo $j->registryExists('custom'); $j->setData('mydata','super','custom'); $j->save(); $j->load();
echo $j->getData('super','custom');