Login   Register  
PHP Classes
elePHPant
Icontem

File: cfg/claw.default.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Barclay  >  Claw  >  cfg/claw.default.php  >  Download  
File: cfg/claw.default.php
Role: Configuration script
Content type: text/plain
Description: Configuration (PHP way)
Class: Claw
Rapid development MVC framework for PHP 5
Author: By
Last change:
Date: 2006-06-22 05:41
Size: 678 bytes
 

Contents

Class file image Download
<?php

return array
(
    
'claw'          => array
    (
        
'debug'         => false,
        
'error_log'     => 'temp/log/error.log',
        
'log_traces'    => true,
        
'var_separator' => '.',
        
'user'          => 'ClawUser',
        
'index_page'    => 'index',
        
'mod_rewrite'   => false,
        
'hash'          => 'a9jz6P0q',
    ),
    
    
'claw_renderer' => array
    (
        
'engine'        => 'SmartyClawRenderer',
        
'config'        => array
        (
            
'include_file'  => 'Smarty.class.php',
            
'debugging'     => false,
            
'caching'       => false,
            
'compile_check' => true,
            
'force_compile' => false,
            
'template_dir'  => 'tpl',
            
'compile_dir'   => 'temp/cpl',
            
'cache_dir'     => 'temp/cache',
        ),
    ),
);
?>