* @site https://www.icmsdev.com * @licence https://www.icmsdev.com/LICENSE.html */ defined('iPHP') or exit('What are you doing?'); $title = "应用钩子"; $action = 'hooks'; $items = []; if (is_array($config['fields'])) foreach ($config['fields'] as $hook_app => $hooks) { foreach ((array)$hooks as $hook_field => $hook_method) { foreach ($hook_method as $key => $_method) { $method = is_array($_method) ? implode('::', $_method) : $_method; // $script .= sprintf('hooks_item_clone("%s","%s","%s");', $hook_app, $hook_field, $method); $items[] = [$hook_app, $hook_field, $method]; } } } ?>
添加钩子