public function actionIndex() { $videoModel = new MirVideo(); // p($videoModel); $videos = $videoModel->find()->orderBy("video_id desc")->all(); // p($videos); return $this->render('index', ['videos' => $videos]); }
/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = MirVideo::find(); $dataProvider = new ActiveDataProvider(['query' => $query]); $this->load($params); if (!$this->validate()) { // uncomment the following line if you do not want to any records when validation fails // $query->where('0=1'); return $dataProvider; } $query->andFilterWhere(['video_id' => $this->video_id]); $query->andFilterWhere(['like', 'video_title', $this->video_title])->andFilterWhere(['like', 'video_title_e', $this->video_title_e])->andFilterWhere(['like', 'video_filename', $this->video_filename])->andFilterWhere(['like', 'video_mem', $this->video_mem])->andFilterWhere(['like', 'video_mem_e', $this->video_mem_e])->andFilterWhere(['like', 'video_size', $this->video_size])->andFilterWhere(['like', 'video_class', $this->video_class])->andFilterWhere(['like', 'video_date', $this->video_date])->orderBy("video_id DESC"); return $dataProvider; }
public function actionIndex() { //友情链接 $friendLink = new FriendLink(); $friendLinks = $friendLink->getFriendLinks(); $num = ceil(count($friendLinks) / 8); for ($i = 0; $i < count($friendLinks); $i++) { $newFriendLinks[floor($i / 8)][] = $friendLinks[$i]; } // p($newFriendLinks[0][1]); //学术会议和展览展会 $meetingModel = new MirMeeting(); $xueshuMeetings = $meetingModel->find()->select("meeting_id,meeting_name,meeting_bdate")->where(["meeting_class" => '1'])->orderBy('meeting_id desc')->limit(5)->all(); $zhanhuiMeetings = $meetingModel->find()->select("meeting_id,meeting_name,meeting_bdate")->where(["meeting_class" => '2'])->orderBy('meeting_id desc')->limit(5)->all(); $meetingModel = new MirMeeting(); //新闻中心 $articleModel = new MirArticle(); $news = $articleModel->articleToIndex(0); //招标公告 $zhaobiao = $articleModel->articleToIndex(2); //技术分享 $jishus = $articleModel->articleToIndex(3); // p($zhaobiao); //临床医学 $ivdModel = new MirIvd(); $linchuangyixues = $ivdModel->getIvdlist(3); $pinpaililiang = $ivdModel->getIvdlist(1); $zhutizhuanfang = $ivdModel->getIvdlist(2); $zhuanjiazhuanlan = $ivdModel->getIvdlist(4); // p($linchuangyixues); // 把主题专访 四个合并成一个 $firstData[] = $linchuangyixues; $firstData[] = $zhutizhuanfang; $firstData[] = $zhuanjiazhuanlan; $firstData[] = $pinpaililiang; // p($firstData); // p($linchuangyixues); // IVD展厅 $porduct = new MirProduct(); $porducts = MirProduct::find()->orderBy("product_id desc")->limit(5)->all(); // p($porducts[0]->product_pic); //索刊 $mgzModel = new MirMgz(); $mgz = $mgzModel->find()->orderBy("mgz_id desc")->groupBy("mgz_year,mgz_num")->all(); for ($i = 0; $i < count($mgz); $i++) { $mgzYear[] = $mgz[$i]->mgz_year; $mgzNum[] = $mgz[$i]->mgz_num; } $fourPic = $porduct->find()->andWhere(["!=", "product_pic", "productnopic.gif"])->orderBy("product_id desc")->limit(4)->all(); // p($fourPic); //获得视屏中心的照片 $videoModel = new MirVideo(); $videos = $videoModel->find()->orderBy("video_id desc")->all(); return $this->render('index', ['newFriendLinks' => $newFriendLinks, 'zhanhuiMeetings' => $zhanhuiMeetings, 'xueshuMeetings' => $xueshuMeetings, 'news' => $news, 'zhaobiao' => $zhaobiao, 'jishus' => $jishus, 'firstData' => $firstData, 'porducts' => $porducts, 'mgzYear' => $mgzYear, 'mgzNum' => $mgzNum, 'fourPic' => $fourPic, 'videos' => $videos]); }