35 lines
944 B
PHP
35 lines
944 B
PHP
<?php
|
|
|
|
return [
|
|
//公众号配置
|
|
'page_title' => '微商城',
|
|
'wx_url' => 'URL(服务器地址)',
|
|
'wx_token' => 'Token',
|
|
'wx_appid' => 'AppID',
|
|
'wx_AppSecret' => 'AppSecret',
|
|
'wx_qrcode' => '二维码',
|
|
'wx_name' => '公众号名称',
|
|
'xcx_appid'=>'小程序AppID',
|
|
'xcx_AppSecret'=>'小程序AppSecret',
|
|
//菜单
|
|
'menu_name' => '菜单名称',
|
|
'menu_type' => '菜单类型',
|
|
'menu_value' => '菜单值',
|
|
'menu_sort' => '排序',
|
|
'menu_type_1' => '链接',
|
|
'menu_type_2' => '命令',
|
|
'menu_type_3' => '自定义图文',
|
|
'menu_p_name' => '选择上级菜单',
|
|
'sort_error' => '排序只能为数字',
|
|
//关键字
|
|
'keywords' => '关键字',
|
|
'k_value' => '回复',
|
|
//推送
|
|
'tomember' => '目标用户名',
|
|
'totype' => '推送类型',
|
|
'content' => '推送内容',
|
|
'totime' => '推送时间',
|
|
'state' => '状态',
|
|
];
|
|
return $lang;
|