人人商城

domain.php 481B

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