Files
web-discuz/source/plugin/mobile/extends/mobile_extends_check.php
2025-06-27 21:04:18 +08:00

64 lines
1.4 KiB
PHP
Executable File

<?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 {
private static $variable = array();
public static function common() {
self::$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' => '',
),
),
)
);
}
public static function output() {
mobile_core::result(mobile_core::variable(self::$variable));
}
}
?>