123456789101112131415161718192021222324252627282930313233 |
- <?php
- defined('IN_PHPCMS') or exit('No permission resources.');
- /**
- *
- * ------------------------------------------
- * check_vid
- * ------------------------------------------
- * @package PHPCMS V9.1.16
- * @author 陈学旺
- * @copyright CopyRight (c) 2006-2012 上海盛大网络发展有限公司
- *
- */
- class vid {
-
- public function __construct() {
- pc_base::load_app_class('ku6api', 'video', 0);
- $this->setting = getcache('video', 'video');
- $this->ku6api = new ku6api($this->setting['sn'], $this->setting['skey']);
- }
- /**
- *
- * 添加vid
- */
- public function check () {
- $vid = $_GET['vid'];
-
- $this->ku6api->check($vid);
- }
- }
|