コード例 #1
0
ファイル: Option.php プロジェクト: darkffh/yii2-lowbase
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getTemplate()
 {
     return $this->hasOne(Template::className(), array('id' => 'template_id'));
 }
コード例 #2
0
ファイル: Article.php プロジェクト: kotmonstr/kotmonstr
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getTemplate()
 {
     return $this->hasOne(Template::className(), ['id' => 'template']);
 }