コード例 #1
0
ファイル: Department.php プロジェクト: janisto/yii2-ycm-demo
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getBlogs()
 {
     return $this->hasMany(Blog::className(), ['department_id' => 'id']);
 }
コード例 #2
0
ファイル: Comment.php プロジェクト: kotmonstr/kotmonstr
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getBlog()
 {
     return $this->hasOne(Blog::className(), ['id' => 'blog_id']);
 }
コード例 #3
0
ファイル: Users.php プロジェクト: Andrew-6676/building
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getBlogs()
 {
     return $this->hasMany(Blog::className(), ['id_user' => 'id']);
 }
コード例 #4
0
 /**
  * @inheritdoc
  */
 public function rules()
 {
     return [[['comment'], 'required'], [['user_id', 'blog_id'], 'integer'], ['user_id', 'exist', 'targetClass' => User::className(), 'targetAttribute' => 'id'], ['blog_id', 'exist', 'targetClass' => Blog::className(), 'targetAttribute' => 'id'], [['create_date'], 'safe'], [['comment'], 'string', 'max' => self::MAX_LENGTH_COMMENT]];
 }