1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace cmf\behavior;
- use think\Hook;
- use think\Db;
- class InitHookBehavior
- {
-
- public function run(&$param)
- {
- if (!cmf_is_installed()) {
- return;
- }
- $plugins = cache('init_hook_plugins');
- if (empty($plugins)) {
- $plugins = Db::name('hook_plugin')->field('hook,plugin')->where('status', 1)
- ->order('list_order ASC')
- ->select();
- cache('init_hook_plugins', $plugins);
- }
- if (!empty($plugins)) {
- foreach ($plugins as $hookPlugin) {
- Hook::add($hookPlugin['hook'], cmf_get_plugin_class($hookPlugin['plugin']));
- }
- }
- }
- }
|