<?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', 
        ), 
    ), 
); 
?>
 
 |