renommage fichier de conf, infos anonymes
This commit is contained in:
parent
1c84a36c69
commit
7a1146a56a
1 changed files with 73 additions and 0 deletions
73
configuration-dist.php
Normal file
73
configuration-dist.php
Normal file
|
|
@ -0,0 +1,73 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Strip-It configuration
|
||||||
|
*
|
||||||
|
* @author Johann "nojhan" Dréo <nojhan@gmail.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.html GPL
|
||||||
|
* @copyright 2007 Johann Dréo
|
||||||
|
*
|
||||||
|
* @package stripit
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Configuration
|
||||||
|
*/
|
||||||
|
class configuration
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* URL of the website
|
||||||
|
*/
|
||||||
|
var $url = 'http://localhost/stripit';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Title of the website
|
||||||
|
*/
|
||||||
|
var $title = 'Stripit';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Short description
|
||||||
|
*
|
||||||
|
* Is displayed as a subtitle
|
||||||
|
*/
|
||||||
|
var $description = 'Ce serait mieux avec des strips libres !';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default language of the interface
|
||||||
|
*/
|
||||||
|
var $language = 'fr-FR';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Webmaster's name
|
||||||
|
*/
|
||||||
|
var $webmaster = 'inconnu';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Webmaster's email
|
||||||
|
*/
|
||||||
|
var $email = 'inconnu';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Forum URL
|
||||||
|
*/
|
||||||
|
var $forum = 'http://perdu.com';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Additional URL
|
||||||
|
*/
|
||||||
|
var $see_also = array(
|
||||||
|
'Geekscottes' => 'http://www.nojhan.net/geekscottes'
|
||||||
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Shop URL
|
||||||
|
*/
|
||||||
|
var $shop = 'http://perdu.com';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* HTML template to use
|
||||||
|
*/
|
||||||
|
var $template_html = 'template_default.html';
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue