Пример #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = LogUpload::find();
     $dataProvider = new ActiveDataProvider(['query' => $query, 'sort' => ['defaultOrder' => ['id' => SORT_DESC]]]);
     if (!($this->load($params) && $this->validate())) {
         return $dataProvider;
     }
     $query->andFilterWhere(['id' => $this->id, 'userId' => $this->userCreate, 'type' => $this->type]);
     $query->andFilterWhere(['like', 'title', $this->title])->andFilterWhere(['like', 'filename', $this->filename])->andFilterWhere(['like', 'fileori', $this->fileori])->andFilterWhere(['like', 'warning', $this->warning])->andFilterWhere(['like', 'updateDate', $this->updateDate])->andFilterWhere(['like', 'createDate', $this->createDate])->andFilterWhere(['like', 'params', $this->params]);
     return $dataProvider;
 }
Пример #2
0
 public function actionSample()
 {
     //$objPHPExcel = new \PHPExcel();
     $template = Yii::$app->util->templateExcel();
     $model = new LogUpload();
     $date = date('YmdHis');
     $name = $date . LogUpload;
     //$attributes = $model->attributeLabels();
     $models = LogUpload::find()->all();
     $excelChar = Yii::$app->util->excelChar();
     $not = Yii::$app->util->excelNot();
     foreach ($model->attributeLabels() as $k => $v) {
         if (!in_array($k, $not)) {
             $attributes[$k] = $v;
         }
     }
     $objReader = \PHPExcel_IOFactory::createReader('Excel5');
     $objPHPExcel = $objReader->load(Yii::getAlias($template));
     return $this->render('sample', ['models' => $models, 'attributes' => $attributes, 'excelChar' => $excelChar, 'not' => $not, 'name' => $name, 'objPHPExcel' => $objPHPExcel]);
 }