Esempio n. 1
0
 /**
  * Lists all Admins models.
  * @return mixed
  */
 public function actionIndex()
 {
     $dataProvider = new ActiveDataProvider(['query' => Admins::find()]);
     if (empty($_GET['sort'])) {
         $_GET['sort'] = '-Admin_id';
     }
     return $this->render('index', ['dataProvider' => $dataProvider]);
 }