Fixed config & install inconstinstencies Fixed form management updates Signed-off-by: Gregory PLANCHAT <g.planchat@gmail.com>
154 lines
4.6 KiB
PHP
154 lines
4.6 KiB
PHP
<?php return array(
|
|
'install' => array(
|
|
'update' => '2columns-left',
|
|
'reference' => array(
|
|
'content' => array(
|
|
'children' => array(
|
|
'status' => array(
|
|
'type' => 'core/template',
|
|
'template' => 'status.phtml'
|
|
)
|
|
)
|
|
)
|
|
)
|
|
),
|
|
|
|
'install.intro' => array(
|
|
'update' => 'install',
|
|
'reference' => array(
|
|
'content' => array(
|
|
'children' => array(
|
|
'overview' => array(
|
|
'type' => 'core/template',
|
|
'template' => 'intro.phtml'
|
|
),
|
|
)
|
|
),
|
|
'status' => array(
|
|
'actions' => array(
|
|
array(
|
|
'method' => 'setData',
|
|
'params' => array(
|
|
'key' => 'step',
|
|
'value' => 0
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
),
|
|
|
|
'install.step.system' => array(
|
|
'update' => 'install',
|
|
'reference' => array(
|
|
'content' => array(
|
|
'children' => array(
|
|
'overview' => array(
|
|
'type' => 'core/template',
|
|
'template' => 'step/system.phtml'
|
|
),
|
|
)
|
|
),
|
|
'status' => array(
|
|
'actions' => array(
|
|
array(
|
|
'method' => 'setData',
|
|
'params' => array(
|
|
'key' => 'step',
|
|
'value' => 1
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
),
|
|
|
|
'install.step.database' => array(
|
|
'update' => 'install',
|
|
'reference' => array(
|
|
'content' => array(
|
|
'children' => array(
|
|
'overview' => array(
|
|
'type' => 'core/template',
|
|
'template' => 'step/database.phtml'
|
|
),
|
|
)
|
|
),
|
|
'status' => array(
|
|
'actions' => array(
|
|
array(
|
|
'method' => 'setData',
|
|
'params' => array(
|
|
'key' => 'step',
|
|
'value' => 2
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
),
|
|
|
|
'install.step.universe' => array(
|
|
'update' => 'install',
|
|
'reference' => array(
|
|
'content' => array(
|
|
'children' => array(
|
|
'overview' => array(
|
|
'type' => 'core/template',
|
|
'template' => 'step/universe.phtml'
|
|
),
|
|
)
|
|
),
|
|
'status' => array(
|
|
'actions' => array(
|
|
array(
|
|
'method' => 'setData',
|
|
'params' => array(
|
|
'key' => 'step',
|
|
'value' => 3
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
),
|
|
|
|
'install.step.profile' => array(
|
|
'update' => 'install',
|
|
'reference' => array(
|
|
'content' => array(
|
|
'children' => array(
|
|
'overview' => array(
|
|
'type' => 'core/template',
|
|
'template' => 'step/profile.phtml'
|
|
),
|
|
)
|
|
),
|
|
'status' => array(
|
|
'actions' => array(
|
|
array(
|
|
'method' => 'setData',
|
|
'params' => array(
|
|
'key' => 'step',
|
|
'value' => 4
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
),
|
|
|
|
'install.summary' => array(
|
|
'update' => 'install',
|
|
'reference' => array(
|
|
'content' => array(
|
|
'children' => array(
|
|
'overview' => array(
|
|
'type' => 'core/template',
|
|
'template' => 'summary.phtml'
|
|
),
|
|
)
|
|
)
|
|
)
|
|
),
|
|
);
|