Exemplo n.º 1
0
 public function init()
 {
     $crit = new CDbCriteria();
     $crit->condition = $this->post . ' = :post AND region_id = :region_id';
     $crit->params = array(':post' => 1, ':region_id' => $this->region_id);
     $this->model = Front::model()->findAll($crit);
 }
Exemplo n.º 2
0
 public function init()
 {
     $crit = new CDbCriteria();
     $crit->condition = 'on_front = :on_front';
     $crit->params = array(':on_front' => 1);
     $this->model = Front::model()->findAll($crit);
 }
Exemplo n.º 3
0
 public function init()
 {
     $this->model = Front::model()->findAll();
 }
Exemplo n.º 4
0
 /**
  * Returns the data model based on the primary key given in the GET variable.
  * If the data model is not found, an HTTP exception will be raised.
  * @param integer $id the ID of the model to be loaded
  * @return Front the loaded model
  * @throws CHttpException
  */
 public function loadModel($id)
 {
     $model = Front::model()->findByPk($id);
     if ($model === null) {
         throw new CHttpException(404, 'The requested page does not exist.');
     }
     return $model;
 }
Exemplo n.º 5
0
 public function actionPolitRada()
 {
     $title = array('ru' => 'Политический совет', 'uk' => 'Політична рада');
     $liders = Front::model()->findAll(array('condition' => 'politrada = 1 AND region_id = 12'));
     $this->render('liders', array('liders' => $liders, 'title' => $title));
 }