[phpMP-CVS] CVS: phpMP directories.php,1.1,1.2
Status: Pre-Alpha
Brought to you by:
heimidal
From: Adam A. <ra...@us...> - 2003-09-14 21:26:10
|
Update of /cvsroot/phpmp/phpMP In directory sc8-pr-cvs1:/tmp/cvs-serv30943 Modified Files: directories.php Log Message: All directories have their paths defined in the constants, so anyone wanting to customise their file structure (though they can easily appear to do so with mod_rewrite + Apache) can do so without updating the path in each file Index: directories.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/directories.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** directories.php 14 Sep 2003 21:19:51 -0000 1.1 --- directories.php 14 Sep 2003 21:26:07 -0000 1.2 *************** *** 1,3 **** ! <?php /* --- 1,3 ---- ! T<?php /* *************** *** 23,25 **** */ ! ?> \ No newline at end of file --- 23,42 ---- */ ! /* This file contains constants that define the paths to certain phpMP directories. ! You can easily modify your phpMP structure by renaming your directories and ! changing the constants below to suite. */ ! ! // Adminstration Area ! define('ADMIN_DIR', 'admin/'); ! // phpMP Core files ! define('CORE_DIR', 'core/'); ! // Languages Directory ! define('LANGUAGE_DIR', 'language/'); ! // Directory containing all modules ! define('MODULES_DIR', 'modules/'); ! // Templates Directory (Files, CSS, Images) ! define('TEMPLATES_DIR', 'templates/'); ! // Template Cache Directory ! define('CACHE_DIR', 'template_cache/'); ! ! ?> \ No newline at end of file |