Exemplo n.º 1
0
 /**
  * Method to display Dailymotion vodeo gallery
  */
 public function getDailyMotionVideos($selected = 'me', $search_title, $status = 'all')
 {
     $dailymotion = new DailymotionOwnMethod();
     $pn = isset($_GET['pageno']) ? preg_replace('#[^0-9]#i', '', $_GET['pageno']) : 1;
     $itemsPerPage = (int) self::ITEMS_PER_PAGE;
     $dmvideos = $dailymotion->getDailymotionVideoList($selected, $fields = array('id', 'title', 'embed_url', 'thumbnail_url', 'description', 'views_total', 'tags', 'channel.name', 'created_time', 'duration', 'private', 'published'), $status, (int) $pn, $itemsPerPage, $search_title);
     return $dmvideos;
 }