// +---------------------------------------------------------------------- namespace app\model; /** * 分类模型 */ class Hooks extends \think\Model { public static $keylist = [ ['name' => 'name', 'title' => '钩子名称', 'type' => 'text', 'help' => '需要在程序中先添加钩子,否则无效'], ['name' => 'description', 'title' => '钩子描述', 'type' => 'text', 'help' => '钩子的描述信息'], ['name' => 'type_text', 'title' => '钩子类型', 'type' => 'select', 'option' => '', 'help' => '钩子的描述信息'], ['name' => 'addons', 'title' => '插件排序', 'type' => 'kanban'], ]; }