Brak opisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AskBehavior.php 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. namespace weapp\Ask\behavior\plugins;
  3. use think\Db;
  4. load_trait('controller/Jump');
  5. class AskBehavior
  6. {
  7. use \traits\controller\Jump;
  8. protected static $actionName;
  9. protected static $controllerName;
  10. protected static $moduleName;
  11. protected static $method;
  12. /**
  13. * 构造方法
  14. *
  15. * @param Request $request Request对象
  16. *
  17. * @access public
  18. */
  19. public function __construct()
  20. {
  21. ! isset(self::$moduleName) && self::$moduleName = request()->module();
  22. ! isset(self::$controllerName) && self::$controllerName = request()->controller();
  23. ! isset(self::$actionName) && self::$actionName = request()->action();
  24. ! isset(self::$method) && self::$method = strtoupper(request()->method());
  25. }
  26. /**
  27. * 模块初始化
  28. *
  29. * @param array $params 传入参数
  30. *
  31. * @access public
  32. */
  33. public function moduleInit(&$params)
  34. {
  35. if (isMobile() && file_exists('./template/plugins/ask/mobile/')) {
  36. !defined('THEME_STYLE') && define('THEME_STYLE', 'mobile'); // mobile端模板
  37. } else {
  38. !defined('THEME_STYLE') && define('THEME_STYLE', 'pc'); // pc端模板
  39. }
  40. }
  41. /**
  42. * 操作开始执行
  43. *
  44. * @param array $params 传入参数
  45. *
  46. * @access public
  47. */
  48. public function actionBegin(&$params)
  49. {
  50. }
  51. /**
  52. * 视图内容过滤
  53. *
  54. * @param array $params 传入参数
  55. *
  56. * @access public
  57. */
  58. public function viewFilter(&$params)
  59. {
  60. }
  61. /**
  62. * 应用结束
  63. *
  64. * @param array $params 传入参数
  65. *
  66. * @access public
  67. */
  68. public function appEnd(&$params)
  69. {
  70. $this->clearHtmlCache();
  71. }
  72. /**
  73. * 数据变动之后,清理页面和数据缓存
  74. */
  75. private function clearHtmlCache()
  76. {
  77. /*在以下相应的控制器和操作名里执行,以便提高性能*/
  78. if ('POST' == self::$method && 'plugins' == self::$moduleName && 'Ask' == self::$controllerName) {
  79. try {
  80. foreach ([HTML_PATH."plugins/ask/",CACHE_PATH] as $k2 => $v2) {
  81. delFile($v2);
  82. }
  83. } catch (\Exception $e) {}
  84. }
  85. }
  86. }