phpDocumentor pond
[ class tree: pond ] [ index: pond ] [ all elements ]

Source for file _application.php

Documentation is available at _application.php

  1. <?php
  2. /**
  3.  * This is Quam Plures' application config file.
  4.  *
  5.  * @package pond
  6.  */
  7. if!defined('QP_CONFIG_LOADED') ) die'Please, do not access this page directly.' );
  8.  
  9.  
  10. $app_name 'Quam Plures';
  11. $app_shortname 'QP';
  12. $app_homepage 'http://quamplures.net/';
  13.  
  14. /**
  15.  * The version of the application.
  16.  * Note: This has to be compatible with {@link http://us2.php.net/en/version-compare}.
  17.  * @global string 
  18.  */
  19. $app_version '0.0.0';
  20.  
  21. /**
  22.  * Release date (ISO)
  23.  * @global string 
  24.  */
  25. $app_date '2011-03-21'// a randomly selected day
  26.  
  27. /**
  28.  * This is used to check if the database is up to date.
  29.  * This will be incrememented by 1 with each change in {@link upgrade_dbase_tables()}
  30.  */
  31. $app_db_version 4;
  32.  
  33. /**
  34.  * Is displayed on the login screen:
  35.  */
  36. $app_banner '<a href="'.$app_homepage.'"><img src="'.$rsc_url.'img/qp-logo.jpg" width="337" height="76" alt="'.$app_name.'" /></a>';
  37.  
  38. $app_footer_text '<a href="'.$app_homepage.'" title="'.sprintf(T_('visit %s\' website')$app_name )
  39.         .'"><strong>'.$app_name.' '.$app_version.'</strong></a>
  40.         &ndash;
  41.         <a href="http://quamplures.net/license.html" class="nobr">'.T_('GPL License').'</a>';
  42.  
  43. $copyright_text ='<span class="nobr">&copy;2001-2002 by Michel V &amp; others</span>
  44.         &ndash;
  45.         <span class="nobr">&copy;2003-2009 by <a href="http://b2evolution.net/dev/authors.html">Fran&ccedil;ois Planque &amp; others</a></span>
  46.         &ndash;
  47.         <span class="nobr">&copy;2009 - 2011 by <a href="http://quamplures.net/">Quam Plures</a>.</span>';
  48.  
  49. /**
  50.  * Modules to load
  51.  *
  52.  * This is most useful when extending the application core with features beyond what application currently does and when those features do not
  53.  * fit nicely into a plugin, mostly when they are too large or too complex.
  54.  *
  55.  * Note: a long term goal is to be able to disable some application feature sets that would not be needed. This should
  56.  * however only be used for large enough feature sets to make it worth the trouble. NO MICROMANAGING here.
  57.  */
  58. $modules array(
  59.         '_core',
  60.         'sessions',
  61.     );
  62. ?>