Source for file index.php

Documentation is available at index.php

  1. <?php
  2. /* -------------------------------------------------------------------------- */
  3. /* Module      : Index.php                                                    */
  4. /*                                                                            */
  5. /* Version History :                                                          */
  6. /*                                                                            */
  7. /* Date        Vsn     Author          Description                            */
  8. /* -------------------------------------------------------------------------- */
  9. /* 18/02/09    1.0     S.Lindo         Initial version.                       */
  10. /* -------------------------------------------------------------------------- */
  11. /**
  12.  * Central entry point to the website
  13.  * 
  14.  * @package Default
  15.  */
  16. // APPLICATION_PATH is a constant pointing to our application subdirectory.
  17. // We use this to add our "library" directory to the include_path, so that
  18. // PHP can find our Zend Framework classes.
  19. define('APPLICATION_PATH'realpath(dirname(__FILE__'/../application/'));
  20.     APPLICATION_PATH '/../library' PATH_SEPARATOR .
  21.     APPLICATION_PATH '/models'     PATH_SEPARATOR .
  22.     APPLICATION_PATH '/forms'      PATH_SEPARATOR .
  23.     APPLICATION_PATH '/../library/BigBlueSkies' PATH_SEPARATOR .
  24.     APPLICATION_PATH '/../library/BigBlueSkies/wrappers' PATH_SEPARATOR .
  25.     APPLICATION_PATH                 PATH_SEPARATOR .
  26. );
  27.  
  28. require("../application/Bootstrap.php");

Documentation generated on Fri, 27 Mar 2009 13:48:35 +0000 by phpDocumentor 1.4.1