domain.php 573 B

1234567891011121314151617181920212223242526272829303132
  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. {
  10. function __construct()
  11. {
  12. $this->domaincontrol();
  13. }
  14. function domaincontrol()
  15. {
  16. parent::__construct();
  17. $this->init_input();
  18. $this->load('domain');
  19. }
  20. function onls()
  21. {
  22. return $_ENV['domain']->get_list(1, 9999, 9999);
  23. }
  24. }