Хранилища Subversion ant

Редакция

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

Редакция 388 Редакция 459
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
class Template {
15
class Template {
16
    private     $path   = NULL;
16
    private     $path   = NULL;
17
    protected   $self   = array();
17
    protected   $self   = array();
18
18
19
    public function __construct($folder) {
19
    public function __construct($folder) {
20
        $this->path = $folder;
20
        $this->path = $folder;
21
    }
21
    }
22
   
22
   
23
    public function display($name) {
23
    public function display($name) {
24
        $fh = fopen($this->path.$name, "r");
24
        $fh = fopen($this->path.$name, "r");
25
        $content = fread($fh, filesize($this->path.$name));
25
        $content = fread($fh, filesize($this->path.$name));
26
        fclose($fh);
26
        fclose($fh);
27
        preg_match_all("/{([\d\w]+)}/", $content, $matches);
27
        preg_match_all("/{([\d\w]+)}/", $content, $matches);
28
        $tmpl = $matches[1];
28
        $tmpl = $matches[1];
29
        for($i=0;$i<=count($tmpl);$i++) {      
29
        for($i=0;$i<=count($tmpl);$i++) {      
30
            $content = str_replace("{".$tmpl[$i]."}", $this->__get($tmpl[$i]), $content);
30
            $content = str_replace("{".$tmpl[$i]."}", $this->__get($tmpl[$i]), $content);
31
        }
31
        }
32
32
33
        echo $content;
33
        echo $content;
34
    }
34
    }
35
35
36
    public function assign($attr, $value) {
36
    public function assign($attr, $value) {
37
        return $this->self[$attr] = $value;
37
        return $this->self[$attr] = $value;
38
    }    
38
    }    
39
39
40
    public function __get($attr = null) {
40
    public function __get($attr = null) {
41
        return $this->self[$attr];
41
        return $this->self[$attr];
42
    }
42
    }
43
}
43
}
44
?>
44
?>
45
 
45