Ejemplo n.º 1
0
 /**
  * 个人歌单
  * @param $userId
  * @return array
  */
 public function personalSongKingdomByUserId($userId)
 {
     $query = SongKingdom::find()->andWhere(['created_by' => $userId]);
     $countQuery = clone $query;
     $pages = new Pagination(['totalCount' => $countQuery->count()]);
     $pages->setPageSize(10);
     $models = $query->offset($pages->offset)->limit($pages->limit)->all();
     return ['models' => $models, 'pages' => $pages, 'userCreadedBy' => User::find()->andWhere(['id' => $userId])->asArray()->one(), 'userExtendCreadedBy' => UserExtend::find()->andWhere(['user_id' => $userId])->asArray()->one()];
 }
Ejemplo n.º 2
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search1($params)
 {
     $query = SongKingdom::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, 'song_num' => $this->song_num, 'fav_count' => $this->fav_count, 'share_count' => $this->share_count, 'download_count' => $this->download_count, 'comment_count' => $this->comment_count, 'play_count' => $this->play_count, 'created_by' => $this->created_by, 'created_at' => $this->created_at, 'updated_by' => $this->updated_by, 'updated_at' => $this->updated_at]);
     $query->andFilterWhere(['like', 'author', $this->author])->andFilterWhere(['like', 'title', $this->title])->andFilterWhere(['like', 'label', $this->label])->andFilterWhere(['like', 'desc', $this->desc])->andFilterWhere(['like', 'privacy', $this->privacy])->andFilterWhere(['like', 'can_reply', $this->can_reply])->andFilterWhere(['like', 'icon', $this->icon])->andFilterWhere(['like', 'cover', $this->cover]);
     return $dataProvider;
 }
Ejemplo n.º 3
0
 /**
  * Lists all SongKingdom models.
  * @return mixed
  */
 public function actionIndex()
 {
     $query = SongKingdom::find();
     $countQuery = clone $query;
     $pages = new Pagination(['totalCount' => $countQuery->count()]);
     $pages->setPageSize(10);
     $models = $query->offset($pages->offset)->limit($pages->limit)->all();
     return $this->render('songKingdomIndex', ['models' => $models, 'pages' => $pages]);
     //        $dataProvider = new ActiveDataProvider([
     //            'query' => SongKingdom::find(),
     //        ]);
     //
     //        return $this->render('index', [
     //            'dataProvider' => $dataProvider,
     //        ]);
 }
Ejemplo n.º 4
0
 public function getUserLable($userId)
 {
     // TODO: Implement getUserLable() method.
     return SongKingdom::find()->andWhere(['created_by' => $userId])->all();
 }