|
在织梦的开发中,我们有时候需要对图集中的每张图片单独输出并自定义样式,如果用织梦的dede:productimagelist调用,还是有一定难度的。
下面我们可以对这个类文件进行修改解决这个问题:
方法1:找到:\include\taglib\productimagelist.lib.php 这个文件,在文件中找到如下内容:
foreach($images as $row)
{
中间省略...
}
修改为:
- 01
- $GLOBALS['autoindex'] = 1;
- 02
- foreach($images as $row)
- 03
- {
- 04
- $row['autoindex'] = $GLOBALS['autoindex'];
- 05
- foreach($ctp->CTags as $tagid=>$ctag)
- 06
- {
- 07
- if($ctag->GetName()=='array')
- 08
- {
- 09
- $ctp->Assign($tagid,$row);
- 10
- }
- 11
- else
- 12
- {
- 13
- if(isset($row[$ctag->GetName()])){ $ctp->Assign($tagid,$row[$ctag->GetName()]); }
- 14
- }
- 15
- }
- 16
- $revalue .= $ctp->GetResult();
- 17
- $GLOBALS['autoindex']++;
- 18
- }
复制代码
内容页图集标签调用方法为:
- {dede:productimagelist}
-     [field:array runphp=yes]
-         if(@me['autoindex'] == 1)
-         {
-             @me = "<strong>{@me['autoindex']} - <img src='{@me['imgsrc']}'></strong>\n";
-         }
-         elseif(@me['autoindex'] == 2)
-         {
-             @me = "<p>{@me['autoindex']} - <img src='{@me['imgsrc']}'></p>\n";
-         }
-         elseif(@me['autoindex'] == 3)
-         {
-             @me = "<span>{@me['autoindex']} - <img src='{@me['imgsrc']}'></span>\n";
-         }
-         else
-         {
-             @me = "<div>{@me['autoindex']} - <img src='{@me['imgsrc']}'></div>\n";
-         }
-     [/field:array]
- {/dede:productimagelist}
复制代码
用array runphp的方式,让第一张图片两边加<strong>,第二章加<p>,第三张加<span>,第四张加<div>
方法2:找到:\include\taglib\productimagelist.lib.php 这个文件,在文件中找到如下内容:
- $ctp->LoadSource($innerText);
复制代码
在此代码下边添加如下代码:
- $GLOBALS['autoindex'] = 0;
复制代码
找到:
- $revalue .= $ctp->GetResult();
复制代码
在下面加入如下代码:
此方法的原理其实和方法1的是一样的。首先让productimagelist.php 这个文件支持autoindex,然后再通过判断autoindex的值分别调用。比如autoindex为0的时候就调用第一张图,依次类推,写法不多说了,有喜欢研究的朋友可以分别验证这两种方法。
|
|