30 lines
828 B
PHP
30 lines
828 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 平台端菜单设置
|
|
// +----------------------------------------------------------------------
|
|
return [
|
|
[
|
|
'name' => 'COS_SMS_CONFIG',
|
|
'title' => '腾讯短信配置',
|
|
'url' => 'cossms://admin/sms/config',
|
|
'parent' => 'SMS_MANAGE',
|
|
'is_show' => 0,
|
|
'is_control' => 1,
|
|
'is_icon' => 0,
|
|
'picture' => '',
|
|
'picture_select' => '',
|
|
'sort' => 1,
|
|
],
|
|
[
|
|
'name' => 'MESSAGE_COSSMS_EDIT',
|
|
'title' => '编辑短信模板',
|
|
'url' => 'cossms://admin/message/edit',
|
|
'parent' => 'MESSAGE_LISTS',
|
|
'is_show' => 0,
|
|
'picture' => '',
|
|
'picture_select' => '',
|
|
'sort' => 1,
|
|
'child_list' => [],
|
|
],
|
|
];
|