|
@@ -39,28 +39,25 @@ function obtaintags($aid, $num = 3) |
|
|
return $tags;
|
|
|
return $tags;
|
|
|
}
|
|
|
}
|
|
|
//提取文档多图片[field:body function='obtainimgs(@me,3)'/]3表示调用文档3张图片,例如:文档模型body字段,列表附加字段添加body,dede:arclist标签调用添加channelid='1' addfields='body'
|
|
|
//提取文档多图片[field:body function='obtainimgs(@me,3)'/]3表示调用文档3张图片,例如:文档模型body字段,列表附加字段添加body,dede:arclist标签调用添加channelid='1' addfields='body'
|
|
|
if (!function_exists('obtainimgs')) {
|
|
|
|
|
|
function obtainimgs($string, $num)
|
|
|
|
|
|
|
|
|
function obtainimgs($string, $num)
|
|
|
|
|
|
{
|
|
|
|
|
|
preg_match_all("/<img([^>]*)\s*src=('|\")([^'\"]+)('|\")/", $string, $matches);
|
|
|
|
|
|
$imgsrc_arr = array_unique($matches[3]);
|
|
|
|
|
|
$i = 0;
|
|
|
|
|
|
$result = '';
|
|
|
|
|
|
foreach ($imgsrc_arr as $imgsrc)
|
|
|
{
|
|
|
{
|
|
|
preg_match_all("/<img([^>]*)\s*src=('|\")([^'\"]+)('|\")/", $string, $matches);
|
|
|
|
|
|
$imgsrc_arr = array_unique($matches[3]);
|
|
|
|
|
|
$i = 0;
|
|
|
|
|
|
$result = '';
|
|
|
|
|
|
foreach ($imgsrc_arr as $imgsrc)
|
|
|
|
|
|
{
|
|
|
|
|
|
if ($i == $num) break;
|
|
|
|
|
|
$result .= "<img src=\"{$imgsrc}\">";
|
|
|
|
|
|
$i++;
|
|
|
|
|
|
}
|
|
|
|
|
|
return $result;
|
|
|
|
|
|
|
|
|
if ($i == $num) break;
|
|
|
|
|
|
$result .= "<img src=\"{$imgsrc}\">";
|
|
|
|
|
|
$i++;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
return $result;
|
|
|
}
|
|
|
}
|
|
|
//文档图片注释自动为标题{dede:field.body function='obtainalt(@me)'/}
|
|
|
//文档图片注释自动为标题{dede:field.body function='obtainalt(@me)'/}
|
|
|
function obtainalt($newalt)
|
|
|
function obtainalt($newalt)
|
|
|
{
|
|
|
{
|
|
|
global $dsql, $id, $aid;
|
|
|
|
|
|
$myid = isset($id) ? $id : $aid;
|
|
|
|
|
|
$row = $dsql->GetOne("SELECT title FROM `#@__archives` WHERE id='$myid'");
|
|
|
|
|
|
|
|
|
global $dsql, $id;
|
|
|
|
|
|
$row = $dsql->GetOne("SELECT title FROM `#@__archives` WHERE id='$id'");
|
|
|
//检查$row是否为有效的数组并且包含title
|
|
|
//检查$row是否为有效的数组并且包含title
|
|
|
if (is_array($row) && isset($row['title'])) {
|
|
|
if (is_array($row) && isset($row['title'])) {
|
|
|
//图片注释自动为标题
|
|
|
//图片注释自动为标题
|
|
@@ -77,12 +74,11 @@ function obtainalt($newalt) |
|
|
//联动单筛选{dede:php}obtainfilter(模型id,类型,'字段1,字段2');{/dede:php}类型表示前台展现方式,对应case值,例如:文档模型style字段radio选项卡类型,列表附加字段类别添加style,标签调用{dede:php}obtainfilter(1,1,'style');{/dede:php}
|
|
|
//联动单筛选{dede:php}obtainfilter(模型id,类型,'字段1,字段2');{/dede:php}类型表示前台展现方式,对应case值,例如:文档模型style字段radio选项卡类型,列表附加字段类别添加style,标签调用{dede:php}obtainfilter(1,1,'style');{/dede:php}
|
|
|
function obtainfilter($channelid, $type = 1, $fieldsnamef = '', $defaulttid = 0, $toptid = 0, $loadtype = 'autofield')
|
|
|
function obtainfilter($channelid, $type = 1, $fieldsnamef = '', $defaulttid = 0, $toptid = 0, $loadtype = 'autofield')
|
|
|
{
|
|
|
{
|
|
|
global $tid, $dsql, $id, $aid;
|
|
|
|
|
|
|
|
|
global $tid, $dsql, $id;
|
|
|
$tid = $defaulttid ? $defaulttid : $tid;
|
|
|
$tid = $defaulttid ? $defaulttid : $tid;
|
|
|
if ($id!="" || $aid!="") {
|
|
|
|
|
|
$arcid = $id!="" ? $id : $aid;
|
|
|
|
|
|
$tidsq = $dsql->GetOne("SELECT * FROM `#@__archives` WHERE id='$arcid'");
|
|
|
|
|
|
$tid = $toptid==0 ? $tidsq["typeid"] : $tidsq["topid"];
|
|
|
|
|
|
|
|
|
if ($id != "") {
|
|
|
|
|
|
$tidsq = $dsql->GetOne("SELECT * FROM `#@__archives` WHERE id='$id'");
|
|
|
|
|
|
$tid = $toptid == 0 ? $tidsq["typeid"] : $tidsq["topid"];
|
|
|
}
|
|
|
}
|
|
|
$nofilter = (isset($_REQUEST['TotalResult']) ? "&TotalResult=".$_REQUEST['TotalResult'] : '').(isset($_REQUEST['PageNo']) ? "&PageNo=".$_REQUEST['PageNo'] : '');
|
|
|
$nofilter = (isset($_REQUEST['TotalResult']) ? "&TotalResult=".$_REQUEST['TotalResult'] : '').(isset($_REQUEST['PageNo']) ? "&PageNo=".$_REQUEST['PageNo'] : '');
|
|
|
$filterarr = stripos($_SERVER['REQUEST_URI'], "list.php?tid=") ? str_replace($nofilter, '', $_SERVER['REQUEST_URI']) : $GLOBALS['cfg_cmsurl']."apps/list.php?tid=".$tid;
|
|
|
$filterarr = stripos($_SERVER['REQUEST_URI'], "list.php?tid=") ? str_replace($nofilter, '', $_SERVER['REQUEST_URI']) : $GLOBALS['cfg_cmsurl']."apps/list.php?tid=".$tid;
|
|
|