modernkernel/yii2-slugify

This package is abandoned and no longer maintained. The author suggests using the powerkernel/yii2-slugify package instead.

Slugify extension for Yii2

Installs: 380

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 2

Forks: 0

Type:yii2-extension

1.0.6 2017-12-14 05:30 UTC

This package is not auto-updated.

Last update: 2022-02-01 13:01:03 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]) ?>