thinkphp-wechat/plugins/HelloWorld/config.php

25 lines
926 B
PHP
Raw Normal View History

2021-12-24 16:40:05 +08:00
<?php
/**
* 插件配置信息
*/
return [
['radio', 'status', '单选', '', ['1' => '开启', '0' => '关闭'], 1],
['text', 'text', '单行文本', '提示', 'x'],
['textarea', 'textarea', '多行文本', '提示'],
['checkbox', 'checkbox', '多选', '提示', ['1' => '是', '0' => '否'], 0],
['group',
[
'分组1' => [
['radio', 'status1', '单选', '', ['1' => '开启', '0' => '关闭'], 1],
['text', 'text1', '单行文本', '提示', 'x'],
['array', 'textarea1', '多行文本2', '提示'],
['checkbox', 'checkbox1', '多选', '提示', ['1' => '是', '0' => '否'], 0],
],
'分组2' => [
['textarea', 'textarea2', '多行文本', '提示'],
['checkbox', 'checkbox2', '多选', '提示', ['1' => '是', '0' => '否'], 0],
]
]
]
];