Exemplo n.º 1
0
 public function getMyDmVideoMetaboxTabVideos()
 {
     $pn = isset($_POST['pagenumber']) ? $_POST['pagenumber'] : 1;
     $searchTitle = isset($_POST['title']) && $_POST['title'] != 'notitle' ? $_POST['title'] : '';
     $itemsPerPage = 5;
     $dailymotion = new DailymotionOwnMethod();
     $dmvideos = $dailymotion->getDailymotionVideoListForSideVideos('me', $fields = array('id', 'title', 'embed_url', 'thumbnail_url', 'description', 'views_total', 'tags', 'channel.name', 'created_time', 'duration', 'owner.screenname'), (int) $pn, $itemsPerPage, $searchTitle);
     header('Content-type: application/json');
     print json_encode($dmvideos);
     exit;
 }