コード例 #1
0
ファイル: Contact.php プロジェクト: Konsul117/phonebook
 /**
  * @inheritdoc
  */
 public function behaviors()
 {
     return [['class' => TimestampUTCBehavior::className(), 'createdAtAttribute' => 'create_stamp', 'updatedAtAttribute' => 'update_stamp'], ['class' => BlameableBehavior::className(), 'createdByAttribute' => 'author_id', 'updatedByAttribute' => null]];
 }
コード例 #2
0
ファイル: User.php プロジェクト: Konsul117/phonebook
 /**
  * @return array
  */
 public function behaviors()
 {
     return [['class' => TimestampUTCBehavior::className(), 'createdAtAttribute' => 'create_stamp', 'updatedAtAttribute' => 'update_stamp']];
 }