[ Index ]
 

Code source de eGroupWare 1.2.106-2

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/phpgwapi/inc/horde/lib/ -> core.php (source)

   1  <?php
   2  /**
   3   * Horde Application Framework core services file.
   4   *
   5   * This file sets up any necessary include path variables and includes
   6   * the minimum required Horde libraries.
   7   *
   8   * $Horde: horde/lib/core.php,v 1.27 2005/01/03 14:35:14 jan Exp $
   9   *
  10   * Copyright 1999-2005 Chuck Hagenbuch <chuck@horde.org>
  11   *
  12   * See the enclosed file COPYING for license information (LGPL). If you
  13   * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  14   */
  15  
  16  /* Turn PHP stuff off that can really screw things up. */
  17  ini_set('magic_quotes_sybase', 0);
  18  ini_set('magic_quotes_runtime', 0);
  19  
  20  /* If the Horde Framework packages are not installed in PHP's global
  21   * include_path, you must add an ini_set() call here to add their location to
  22   * the include_path. */
  23  // ini_set('include_path', dirname(__FILE__) . PATH_SEPARATOR . ini_get('include_path'));
  24  set_include_path(dirname(__FILE__). '/../../horde/' . PATH_SEPARATOR . get_include_path());
  25  
  26  /* PEAR base class. */
  27  include_once 'PEAR.php';
  28  
  29  /* Horde core classes. */
  30  include_once 'Horde.php';
  31  include_once 'Horde/Registry.php';
  32  #include_once 'Horde/DataTree.php';
  33  #include_once 'Horde/String.php';
  34  include_once 'Horde/NLS.php';
  35  #include_once 'Horde/Notification.php';
  36  #include_once 'Horde/Auth.php';
  37  #include_once 'Horde/Browser.php';
  38  #include_once 'Horde/Perms.php';
  39  
  40  #/* Browser detection object. */
  41  #if (class_exists('Browser')) {
  42  #    $browser = &Browser::singleton();
  43  #}


Généré le : Sun Feb 25 17:20:01 2007 par Balluche grâce à PHPXref 0.7