<?php

return array(
    'timeZone' => 'Asia/Calcutta',
    'basePath' => dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
    'name' => 'SiteBuilder Instalation',
    // preloading 'log' component
    'preload' => array('log'),

    // autoloading model and component classes
    'import' => array(

        'application.models.*',
        'application.components.*',
            ),
    'defaultController' => 'site',

    // application components
    'components' => array(
        'urlManager' => array(
            'urlFormat' => 'path',
            'rules' => array(

            ),
        ),
        'request' => array(
            'enableCsrfValidation' => true,
            'enableCookieValidation' => true,
        ),
        'log' => array(
            'class' => 'CLogRouter',
            'routes' => array(
                array(
                    'class' => 'CFileLogRoute',
                    'levels' => 'error, warning',
                ),
                // uncomment the following to show log messages on web pages
                /*
                array(
                    'class'=>'CWebLogRoute',
                ),
                */
            ),
        ),
    ),

);
