码迷,mamicode.com
首页 > 其他好文 > 详细

织梦首页/列表页/内容页直接获取软件模型本地下载地址

时间:2018-11-04 01:48:22      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:sel   strong   oba   access   添加   tags   exists   地址   where   

当使用软件模型而且只有一个下载地址时,我们都喜欢用本地地址,在列表页时直接输出这个地址,方便访客下载。

打开 /include/extend.func.php 在文件最下面添加个方法

/**
 *  获取软件模型本地地址
 *
 * @access    public
 * @param     string  $aid  	文章id
 * @return    string
 */
if (!function_exists(‘GetDownLink‘))
{
    function GetDownLink($aid)
    {
       global $dsql;
       $row= $dsql->GetOne("SELECT softlinks FROM `#@_addonsoft` WHERE aid = {$aid}");
           if(!is_array($row)){
            return ‘‘;
            }
           else{
            $dtp = new DedeTagParse();
            $dtp->LoadSource($row[‘softlinks‘]);
                foreach($dtp->CTags as $ctag)
                {
                    if($ctag->GetName()==‘link‘)
                {
                    $link = trim($ctag->GetInnerText());
                }
            }
       }
       return  $link;
    }
}

前台模板中调用标签写法

首页/列表页

[field:id function=GetDownLink(@me)/]

内容页

{dede:field.id function=GetDownLink(@me)/}

织梦首页/列表页/内容页直接获取软件模型本地下载地址

标签:sel   strong   oba   access   添加   tags   exists   地址   where   

原文地址:https://www.cnblogs.com/dedevip/p/9902797.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!