Subversion Repositories php-qbpwcf

Rev

Rev 226 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
220 liveuser 1
<?php
2
 
3
/*
4
 
5
        QBPWCF, Quick Build PHP website Component base on Fedora Linux.
239 liveuser 6
    Copyright (C) 2014~2026 MIN ZHI, CHEN
220 liveuser 7
 
8
    This file is part of QBPWCF.
9
 
10
    QBPWCF is free software: you can redistribute it and/or modify
11
    it under the terms of the GNU General Public License as published by
12
    the Free Software Foundation, either version 3 of the License, or
13
    (at your option) any later version.
14
 
15
    QBPWCF is distributed in the hope that it will be useful,
16
    but WITHOUT ANY WARRANTY; without even the implied warranty of
17
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
    GNU General Public License for more details.
19
 
20
    You should have received a copy of the GNU General Public License
21
    along with QBPWCF.  If not, see <http://www.gnu.org/licenses/>.
22
 
23
*/
24
 
25
#設置要取代的內容關鍵字陣列 - start
26
 
27
$replaceFromArray=array();
28
 
29
$replaceFromArray[]="        QBPWCF, Quick Build PHP website Component base on Fedora Linux.";
30
 
31
$replaceFromArray[]="    Copyright (C) \${yearFrom}~\${yearTo} \${Authors}";
32
 
33
$replaceFromArray[]="";
34
 
35
$replaceFromArray[]="    This file is part of QBPWCF.";
36
 
37
$replaceFromArray[]="";
38
 
39
$replaceFromArray[]="    QBPWCF is free software: you can redistribute it and/or modify";
40
 
41
$replaceFromArray[]="    it under the terms of the GNU General Public License as published by";
42
 
43
$replaceFromArray[]="    the Free Software Foundation, either version 3 of the License, or";
44
 
45
$replaceFromArray[]="    (at your option) any later version.";
46
 
47
$replaceFromArray[]="";
48
 
49
$replaceFromArray[]="    QBPWCF is distributed in the hope that it will be useful,";
50
 
51
$replaceFromArray[]="    but WITHOUT ANY WARRANTY; without even the implied warranty of";
52
 
53
$replaceFromArray[]="    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the";
54
 
55
$replaceFromArray[]="    GNU General Public License for more details.";
56
 
57
$replaceFromArray[]="";
58
 
59
$replaceFromArray[]="    You should have received a copy of the GNU General Public License";
60
 
61
$replaceFromArray[]="    along with QBPWCF.  If not, see <http://www.gnu.org/licenses/>.";
62
 
63
#設置要取代的內容關鍵字陣列 - end
64
 
226 liveuser 65
?>