Exemplo n.º 1
0
 /**
  * Author List
  * @return array
  */
 public static function getAuthorList()
 {
     $author = User::find()->all();
     return ArrayHelper::map($author, 'id', 'username');
 }
Exemplo n.º 2
0
 public function getUserName()
 {
     return $this->hasOne(User::className(), ['id' => 'user_id']);
 }