Хранилища Subversion ant

Редакция

Редакция 463 | К новейшей редакции | Содержимое файла | Сравнить с предыдущей | Последнее изменение | Открыть журнал | RSS

Редакция Автор № строки Строка
364 alex-w 1
<?php
2
/**
3
 *
4
 *  Codename: ant-ng - generator of sources.list for Debian and
5
 *  distributives, based on Debian
6
 *  http://alex-w.org.ru/p/antng/
7
 *
8
 *  Copyright (c) 2009 Alexander Wolf
9
 *  Dual licensed under the MIT and GNU LGPL licenses.
10
 *  http://alex-w.org.ru/p/antng/license
11
 *
12
 */
13
 
14
class Template {
374 alex-w 15
    private     $path   = NULL;
16
    protected   $self   = array();
364 alex-w 17
 
463 alex-w 18
    /**
19
     * Конструктора класса Template - работа с шаблонами
20
     *
21
     * @author Alexander Wolf
22
     * @category Template
23
     *
24
     * @param string $folder
25
     */
368 alex-w 26
    public function __construct($folder) {
364 alex-w 27
        $this->path = $folder;
28
    }
463 alex-w 29
 
30
    /**
31
     * Отображение шаблона
32
     *
33
     * @author Alexander Wolf
34
     * @category Template
35
     *
36
     * @param string $name
37
     */
373 alex-w 38
    public function display($name) {
372 alex-w 39
        $fh = fopen($this->path.$name, "r");
371 alex-w 40
        $content = fread($fh, filesize($this->path.$name));
41
        fclose($fh);
375 alex-w 42
        preg_match_all("/{([\d\w]+)}/", $content, $matches);
43
        $tmpl = $matches[1];
373 alex-w 44
        for($i=0;$i<=count($tmpl);$i++) {      
45
            $content = str_replace("{".$tmpl[$i]."}", $this->__get($tmpl[$i]), $content);
370 alex-w 46
        }
47
 
373 alex-w 48
        echo $content;
364 alex-w 49
    }
50
 
463 alex-w 51
    /**
52
     * Связывание блока с визуальным отображением оного (назначение значения переменной)
53
     *
54
     * @author Alexander Wolf
55
     * @category Template
56
     *
57
     * @param string $attr
58
     * @param string $value
59
     * @return string
60
     */
368 alex-w 61
    public function assign($attr, $value) {
62
        return $this->self[$attr] = $value;
370 alex-w 63
    }    
64
 
463 alex-w 65
    /**
66
     * Извлечение визуального вида блока по его имени (возвращение значения переменной)
67
     *
68
     * @author Alexander Wolf
69
     * @category Template
70
     *
71
     * @param string $attr
72
     * @return string
73
     */
370 alex-w 74
    public function __get($attr = null) {
75
        return $this->self[$attr];
366 alex-w 76
    }
364 alex-w 77
}
78
?>