mdmsoft / yii2-prototype
Prototype emulator for yii2 component
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 1
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2024-10-31 13:26:46 UTC
README
Prototype emulator for Yii2 component
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist mdmsoft/yii2-prototype "~1.0"
or add
"mdmsoft/yii2-prototype": "~1.0"
to the require section of your composer.json
file.
Usage
Yii::$app->attachBehavior(0,\mdm\prototype\Prototype::className()); Yii::$app->prototype->x = 1; echo Yii::$app->x; // 1 Yii::$app->x = 'seratus'; echo Yii::$app->x; // 'seratus' Yii::$app->prototype->z = function($var){ echo $var; }; Yii::$app->z('Hello cak'); Yii::$app->prototype->getSomething = function(){ return 'something'; }; Yii::$app->something;