Smarty 템플릿 API 참조
XOOPS의 Smarty 템플릿에 대한 완전한 API 문서입니다.
템플릿 엔진 아키텍처
섹션 제목: “템플릿 엔진 아키텍처”graph TB subgraph "Template Processing" A[Controller] --> B[Assign Variables] B --> C[XoopsTpl] C --> D[Smarty Engine] D --> E{Template Cached?} E -->|Yes| F[Load from Cache] E -->|No| G[Compile Template] G --> H[Execute PHP] F --> H H --> I[HTML Output] end
subgraph "Template Sources" J[File System] --> D K[Database] --> D L[String] --> D end
subgraph "Plugin Types" M[Functions] --> D N[Modifiers] --> D O[Block Functions] --> D P[Compiler Functions] --> D endXoopsTpl 클래스
섹션 제목: “XoopsTpl 클래스”초기화
섹션 제목: “초기화”// Global template objectglobal $xoopsTpl;
// Or get new instance$tpl = new XoopsTpl();
// Available in modules$GLOBALS['xoopsTpl']->assign('myvar', $value);핵심 메소드
섹션 제목: “핵심 메소드”| 방법 | 매개변수 | 설명 |
|---|---|---|
assign | string $name, mixed $value | 템플릿에 변수 할당 |
assignByRef | string $name, mixed &$value | 참조로 할당 |
append | string $name, mixed $value, bool $merge = false | 배열 변수에 추가 |
display | string $template | 렌더링 및 출력 템플릿 |
fetch | string $template | 렌더링 및 반환 템플릿 |
clearAssign | string $name | 할당된 변수 지우기 |
clearAllAssign | - | 모든 변수 지우기 |
getTemplateVars | string $name = null | 할당된 변수 가져오기 |
templateExists | string $template | 템플릿이 존재하는지 확인 |
isCached | string $template | 템플릿이 캐시되었는지 확인 |
clearCache | string $template = null | 템플릿 캐시 지우기 |
변수 할당
섹션 제목: “변수 할당”// Simple assignment$xoopsTpl->assign('title', 'My Page Title');$xoopsTpl->assign('count', 42);$xoopsTpl->assign('is_admin', true);
// Array assignment$xoopsTpl->assign('items', [ ['id' => 1, 'name' => 'Item 1'], ['id' => 2, 'name' => 'Item 2'],]);
// Object assignment$xoopsTpl->assign('user', $xoopsUser);
// Multiple assignments$xoopsTpl->assign([ 'title' => 'My Title', 'content' => 'My Content', 'author' => 'John Doe']);
// Append to array$xoopsTpl->append('items', ['id' => 3, 'name' => 'Item 3']);템플릿 로딩
섹션 제목: “템플릿 로딩”// From database (compiled)$xoopsTpl->display('db:mymodule_index.tpl');
// From file system$xoopsTpl->display('file:' . XOOPS_ROOT_PATH . '/modules/mymodule/templates/custom.tpl');
// Fetch without output$html = $xoopsTpl->fetch('db:mymodule_item.tpl');
// From string$template = '<h1>{$title}</h1><p>{$content}</p>';$html = $xoopsTpl->fetch('string:' . $template);Smarty 구문 참조
섹션 제목: “Smarty 구문 참조”{* Simple variable *}<{$title}>
{* Array access *}<{$item.name}><{$item['name']}>
{* Object property *}<{$user->name}><{$user->getVar('uname')}>
{* Config variable *}<{$xoops_sitename}>
{* Constant *}<{$smarty.const._MD_MYMODULE_TITLE}>
{* Server variables *}<{$smarty.server.REQUEST_URI}><{$smarty.get.id}><{$smarty.post.name}>수정자
섹션 제목: “수정자”{* String modifiers *}<{$title|upper}><{$title|lower}><{$title|capitalize}><{$title|truncate:50:"..."}><{$content|strip_tags}><{$content|nl2br}><{$text|escape:'html'}><{$text|escape:'url'}>
{* Date formatting *}<{$timestamp|date_format:"%Y-%m-%d"}><{$timestamp|date_format:"%B %e, %Y"}>
{* Number formatting *}<{$price|number_format:2:".":","}>
{* Default value *}<{$optional|default:"N/A"}>
{* Chained modifiers *}<{$title|strip_tags|truncate:50|escape}>
{* Count array *}<{$items|@count}>제어 구조
섹션 제목: “제어 구조”{* If/else *}<{if $is_admin}> <p>Admin content</p><{elseif $is_moderator}> <p>Moderator content</p><{else}> <p>User content</p><{/if}>
{* Foreach loop *}<{foreach from=$items item=item key=key}> <li><{$key}>: <{$item.name}></li><{/foreach}>
{* Foreach with properties *}<{foreach from=$items item=item name=itemLoop}> <{if $smarty.foreach.itemLoop.first}> <ul> <{/if}>
<li class="<{if $smarty.foreach.itemLoop.iteration is odd}>odd<{else}>even<{/if}>"> <{$smarty.foreach.itemLoop.iteration}>. <{$item.name}> </li>
<{if $smarty.foreach.itemLoop.last}> </ul> <p>Total: <{$smarty.foreach.itemLoop.total}></p> <{/if}><{/foreach}>
{* For loop *}<{for $i=1 to 10}> <{$i}><{/for}>
{* While loop *}<{while $count < 10}> <{$count}> <{$count = $count + 1}><{/while}>{* Include another template *}<{include file="db:mymodule_header.tpl"}>
{* Include with variables *}<{include file="db:mymodule_item.tpl" item=$currentItem showAuthor=true}>
{* Include from theme *}<{include file="$theme_template_set/header.tpl"}>{* This is a Smarty comment - not rendered in output *}
{* Multi-line comment explaining the template*}XOOPS 관련 기능
섹션 제목: “XOOPS 관련 기능”블록 렌더링
섹션 제목: “블록 렌더링”{* Render block by ID *}<{xoBlock id=5}>
{* Render block by name *}<{xoBlock name="mymodule_recent"}>
{* Render all blocks in position *}<{foreach item=block from=$xoBlocks.canvas_left}> <div class="block"> <h3><{$block.title}></h3> <{$block.content}> </div><{/foreach}>이미지 및 자산 처리
섹션 제목: “이미지 및 자산 처리”{* Module image *}<img src="<{$xoops_url}>/modules/<{$xoops_dirname}>/assets/images/logo.png">
{* Theme image *}<img src="<{$xoops_imageurl}>icon.png">
{* Upload directory *}<img src="<{$xoops_upload_url}>/<{$item.image}>">URL 생성
섹션 제목: “URL 생성”{* Module URL *}<a href="<{$xoops_url}>/modules/<{$xoops_dirname}>/item.php?id=<{$item.id}>"> <{$item.title}></a>
{* With SEO-friendly URL (if enabled) *}<a href="<{$item.url}>"><{$item.title}></a>템플릿 컴파일 흐름
섹션 제목: “템플릿 컴파일 흐름”sequenceDiagram participant Request participant XoopsTpl participant Smarty participant Cache participant FileSystem
Request->>XoopsTpl: display('db:template.tpl') XoopsTpl->>Smarty: Process template
Smarty->>Cache: Check compiled cache
alt Cache Hit Cache-->>Smarty: Return compiled PHP else Cache Miss Smarty->>FileSystem: Load template source FileSystem-->>Smarty: Template content Smarty->>Smarty: Compile to PHP Smarty->>Cache: Store compiled PHP end
Smarty->>Smarty: Execute compiled PHP Smarty-->>XoopsTpl: HTML output XoopsTpl-->>Request: Rendered HTML사용자 정의 Smarty 플러그인
섹션 제목: “사용자 정의 Smarty 플러그인”기능 플러그인
섹션 제목: “기능 플러그인”function smarty_function_myfunction($params, $smarty){ $name = $params['name'] ?? 'World'; return "Hello, {$name}!";}
// Usage in template:// <{myfunction name="John"}>수정자 플러그인
섹션 제목: “수정자 플러그인”function smarty_modifier_timeago($timestamp){ $diff = time() - $timestamp;
if ($diff < 60) { return 'just now'; } elseif ($diff < 3600) { $mins = floor($diff / 60); return "{$mins} minute(s) ago"; } elseif ($diff < 86400) { $hours = floor($diff / 3600); return "{$hours} hour(s) ago"; } else { $days = floor($diff / 86400); return "{$days} day(s) ago"; }}
// Usage in template:// <{$item.created|timeago}>블록 플러그인
섹션 제목: “블록 플러그인”function smarty_block_cache($params, $content, $smarty, &$repeat){ if ($repeat) { // Opening tag return ''; } else { // Closing tag - process content $ttl = $params['ttl'] ?? 3600; $key = md5($content);
// Check cache... return $content; }}
// Usage in template:// <{cache ttl=3600}>// Expensive content here// <{/cache}>성능 팁
섹션 제목: “성능 팁”graph LR subgraph "Optimization Strategies" A[Enable Caching] --> E[Faster Response] B[Minimize Variables] --> E C[Avoid Complex Logic] --> E D[Pre-compute in PHP] --> E end모범 사례
섹션 제목: “모범 사례”- 프로덕션에서 템플릿 캐싱 활성화
- 필요한 변수만 할당 - 전체 개체를 전달하지 않음
- 수정자를 아껴서 사용 - 가능하면 PHP에서 사전 형식화
- 중첩 루프 방지 - PHP에서 데이터 재구성
- 비용이 많이 드는 블록 캐시 - 복잡한 쿼리에는 블록 캐싱을 사용합니다.
관련 문서
섹션 제목: “관련 문서”- Smarty 기본
- 테마 개발
- Smarty 4 마이그레이션
#xoops #api #smarty #템플릿 #참조