Exemplo n.º 1
0
 public static function getAuthorsList()
 {
     $droptions = Author::findBySql("SELECT id, CONCAT_WS(',',lastname,firstname) as name FROM authors")->asArray()->all();
     return ArrayHelper::map($droptions, 'id', 'name');
 }