12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: mobile_extends_check.php 33590 2013-07-12 06:39:08Z andyzheng $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- class mobile_api {
- var $variable = array();
- function common() {
- $this->variable = array(
- 'extends' => array(
- 'extendversion' => '1',
- 'extendlist' => array(
- array(
- 'identifier' => 'dz_newthread',
- 'name' => lang('plugin/mobile', 'mobile_extend_newthread'),
- 'icon' => '0',
- 'islogin' => '0',
- 'iconright' => '0',
- 'redirect' => '',
- ),
- array(
- 'identifier' => 'dz_newreply',
- 'name' => lang('plugin/mobile', 'mobile_extend_newreply'),
- 'icon' => '0',
- 'islogin' => '0',
- 'iconright' => '0',
- 'redirect' => '',
- ),
- array(
- 'identifier' => 'dz_digest',
- 'name' => lang('plugin/mobile', 'mobile_extend_digest'),
- 'icon' => '0',
- 'islogin' => '0',
- 'iconright' => '0',
- 'redirect' => '',
- ),
- array(
- 'identifier' => 'dz_newpic',
- 'name' => lang('plugin/mobile', 'mobile_extend_newpic'),
- 'icon' => '0',
- 'islogin' => '0',
- 'iconright' => '0',
- 'redirect' => '',
- ),
- ),
- )
- );
- }
- function output() {
- mobile_core::result(mobile_core::variable($this->variable));
- }
- }
- ?>
|