SluggableBehavior::className(), * 'attribute' => 'title', * // 'slugAttribute' => 'slug', * ], * ]; * } * ``` * * @author Alexander Kochetov * @since 2.0 */ class SluggableBehavior extends AttributeBehavior { /** * @var string the attribute that will receive the slug value */ public $slugAttribute = 'slug'; /** * @var string the attribute whose value will be converted into a slug */ public $attribute; /** * @var string|callable the value that will be used as a slug. This can be an anonymous function * or an arbitrary value. If the former, the return value of the function will be used as a slug. * The signature of the function should be as follows, * * ```php * function ($event) * { * // return slug * } * ``` */ public $value; /** * @inheritdoc */ public function init() { parent::init(); if (empty($this->attributes)) { $this->attributes = [BaseActiveRecord::EVENT_BEFORE_VALIDATE => $this->slugAttribute]; } if ($this->attribute === null && $this->value === null) { throw new InvalidConfigException('Either "attribute" or "value" property must be specified.'); } } /** * @inheritdoc */ protected function getValue($event) { if ($this->attribute !== null) { $this->value = Inflector::slug($this->owner->{$this->attribute}); } return parent::getValue($event); } }