1 |
<?php
|
2 |
//$Header: /hl/cvsroots/gpl01/gpl01/webprojs/pamc/gen_a/sw/phplib/ref_tables/pamc_files.inc,v 1.10 2007/07/01 03:06:21 dashley Exp $
|
3 |
//--------------------------------------------------------------------------------
|
4 |
//pamc_files.inc -- PAMC reference file list. This provides a list of all files
|
5 |
// for modification, copying, and checking.
|
6 |
//Copyright (C) 2007 David T. Ashley
|
7 |
//--------------------------------------------------------------------------------
|
8 |
//This program is free software; you can redistribute it and/or
|
9 |
//modify it under the terms of the GNU General Public License
|
10 |
//as published by the Free Software Foundation; either version 2
|
11 |
//of the License, or (at your option) any later version.
|
12 |
//
|
13 |
//This program is distributed in the hope that it will be useful,
|
14 |
//but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15 |
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16 |
//GNU General Public License for more details.
|
17 |
//
|
18 |
//You should have received a copy of the GNU General Public License
|
19 |
//along with this program; if not, write to the Free Software
|
20 |
//Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
21 |
//--------------------------------------------------------------------------------
|
22 |
//Author contact information:
|
23 |
// David T. Ashley
|
24 |
// P.O. Box 918
|
25 |
// Marshall, Michigan, 49068
|
26 |
// dta@e3ft.com
|
27 |
//--------------------------------------------------------------------------------
|
28 |
$config['filelist']
|
29 |
= array(
|
30 |
"phplibrary" => array(
|
31 |
"config/config_hard.inc",
|
32 |
"config/config.inc",
|
33 |
"config/config_maint.inc",
|
34 |
"hash/crhsh.inc",
|
35 |
"hash/hashkey.inc",
|
36 |
"string/strfunc_charset.inc",
|
37 |
"string/strfunc_htmlformat.inc",
|
38 |
"string/strfunc_int.inc",
|
39 |
"ref_tables/apps_pages_navlines.inc",
|
40 |
"ref_tables/db_design.inc",
|
41 |
"ref_tables/db_design_tablelistonly.inc",
|
42 |
"ref_tables/pamc_files.inc",
|
43 |
"time/autime.inc",
|
44 |
"time/autimelp.inc",
|
45 |
"time/timeraw.inc",
|
46 |
"unique_id/sguid.inc"
|
47 |
),
|
48 |
"webfiles" => array(
|
49 |
"index.php",
|
50 |
"left_nav.php",
|
51 |
"main.php",
|
52 |
"unittest/autime.php",
|
53 |
"unittest/crhsh.php",
|
54 |
"unittest/index.php",
|
55 |
"unittest/sguid.php",
|
56 |
"unittest/timeraw.php"
|
57 |
)
|
58 |
);
|
59 |
//--------------------------------------------------------------------------------
|
60 |
//End of $RCSfile: pamc_files.inc,v $.
|
61 |
//--------------------------------------------------------------------------------
|
62 |
?>
|