ywtc_api/plugins/HelloWorld/config.php

33 lines
1.4 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | 海豚PHP框架 [ DolphinPHP ]
// +----------------------------------------------------------------------
// | 版权所有 2016~2019 广东卓锐软件有限公司 [ http://www.zrthink.com ]
// +----------------------------------------------------------------------
// | 官方网站: http://dolphinphp.com
// +----------------------------------------------------------------------
/**
* 插件配置信息
*/
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],
]
]
]
];