PHP Classes

File: forum.config.php

Recommend this page to a friend!
  Classes of Kristian Feldsam   Forum class   forum.config.php   Download  
File: forum.config.php
Role: Configuration script
Content type: text/plain
Description: config file
Class: Forum class
Create and manage forums
Author: By
Last change: none
Date: 13 years ago
Size: 510 bytes
 

Contents

Class file image Download
<?php
/*
 * Config file for forum class
 */

$config['notifyFromEmail'] = 'noreply@domain.tld';
$config['notifySubject'] = 'New post or topic on www.domain.tld forums';
$config['notifyCategoryText'] = 'New topic "%desc" was created in category "%name" by user %user.';
$config['notifyTopicText'] = 'New post "%desc" was created in topic "%name" by user %user.';
$config['table_prefix'] = '';
$config['result_type'] = MYSQL_ASSOC; // look http://php.net/manual/en/function.mysql-fetch-array.php
?>