ecshop二次开发,后台程序问题

2016-07-07 15:11 来源:www.chinab4c.com 作者:ecshop专家

在后台admin/goods.php中
/**
* 列表链接
* @parambool $is_add是否添加(插入)
* @paramstring$extension_code 虚拟商品扩展代码,实体商品为空
* @returnarray('href' => $href, 'text' => $text)
*/
function list_link($is_add = true, $extension_code = '')
{
$href = 'goods.php?act=list';
if (!empty($extension_code))
{
$href .= '&extension_code=' . $extension_code;
}
if (!$is_add)
{
$href .= '&' . list_link_postfix();
}

if ($extension_code == 'virtual_card')
{
$text = $GLOBALS['_LANG']['50_virtual_card_list'];
}
else
{
$text = $GLOBALS['_LANG']['01_goods_list'];
}

return array('href' => $href, 'text' => $text);
}

上面的list_link_postfix()原型在
/**
* 生成链接后缀
*/
function list_link_postfix()
{
return 'uselastfilter=1';
}
这段代码不懂啥意思: