HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
booster\components Namespace Reference

Detailed Description

Booster class file.

Author
Christoffer Niska Chris.nosp@m.toff.nosp@m.erNis.nosp@m.ka@g.nosp@m.mail..nosp@m.com
Version
1.0.0

Modified for YiiBooster

Author
Antonio Ramirez anton.nosp@m.io@c.nosp@m.lever.nosp@m.tech.nosp@m..biz
Version
1.0.7

Maintenance

Author
Mark Safronov hijar.nosp@m.ian@.nosp@m.gmail.nosp@m..com
Version
2.0.0

Maintenance

Author
Maksim Naumov fromy.nosp@m.ukki.nosp@m.@gmai.nosp@m.l.co.nosp@m.m
Version
2.1.0

Maintenance

Author
Amr Bedair amr.b.nosp@m.edai.nosp@m.r@gma.nosp@m.il.c.nosp@m.om
Version
3.0.1

Bootstrap 3.1.1

Author
Amr Bedair amr.b.nosp@m.edai.nosp@m.r@gma.nosp@m.il.c.nosp@m.om
Version
4.0.0

Booster application component.

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.

JSONStorage class file

Author
: antonio ramirez anton.nosp@m.io@c.nosp@m.lever.nosp@m.tech.nosp@m..biz

JSON Storage

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');