您现在的位置是:首页 > 教程 > 易优cms教程易优cms教程

易优根据aid获取文档页面链接

柯河舍2023-08-25 22:24:40易优cms教程已有人查阅

导读1、在根目录下\extend\function.php中创建方法:2、在需要使用文档链接的地方调用方法:

1、在根目录下\extend\function.php中创建方法:
if (!function_exists(‘diy_get_arcurl’))
{
/**
* 获取前台文档的URL
* @param integer $aid 文档ID
* @param integer $typeid 栏目ID
* @return [type] [description]
*/
function diy_get_arcurl($aid = 0, $typeid = 0){
$url = ”;
if (!empty($aid)) {
static $arctypeList = null;
if (null === $arctypeList) {
$arctypeList = \think\Db::name(‘arctype’)->order(‘id asc’)->getAllWithIndex(‘id’);
}
$row = !empty($arctypeList[$typeid]) ? $arctypeList[$typeid] : [];
if (!empty($row)) {
$row[‘aid’] = $aid;
$url = arcurl(‘home/View/index’, $row);
}
}
return $url;
}
}
2、在需要使用文档链接的地方调用方法:
{$field.aid|diy_get_arcurl=###,$field.typeid}获取文档页面链接

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

本栏推荐

相关标签