Source for file Config.php

Documentation is available at Config.php

  1. <?php
  2.     /**
  3.      * Configuration file
  4.      *
  5.      * @copyright Copyright (c) 2004-2007 Mirchev Ideas Ltd. All rights reserved.
  6.      * @package MIPHPF
  7.      */
  8.     
  9.     /**
  10.      * The database settings
  11.      */
  12.     miSettings::singleton()->setArray(array(
  13.         'MI_DEFAULT_DB_HOST' => '10.200.200.50',
  14.         'MI_DEFAULT_DB_USER' => 'mi_miphpf',
  15.         'MI_DEFAULT_DB_PASS' => 'mi_miphpf',
  16.         'MI_DEFAULT_DB_NAME' => 'mi_miphpf',
  17.     ));
  18.     
  19.     /**
  20.      * Misc settings
  21.      */
  22.     miSettings::singleton()->setArray(array(
  23.         'MI_RECORDS_PER_PAGE' => 10,    // How many items per page will be displayed by default
  24.         'MI_DEFAULT_LANGUAGE' => 'en',    // Default language
  25.         'MI_TEMPLATE_BASEDIR' => dirname(__FILE__'/../../',
  26.     ));
  27. ?>

Documentation generated on Thu, 08 May 2008 16:57:13 +0300 by phpDocumentor 1.4.1