Added session messages display Fixed field and validator loading. Updated form validation Updated root config management Muted error reporting in file evaluation Added menu updates Fixed galaxy data access error Fixed config bug Added HTTP request method checks Added Form manager Fixed core bugs Signed-off-by: Gregory PLANCHAT <g.planchat@gmail.com>
206 lines
6.4 KiB
PHP
206 lines
6.4 KiB
PHP
<?php return array(
|
|
'1column' => array(
|
|
'update' => 'default'
|
|
),
|
|
|
|
'2columns-left' => array(
|
|
'update' => 'default',
|
|
'template' => 'page/2columns-left.phtml',
|
|
'reference' => array(
|
|
'root' => array(
|
|
'children' => array(
|
|
'left' => array(
|
|
'type' => 'core/concat'
|
|
)
|
|
)
|
|
)
|
|
)
|
|
),
|
|
|
|
'2columns-right' => array(
|
|
'update' => 'default',
|
|
'template' => 'page/2columns-right.phtml',
|
|
'reference' => array(
|
|
'root' => array(
|
|
'children' => array(
|
|
'right' => array(
|
|
'type' => 'core/concat'
|
|
),
|
|
)
|
|
)
|
|
)
|
|
),
|
|
|
|
'3columns' => array(
|
|
'update' => 'default',
|
|
'template' => 'page/3columns.phtml',
|
|
'reference' => array(
|
|
'root' => array(
|
|
'children' => array(
|
|
'left' => array(
|
|
'type' => 'core/concat'
|
|
),
|
|
'right' => array(
|
|
'type' => 'core/concat'
|
|
),
|
|
)
|
|
)
|
|
)
|
|
),
|
|
|
|
'default' => array(
|
|
'type' => 'core/html.page',
|
|
'template' => 'page/1column.phtml',
|
|
'children' => array(
|
|
'head' => array(
|
|
'type' => 'core/html.head',
|
|
'template' => 'page/html/head.phtml',
|
|
'actions' => array(
|
|
array(
|
|
'method' => 'addCss',
|
|
'params' => array(
|
|
'stylesheet' => 'css/deprecated/default.css'
|
|
)
|
|
),
|
|
array(
|
|
'method' => 'addCss',
|
|
'params' => array(
|
|
'stylesheet' => 'css/deprecated/formate.css'
|
|
)
|
|
),
|
|
array(
|
|
'method' => 'addCss',
|
|
'params' => array(
|
|
'stylesheet' => 'css/legacies.css'
|
|
)
|
|
),
|
|
array(
|
|
'method' => 'addJs',
|
|
'params' => array(
|
|
'script' => 'scripts/jquery/jquery-1.6.4.js'
|
|
)
|
|
)
|
|
)
|
|
),
|
|
'header' => array(
|
|
'type' => 'core/template',
|
|
'template' => 'page/html/header.phtml',
|
|
'children' => array(
|
|
'menu' => array(
|
|
'type' => 'core/html.navigation',
|
|
'template' => 'page/html/navigation.phtml',
|
|
),
|
|
'planet-list' => array(
|
|
'type' => 'empire/planet-list',
|
|
'template' => 'empire/planet-list.phtml',
|
|
)
|
|
)
|
|
),
|
|
'footer' => array(
|
|
'type' => 'core/template',
|
|
'template' => 'page/html/footer.phtml'
|
|
),
|
|
'content' => array(
|
|
'type' => 'core/concat'
|
|
)
|
|
)
|
|
),
|
|
|
|
'ajax' => array(
|
|
'type' => 'core/html.page',
|
|
'template' => 'page/empty.phtml',
|
|
'children' => array(
|
|
'content' => array(
|
|
'type' => 'core/concat'
|
|
)
|
|
)
|
|
),
|
|
|
|
'empty' => array(
|
|
'type' => 'core/html.page',
|
|
'template' => 'page/empty.phtml',
|
|
'children' => array(
|
|
'head' => array(
|
|
'type' => 'core/html.head',
|
|
'template' => 'page/html/head.phtml'
|
|
),
|
|
'content' => array(
|
|
'type' => 'core/concat'
|
|
)
|
|
)
|
|
),
|
|
|
|
'message' => array(
|
|
'update' => 'default',
|
|
'reference' => array(
|
|
'content' => array(
|
|
'children' => array(
|
|
'message' => array(
|
|
'type' => 'core/template',
|
|
'template' => 'page/html/message.phtml'
|
|
),
|
|
)
|
|
)
|
|
)
|
|
),
|
|
|
|
'login' => array(
|
|
'update' => '1column',
|
|
'reference' => array(
|
|
'content' => array(
|
|
'children' => array(
|
|
'login' => array(
|
|
'type' => 'core/template',
|
|
'template' => 'user/login.phtml'
|
|
),
|
|
)
|
|
),
|
|
'head' => array(
|
|
'actions' => array(
|
|
array(
|
|
'method' => 'addCss',
|
|
'params' => array(
|
|
'stylesheet' => 'css/deprecated/styles.css'
|
|
)
|
|
),
|
|
array(
|
|
'method' => 'addCss',
|
|
'params' => array(
|
|
'stylesheet' => 'css/deprecated/about.css'
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
),
|
|
|
|
'registration' => array(
|
|
'update' => '1column',
|
|
'reference' => array(
|
|
'content' => array(
|
|
'children' => array(
|
|
'registration' => array(
|
|
'type' => 'core/template',
|
|
'template' => 'user/registration.phtml'
|
|
),
|
|
)
|
|
),
|
|
'head' => array(
|
|
'actions' => array(
|
|
array(
|
|
'method' => 'addCss',
|
|
'params' => array(
|
|
'stylesheet' => 'css/deprecated/styles.css'
|
|
)
|
|
),
|
|
array(
|
|
'method' => 'addCss',
|
|
'params' => array(
|
|
'stylesheet' => 'css/deprecated/about.css'
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
);
|