powerkernel / yii2-slugify
Slugify extension for Yii2
Installs: 2 985
Dependents: 4
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 0
Open Issues: 1
Type:yii2-extension
Requires
- bower-asset/jquery-slugify: ~1.2.5
- yiisoft/yii2: ~2.0
This package is auto-updated.
Last update: 2024-12-16 21:32:42 UTC
README
Slugify extension for Yii2
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist powerkernel/yii2-slugify "*"
or add
"powerkernel/yii2-slugify": "*"
to the require section of your composer.json
file.
Usage
Once the extension is installed, simply use it in your code by :
<?= $form->field($model, 'slug')->widget(\powerkernel\slugify\Slugify::class,['source'=>'#blog-title']) ?> <?= $form->field($model, 'title')->textInput(['maxlength' => true]) ?>