初始字段
$fields = [
'term_name' => 'termName',
'term_slug' => 'termSlug',
'term_info' => 'termInfo',
'term_module' => 'demo',
'term_controll' => 'tag',//固定值
'term_action' => 'index',
'term_status' => 'normal',
'term_type' => '',
'term_order' => 1,
'term_parent' => 0,
'term_count' => 0,
'term_title' => '',
'term_kewords' => '',
'term_description' => '',
];
卸载插件时删除栏目分类
model('common/Tag','loglic')->uninstall('demo');
安装插件时批量插入标签
model('common/Tag','loglic')->install([
[
'term_name' => '标签1',
'term_slug' => 'tag1',
'term_module' => 'demo',
],
[
'term_name' => '标签2',
'term_slug' => 'tag2',
'term_module' => 'demo',
],
]);