mdmsoft / yii2-prototype
Prototype emulator for yii2 component
Package info
github.com/mdmsoft/yii2-prototype
Type:yii2-extension
pkg:composer/mdmsoft/yii2-prototype
dev-master / 1.x-dev
2018-10-09 08:54 UTC
Requires
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2026-03-19 19:57:49 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;