pesto / yii2-path-behavior
Automatic generation url path for the model while saving model/
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
This package is not auto-updated.
Last update: 2025-01-10 20:22:16 UTC
README
Behavior для генерации URL адреса модели при сохранении.
Install
Выполните команду
$ php composer.phar require pesto/yii2-path-behavior "*"
или добавьте
"pesto/yii2-path-behavior": "*"
в секцию require
вашего composer.json
файла.
Usage
Теперь можно в методе behaviors()
модели указать:
public function behaviors() { return [ ... [ 'class' => PathBehavior::className(), 'fieldName' => 'path', //Поле для генерации пути 'fromFieldName' => 'title' //Поле, за основу которого берется строка ] ... ]; }