39 lines
761 B
PHP
Executable File
39 lines
761 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
|
* This is NOT a freeware, use is subject to license terms
|
|
*
|
|
* $Id: register.php 32489 2013-01-29 03:57:16Z monkey $
|
|
*/
|
|
|
|
if(!defined('IN_MOBILE_API')) {
|
|
exit('Access Denied');
|
|
}
|
|
|
|
include_once 'member.php';
|
|
|
|
class mobile_api {
|
|
|
|
public static function common() {
|
|
global $_G;
|
|
if(empty($_POST['regsubmit'])) {
|
|
$_G['mobile_version'] = intval($_GET['version']);
|
|
}
|
|
require_once libfile('class/member');
|
|
$ctl_obj = new register_ctl();
|
|
$ctl_obj->setting = $_G['setting'];
|
|
$ctl_obj->template = 'mobile:register';
|
|
$ctl_obj->on_register();
|
|
if(empty($_POST['regsubmit'])) {
|
|
exit;
|
|
}
|
|
}
|
|
|
|
public static function output() {
|
|
mobile_core::result(mobile_core::variable());
|
|
}
|
|
|
|
}
|
|
|
|
?>
|