Exemple #1
0
 public function behaviors()
 {
     $behaviors = [];
     $behaviors["thumbnailFile"] = ['class' => \hass\attachment\behaviors\UploadBehavior::className(), 'attribute' => 'thumbnail', 'entityClass' => 'hass\\post\\models\\Post'];
     $behaviors['taxonomy'] = ['class' => \hass\taxonomy\behaviors\TaxonomyBehavior::className(), 'root' => 'xin-wen', 'entityClass' => 'hass\\post\\models\\Post'];
     $behaviors['taggabble'] = ['class' => \hass\tag\behaviors\Taggable::className(), 'entityClass' => 'hass\\post\\models\\Post'];
     $behaviors['commentEnabled'] = ['class' => \hass\comment\behaviors\CommentBehavior::className(), 'defaultStatus' => \hass\comment\enums\CommentEnabledEnum::STATUS_ON, 'entityClass' => 'hass\\post\\models\\Post'];
     $behaviors['meta'] = ['class' => \hass\meta\behaviors\MetaBehavior::className(), 'entityClass' => 'hass\\post\\models\\Post'];
     $behaviors["TimestampFormatter"] = TimestampFormatter::className();
     return $behaviors;
 }
Exemple #2
0
 public function behaviors()
 {
     $behaviors = ['sluggable' => ['class' => SluggableBehavior::className(), 'attribute' => 'title', 'ensureUnique' => true, "immutable" => true]];
     $behaviors['author_id'] = ['class' => BlameableBehavior::className(), 'attributes' => [static::EVENT_BEFORE_INSERT => 'author_id']];
     $behaviors['timestamp'] = TimestampBehavior::className();
     $behaviors['published_at'] = ['class' => StrToTimeBehavior::className(), 'attribute' => 'published_at'];
     $behaviors['taggabble'] = Taggable::className();
     $behaviors['meta'] = MetaBehavior::className();
     $behaviors['thumbnailFile'] = ['class' => \hass\attachment\behaviors\UploadBehavior::className(), 'attribute' => 'thumbnail'];
     $behaviors['taxonomy'] = ['class' => TaxonomyBehavior::className()];
     $behaviors['textEditor'] = ['class' => \hass\base\misc\editor\EditorBehavior::className(), 'attribute' => 'content'];
     $behaviors['TimestampFormatter'] = TimestampFormatter::className();
     $behaviors['commentEnabled'] = ['class' => CommentBehavior::className(), 'defaultStatus' => CommentEnabledEnum::STATUS_ON];
     return $behaviors;
 }