قالب هوشمند در XOOPS
بررسی اجمالی
Section titled “بررسی اجمالی”XOOPS از موتور قالب Smarty برای جداسازی ارائه از منطق استفاده می کند. این راهنما نحو Smarty، ویژگیهای خاص XOOPS و بهترین شیوههای الگو را پوشش میدهد.
نحو اولیه
Section titled “نحو اولیه”متغیرها
Section titled “متغیرها”{* Scalar variables *}<{$variable}><{$article.title}><{$user->getUsername()}>
{* Array access *}<{$items[0]}><{$config['setting']}>
{* Default values *}<{$title|default:'Untitled'}>اصلاح کننده ها
Section titled “اصلاح کننده ها”{* Text transformations *}<{$text|upper}><{$text|lower}><{$text|capitalize}><{$text|truncate:100:'...'}>
{* HTML handling *}<{$content|strip_tags}><{$html|escape:'html'}><{$url|escape:'url'}>
{* Date formatting *}<{$timestamp|date_format:'%Y-%m-%d'}><{$date|date_format:$xoops_config.dateformat}>
{* Chaining modifiers *}<{$text|strip_tags|truncate:50|escape}>{* If/else *}<{if $logged_in}> Welcome, <{$username}>!<{elseif $is_guest}> Please log in.<{else}> Unknown state.<{/if}>
{* Comparisons *}<{if $count > 0}><{if $status == 'published'}><{if $items|@count >= 5}>
{* Logical operators *}<{if $is_admin && $can_edit}><{if $type == 'news' || $type == 'article'}><{if !$is_hidden}>حلقه ها
Section titled “حلقه ها”{* Foreach with items *}<{foreach item=article from=$articles}> <h2><{$article.title}></h2><{/foreach}>
{* With key *}<{foreach key=id item=value from=$items}> <{$id}>: <{$value}><{/foreach}>
{* With iteration info *}<{foreach item=item from=$items name=itemloop}> <{$smarty.foreach.itemloop.index}> <{$smarty.foreach.itemloop.iteration}> <{$smarty.foreach.itemloop.first}> <{$smarty.foreach.itemloop.last}><{/foreach}>
{* Foreachelse for empty arrays *}<{foreach item=item from=$items}> <{$item.name}><{foreachelse}> No items found.<{/foreach}>بخشهای ### (میراث)
<{section name=i loop=$items}> <{$items[i].title}><{/section}>ویژگی های خاص XOOPS
Section titled “ویژگی های خاص XOOPS”متغیرهای جهانی
Section titled “متغیرهای جهانی”{* Site info *}<{$xoops_sitename}><{$xoops_url}><{$xoops_rootpath}><{$xoops_theme}>
{* User info *}<{$xoops_isuser}><{$xoops_isadmin}><{$xoops_userid}><{$xoops_uname}>
{* Module info *}<{$xoops_dirname}><{$xoops_pagetitle}>
{* Meta *}<{$xoops_meta_keywords}><{$xoops_meta_description}>از جمله فایل ها
Section titled “از جمله فایل ها”{* Include from theme *}<{include file="theme:header.html"}>
{* Include from module *}<{include file="db:modulename_partial.tpl"}>
{* Include with variables *}<{include file="db:mymodule_item.tpl" item=$article}>
{* Include from file system *}<{include file="$xoops_rootpath/modules/mymodule/templates/partial.tpl"}>نمایش بلوک
Section titled “نمایش بلوک”{* In theme.html *}<{foreach item=block from=$xoops_lblocks}> <div class="block"> <{if $block.title}> <h3><{$block.title}></h3> <{/if}> <{$block.content}> </div><{/foreach}>یکپارچه سازی فرم
Section titled “یکپارچه سازی فرم”{* XoopsForm rendering *}<{$form.javascript}><form action="<{$form.action}>" method="<{$form.method}>"> <{foreach item=element from=$form.elements}> <div class="form-group"> <label><{$element.caption}></label> <{$element.body}> <{if $element.description}> <small><{$element.description}></small> <{/if}> </div> <{/foreach}></form>توابع سفارشی
Section titled “توابع سفارشی”ثبت شده توسط XOOPS
Section titled “ثبت شده توسط XOOPS”{* XoopsFormLoader *}<{xoFormLoader form=$form}>
{* Breadcrumb *}<{xoBreadcrumb}>
{* Module menu *}<{xoModuleMenu}>پلاگین های سفارشی
Section titled “پلاگین های سفارشی”function smarty_function_myfunction($params, $smarty){ $name = $params['name'] ?? 'World'; return "Hello, {$name}!";}<{myfunction name="XOOPS"}>سازمان الگو
Section titled “سازمان الگو”ساختار توصیه شده
Section titled “ساختار توصیه شده”templates/├── admin/│ ├── index.tpl│ ├── item_list.tpl│ └── item_form.tpl├── blocks/│ ├── recent.tpl│ └── popular.tpl├── frontend/│ ├── index.tpl│ ├── item_view.tpl│ └── item_list.tpl└── partials/ ├── _header.tpl ├── _footer.tpl └── _pagination.tplقالب های جزئی
Section titled “قالب های جزئی”{* partials/_pagination.tpl *}<nav class="pagination"> <{if $page > 1}> <a href="<{$base_url}>&page=<{$page-1}>">Previous</a> <{/if}>
<span>Page <{$page}> of <{$total_pages}></span>
<{if $page < $total_pages}> <a href="<{$base_url}>&page=<{$page+1}>">Next</a> <{/if}></nav>
{* Usage *}<{include file="db:mymodule_pagination.tpl" page=$current_page total_pages=$pages base_url=$url}>عملکرد
Section titled “عملکرد”ذخیره سازی
Section titled “ذخیره سازی”// In PHP$xoopsTpl->caching = 1;$xoopsTpl->cache_lifetime = 3600; // 1 hour
// Check if cachedif (!$xoopsTpl->is_cached('mymodule_index.tpl')) { // Fetch data only if not cached $items = $handler->getObjects(); $xoopsTpl->assign('items', $items);}کش را پاک کنید
Section titled “کش را پاک کنید”// Clear specific template$xoopsTpl->clear_cache('mymodule_index.tpl');
// Clear all module templates$xoopsTpl->clear_all_cache();بهترین شیوه ها
Section titled “بهترین شیوه ها”- ** خروجی فرار ** - همیشه از محتوای تولید شده توسط کاربر فرار کنید
- **استفاده از Modifiers ** - اعمال تبدیل مناسب
- منطق را حداقل نگه دارید - منطق پیچیده متعلق به PHP است
- استفاده از جزئی - استفاده مجدد از قطعات قالب معمولی
- ** HTML معنایی ** - از عناصر HTML5 مناسب استفاده کنید
- دسترسی - در صورت نیاز ویژگی های ARIA را درج کنید
مستندات مرتبط
Section titled “مستندات مرتبط”- تم-توسعه - ایجاد تم
- ../../04-API-Reference/Template/Template-System - API قالب XOOPS
- ../../03-Module-Development/Block-Development - قالب ها را مسدود کنید
- ../Forms/Form-Elements - رندر فرم