PHP Classes

File: papa/config.php

Recommend this page to a friend!
  Classes of Shaikh Sonny Aman   PHP-PAPA   papa/config.php   Download  
File: papa/config.php
Role: Configuration script
Content type: text/plain
Description: config file
Class: PHP-PAPA
Framework with MVC support
Author: By
Last change:
Date: 15 years ago
Size: 823 bytes
 

Contents

Class file image Download
<?php
   
global $papa_config;
   
$papa_config = array();
   
   
$papa_config["application"]["default_controller"]="_default";
   
$papa_config["application"]["name"]="php-PAPA";
   
$papa_config["application"]["debug_console"]=FALSE;
   
///*
   
$papa_config["database"]["host"]="localhost";
   
$papa_config["database"]["dbname"]="papa";
   
$papa_config["database"]["username"]="root";
   
$papa_config["database"]["password"]="";
   
//*/
   
$papa_config['settings']['benchmark'] = 'yes';
  
   
$papa_config["police"]["admin"][]="LogPolice";
   
   
$papa_config["settings"]["benchmark"]="yes";
   
$papa_config["settings"]["locale"]="bn";
   
$papa_config['settings']['theme'] = 'default';
   
   
$papa_config["autoload"]["class"]=array('MyController');
   
$papa_config["autoload"]["helper"]=array('ssi');
   
   
//$papa_config[""][""]="";
    //$papa_config[""][""]="";


?>