phpsource/템플릿2008. 7. 16. 01:06
written: Jul 15 2008
목차
템포2(TEMPO2)의 기능
템포2(TEMPO2)는 "TEMPlate Object 2"의 머리글자에서 얻은 명칭으로 PHP용 템플릿 엔진입니다. 이전에 공개한 템포와는 전혀 다른 템플릿 형식을 갖춘 것으로 이전 템포보다 형식을 더 단순화시켰으며 아울러 후키템플릿 문서를 포팅하기 편하도록(?) 구성되어 있습니다. 템포2는 다른 템플릿툴과 달리 변수에 대한 별도의 태그를 제공하지 않고 다이나믹 블록에 대한 태그만 제공합니다. 변수 기능이 필요할 때는 PHP에서 제공하는 <?=$변수명?>와 같이 PHP 문법을 이용하면 됩니다.
[code html;gutter:false] <p>Hello <?=$name?>. How are you?</p> [/code]
다이나믹 블록 태그의 형식은 <tempo id="블록요소명" 속성>블록요소내용</tempo>와 같습니다.
[code html;gutter:false] <table> <tr> <th>column1</th> <th>column2</th> <th>column3</th> </tr> <tempo id="eLoop"> <tr> <td><?=$column1?></td> <td><?=$column2?></td> <td><?=$column3?></td> </tr> </tempo> </table> [/code]
각 블록요소를 구분하는 id로 지정된 블록요소명은 현재 실행되고 있는 스크립트 문서에서 유일한 이름이어야 합니다.
설치(Installation)
템포2 클래스 파일(class.Tempo2.php)을 사용자가 원하는 임의의 장소(somewhere)에 복사한 후 스크립트 내에서 템포2 클래스 파일을 require_once 또는 include_once 명령으로 포함시킵니다.
[code php;gutter:false] <?php require_once('somewhere/class.Tempo2.php'); [/code]
라이센스(License)
hwooky's tempo2(template object 2) is licensed using LGPL.
Copyright (c) 2006-2008 Wookyung Hwang(hwooky@phpclass.com).
All rights reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.

-GNU LESSER GENERAL PUBLIC LICENSE (LGPL)

Address Bug Reports or Comments on THIS LIBRARY ONLY to
Wookyung Hwang, hwooky@phpclass.com
The latest version of this class should be available from the following locations:
http://tempo.phpclass.com

For more info about hwooky's tempo2(template object 2),
visit www.phpclass.com

'phpsource > 템플릿' 카테고리의 다른 글

{템포2}3.템플릿 문서  (0) 2008.07.16
{템포2}2.기초다지기  (0) 2008.07.16
{후키템플릿}8.1.필터 기능  (0) 2008.05.31
{Tempo}6.Download  (0) 2007.09.01
{Tempo}5.Example - Repeat Block  (0) 2007.09.01
Posted by 방글24