From c1ba82d00e8707bcb20f8fbb3619ab660ebfaaaa Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Thu, 17 Jul 2003 19:33:41 +0000 Subject: [PATCH] =?utf8?q?Se=20agrega=20un=20archivo=20con=20valores=20de?= =?utf8?q?=20configuraci=C3=B3n=20por=20defecto=20comunes=20a=20MECONlib.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- lib/MECON/defaults.php | 82 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 lib/MECON/defaults.php diff --git a/lib/MECON/defaults.php b/lib/MECON/defaults.php new file mode 100644 index 0000000..82ffcfe --- /dev/null +++ b/lib/MECON/defaults.php @@ -0,0 +1,82 @@ + +------------------------------------------------------------------------------- +$Id$ +-----------------------------------------------------------------------------*/ + +/** + * Configuración general de MECONlib. + * + * @package MECON + */ + +if (!defined('MECON_DIR_ROOT')) { + /** + * Directorio raíz respecto de la web. + */ + define('MECON_DIR_ROOT', '/MECON'); +} + +if (!defined('MECON_DIR_FS')) { + /** + * Directorio raíz respecto del sistema de archivos. + */ + define('MECON_DIR_FS', '/var/www/meconlib'); +} + +if (!defined('MECON_DIR_CSS')) { + /** + * Directorio donde se encuentran las hojas de estilo. + */ + define('MECON_DIR_CSS', MECON_DIR_ROOT.'/css'); +} + +if (!defined('MECON_DIR_IMG')) { + /** + * Directorio donde se encuentran las imágenes. + */ + define('MECON_DIR_IMG', MECON_DIR_ROOT.'/images'); +} + +if (!defined('MECON_DIR_JS')) { + /** + * Directorio donde se encuentran los JavaScripts. + */ + define('MECON_DIR_JS', MECON_DIR_ROOT.'/js'); +} + +if (!defined('MECON_DB_DSN')) { + /** + * DSN de la DB a usar por defecto. + */ + define('MECON_DB_DSN', 'mysql://intranet:intranet@intranet-db.mecon.ar/intranet'); +} + +if (!defined('MECON_DB_OPTS')) { + /** + * Opciones de la DB a usar por defecto. + */ + define('MECON_DB_OPTS', array('persistent' => true)); +} + +?> \ No newline at end of file -- 2.43.0