服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > ecshop教程 >

ECshop前台和后台提示信息调用

时间:2017-02-09 19:12来源:未知 作者:最模板 点击:
前台提示 1. 显示一个提示信息,调用以下函数: show_message($content, $links = , $hrefs = , $type = info, $auto_redirect = true) $content:提示内容 $links:跳转链接名称 $hrefs:跳转链接地址 $type:提示信

前台提示

1. 显示一个提示信息,调用以下函数:

show_message($content, $links = '', $hrefs = '', $type = 'info', $auto_redirect = true)

$content:提示内容

$links:跳转链接名称

$hrefs:跳转链接地址

$type:提示信息类型warning, error, info

$auto_redirect:是否自动跳转,默认为是

2. 显示错误信息,调用:

show($link = '', $href= '')

$link:跳转链接名字

$href:跳转链接地址

3. 例子:

if (add_message($message))
{
   show_message($_LANG['add_message_success'], $_LANG['message_list_lnk'], 'user.php?act=message_list&order_id=' .$message['order_id'],'info');
}
else
{
   $err->show($_LANG['message_list_lnk'], 'user.php?act=message_list');
}

 

后台提示

1. 系统提示信息

sys_msg($msg_detail, $msg_type = 0, $links = array(), $auto_redirect = true)

$msg_detail:提示消息内容

$msg_type:跳转类型, 0消息,1错误,2询问

$links:可选的跳转链接,为数组

$auto_redirect: 是否自动跳转

2. 例子:

$links[] = array(
'text' => $_LANG['order_info'],
'href' => 'order.php?act=delivery_info&delivery_id=' . $delivery_id
);
 
sys_msg(sprintf($_LANG['act_good_vacancy'], $value['goods_name']), 1, $links);

(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(4)
100%
------分隔线----------------------------