Example #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Project::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to return any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['id' => $this->id, 'status' => $this->status, 'created' => $this->created, 'responsible_user' => $this->responsible_user]);
     $query->andFilterWhere(['like', 'name', $this->name])->andFilterWhere(['like', 'description', $this->description]);
     return $dataProvider;
 }
Example #2
0
 public static function getProjectArr()
 {
     $model = new Project();
     $listData = ArrayHelper::map($model->find()->all(), 'id', 'name');
     return $listData;
 }
Example #3
0
 public function bct_getParent()
 {
     return Project::find()->where(['id' => $this->projectID])->one();
 }