/source/plugin/mobile/extends/mobile_extends_list.php
https://github.com/jinbo51/DiscuzX · PHP · 45 lines · 32 code · 7 blank · 6 comment · 7 complexity · 5de88c4d510a428256ffe99368d659f5 MD5 · raw file
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: mobile_extends_list.php 32489 2013-01-29 03:57:16Z monkey $
- */
- class mobile_api {
- public $extendsclass;
- public $modulelist;
- function common() {
- $this->modulelist = array('dz_newthread', 'dz_digest', 'dz_newreply', 'dz_newpic');
- if(!in_array($_GET['identifier'], $this->modulelist)) {
- mobile_core::result(array('error' => 'identifier_not_exists'));
- }
- include_once 'source/plugin/mobile/extends/mobile_extends_data.php';
- $extendsfilename = "./source/plugin/mobile/extends/module/".$_GET['identifier'].".php";
- if(empty($_GET['identifier'])) {
- mobile_core::result(array('error' => 'identifier_not_exists'));
- } else if(!file_exists($extendsfilename)) {
- mobile_core::result(array('error' => 'identifier_file_not_exists'));
- } else {
- require_once $extendsfilename;
- if(!class_exists($_GET['identifier'])) {
- mobile_core::result(array('error' => 'identifier_file_not_exists'));
- }
- $this->extendsclass = new $_GET['identifier'];
- if(method_exists($this->extendsclass, 'common')) {
- $this->extendsclass->common();
- }
- }
- }
- function output() {
- $variable = $this->extendsclass->output();
- mobile_core::result(mobile_core::variable($variable));
- }
- }
- ?>