コード例 #1
0
ファイル: share.php プロジェクト: ff00x0/shopnc-api
 public function __construct()
 {
     parent::__construct();
 }
コード例 #2
0
ファイル: control.php プロジェクト: noikiy/cunkou
 public function __construct()
 {
     parent::__construct();
     if (empty($this->publisher_name)) {
         @header('Location: index.php');
         die;
     }
     //发布人信息
     Tpl::output('publisher_info', array('name' => $this->publisher_name, 'id' => $this->publisher_id, 'type' => $this->publisher_type, 'avator' => $this->publisher_avator));
 }