1<?php 2 3/* 4 [UCenter] (C)2001-2099 Comsenz Inc. 5 This is NOT a freeware, use is subject to license terms 6 7 $Id: domain.php 1059 2011-03-01 07:25:09Z monkey $ 8*/ 9 10!defined('IN_UC') && exit('Access Denied'); 11 12class domaincontrol extends base { 13 14 function __construct() { 15 $this->domaincontrol(); 16 } 17 18 function domaincontrol() { 19 parent::__construct(); 20 $this->init_input(); 21 $this->load('domain'); 22 } 23 24 function onls() { 25 return $_ENV['domain']->get_list(1, 9999, 9999); 26 } 27} 28 29?>