Example #1
0
 /**
  * Finds the SendingSms model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return SendingSms the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = SendingSms::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Example #2
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = SendingSms::find();
     $dataProvider = new ActiveDataProvider(['query' => $query, 'pagination' => ['pageSize' => 15]]);
     $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(['SmsIndex' => $this->SmsIndex, 'UserDefineNo' => $this->UserDefineNo, 'SendLevel' => $this->SendLevel, 'SendModem' => $this->SendModem, 'NewFlag' => $this->NewFlag]);
     $query->andFilterWhere(['like', 'SmsUser', $this->SmsUser])->andFilterWhere(['like', 'PhoneNumber', $this->PhoneNumber])->andFilterWhere(['like', 'SmsContent', $this->SmsContent])->andFilterWhere(['like', 'PutInType', $this->PutInType])->andFilterWhere(['like', 'RM1', $this->RM1])->andFilterWhere(['like', 'RM2', $this->RM2])->andFilterWhere(['like', 'RM3', $this->RM3]);
     return $dataProvider;
 }