Хранилища Subversion ant

Редакция

Редакция 364 | Редакция 366 | К новейшей редакции | Только различия | Не учитывать пробелы | Содержимое файла | Авторство | Последнее изменение | Открыть журнал | RSS

Редакция 364 Редакция 365
1
<?php
1
<?php
2
/**
2
/**
3
 *
3
 *
4
 *  Codename: ant-ng - generator of sources.list for Debian and
4
 *  Codename: ant-ng - generator of sources.list for Debian and
5
 *  distributives, based on Debian
5
 *  distributives, based on Debian
6
 *  http://alex-w.org.ru/p/antng/
6
 *  http://alex-w.org.ru/p/antng/
7
 *
7
 *
8
 *  Copyright (c) 2009 Alexander Wolf
8
 *  Copyright (c) 2009 Alexander Wolf
9
 *  Dual licensed under the MIT and GNU LGPL licenses.
9
 *  Dual licensed under the MIT and GNU LGPL licenses.
10
 *  http://alex-w.org.ru/p/antng/license
10
 *  http://alex-w.org.ru/p/antng/license
11
 *
11
 *
12
 */
12
 */
13
13
14
/**
14
/**
15
 * Description of Template
15
 * Description of Template
16
 *
16
 *
17
 * @author alexw
17
 * @author alexw
18
 */
18
 */
-
 
19
 //TODO Вместо Smarty лучше написать свой очень простой шаблонизатор - монстра использовать не целесообразно
19
class Template {
20
class Template {
20
    private $path   = NULL;
21
    private $path   = NULL;
21
22
22
    function __construct($folder) {
23
    function __construct($folder) {
23
        $this->path = $folder;
24
        $this->path = $folder;
24
    }
25
    }
25
26
26
    // Применить шаблон
27
    // Применить шаблон
27
    function doTemplate($name) {
28
    function doTemplate($name) {
28
        //TODO написать функцию шаблонизатора
29
        //TODO написать функцию шаблонизатора
29
    }
30
    }
30
31
31
}
32
}
32
?>
33
?>
33
 
34