circle_cache.php 366 B

12345678910111213141516171819202122
  1. <?php
  2. /*******
  3. * 圈子话题管理
  4. *
  5. */
  6. defined('InShopNC') or exit('Access Invalid!');
  7. class circle_cacheControl extends SystemControl{
  8. public function __construct(){
  9. parent::__construct();
  10. }
  11. public function indexOp(){
  12. rcache('circle_level',true);
  13. showMessage(L('nc_common_op_succ'), 'index.php?act=circle_setting');
  14. }
  15. }