Хранилища Subversion ant

Сравнить редакции

Не учитывать пробелы Редакция 363 → Редакция 364

/branches/ant-ng/lib/template.php
Новый файл
0,0 → 1,32
<?php
/**
*
* Codename: ant-ng - generator of sources.list for Debian and
* distributives, based on Debian
* http://alex-w.org.ru/p/antng/
*
* Copyright (c) 2009 Alexander Wolf
* Dual licensed under the MIT and GNU LGPL licenses.
* http://alex-w.org.ru/p/antng/license
*
*/
 
/**
* Description of Template
*
* @author alexw
*/
class Template {
private $path = NULL;
 
function __construct($folder) {
$this->path = $folder;
}
 
// Применить шаблон
function doTemplate($name) {
//TODO написать функцию шаблонизатора
}
 
}
?>