EmptyAction.class.php 195 B

123456789101112131415
  1. <?php
  2. /**
  3. *
  4. * Empty (空模块)
  5. *
  6. */
  7. if(!defined("Ainaphp")) exit("Access Denied");
  8. class EmptyAction extends Action
  9. {
  10. public function _empty()
  11. {
  12. R('Admin/Content/'.ACTION_NAME);
  13. }
  14. }
  15. ?>