123 lines
1.7 KiB
PHP
123 lines
1.7 KiB
PHP
<?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
|
|
{
|
|
/**
|
|
* Software version
|
|
*/
|
|
var $version = '0.6';
|
|
|
|
/**
|
|
* 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';
|
|
|
|
/**
|
|
* Use PunBB integration ?
|
|
*/
|
|
var $use_punbb = false;
|
|
|
|
/**
|
|
* PunBB's forum ID to use for strips comment
|
|
*/
|
|
var $punbb_forum_id = '1';
|
|
|
|
/**
|
|
* PunBB's forum ID to use for word of the day
|
|
*/
|
|
var $punbb_wotd_id = '1';
|
|
|
|
/**
|
|
* PunBB's forum max length for the message
|
|
*/
|
|
var $punbb_max_length = 60;
|
|
|
|
/**
|
|
* Additional URL
|
|
*/
|
|
var $see_also = array(
|
|
'Geekscottes' => 'http://www.nojhan.net/geekscottes'
|
|
);
|
|
|
|
/**
|
|
* Shop URL
|
|
*/
|
|
var $shop = 'http://perdu.com';
|
|
|
|
/**
|
|
* Use cache feature?
|
|
*/
|
|
var $use_cache = true;
|
|
|
|
/**
|
|
* HTML template folder
|
|
*/
|
|
var $template_folder = './template';
|
|
|
|
/**
|
|
* Name of HTML template
|
|
*/
|
|
var $template_name = 'default';
|
|
|
|
/**
|
|
* Name of RSS template
|
|
*/
|
|
var $template_rss = 'rss';
|
|
|
|
/**
|
|
* Number of thumbnails per gallery page
|
|
*/
|
|
var $thumbs_per_page = 5;
|
|
|
|
/**
|
|
* Size of the thumbnails
|
|
*/
|
|
var $thumb_size = 200;
|
|
}
|
|
|
|
?>
|
|
|