【opencart3源码分析】系统配置文件install.php

<?php
// 站点
$_['site_base']         = HTTP_SERVER;
$_['site_ssl']          = HTTP_SERVER;

// 语言
$_['language_default']  = 'en-gb';
$_['language_autoload'] = array('en-gb');

// Session
$_['session_engine']    = 'file';
$_['session_autostart'] = true;
$_['session_name']      = 'OCSESSID';

// 模板
$_['template_engine']   = 'twig';
$_['template_cache']    = true;

// 错误
$_['error_display']     = true;

// 行为
$_['action_default']    = 'install/step_1';
$_['action_router']     = 'startup/router';
$_['action_error']      = 'error/not_found';
$_['action_pre_action'] = array(
	'startup/language',
	'startup/upgrade',
	'startup/database'
);

// 事件
$_['action_event'] = array(
    'view/*/before' => array(
		'event/theme'
	)
);

猜你喜欢

转载自blog.csdn.net/qq2942713658/article/details/81544696
今日推荐