Skip to content

powerkernel/yii2-slugify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Yii2 Slugify

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]) ?>