control.php 295 B

123456789101112131415
  1. <?php
  2. /**
  3. * 前台control父类
  4. *
  5. */
  6. defined('InShopNC') or exit('Access Invalid!');
  7. /********************************** 前台control父类 **********************************************/
  8. class BaseControl {
  9. public function __construct(){
  10. Language::read('common');
  11. }
  12. }