Source for file _application.php
Documentation is available at _application.php
* This is Quam Plures' application config file.
if( !defined('QP_CONFIG_LOADED') ) die( 'Please, do not access this page directly.' );
$app_name = 'Quam Plures';
$app_homepage = 'http://quamplures.net/';
* The version of the application.
* Note: This has to be compatible with {@link http://us2.php.net/en/version-compare}.
$app_date = '2011-03-21'; // a randomly selected day
* This is used to check if the database is up to date.
* This will be incrememented by 1 with each change in {@link upgrade_dbase_tables()}
* Is displayed on the login screen:
$app_banner = '<a href="'. $app_homepage. '"><img src="'. $rsc_url. 'img/qp-logo.jpg" width="337" height="76" alt="'. $app_name. '" /></a>';
$app_footer_text = '<a href="'. $app_homepage. '" title="'. sprintf(T_('visit %s\' website'), $app_name )
. '"><strong>'. $app_name. ' '. $app_version. '</strong></a>
<a href="http://quamplures.net/license.html" class="nobr">'. T_('GPL License'). '</a>';
$copyright_text = '<span class="nobr">©2001-2002 by Michel V & others</span>
<span class="nobr">©2003-2009 by <a href="http://b2evolution.net/dev/authors.html">François Planque & others</a></span>
<span class="nobr">©2009 - 2011 by <a href="http://quamplures.net/">Quam Plures</a>.</span>';
* This is most useful when extending the application core with features beyond what application currently does and when those features do not
* fit nicely into a plugin, mostly when they are too large or too complex.
* Note: a long term goal is to be able to disable some application feature sets that would not be needed. This should
* however only be used for large enough feature sets to make it worth the trouble. NO MICROMANAGING here.
|