create header is now using templates

This commit is contained in:
jengo
2000-12-27 09:30:43 +00:00
parent 6cfdfaf372
commit 20c3f60c29
5 changed files with 47 additions and 47 deletions

View File

@ -28,34 +28,34 @@
* the absolute path to fit your site, and you should be up and running. *
\**************************************************************************/
$phpgw_info["server"]["server_root"] = "__SERVER_ROOT__";
$phpgw_info["server"]["include_root"] = "__INCLUDE_ROOT__";
$phpgw_info["server"]["server_root"] = "{SERVER_ROOT}";
$phpgw_info["server"]["include_root"] = "{INCLUDE_ROOT}";
$phpgw_domain["default"] = array (
"db_host" => "__DB_HOST__",
"db_name" => "__DB_NAME__",
"db_user" => "__DB_USER__",
"db_pass" => "__DB_PASS__",
"db_host" => "{DB_HOST}",
"db_name" => "{DB_NAME}",
"db_user" => "{DB_USER}",
"db_pass" => "{DB_PASS}",
/* Look at the README file */
"db_type" => "__DB_TYPE__",
"db_type" => "{DB_TYPE}",
/* This will limit who is allowed to make configuration modifcations */
"config_passwd" => "__CONFIG_PASS__"
"config_passwd" => "{CONFIG_PASS}"
);
/* If you want to have your domains in a select box, change to True */
$phpgw_info["server"]["show_domain_selectbox"] = False;
$phpgw_info["server"]["show_domain_selectbox"] = {DOMAIN_SELECTBOX};
/* This is used to control mcrypt's use */
$phpgw_info["server"]["mcrypt_enabled"] = __ENABLE_MCRYPT__;
$phpgw_info["server"]["mcrypt_enabled"] = {ENABLE_MCRYPT};
/* Set this to "old" for versions < 2.4, otherwise the exact mcrypt version you use. */
$phpgw_info["server"]["versions"]["mcrypt"] = "__MCRYPT_VERSION__";
$phpgw_info["server"]["versions"]["mcrypt"] = "{MCRYPT_VERSION}";
/* This is a random string used as the initilazation vector for mcrypt
feel free to change it when setting up phpgroupware on a clean database,
but you must not change it after that point!
It should be around 30 bytes in length.
*/
$phpgw_info["server"]["mcrypt_iv"] = "__MCRYPT_IV__";
$phpgw_info["server"]["mcrypt_iv"] = "{MCRYPT_IV}";
/* Uncomment this out and use this for supporting different domains using this single install */
/* (ignore if you are only supporting a single domain)*/