Хранилища Subversion ant

Редакция

Содержимое файла | Последнее изменение | Открыть журнал | RSS

Редакция Автор № строки Строка
309 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 Owner {
15
    protected $db       = NULL;
16
    protected $prefix   = NULL;
17
    protected $secure   = NULL;
18
 
19
    function __constructor($database,$prefix,$secure) {
20
        $this->db       = $database;
21
        $this->prefix   = $prefix;
22
        $this->secure   = $secure;
23
    }
24
}
25
 
26
?>