shop.balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

install.php (754B)


      1 <?php
      2 // Site
      3 $_['site_base']         = HTTP_SERVER;
      4 $_['site_ssl']          = HTTP_SERVER;
      5 
      6 // Language
      7 $_['language_default']  = 'en-gb';
      8 $_['language_autoload'] = array('en-gb');
      9 
     10 // Session
     11 $_['session_engine']     = 'file';
     12 $_['session_autostart']  = true;
     13 $_['session_name']       = 'OCSESSID';
     14 
     15 // Template
     16 $_['template_engine']   = 'twig';
     17 $_['template_cache']    = true;
     18 
     19 // Actions
     20 $_['action_default']    = 'install/step_1';
     21 $_['action_router']     = 'startup/router';
     22 $_['action_error']      = 'error/not_found';
     23 $_['action_pre_action'] = array(
     24 	'startup/language',
     25 	'startup/upgrade',
     26 	'startup/database'
     27 );
     28 
     29 // Action Events
     30 $_['action_event'] = array(
     31     'view/*/before' => array(
     32 		'event/theme'
     33 	)
     34 );