altynbek07 / yii2-typograph
Yii2 typograph
v0.1.2
2018-04-24 07:51 UTC
Requires
- altynbek07/emtypograph: ^0.1
Requires (Dev)
- phpunit/phpunit: ^5.4
This package is auto-updated.
Last update: 2024-09-10 20:56:49 UTC
README
Yii2 typograph 行为
安装
Composer
安装此扩展的首选方式是通过 Composer。
运行 composer require altynbek07/yii2-typograph:^0.1
或在您的 composer.json
的 require 部分添加 "altynbek07/yii2-typograph": "^0.1"
使用
在模型中附加行为
public function behaviors() { return [ 'typograph' => [ 'class' => 'altynbek07\yii2Typograph\Typograph', 'attributes' => 'text', ] ]; }
处理多个属性
public function behaviors() { return [ 'typograph' => [ ... 'attributes' => ['text', 'name'], ... ] ]; }