Maison  >  Article  >  Tutoriel CMS  >  Apprenez à connaître ecshop

Apprenez à connaître ecshop

coldplay.xixi
coldplay.xixiavant
2020-11-18 17:30:112625parcourir

Apprenez à connaître ecshop

Recommandé (gratuit) : tutoriel ecshop

Je suis EC Novices, quel que soit le nombre de modèles créés par EC, ils ne seront certainement pas en mesure de répondre à nos besoins. De plus, chaque industrie a sa propre approche, et les modèles unifiés par EC peuvent ne pas convenir à notre industrie. Maîtrisez vraiment les nôtres. Ce n'est qu'en créant des modèles et en les modifiant que vous pourrez véritablement créer une plateforme de commerce électronique qui vous convient et qui correspond aux habitudes des clients de votre secteur.

Tout d'abord, invitons tout le monde à parcourir ce tutoriel. Félicitations à tous pour avoir utilisé ECshop ! Quelle est la qualité d'EC ? ECshop est construit avec PHP. Je ne veux pas en dire plus sur les applications PHP (Amazon : http://www.020jz.org/, Yahoo : yahoo.com, Baidu : baidu.com Taobao : http. :/ /www.020jz.org/Sina : sina.com, Tencent : qq.com), (ps : ECshop a réussi ! En ce moment, il est l'héritage du grand e-commerce, il ne se bat pas seul, il est pas seul -_- !!! ) Je n'entrerai pas dans les détails, tout le monde le sait, mais parfois j'adore la plongée et je ne peux vraiment pas m'empêcher de sauter le pas et de dire quelques mots

Ce tutoriel. est adapté pour comprendre les modèles ECshop et ECshop DIY et leur utilisation quotidienne, avant de les visualiser, vous devez utiliser au moins un éditeur (exp : Dreamweaver, editplus, emacs, vi, ee... c'est-à-dire un éditeur HTML visuel ou un éditeur de texte direct , J'en parlerai, j'utiliserai Dreamwaver, qui convient mieux aux débutants et aux designers). Ce tutoriel est actuellement maintenu par moi seul, mais je pense qu'il le sera par de nombreuses personnes d'ici peu. Le contenu doit être constamment mis à jour. Si vous êtes intéressé à participer, envoyez-moi un MP. Servissons tout le monde ensemble.

En étudiant ce tutoriel, à condition de le suivre et de le regarder, vous pourrez certainement apprendre à créer vos propres modèles. :)

 Les chapitres suivants s'appliquent au programme ECshop. En même temps, une grande partie du contenu ici est liée à certains Smarty. Si vous connaissez déjà ces contenus, vous pouvez sauter la lecture. Si vous êtes nouveau sur ECshop et que vous souhaitez créer votre propre boutique, vous devez lire ces chapitres attentivement et en détail du début à la fin. ( ps : Ne soyez pas nerveux, je ferai de mon mieux pour communiquer avec vous en langage humain. Je ne vous le montrerai qu'en langage machine en dernier recours) J'espère que tout le monde pourra réussir ce tutoriel et créer n'importe quel modèle que vous vouloir. Ha ha ! Travaillons dur ensemble !

Chapitre 1 :

Lisez ces contenus, vous comprendrez :

  1. Le page modèle correspondant à chaque page frontale et à la structure de répertoires du fichier modèle.

2. Certaines des méthodes de modification de modèle ECshop les plus élémentaires.

3. Le chemin du modèle et la méthode d'inclusion des fichiers associés (en savoir plus sur la production de modèles Dreamweaver).

4. Explication de quelques exemples de modèles couramment utilisés.

Chemin de stockage du modèle : ecshop/themes/xxxxx où xxxxx est un certains ensembles de modèles, par exemple, le fichier de modèle fourni avec le système est généralement appelé par défaut (c'est-à-dire : ecshop/themes/default). Ce qui y est placé est le modèle par défaut lorsqu'il est installé. pour le modèle par défaut.

images/        (存放模板中用到的图片)

library/          ( 存放一些小模板文件及重复被用到的模板文件 )

style.css        (模板样式文件)

index.dwt     (首页的模板 index.php)

goods.dwt   ( 商品显示页的模板 goods.php)

images/ (images de stockage utilisées dans les modèles) bibliothèque/ (stocke quelques petits fichiers de modèles et des fichiers de modèles utilisés à plusieurs reprises)style.css (fichier de style de modèle) index.dwt (Modèle de page d'accueil index.php)goods.dwt (Modèle de page d'affichage du produit good.php)

Nous trouvons une image gif aléatoire, la nommons logo.gif et la mettons dans le répertoire des images, puis nous actualisons la page d'accueil. Avez-vous vu ça ? Le logo de la page d'accueil a été modifié. Si vous pensez que la taille n'est pas appropriée, alors nous ouvrons page_header.lib dans le répertoire de la bibliothèque pour afficher le code source, puis recherchons images/logo.gif puis regardons derrière width=”130″ height=”56″ et remplacez 130 et 56 par ceux correspondants. La valeur est suffisante, allez à la réception pour vous rafraîchir et voir. Actualisez le navigateur pour voir si des modifications ont été apportées à la page. Crevette? Vous ne l'avez pas trouvé ? Regardez l'en-tête du navigateur, haha, le titre du site Web a-t-il été modifié ?

Haha, oui, {$page_title} est la balise du titre du site Web (remarque : la balise commence de {to} et se termine, {and} font partie de la balise. L'ensemble du modèle ECshop est comme). ceux-ci un par un Les balises sont composées de balises qui contrôlent l’affichage dynamique du contenu et des données du site Web.

Par exemple,

({$keywords}) contrôle la balise de mot-clé du site Web,

{$description} : balise de description du site Web, (c'est la balise dans le modèle, chaque balise correspondra à une valeur dans le programme. Lorsque le site Web est en cours d'exécution, le moteur de modèle lira la page du modèle, puis remplacera la balise correspondante par la valeur correspondante, et la page du site Web que nous voyons sera affichée. . Compris. Pour les novices, ce contenu peut ne pas être entièrement digéré en une seule fois. Si vous avez des questions, veuillez laisser un message et je le mettrai à jour ici.) Ne vous inquiétez pas, la hâte fait du gaspillage, haha, allons-y. commencez réellement à créer des modèles ECshop maintenant. (Ceux qui ne comprennent pas le HTML devraient préparer Dreamweaver)

Prérequis : ajustez le modèle que vous utilisez actuellement au modèle par défaut, puis videz le cache.

Ensuite, nous entrons dans le répertoire par défaut et vous pouvez voir le répertoire de fichiers suivant :

*.dwt (indiquant d'autres fichiers .dwt)

Xiami ? Vous ne croyez pas que ce sont des modèles ? D'accord, laissez-moi vous le prouver.

Changeons le nom du fichier logo.gif dans les images en logo2.gif, puis

OK, nous utiliserons Dreamweaver pour ouvrir le fichier. indexez le fichier .dwt, recherchez {$page_title} dans le code source. Après l'avoir trouvé, modifiez {$page_title} en Super Invincible Hypermarket. Ensuite, allez sur

très simple 8, haha, tout le monde est vraiment intelligent, Kong Ming Reincarnation, je l'ai appris si vite. Si votre étape précédente était super, très simple, la prochaine étape sera la même. Comment dois-je la changer ensuite ? On continue après les publicités.

….Espace publicitaire doré… bienvenue pour acheter… Envoyez-moi un message si nécessaire… (PS : les gens ne peuvent pas être aussi impudiques)… Haha…

1. Nous accédez au répertoire /themes/default, renommez index.dwt en index_bak.dwt, puis utilisez Dreamweaver pour créer un nouveau fichier HTML, puis enregistrez-le dans le répertoire /themes/default et nommez-le index.dwt. OK, actualisons le répertoire. réception Écoutez, haha, il n'y a rien. D'accord, recherchez dans notre index.dwt nouvellement créé, nous remplaçons le contenu entre <title> par : {$page_title}, dans également mis. un {$page_title} entre <body> et </body>, actualisez la réception et jetez un œil. Hé, que voyez-vous ? Le titre du site Web est-il imprimé ? </p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Si une boîte de dialogue apparaît pendant le fonctionnement : </p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> Cliquez simplement sur OK, :)</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">2. Ensuite, nous sélectionnons l'interface visuelle à modifier : puis cliquez après {$page_title} Touche Entrée. pour changer la ligne, puis entrez : Annonce du magasin : {$shop_notice} Accédez au navigateur pour actualiser la page d'accueil pour actualiser et voir, haha. L'annonce de la boutique a été appelée. Vous pouvez accéder au backend du site Web </p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Paramètres système->Paramètres de la boutique->Informations sur la boutique en ligne->Annonce de la boutique pour modifier le contenu, puis accéder au navigateur. et actualisez la page d'accueil du site Web pour voir, haha, l'annonce du magasin est supprimée dynamiquement </p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> </p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">3 Appuyez ensuite sur la touche Entrée après {$shop_notice} pour modifier la ligne, puis entrez. <span style="text-indent: 2em;"></span></p> <p class="cnblogs_code" style="margin:0px; padding:0px; overflow:hidden"><br></p> <pre style='margin-top:0px; margin-bottom:0px; padding:8px; font-size:12px; line-height:16px; border-width:1px 1px 1px 5px; border-style:dotted dotted dotted solid; border-color:rgb(192,192,192) rgb(192,192,192) rgb(192,192,192) rgb(108,226,108); white-space:pre-wrap; word-wrap:break-word; font-family:Consolas,"Courier New",宋体,Courier,mono,serif'>1. 网站快讯:     2. {foreach from=$new_articles item=article}       3. {$article.short_title}       4. {/foreach}</pre> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Remarque : </p> <table style="margin:0px auto; padding:0px; overflow:hidden" border="0"><tbody style="margin:0px; padding:0px"><tr style="margin:0px; padding:0px; overflow:hidden" class="firstRow"><td style="margin:0px; padding:0px ; overflow:hidden">Cliquez à l'endroit où la ligne s'arrête. Touche Entrée pour pouvoir actualiser la réception et y jeter un œil. Haha, les nouvelles du site Web ont été affichées. <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">D'accord, passons à le site Web Backend->Gestion des articles->Liste des sites Web->Ajouter un article, sélectionnez la catégorie "Actualités du site Web", ajoutez n'importe quel élément de contenu et actualisez l'interface pour y jeter un œil. Les deux articles ont été supprimés du flux. </p> <table style="margin:0px auto; padding:0px; overflow:hidden" border="0"><tbody style="margin:0px; padding:0px"><tr style="margin:0px; padding:0px; overflow:hidden" class="firstRow"><td style="margin:0px; padding:0px; overflow:hidden">换行的地方按Enter键哦, 好刷新前台看看 ,呵呵,网站快讯被调出来了哦。<p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">好我们再到网站后台->文章管理->网站列表->添加文章,选择 网站快讯这个分类,随便添加一篇内容,完成后前台刷新看看。两篇文章都被动态掉出来了哦。</p> </td></tr></tbody></table> </td></tr></tbody></table> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Commentaires : </p> <table style="margin:0px auto; padding:0px; overflow:hidden" border="0"><tbody style="margin:0px; padding:0px"><tr style="margin:0px; padding:0px; overflow:hidden" class="firstRow"><td style="margin:0px; padding:0px ; overflow:hidden"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-bottom:0px; ><span style=" margin:0px padding:0px overflow:hidden font-size:16px>{foreach from=$new_articles item=article} : Le début de la boucle,</p> <table style="margin:0px auto; padding:0px; overflow:hidden" border="0"><tbody style="margin:0px; padding:0px"><tr style="margin:0px; padding:0px; overflow:hidden" class="firstRow"><td style="margin:0px; padding:0px; overflow:hidden"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"><span style="margin:0px; padding:0px; overflow:hidden; font-size:16px">{foreach from=$new_articles item=article} : 循环的开始,</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"><span style="margin:0px; padding:0px; overflow:hidden; font-size:16px">{/foreach}  : 循环的结束</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"><span style="margin:0px; padding:0px; overflow:hidden; font-size:16px">$new_articles: 为要循环的东西,这里为网站快讯</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"><span style="margin:0px; padding:0px; overflow:hidden; font-size:16px">{$article.short_title} : 快讯标题的标签</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"><span style="margin:0px; padding:0px; overflow:hidden; font-size:16px">模式为: {foreach from=$post item=name} content {/foreach}</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"><span style="margin:0px; padding:0px; overflow:hidden; font-size:16px">{foreach from=$post item=name}和{/foreach}标签中间可以任意添加要循环的内容content(可以为任意的东西),循环的次数受到 $post的限制(这里要填什么我都会告诉大家的.)name为当前这个循环的对象。方便调用数据。</span></p> </td></tr></tbody></table>{/foreach} : La fin de la boucle<span style="margin :0px; padding :0px; overflow:hidden; font-size:16px">$new_articles : Pour que les choses soient en boucle, voici les actualités du site<span style="margin:0px; padding:0px; overflow :hidden; font-size:16px">{$article.short_title} : L'étiquette du titre de l'actualité<span style="margin:0px; overflow:hidden; font-size :16px">Le mode est : {foreach from=$post item=name} content {/foreach}<span style="margin:0px; 0px; overflow:hidden; font- size:16px">Vous pouvez ajouter n'importe quel contenu à boucler entre les balises {foreach from=$post item=name} et {/foreach} (cela peut être n'importe quoi), ainsi que le nombre de boucles. est limité par $post (remplissez ici je vous dirai tout.) le nom est l'objet du cycle en cours. Pratique pour appeler des données. </span></span></span></span> </td></tr></tbody></table> <p><span style="text-indent: 2em;"> </span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">以后这个循环我们会经常的用到哦. 还是不懂也没有关系,每次遇到我都会讲哪里要怎么设置的,多用就会了。</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">我们也可以这么写哦 , 注意: 在代码编辑的视图里面编辑</p> <p class="cnblogs_code" style="margin:0px; padding:0px; overflow:hidden"><br></p> <pre style='margin-top:0px; margin-bottom:0px; padding:8px; font-size:12px; line-height:16px; border-width:1px 1px 1px 5px; border-style:dotted dotted dotted solid; border-color:rgb(192,192,192) rgb(192,192,192) rgb(192,192,192) rgb(108,226,108); white-space:pre-wrap; word-wrap:break-word; font-family:Consolas,"Courier New",宋体,Courier,mono,serif'>1. <table>       2. {foreach from=$new_articles item=article}       3. <tr><td>       4. {$article.short_title}       5. </td></td>       6. {/foreach}       7. </table></pre> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">哈哈,保存,刷新首页看看,表格被一行一行的循环出来了哦</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> </p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"><span style="font-family:黑体;font-size:18px;color:#ff660;margin:0px; padding:0px; overflow:hidden;">第二章</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">  一人得道,鸡犬升天啊,谢谢ECshop将我提升为教程区版主 ,实在时荣幸啊,谢谢大家的支持, 谢谢我的笔记本电脑小Y,谢谢我的电脑桌,谢谢我的椅子,谢谢大家! 呵呵!  ~Orz.   </p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">模板教程继续啦!</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不知道大家是学会用循环了呢,还是我的言语实在有问题,大家实在无法完成阅读哦,居然大家都没有问题,暂时心里安慰,把他当做好事情,大家都会调用了,呵呵,那我们继续循环调用商品了!</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">好,继续在我们昨天的基础上,我们在网站快讯的循环后面,按 Enter键, 输入:商品列表,接着建立一个2行3列的表格,宽度为70%, 表格边框为1(为了让大家看清楚 ),起HTML代码如下</p> <p class="cnblogs_code" style="margin:0px; padding:0px; overflow:hidden"><br></p> <pre style='margin-top:0px; margin-bottom:0px; padding:8px; font-size:12px; line-height:16px; border-width:1px 1px 1px 5px; border-style:dotted dotted dotted solid; border-color:rgb(192,192,192) rgb(192,192,192) rgb(192,192,192) rgb(108,226,108); white-space:pre-wrap; word-wrap:break-word; font-family:Consolas,"Courier New",宋体,Courier,mono,serif'>1. <p>商品列表</p>       2. <table width=”70%” border=”1″>       3.   <tr>       4.     <td>1</td>       5.     <td>2</td>       6.     <td>3</td>       7.   </tr>       8.   <tr>       9.     <td>4</td>       10.     <td>5</td>       11.     <td>6</td>       12.   </tr>       13. </table></pre> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">注: ( 1,2,3,4,5,6这些个是序号,方便跟大家讲解呢 )</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">在这里,我们暂时先把下面这一行去掉(为了大家操作简单),变成</p> <p class="cnblogs_code" style="margin:0px; padding:0px; overflow:hidden"><br></p> <pre style='margin-top:0px; margin-bottom:0px; padding:8px; font-size:12px; line-height:16px; border-width:1px 1px 1px 5px; border-style:dotted dotted dotted solid; border-color:rgb(192,192,192) rgb(192,192,192) rgb(192,192,192) rgb(108,226,108); white-space:pre-wrap; word-wrap:break-word; font-family:Consolas,"Courier New",宋体,Courier,mono,serif'>1. <p>商品列表</p>       2. <table width=”70%” border=”1″>       3.   <tr>       4.     <td>1</td>       5.     <td>2</td>       6.     <td>3</td>       7.   </tr>       8. </table></pre> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">我们要循环的是列,也就是<td>,因此我们的循环标签应该在<td> 和</td>的外面, 而2,和3应该是循环出来的东西,也就时我模板里面只用保留 1 这个td就可以了,2 和3都要去掉,</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">于是就变成了下面的样子</p> <p class="cnblogs_code" style="margin:0px; padding:0px; overflow:hidden"><br></p> <pre style='margin-top:0px; margin-bottom:0px; padding:8px; font-size:12px; line-height:16px; border-width:1px 1px 1px 5px; border-style:dotted dotted dotted solid; border-color:rgb(192,192,192) rgb(192,192,192) rgb(192,192,192) rgb(108,226,108); white-space:pre-wrap; word-wrap:break-word; font-family:Consolas,"Courier New",宋体,Courier,mono,serif'>1. <p>商品列表</p>       2. <table width=”70%” border=”1″>       3.   <tr>       4.     <td>1</td>       5.   </tr>       6. </table></pre> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">好,现在我们开始加循环标签,我们要调用的是精品推荐商品, 代码如下:</p> <p class="cnblogs_code" style="margin:0px; padding:0px; overflow:hidden"><br></p> <pre style='margin-top:0px; margin-bottom:0px; padding:8px; font-size:12px; line-height:16px; border-width:1px 1px 1px 5px; border-style:dotted dotted dotted solid; border-color:rgb(192,192,192) rgb(192,192,192) rgb(192,192,192) rgb(108,226,108); white-space:pre-wrap; word-wrap:break-word; font-family:Consolas,"Courier New",宋体,Courier,mono,serif'>1. <p>商品列表</p>       2. <table width=”70%” border=”1″>       3.   <tr>       4. {foreach from=$best_goods item=goods}       5.     <td>{$goods.short_style_name}</td>       6. {/foreach}       7.   </tr>       8. </table></pre> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">注意了:foreach 表示下面的内容属于要进行循环,from=$best_goods 表示循环的内容来自$best_goods,($best_goods是精品商品推荐的标签 ) , item=goods 表示当前循环这一次的对象叫goods,你也可以改为其它的东东,当然{$goods.short_style_name}这个地方的goods也要相应的改了哦,{$goods.short_style_name} 表示goods 这个对象的商品名称. 好了,我们保存,前台刷新看一下啊。呵呵,精品商品被循环出来了吧?</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">接着,为了大家应用方便,我们把goods改为jingpinshangpin,代码如下:</p> <p class="cnblogs_code" style="margin:0px; padding:0px; overflow:hidden"><br></p> <pre style='margin-top:0px; margin-bottom:0px; padding:8px; font-size:12px; line-height:16px; border-width:1px 1px 1px 5px; border-style:dotted dotted dotted solid; border-color:rgb(192,192,192) rgb(192,192,192) rgb(192,192,192) rgb(108,226,108); white-space:pre-wrap; word-wrap:break-word; font-family:Consolas,"Courier New",宋体,Courier,mono,serif'>1. <p>商品列表</p>       2. <table width=”70%” border=”1″>       3.   <tr>       4. {foreach from=$best_goods item=jingpinshangpin}       5.     <td>{$jingpinshangpin.short_style_name}</td>       6. {/foreach}       7.   </tr></pre> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">好前台刷新看看哦,呵呵,夷?如果你有很多的精品商品你会发现商品变了,因为精品商品是随机调取出来的.</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">好我们继续完善他,给它加上链接对应商品的链接,也就是添加<a>属性, 代码如下:</p> <p class="cnblogs_code" style="margin:0px; padding:0px; overflow:hidden"><br></p> <pre style='margin-top:0px; margin-bottom:0px; padding:8px; font-size:12px; line-height:16px; border-width:1px 1px 1px 5px; border-style:dotted dotted dotted solid; border-color:rgb(192,192,192) rgb(192,192,192) rgb(192,192,192) rgb(108,226,108); white-space:pre-wrap; word-wrap:break-word; font-family:Consolas,"Courier New",宋体,Courier,mono,serif'>1. <p>商品列表</p>       2. <table width=”70%” border=”1″>       3.   <tr>       4. {foreach from=$best_goods item=jingpinshangpin}       5.     <td><a href=”{$jingpinshangpin.url}”>{$jingpinshangpin.short_style_name}</a></td>       6. {/foreach}       7.   </tr>       8. </table></pre> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">刷新浏览器,点击链接看看链接到什么地方去了哦。呵呵! 链接到了每个产品自己的页面了呢。 说明:标签 {$jingpinshangpin.url} 就是精品商品的商品链接的标签了,但是要记得哦,$jingpinshangpin 是你起的名字哦,item=$jingpinshangpin的这个 $jingpinshangpin改变了的话,这里也要跟着改变。</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">接下来我们添加上商品的图片哦 ,也就是增加一个<img>属性 ,代码如下:</p> <p class="cnblogs_code" style="margin:0px; padding:0px; overflow:hidden"><br></p> <pre style='margin-top:0px; margin-bottom:0px; padding:8px; font-size:12px; line-height:16px; border-width:1px 1px 1px 5px; border-style:dotted dotted dotted solid; border-color:rgb(192,192,192) rgb(192,192,192) rgb(192,192,192) rgb(108,226,108); white-space:pre-wrap; word-wrap:break-word; font-family:Consolas,"Courier New",宋体,Courier,mono,serif'>1. <p>商品列表</p>       2. <table width=”70%” border=”1″>       3.   <tr>       4. {foreach from=$best_goods item=jingpinshangpin}       5.     <td><a href=”{$jingpinshangpin.url}”><img src=”{$jingpinshangpin.thumb}” border=”0″ /><br>{$jingpinshangpin.short_style_name}</a></td>       6. {/foreach}       7.   </tr>       8. </table></pre> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">到前台刷新浏览器看看看,呵呵,商品缩略图也被调出来了。</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">说明:标签 {$jingpinshangpin.thumb} 就是精品商品的缩略图的标签了,但是要记得哦,$jingpinshangpin 是你起的名字哦,item=$jingpinshangpin的这个 $jingpinshangpin改变了的话,这里也要跟着改变。</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">如果你已经熟练理解和掌握了以上的步骤,那么下面就越来越清晰和容易了。</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">接下来我们调取新品上市(标签为: $new_goods )和热卖商品( 标签为:$hot_goods) ,接着在刚才的代码后面加上去就是了。我就不多讲了哦,代码如下</p> <p class="cnblogs_code" style="margin:0px; padding:0px; overflow:hidden"><br></p> <pre style='margin-top:0px; margin-bottom:0px; padding:8px; font-size:12px; line-height:16px; border-width:1px 1px 1px 5px; border-style:dotted dotted dotted solid; border-color:rgb(192,192,192) rgb(192,192,192) rgb(192,192,192) rgb(108,226,108); white-space:pre-wrap; word-wrap:break-word; font-family:Consolas,"Courier New",宋体,Courier,mono,serif'>1. <p>新品上市</p>       2. <table width=”70%” border=”1″>       3. <tr>       4. {foreach from=$new_goods item=xinpinshangshi}       5. <td><a href=”{$xinpinshangshi.url}”><img src=”{$xinpinshangshi.thumb}” border=”0″ /><br>       6. {$xinpinshangshi.short_style_name}</a></td>       7. {/foreach}       8. </tr>       9. </table>       10.       11. <p>热卖商品</p>       12. <table width=”70%” border=”1″>       13. <tr>       14. {foreach from=$hot_goods item=remaishangpin}       15. <td><a href=”{$remaishangpin.url}”><img src=”{$remaishangpin.thumb}” border=”0″ /><br>       16. {$remaishangpin.short_style_name}</a></td>       17. {/foreach}       18. </tr>       19. </table></pre> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">接着我们要一个Menu菜单,也就是做一个产品的分类列表出来。相信你现在至少知道分类的标签是什么,就知道要怎么做了吧,呵呵.</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">分类的标签是:$categories</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">代码如下:</p> <p class="cnblogs_code" style="margin:0px; padding:0px; overflow:hidden"><br></p> <pre style='margin-top:0px; margin-bottom:0px; padding:8px; font-size:12px; line-height:16px; border-width:1px 1px 1px 5px; border-style:dotted dotted dotted solid; border-color:rgb(192,192,192) rgb(192,192,192) rgb(192,192,192) rgb(108,226,108); white-space:pre-wrap; word-wrap:break-word; font-family:Consolas,"Courier New",宋体,Courier,mono,serif'>1. <p>分类列表</p>       2. {foreach from=$categories item=fenlei}       3.    <a href=”{$fenlei.url}”>{$fenlei.name}</a>       4. {/foreach}</pre> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">到前台刷新看看哦,呵呵,分类列表被调取出来了,我们试着在后台多添加几个一级分类,然后到首页刷新看看。</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">呵呵,我先去吃饭啦,吃完饭继续写如何把子分类调用出来,大家有问题多问哦,</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">吃饭回来了….(PS:这是怎么地啊,呵呵!)</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">子分类的标签是对应在父分类标签来调用的.代码如下:</p> <pre style='margin-top:0px; margin-bottom:0px; padding:8px; font-size:12px; line-height:16px; border-width:1px 1px 1px 5px; border-style:dotted dotted dotted solid; border-color:rgb(192,192,192) rgb(192,192,192) rgb(192,192,192) rgb(108,226,108); white-space:pre-wrap; word-wrap:break-word; font-family:Consolas,"Courier New",宋体,Courier,mono,serif'>1. <p>分类列表</p>       2. {foreach from=$categories item=fenlei}       3.    <a href=”{$fenlei.url}”> {$fenlei.name}</a>       4.      {foreach from=$fenlei.children item=child}       5.      <br>- – <A href=”{$child.url}”>{$child.name|escape:html}</A>       6.      {/foreach}       7. {/foreach}</pre> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">保存以后前台刷新看看呢。呵呵,怎么样?子分类也被调用出来了吧,当然可以根据自己的需要,加上不同的表格或者图片的修饰哦,子分类是放在了父分类标签的基础上来调用的呢。</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">不过如果你的分类已经固定了很少改动,我建议还是做成死的,这样可以做的更漂亮一些,比如每个分类直接是用图片来代替。呵呵,我一般就是这么处理的,我除了商品和新闻是动态调用出来的以外,其它的都是做成固定的死的,这样就能够设计的很漂亮,因为有时候受到代码的限制,做出来不是很好看。(…说的好模糊,您能理解吗?不能的话就告诉我 ).</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">本来教程已经写了好多了,但是很多地方写的有点让新手不是那么容易接受,所以就一直在想办法,如何讲解的更简单一些,能让每个人都学会做模板。思考中…..</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">由于个人原因,今天教程停播一天,明天继续,实在不好意思各位. ~Orz.</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">啊,今天的章节就算是结束啦,明天预告:</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">1.如何调用某个分类里面的商品 2.如何制作商品展示页面的模板 3.完善前面讲的章节,并对大家提出的问题做出解答</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">今天我们来学习如何掉用某一个分类里面的产品。 首先把 default文件夹中的category.dwt 的名字改为category_bak.dwt,然后新建一个category.dwt文件. 然后插入下面的代码:</p> <p class="cnblogs_code" style="margin:0px; padding:0px; overflow:hidden"><br></p> <pre style='margin-top:0px; margin-bottom:0px; padding:8px; font-size:12px; line-height:16px; border-width:1px 1px 1px 5px; border-style:dotted dotted dotted solid; border-color:rgb(192,192,192) rgb(192,192,192) rgb(192,192,192) rgb(108,226,108); white-space:pre-wrap; word-wrap:break-word; font-family:Consolas,"Courier New",宋体,Courier,mono,serif'>1. {foreach from=$goods_list item=goods}       2. <img src=”{$goods.goods_thumb}” border=”0″ /><br>       3. {$goods.goods_name}       4. {/foreach}</pre> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">复制代码</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">注:$goods_list表示商品标签</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">接着我们访问这个页面:(Ecshop的访问网址/category.php?id=1)例如:http://localhost/ecshop/category.php?id=1 这样我们就访问到了分类id为1的商品了,我们也可以让id=2就访问到id = 2商品了,那如何看某个分类的id呢? 我们看后台: 商品管理-》商品分类-》就可以看到商品分类的列表,然后把鼠标指上去选择新窗口打开,就能在地址来里面看到goods.php?act=list&cat_id=1这样子的信息,cat_id所等于的值就是这个分类的id了,然后就可以拿来调取了,呵呵。</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">好每次每次都把商品的列表调取出来了,那么如何调取某一个商品的页面呢? 首先把 default文件夹中的goods.dwt 的名字改为goods_bak.dwt,然后新建一个goods.dwt文件. 然后插入下面的代码:</p> <p class="cnblogs_code" style="margin:0px; padding:0px; overflow:hidden"><br></p> <pre style='margin-top:0px; margin-bottom:0px; padding:8px; font-size:12px; line-height:16px; border-width:1px 1px 1px 5px; border-style:dotted dotted dotted solid; border-color:rgb(192,192,192) rgb(192,192,192) rgb(192,192,192) rgb(108,226,108); white-space:pre-wrap; word-wrap:break-word; font-family:Consolas,"Courier New",宋体,Courier,mono,serif'>1. 商品图片: <img src=”{$goods.goods_img}” /><br><br>       2. 商品名称:{$goods.goods_style_name}<br><br>       3. 商品货号:{$goods.goods_sn}<br><br>       4. 商品品牌: {$goods.goods_brand}<br><br>       5. 商品数量:{$goods.goods_number} 单位:{$goods.measure_unit}<br><br>       6. 添加时间:{$goods.add_time}<br><br>       7. 市场价格:{$goods.market_price}<br><br>       8. 本店价格:{$goods.shop_price_formated}<br><br>       9. 注册用户价格:{$rank_price.price}<br><br>       10. 注册用户价格:{$rank_price.price}<br><br>       11. 注册用户价格:{$rank_price.price}<br><br></pre> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">复制代码</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">接着我们访问这个页面:(Ecshop的访问网址/goods.php?id=1)例如:http://localhost/ecshop/goods.php?id=1 这样我们就访问到了商品id为1的商品了,我们也可以让id=2就访问到id = 2商品了,那如何看某个商品的id呢?</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">我们看后台:商品管理-》商品列表-》就可以看到商品品的列表,最前面那一栏就是商品的id了,,然后就可以拿来调取了,呵呵。</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">还有人在问品牌的,某一个品牌的商品怎么调用,呵呵,下次有时间再讲 更新啦!!</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">今天我们学习一下如何在首页调取某个分类的商品: 注意了,这里的修改有一些麻烦了哦:</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">首先你需要下载一套新的模板,比如blueksy 上传到模板目录 /themes/   也就是 /themes/bluesky,</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">然后进入网站后台->模板管理->模板选择,选择bluesky, 选择OK, 然后到网站后台 -> 模板管理 -> 设置模板 -> 分类下的商品 ( 点击分类下的商品前面的+号,然后选择“主区域中间“,序号默认, 商品分类随便选择一个就可以了”, </p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">然后填写显示的条数,填写好后点击确定提交,( 注意: 有的朋友可能会遇到提交不了,是因为权限问题,需要把bluesky的模板权限改,然后再重新提交一次)。</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">这里我增加了两个,的数据是:主区域空间 0 手机  6                                           </p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">主区域空间  0 手机 6 我们在这里增加了多少条记录,对应首页就可以调取多少个分类。</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">好接下来我们恢复模板为原来我们改过的default模板</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">在我们以前做的基础上增加如下代码(也就是在原来代码的下面加上):</p> <p class="cnblogs_code" style="margin:0px; padding:0px; overflow:hidden"><br></p> <pre style='margin-top:0px; margin-bottom:0px; padding:8px; font-size:12px; line-height:16px; border-width:1px 1px 1px 5px; border-style:dotted dotted dotted solid; border-color:rgb(192,192,192) rgb(192,192,192) rgb(192,192,192) rgb(108,226,108); white-space:pre-wrap; word-wrap:break-word; font-family:Consolas,"Courier New",宋体,Courier,mono,serif'>1. <p>第一个分类的<p>       2. <?php $this->assign(‘cat_goods’,$this->_var['cat_goods_1']); ?><?php $this->assign(‘goods_cat’,$this->_var['goods_cat_1']); ?><?php echo $this->fetch(‘library/cat_goods.lbi’); ?>       3. <p>第二个分类的<p>       4. <?php $this->assign(‘cat_goods’,$this->_var['cat_goods_3']); ?><?php $this->assign(‘goods_cat’,$this->_var['goods_cat_3']); ?><?php echo $this->fetch(‘library/cat_goods.lbi’); ?></pre> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">复制代码</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">这里要注意了, 红色的 1 代表你要显示分类的分类的ID, 将它改为你需要的 刚才添加的ID就可以了 红色的 3 代表你要显示分类的分类的ID, 将它改为你需要的 刚才添加的ID就可以了</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">好了,保存,前台刷新看看啊,呵呵.是不是我们要的分类就出来了,</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">看样子改起来很简单哦,不过每次都是这样要操作两个模板才能改还是有些麻烦,呵呵,等到高手进阶的时候再来讲怎么做。</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">仔细一看还是有点不好的地方哦,就是样子不好看啊,对不对?是默认模板的样子,没有关系啦,我们打开 librasy目录中的cat_goods.lbi文件修改就可以了。修改要注意的地方上门讲过了,不过这里还是要再说明一些小问题</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">cat_goods.lbi的代码如下:</p> <p class="cnblogs_code" style="margin:0px; padding:0px; overflow:hidden"><br></p> <pre style='margin-top:0px; margin-bottom:0px; padding:8px; font-size:12px; line-height:16px; border-width:1px 1px 1px 5px; border-style:dotted dotted dotted solid; border-color:rgb(192,192,192) rgb(192,192,192) rgb(192,192,192) rgb(108,226,108); white-space:pre-wrap; word-wrap:break-word; font-family:Consolas,"Courier New",宋体,Courier,mono,serif'>1. <meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″>       2. <p><img src=”../images/green_arrow.gif” width=”37″ height=”37″ alt=”" border=”0″ style=”vertical-align:middle” /><a href=”{$goods_cat.url}”>{$goods_cat.name|escape:html}</a></p>       3. <p>       4.   <!–{foreach from=$cat_goods item=goods}–>       5.   <table border=”0″ cellpadding=”3″ cellspacing=”1″ style=”float: left”>       6.     <tr>       7.       <td align=”center”><a href=”{$goods.url}”><img src=”{$goods.thumb}” border=”0″ alt=”{$goods.name|escape:html}” /></a></td>       8.     </tr>       9.     <tr>       10.       <td><a href=”{$goods.url}” title=”{$goods.name|escape:html}”>{$goods.short_name|escape:html}</a><br />       11.         <!– {if $goods.promote_price neq “”} –>       12.         {$lang.promote_price}<span>{$goods.promote_price}</span>       13.         <!– {else}–>       14.         {$lang.shop_price}<span>{$goods.shop_price}</span>       15.         <!–{/if}–>       16.       </td>       17.     </tr>       18.   </table>       19.   <!–{/foreach}–>       20.   <br style=”clear:both”/>       21. </p></pre> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">复制代码</p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ce qui est étrange ici, c'est qu'il y a plus de symboles <!– et –> des deux côtés de l'étiquette. Cela n'a pas d'importance si vous la supprimez. ></p> <table style="margin:0px; padding:0px; overflow:hidden"><tbody style="margin:0px; padding:0px">Nom<tr style="margin:0px; padding:0px; overflow:hidden" class="firstRow"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p>Type</td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p>Remarques (fonction ou signification)</td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p>Fichier</td>(<td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Répertoire<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"></span>)<span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;"></span>Le nom peut-il être modifié<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"></span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;"></span></p></td> </tr> images<tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p>Répertoire</td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p>Répertoire d'images du modèle de magasin </td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p>Ne peut pas être modifié </td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p> </td> </tr>bibliothèque<tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p>Répertoire</td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p>Répertoire où se trouvent les fichiers de la bibliothèque de modèles stocké</td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p>Ne peut pas être modifié</td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p></td> </tr>screenshot.png <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p>Image </td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> </p> est utilisé pour </td>«<td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">gestion du backend <span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"></span>-> -> <span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;"></span>modèle Sélectionnez <span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"></span>”<span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;"></span> pour afficher la vignette du modèle. <span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"></span></p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">style.css</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">css<span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">style feuille </span></p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> </p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut être modifiée</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"><td colspan="4" style="margin:0px; padding:0px; overflow:hidden" width="563"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Remarques : Modèle Il y en a un total de <span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">22</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;"></span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">(</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;"> format : </span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">.dwt)</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">. </span> Rappel : 1, <span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">La modification du contenu du fichier bibliothèque dans le fichier modèle n'est pas valide. Lorsque la page est actualisée, le programme recharge automatiquement le contenu du fichier bibliothèque dans le fichier modèle </span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">. (</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">Sous réserve du contenu du fichier bibliothèque</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">)</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">. </span> 2, <span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">Toutes les valeurs </span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">id</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;"> commençant par </span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">ECS_ </span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;"> dans le modèle doivent être conservées </span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> (</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;"> et </span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">ajax</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;"> sont liés à </span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">)</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">. </span> 3, <span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">Le contenu du fichier non-bibliothèque ne peut pas être placé dans la zone modifiable, sinon le contenu du fichier non-bibliothèque sera écrasé et supprimé lors de la définition du modèle. </span></p></td></tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">brand.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> La page de la marque du produit</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> ne peut pas être modifiée</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">article.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de contenu de l'article</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">article_cat.dwt </p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de liste d'articles</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p> </td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">catalog.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Toutes les pages de catégories</p> </td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">ne peuvent pas être modifiées</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">category.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de liste de produits</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">ne peut pas être modifiée</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> compare.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de comparaison de produits</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">flow.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page du panier d'achat et du processus d'achat</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Galerie. dwt </p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de l'album produit</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">goods.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de détails du produit</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">group_buy_goods.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de détails du produit d'achat groupé</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">group_buy_list.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de liste de produits d'achat groupé</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">index.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page d'accueil</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">message.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p> </td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page d'invite d'informations</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifiée</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">pick_out.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page du centre commercial</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">receive.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page d'informations de confirmation de réception</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">respond.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page d'informations sur l'invite de résultat du paiement en ligne</p> </td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">ne peut pas être modifiée</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">search.dwt</p> </td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de recherche de produits</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">snatch.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page des Aventuriers de l'arche perdue </p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">tag_cloud.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle </p> </td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page du nuage de tags</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">user_clips. dwt</p> </td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page du centre utilisateur (comprenant : page d'accueil, mon message, mes tags, produits favoris, rupture de stock liste d'enregistrement, ajouter les éléments manquants Enregistrement du fret )</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">user_passport.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de sécurité de l'utilisateur (comprenant : connexion du membre, inscription du membre, récupération du mot de passe.)</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">user_transaction.dwt</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier modèle</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> Page du centre utilisateur (comprenant : informations personnelles, mon enveloppe rouge, ajouter une enveloppe rouge, ma commande, les détails de la commande, la commande fusionnée, le statut de la commande, la liste des produits, le coût total, les informations sur le destinataire, le mode de paiement, d'autres informations, le solde du membre) </p> </td> <.><td style="margin:0px; padding:0px; overflow:hidden" width="130">Ne peut pas être modifié<p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p> </td></.> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"><td colspan="4" style="margin:0px; padding:0px; overflow:hidden" width="563"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Remarques : Les fichiers de la bibliothèque totalisent <span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">40</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;"> </span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">(</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;"> format </span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> .lbi)</span> Rappel : Essayez de conserver le nom de fichier par défaut, sinon la gestion en arrière-plan ne pourra pas gérer le fichier de la bibliothèque ou il y aura des erreurs imprévues. </p></td></tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">ad_position.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Position publicitaire</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Inchangeable</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">bought_goods.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p> </td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Quels produits ont été achetés par les personnes qui ont acheté ce produit</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peuvent pas être modifiés</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">brand_goods.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Les produits de la marque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">ne peuvent pas être modifiés </p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">brands.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Zone de marque</p> </td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">cart.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de la bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Panier</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">cat_articles.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Liste des articles</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> Inchangeable</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">cat_goods.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">classification Les éléments sous </p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> ne peuvent pas être modifiés</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">category_tree.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> Fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Arbre de classification des produits</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">comments .lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Liste des commentaires des utilisateurs (<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">ajax</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">charger</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> comments_list.lbi</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;"> fichier de bibliothèque)</span></p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> comments_list.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de la bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Contenu des commentaires de l'utilisateur</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">consignee.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Formulaire d'adresse de livraison</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p> </td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">goods_article.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Articles connexes</p> </td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">goods_attrlinked.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p> </td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Les produits associés aux attributs</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">ne peuvent pas être modifiés</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">goods_fittings.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Accessoires associés</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié </p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">goods_gallery.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier galerie</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Album produit</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">goods_list.lbi</p> </td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Liste de produits</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">goods_rated.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Produits associés</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Non disponible Modifier </p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">goods_tags.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> fichier de bibliothèque </p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> étiquette du produit </p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">group_buy.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page d'accueil des produits d'achat groupé</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">ne peut pas être modifiée</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">help.lbi</p> </td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Aide de la boutique en ligne</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">ne peut pas être modifiée </p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">history.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Historique de navigation des produits</p> </td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">invoice_query.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p> </td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Demande de facture</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">ne peut pas être modifiée</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">membre.lbi</p> </td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de la bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Connexion membre <span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">(ajax</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">Chargement</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">member_info.lbi</span> <span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">Fichier de bibliothèque. lbi</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"></span></p>Fichier de bibliothèque</td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p>Formulaire de connexion du membre et informations du compte utilisateur après une connexion réussie</td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180">non disponible Modifier <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p> </td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p>new_articles.lbi</td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p>fichier de bibliothèque</td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p>Derniers articles </td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">order_total.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p> </td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Frais de commande totaux</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">page_footer.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Pied de page</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">page_header.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Haut de page</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Inchangeable</p> </td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">pages.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> Pagination de la liste</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">recommend_best.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> fichier bibliothèque </p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Produits recommandés</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">recommend_hot.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Article chaud</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Inchangeable</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">recommend_new.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Nouveau produit recommandé</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">recommend_promotion.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de la bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Articles en promotion</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">search_form.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Formulaire de recherche</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">snatch.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Formulaire de candidature des Aventuriers de l'Arche Perdue <span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">(</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">doit être inclus avec </span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">id="ECS_SNATCH"</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">implémentation</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">ajax</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">Actualiser</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">)</span></p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">snatch_price.lbi</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Dernière liste d'enchères des Aventuriers de l'arche perdue <span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">(</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;"> doit être </span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">id="ECS_PRICE_LIST"</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">Contient l'implémentation de </span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">ajax</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">refresh 🎜></span>Ne peut pas être modifié<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> </span></p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">top10.lbi</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden">Fichier de bibliothèque<td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p></td>Classement des ventes<td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p></td>Ne peut pas être modifié<td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">ur_here.lbi</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden">Fichier de bibliothèque<td style="margin:0px; padding:0px; overflow:hidden" width="180"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p></td>Emplacement actuel<td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p></td>Ne peut pas être modifié<td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"></p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">user_menu.lbi</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden">Fichier bibliothèque<td style="margin:0px; padding:0px; overflow:hidden" width="180"></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Menu du Centre utilisateur</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut pas être modifié</p></td> </tr> <tr style="margin:0px; padding:0px; overflow:hidden"> <td style="margin:0px; padding:0px; overflow:hidden" width="180"> <p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">vote.lbi</p> </td> <td style="margin:0px; padding:0px; overflow:hidden" width="80"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Fichier de la bibliothèque</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="173"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Enquête en ligne</p></td> <td style="margin:0px; padding:0px; overflow:hidden" width="130"><p class="p0" style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Ne peut être modifié</p></td> </tr> </tbody></table> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">ECSHOP <span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">Image de référence de mise en page</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">(</span><span style="font-family:宋体;margin:0px; padding:0px; overflow:hidden;">Version applicable</span><span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;">v2.1.5+)</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de liste d'articles<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : article_cat.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/70270359aea6975c403beb5bd8804ca8-0.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de contenu de l'article<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : article.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/d61b6a0f9f82b41382161f5d4967391b-1.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de marque du produit<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : brand.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/a37c9c095637e2fdeaef1ea20edab7b7-2.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Toutes les pages de catégories<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : catalogue.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/822fbe2281b800197865dda42e7e3502-3.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de liste de produits<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> :category.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/822fbe2281b800197865dda42e7e3502-4.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de comparaison de produits<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : compare.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/cfd052dab54f89b5f3ed4853341ebd67-5.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page du panier et du processus d'achat<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : flow.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/2912ccef50f223fcbde6b29412da2136-6.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de l'album produit<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : galerie.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/304ab287c72743439cc7599e899738cc-7.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de détails du produit<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : marchandises.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/6fc95246d3fc36b844b6158996f568ef-8.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de détails du produit pour les achats groupés<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : group_buy_goods.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/11c4b6e1f88b9e7db91539f00ebc325d-9.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de liste des produits d'achat groupé<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : group_buy_list.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/8a4fa67b7f065cbd751d1e8a7a1df3de-10.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page d'accueil<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : index.dwt</span> </p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/b4bdcd29d0be7ed32d38459a3e97b2a9-11.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page d'invite de message<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : message.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/f3a3baf738b19a26ccb0bee821913fb2-12.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page du centre commercial<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : pick_out.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/f3a3baf738b19a26ccb0bee821913fb2-13.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page d'informations de confirmation de réception<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : recevoir.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/8dea014c8a3316853b5719dfd8bc5032-14.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page d'informations de rappel de paiement en ligne<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : respond.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/7ca1d72eff95998d07ddf236cc00e3fa-15.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de recherche de produits<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : search.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/7ca1d72eff95998d07ddf236cc00e3fa-16.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page Les Aventuriers de l'arche perdue<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : snatch.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/064715ca8ee8ef66d37a6d28c76565e3-17.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page Nuage de tags<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : tag_cloud.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/7bb61a248428f42a37985b53e08306c2-18.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page du centre utilisateur (comprenant : page d'accueil, mon message, mes tags, produits favoris, liste d'inscription en rupture de stock, ajout de- enregistrement du stock.) <span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : user_clips.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/75957396d52e7a7e951a9245a1c61acc-19.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page de sécurité de l'utilisateur (comprenant : connexion du membre, inscription du membre, récupération du mot de passe.) <span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : user_passport.dwt</span></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em"> <img src="https://img.php.cn/upload/article/000/000/052/75957396d52e7a7e951a9245a1c61acc-20.png" alt="" style="max-width:90%"></p> <p class="p0" style="margin-top:15px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; overflow:visible; text-indent:2em">Page du centre utilisateur (comprenant : informations personnelles, mon enveloppe rouge, ajouter une enveloppe rouge, ma commande, détails de la commande, fusionner la commande, statut de la commande , liste des produits, coût total, informations sur le destinataire, mode de paiement, autres informations, solde du membre)<span style="font-family:Arial;margin:0px; padding:0px; overflow:hidden;"> : user_transaction.dwt</span></p> <p class="p0" style="margin-top: 15px; margin-bottom: 0px; padding-top: 0px; padding-bottom: 0px; overflow: visible; text-indent: 2em;"><br></p> </td></tr></tbody></table><p>Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!</p></div><div class="nphpQianMsg"><div class="clear"></div></div><div class="nphpQianSheng"><span>Déclaration:</span><div>Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer</div></div></div><div class="nphpSytBox"><span>Article précédent:<a class="dBlack" title="Comment modifier et supporter PHP7 dans ecshop" href="http://m.php.cn/fr/faq/454827.html">Comment modifier et supporter PHP7 dans ecshop</a></span><span>Article suivant:<a class="dBlack" title="Comment modifier et supporter PHP7 dans ecshop" href="http://m.php.cn/fr/faq/465303.html">Comment modifier et supporter PHP7 dans ecshop</a></span></div><div class="nphpSytBox2"><div class="nphpZbktTitle"><h2>Articles Liés</h2><em><a href="http://m.php.cn/fr/article.html" class="bBlack"><i>Voir plus</i><b></b></a></em><div class="clear"></div></div><ins class="adsbygoogle" style="display:block" data-ad-format="fluid" data-ad-layout-key="-6t+ed+2i-1n-4w" data-ad-client="ca-pub-5902227090019525" data-ad-slot="8966999616"></ins><script> (adsbygoogle = window.adsbygoogle || []).push({}); </script><ul class="nphpXgwzList"><li><b></b><a href="http://m.php.cn/fr/faq/433316.html" title="Tutoriel vidéo de développement secondaire du système de boutique en ligne ECShop 2023" class="aBlack">Tutoriel vidéo de développement secondaire du système de boutique en ligne ECShop 2023</a><div class="clear"></div></li><li><b></b><a href="http://m.php.cn/fr/faq/434475.html" title="Qu'est-ce que la salle des modèles ECShop ?" class="aBlack">Qu'est-ce que la salle des modèles ECShop ?</a><div class="clear"></div></li><li><b></b><a href="http://m.php.cn/fr/faq/434576.html" title="Ajouter une marque dans ECShop" class="aBlack">Ajouter une marque dans ECShop</a><div class="clear"></div></li><li><b></b><a href="http://m.php.cn/fr/faq/434680.html" title="Fonction de carte de voeux de bénédiction ECShop" class="aBlack">Fonction de carte de voeux de bénédiction ECShop</a><div class="clear"></div></li><li><b></b><a href="http://m.php.cn/fr/faq/454827.html" title="Comment modifier et supporter PHP7 dans ecshop" class="aBlack">Comment modifier et supporter PHP7 dans ecshop</a><div class="clear"></div></li></ul></div></div><ins class="adsbygoogle" style="display:block" data-ad-format="autorelaxed" data-ad-client="ca-pub-5902227090019525" data-ad-slot="5027754603"></ins><script> (adsbygoogle = window.adsbygoogle || []).push({}); </script><div class="nphpFoot"><div class="nphpFootBg"><ul class="nphpFootMenu"><li><a href="http://m.php.cn/fr/"><b class="icon1"></b><p>Maison</p></a></li><li><a href="http://m.php.cn/fr/course.html"><b class="icon2"></b><p>Cours</p></a></li><li><a href="http://m.php.cn/fr/wenda.html"><b class="icon4"></b><p>Questions et réponses</p></a></li><li><a href="http://m.php.cn/fr/login"><b class="icon5"></b><p>Mon</p></a></li><div class="clear"></div></ul></div></div><div class="nphpYouBox" style="display: none;"><div class="nphpYouBg"><div class="nphpYouTitle"><span onclick="$('.nphpYouBox').hide()"></span><a href="http://m.php.cn/fr/"></a><div class="clear"></div></div><ul class="nphpYouList"><li><a href="http://m.php.cn/fr/"><b class="icon1"></b><span>Maison</span><div class="clear"></div></a></li><li><a href="http://m.php.cn/fr/course.html"><b class="icon2"></b><span>Cours</span><div class="clear"></div></a></li><li><a href="http://m.php.cn/fr/article.html"><b class="icon3"></b><span>Article</span><div class="clear"></div></a></li><li><a href="http://m.php.cn/fr/wenda.html"><b class="icon4"></b><span>Questions et réponses</span><div class="clear"></div></a></li><li><a href="http://m.php.cn/fr/dic.html"><b class="icon6"></b><span>Dictionnaire</span><div class="clear"></div></a></li><li><a href="http://m.php.cn/fr/course/type/99.html"><b class="icon7"></b><span>Manuel</span><div class="clear"></div></a></li><li><a href="http://m.php.cn/fr/xiazai/"><b class="icon8"></b><span>Télécharger</span><div class="clear"></div></a></li><li><a href="http://m.php.cn/fr/faq/zt" title="Sujet"><b class="icon12"></b><span>Sujet</span><div class="clear"></div></a></li><div class="clear"></div></ul></div></div><div class="nphpDing" style="display: none;"><div class="nphpDinglogo"><a href="http://m.php.cn/fr/"></a></div><div class="nphpNavIn1"><div class="swiper-container nphpNavSwiper1"><div class="swiper-wrapper"><div class="swiper-slide"><a href="http://m.php.cn/fr/" >Maison</a></div><div class="swiper-slide"><a href="http://m.php.cn/fr/article.html" class="hover">Article</a></div><div class="swiper-slide"><a href="http://m.php.cn/fr/wenda.html" >Questions et réponses</a></div><div class="swiper-slide"><a href="http://m.php.cn/fr/course.html" >Cours</a></div><div class="swiper-slide"><a href="http://m.php.cn/fr/faq/zt" >Sujet</a></div><div class="swiper-slide"><a href="http://m.php.cn/fr/xiazai" >Télécharger</a></div><div class="swiper-slide"><a href="http://m.php.cn/fr/game" >Jeu</a></div><div class="swiper-slide"><a href="http://m.php.cn/fr/dic.html" >Dictionnaire</a></div><div class="clear"></div></div></div><div class="langadivs" ><a href="javascript:;" class="bg4 bglanguage"></a><div class="langadiv" ><a onclick="javascript:setlang('zh-cn');" class="language course-right-orders chooselan " href="javascript:;"><span>简体中文</span><span>(ZH-CN)</span></a><a onclick="javascript:setlang('en');" class="language course-right-orders chooselan " href="javascript:;"><span>English</span><span>(EN)</span></a><a onclick="javascript:setlang('zh-tw');" class="language course-right-orders chooselan " href="javascript:;"><span>繁体中文</span><span>(ZH-TW)</span></a><a onclick="javascript:setlang('ja');" class="language course-right-orders chooselan " href="javascript:;"><span>日本語</span><span>(JA)</span></a><a onclick="javascript:setlang('ko');" class="language course-right-orders chooselan " href="javascript:;"><span>한국어</span><span>(KO)</span></a><a onclick="javascript:setlang('ms');" class="language course-right-orders chooselan " href="javascript:;"><span>Melayu</span><span>(MS)</span></a><a onclick="javascript:;" class="language course-right-orders chooselan chooselanguage" href="javascript:;"><span>Français</span><span>(FR)</span></a><a onclick="javascript:setlang('de');" class="language course-right-orders chooselan " href="javascript:;"><span>Deutsch</span><span>(DE)</span></a></div></div><script> var swiper = new Swiper('.nphpNavSwiper1', { slidesPerView : 'auto', observer: true,//修改swiper自己或子元素时,自动初始化swiper observeParents: true,//修改swiper的父元素时,自动初始化swiper }); </script></div></div><!--顶部导航 end--><script>isLogin = 0;</script><script type="text/javascript" src="/static/layui/layui.js"></script><script type="text/javascript" src="/static/js/global.js?4.9.47"></script></div><script src="https://vdse.bdstatic.com//search-video.v1.min.js"></script><link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css' type='text/css' media='all'/><script type='text/javascript' src='/static/js/viewer.min.js?1'></script><script type='text/javascript' src='/static/js/jquery-viewer.min.js'></script><script>jQuery.fn.wait = function (func, times, interval) { var _times = times || -1, //100次 _interval = interval || 20, //20毫秒每次 _self = this, _selector = this.selector, //选择器 _iIntervalID; //定时器id if( this.length ){ //如果已经获取到了,就直接执行函数 func && func.call(this); } else { _iIntervalID = setInterval(function() { if(!_times) { //是0就退出 clearInterval(_iIntervalID); } _times <= 0 || _times--; //如果是正数就 -- _self = $(_selector); //再次选择 if( _self.length ) { //判断是否取到 func && func.call(_self); clearInterval(_iIntervalID); } }, _interval); } return this; } $("table.syntaxhighlighter").wait(function() { $('table.syntaxhighlighter').append("<p class='cnblogs_code_footer'><span class='cnblogs_code_footer_icon'></span></p>"); }); $(document).on("click", ".cnblogs_code_footer",function(){ $(this).parents('table.syntaxhighlighter').css('display','inline-table');$(this).hide(); }); $('.nphpQianCont').viewer({navbar:true,title:false,toolbar:false,movable:false,viewed:function(){$('img').click(function(){$('.viewer-close').trigger('click');});}}); </script></body></html>