mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
Close Connection when there is no connection value.
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@13161 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
034a5c0288
commit
f70ce644ce
1410 changed files with 7188 additions and 53541 deletions
|
|
@ -1,59 +1,52 @@
|
|||
<?php
|
||||
|
||||
// ko/en/...
|
||||
$lang = Context::getLangType();
|
||||
|
||||
// insertMenu
|
||||
$menu_args->site_srl = 0;
|
||||
$menu_args->title = 'welcome_menu';
|
||||
$menu_srl = $menu_args->menu_srl = getNextSequence();
|
||||
$menu_args->listorder = $menu_srl * -1;
|
||||
$oMenuAdminController = getAdminController('menu'); /* @var $oMenuAdminController menuAdminController */
|
||||
$output = $oMenuAdminController->addMenu('Welcome menu');
|
||||
if(!$output->toBool())
|
||||
{
|
||||
return $output;
|
||||
}
|
||||
$menuSrl = $output->get('menuSrl');
|
||||
|
||||
$output = executeQuery('menu.insertMenu', $menu_args);
|
||||
if(!$output->toBool()) return $output;
|
||||
// make home menu cache
|
||||
$oMenuAdminController->makeHomemenuCacheFile($menuSrl);
|
||||
|
||||
// insertMenuItem
|
||||
// create 1depth menuitem
|
||||
$item_args->menu_srl = $menu_srl;
|
||||
$item_args->url = 'welcome_page';
|
||||
$item_args->is_shortcut = 'N';
|
||||
$item_args->name = 'menu1';
|
||||
$parent_srl = $item_args->menu_item_srl = getNextSequence();
|
||||
$item_args->listorder = -1*$item_args->menu_item_srl;
|
||||
|
||||
$output = executeQuery('menu.insertMenuItem', $item_args);
|
||||
if(!$output->toBool()) return $output;
|
||||
// adhoc...
|
||||
Context::set('parent_srl', $menuSrl, TRUE);
|
||||
Context::set('menu_name', 'Welcome Page', TRUE);
|
||||
Context::set('module_type', 'WIDGET', TRUE);
|
||||
$output = $oMenuAdminController->procMenuAdminInsertItem();
|
||||
if($output instanceof Object && !$output->toBool())
|
||||
{
|
||||
return $output;
|
||||
}
|
||||
$menuItemSrl = $oMenuAdminController->get('menu_item_srl');
|
||||
|
||||
// create 2depth menuitem
|
||||
/*unset($item_args);
|
||||
$item_args->menu_srl = $menu_srl;
|
||||
$item_args->parent_srl = $parent_srl;
|
||||
$item_args->url = 'welcome_page';
|
||||
$item_args->name = 'menu1-1';
|
||||
$item_args->menu_item_srl = getNextSequence();
|
||||
$item_args->listorder = -1*$item_args->menu_item_srl;
|
||||
|
||||
$output = executeQuery('menu.insertMenuItem', $item_args);
|
||||
if(!$output->toBool()) return $output;*/
|
||||
|
||||
// XML 파일을 갱신
|
||||
$oMenuAdminController = &getAdminController('menu');
|
||||
$oMenuAdminController->makeXmlFile($menu_srl);
|
||||
// create menu cache
|
||||
$oMenuAdminController->makeXmlFile($menuSrl);
|
||||
|
||||
// create Layout
|
||||
//extra_vars init
|
||||
$extra_vars->GNB = $menu_srl;
|
||||
$extra_vars->GNB = $menuSrl;
|
||||
$extra_vars->LAYOUT_TYPE = 'MAIN_PAGE';
|
||||
$extra_vars->VISUAL_USE = 'YES';
|
||||
$extra_vars->menu_name_list = array();
|
||||
$extra_vars->menu_name_list[$menu_srl] = 'welcome_menu';
|
||||
$extra_vars->menu_name_list[$menuSrl] = 'Welcome menu';
|
||||
|
||||
$args->site_srl = 0;
|
||||
$layout_srl = $args->layout_srl = getNextSequence();
|
||||
$args->layout = 'bootstrap.layout';
|
||||
$args->title = 'bootstrap.layout';
|
||||
$args->layout = 'default';
|
||||
$args->title = 'default';
|
||||
$args->layout_type = 'P';
|
||||
|
||||
$oLayoutAdminController = &getAdminController('layout');
|
||||
$oLayoutAdminController = getAdminController('layout'); /* @var $oLayoutAdminController layoutAdminController */
|
||||
$output = $oLayoutAdminController->insertLayout($args);
|
||||
if(!$output->toBool()) return $output;
|
||||
|
||||
|
|
@ -94,7 +87,7 @@ $skinTypes = array('skin'=>'skins/', 'mskin'=>'m.skins/');
|
|||
|
||||
$designInfo->module = new stdClass();
|
||||
|
||||
$oModuleModel = &getModel('module');
|
||||
$oModuleModel = getModel('module'); /* @var $oModuleModel moduleModel */
|
||||
foreach($skinTypes as $key => $dir)
|
||||
{
|
||||
$skinType = $key == 'skin' ? 'P' : 'M';
|
||||
|
|
@ -104,34 +97,18 @@ foreach($skinTypes as $key => $dir)
|
|||
}
|
||||
}
|
||||
|
||||
$oAdminController = getAdminController('admin');
|
||||
$oAdminController = getAdminController('admin'); /* @var $oAdminController adminAdminController */
|
||||
$oAdminController->makeDefaultDesignFile($designInfo, 0);
|
||||
|
||||
// insertPageModule
|
||||
$page_args->layout_srl = $layout_srl;
|
||||
$page_args->mlayout_srl = $mlayout_srl;
|
||||
$page_args->menu_srl = $menu_srl;
|
||||
$page_args->browser_title = 'welcome_page';
|
||||
$page_args->module = 'page';
|
||||
$page_args->mid = 'welcome_page';
|
||||
$page_args->module_category_srl = 0;
|
||||
$page_args->page_caching_interval = 0;
|
||||
$page_args->page_type = 'WIDGET';
|
||||
$page_args->skin = 'default';
|
||||
$page_args->use_mobile = 'Y';
|
||||
|
||||
$oModuleController = &getController('module');
|
||||
$output = $oModuleController->insertModule($page_args);
|
||||
|
||||
if(!$output->toBool()) return $output;
|
||||
|
||||
$module_srl = $output->get('module_srl');
|
||||
// create page content
|
||||
$moduleInfo = $oModuleModel->getModuleInfoByMenuItemSrl($menuItemSrl);
|
||||
$module_srl = $moduleInfo->module_srl;
|
||||
|
||||
// insert PageContents - widget
|
||||
$oTemplateHandler = &TemplateHandler::getInstance();
|
||||
$oTemplateHandler = TemplateHandler::getInstance();
|
||||
|
||||
$oDocumentModel = &getModel('document');
|
||||
$oDocumentController = &getController('document');
|
||||
$oDocumentModel = getModel('document'); /* @var $oDocumentModel documentModel */
|
||||
$oDocumentController = getController('document'); /* @var $oDocumentController documentController */
|
||||
|
||||
$obj->module_srl = $module_srl;
|
||||
Context::set('version', __XE_VERSION__);
|
||||
|
|
@ -150,6 +127,7 @@ $output = $oDocumentController->insertDocument($obj);
|
|||
if(!$output->toBool()) return $output;
|
||||
|
||||
// save PageWidget
|
||||
$oModuleController = getController('module'); /* @var $oModuleController moduleController */
|
||||
$mdocument_srl = $output->get('document_srl');
|
||||
$module_info = $oModuleModel->getModuleInfoByModuleSrl($module_srl);
|
||||
$module_info->content = '<img hasContent="true" class="zbxe_widget_output" widget="widgetContent" style="width: 100%; float: left;" body="" document_srl="'.$document_srl.'" widget_padding_left="0" widget_padding_right="0" widget_padding_top="0" widget_padding_bottom="0" />';
|
||||
|
|
|
|||
|
|
@ -2,20 +2,16 @@
|
|||
/* Welcome */
|
||||
.welcomeXE{zoom:1}
|
||||
.welcomeXE:after{content:"";display:block;clear:both}
|
||||
.welcomeXE>section{margin:0 0 20px 0;height:102px;background:url(../../../../common/img/welcome.png) no-repeat}
|
||||
.welcomeXE>section.i1{background-position:0 0}
|
||||
.welcomeXE>section.i2{background-position:0 -100px}
|
||||
.welcomeXE>section.i3{background-position:0 -200px}
|
||||
.welcomeXE>section.i4{background-position:0 -300px}
|
||||
.welcomeXE>section.i5{background-position:0 -400px}
|
||||
.welcomeXE>section.i6{background-position:0 -500px}
|
||||
.welcomeXE>section>h3,
|
||||
.welcomeXE>section>p{padding:0 0 0 100px}
|
||||
.welcomeXE>section{width:48%}
|
||||
.welcomeXE>section.odd{float:left}
|
||||
.welcomeXE>section.even{float:right}
|
||||
@media all and (max-width:767px){
|
||||
.welcomeXE>section{width:auto;float:none;height:auto;background:none}
|
||||
.welcomeXE>section>h3,
|
||||
.welcomeXE>section>p{padding:0}
|
||||
}
|
||||
.welcomeXE>h1{margin:20px 0 40px 40px;font-size:20px;color:#333}
|
||||
.welcomeXE>section{width:270px;float:left;padding:0 0 0 40px;margin:0 0 80px 0}
|
||||
.welcomeXE>.i4{clear:left}
|
||||
.welcomeXE>section>h1{padding:60px 0 0 0;background:url(welcome.gif) no-repeat;font-size:18px;margin:0 0 15px 0;color:#333}
|
||||
.welcomeXE>.i1>h1{background-position:0 0}
|
||||
.welcomeXE>.i2>h1{background-position:0 -100px}
|
||||
.welcomeXE>.i3>h1{background-position:0 -200px}
|
||||
.welcomeXE>.i4>h1{background-position:0 -300px}
|
||||
.welcomeXE>.i5>h1{background-position:0 -400px}
|
||||
.welcomeXE>.i6>h1{background-position:0 -500px}
|
||||
.welcomeXE>section>p{font-size:12px;color:#666;line-height:18px;margin:15px 0}
|
||||
.welcomeXE>section>p>a{color:#666}
|
||||
.welcomeXE>section>a{display:inline-block;background:#e2e6e7;border:1px solid #d7dce0;border-radius:2px;padding:0 15px;font-size:11px;line-height:25px;text-decoration:none;font-weight:bold;color:#666}
|
||||
BIN
modules/install/script/welcome_content/welcome.gif
Normal file
BIN
modules/install/script/welcome_content/welcome.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.9 KiB |
|
|
@ -1,28 +1,34 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
<h3>Change the site title</h3>
|
||||
<h1>XE core '{$version}' has been successfully installed!</h1>
|
||||
<section class="i1">
|
||||
<h1>Change the site title</h1>
|
||||
<p>After login as administrator, you can change the 'site title' as '<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Admin > Settings > General > Primary...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i2">
|
||||
<h3>Change the menu structure</h3>
|
||||
<section class="i2">
|
||||
<h1>Change the menu structure</h1>
|
||||
<p>After login as administrator, you can change the 'menu structure' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i3">
|
||||
<h3>Change the layout design</h3>
|
||||
<section class="i3">
|
||||
<h1>Change the layout design</h1>
|
||||
<p>After login as administrator, you can change the 'layout design' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Admin > Menu > Site Design...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i4">
|
||||
<h3>Main page replacement</h3>
|
||||
<section class="i4">
|
||||
<h1>Main page replacement</h1>
|
||||
<p>After login as administrator, you can change the 'main page' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i5">
|
||||
<h3>Main page decoration</h3>
|
||||
<section class="i5">
|
||||
<h1>Main page decoration</h1>
|
||||
<p>After login as administrator, you can edit the 'main page' by click the '<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Modify...</a>' button.</p>
|
||||
<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i6">
|
||||
<h3>Module installation</h3>
|
||||
<section class="i6">
|
||||
<h1>Module installation</h1>
|
||||
<p>After login as administrator, you can install the 'module' as '<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Admin > Advanced > Easy install...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Settings</a>
|
||||
</section>
|
||||
</article>
|
||||
|
|
|
|||
|
|
@ -1,28 +1,34 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
<h3>Change the site title</h3>
|
||||
<h1>XE core '{$version}' has been successfully installed!</h1>
|
||||
<section class="i1">
|
||||
<h1>Change the site title</h1>
|
||||
<p>After login as administrator, you can change the 'site title' as '<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Admin > Settings > General > Primary...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i2">
|
||||
<h3>Change the menu structure</h3>
|
||||
<section class="i2">
|
||||
<h1>Change the menu structure</h1>
|
||||
<p>After login as administrator, you can change the 'menu structure' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i3">
|
||||
<h3>Change the layout design</h3>
|
||||
<section class="i3">
|
||||
<h1>Change the layout design</h1>
|
||||
<p>After login as administrator, you can change the 'layout design' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Admin > Menu > Site Design...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i4">
|
||||
<h3>Main page replacement</h3>
|
||||
<section class="i4">
|
||||
<h1>Main page replacement</h1>
|
||||
<p>After login as administrator, you can change the 'main page' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i5">
|
||||
<h3>Main page decoration</h3>
|
||||
<section class="i5">
|
||||
<h1>Main page decoration</h1>
|
||||
<p>After login as administrator, you can edit the 'main page' by click the '<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Modify...</a>' button.</p>
|
||||
<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i6">
|
||||
<h3>Module installation</h3>
|
||||
<section class="i6">
|
||||
<h1>Module installation</h1>
|
||||
<p>After login as administrator, you can install the 'module' as '<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Admin > Advanced > Easy install...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Settings</a>
|
||||
</section>
|
||||
</article>
|
||||
|
|
|
|||
|
|
@ -1,28 +1,34 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
<h3>Change the site title</h3>
|
||||
<h1>XE core '{$version}' has been successfully installed!</h1>
|
||||
<section class="i1">
|
||||
<h1>Change the site title</h1>
|
||||
<p>After login as administrator, you can change the 'site title' as '<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Admin > Settings > General > Primary...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i2">
|
||||
<h3>Change the menu structure</h3>
|
||||
<section class="i2">
|
||||
<h1>Change the menu structure</h1>
|
||||
<p>After login as administrator, you can change the 'menu structure' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i3">
|
||||
<h3>Change the layout design</h3>
|
||||
<section class="i3">
|
||||
<h1>Change the layout design</h1>
|
||||
<p>After login as administrator, you can change the 'layout design' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Admin > Menu > Site Design...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i4">
|
||||
<h3>Main page replacement</h3>
|
||||
<section class="i4">
|
||||
<h1>Main page replacement</h1>
|
||||
<p>After login as administrator, you can change the 'main page' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i5">
|
||||
<h3>Main page decoration</h3>
|
||||
<section class="i5">
|
||||
<h1>Main page decoration</h1>
|
||||
<p>After login as administrator, you can edit the 'main page' by click the '<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Modify...</a>' button.</p>
|
||||
<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i6">
|
||||
<h3>Module installation</h3>
|
||||
<section class="i6">
|
||||
<h1>Module installation</h1>
|
||||
<p>After login as administrator, you can install the 'module' as '<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Admin > Advanced > Easy install...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Settings</a>
|
||||
</section>
|
||||
</article>
|
||||
|
|
|
|||
|
|
@ -1,28 +1,34 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
<h3>Change the site title</h3>
|
||||
<h1>XE core '{$version}' has been successfully installed!</h1>
|
||||
<section class="i1">
|
||||
<h1>Change the site title</h1>
|
||||
<p>After login as administrator, you can change the 'site title' as '<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Admin > Settings > General > Primary...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i2">
|
||||
<h3>Change the menu structure</h3>
|
||||
<section class="i2">
|
||||
<h1>Change the menu structure</h1>
|
||||
<p>After login as administrator, you can change the 'menu structure' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i3">
|
||||
<h3>Change the layout design</h3>
|
||||
<section class="i3">
|
||||
<h1>Change the layout design</h1>
|
||||
<p>After login as administrator, you can change the 'layout design' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Admin > Menu > Site Design...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i4">
|
||||
<h3>Main page replacement</h3>
|
||||
<section class="i4">
|
||||
<h1>Main page replacement</h1>
|
||||
<p>After login as administrator, you can change the 'main page' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i5">
|
||||
<h3>Main page decoration</h3>
|
||||
<section class="i5">
|
||||
<h1>Main page decoration</h1>
|
||||
<p>After login as administrator, you can edit the 'main page' by click the '<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Modify...</a>' button.</p>
|
||||
<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i6">
|
||||
<h3>Module installation</h3>
|
||||
<section class="i6">
|
||||
<h1>Module installation</h1>
|
||||
<p>After login as administrator, you can install the 'module' as '<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Admin > Advanced > Easy install...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Settings</a>
|
||||
</section>
|
||||
</article>
|
||||
|
|
|
|||
|
|
@ -1,28 +1,34 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' 설치를 환영합니다!</h2>
|
||||
<section class="odd i1">
|
||||
<h3>사이트 제목 바꾸기</h3>
|
||||
<h1>XE core '{$version}' 설치를 환영합니다!</h1>
|
||||
<section class="i1">
|
||||
<h1>사이트 제목 바꾸기</h1>
|
||||
<p>관리자로 로그인 한 다음 '<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">관리 > 설정 > 일반 > 기본</a>'에서 '사이트 제목'을 변경할 수 있습니다.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">설정변경</a>
|
||||
</section>
|
||||
<section class="even i2">
|
||||
<h3>메뉴 구조 바꾸기</h3>
|
||||
<section class="i2">
|
||||
<h1>메뉴 구조 바꾸기</h1>
|
||||
<p>관리자로 로그인 한 다음 '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">관리 > 사이트 제작/편집 > 사이트 메뉴 편집</a>'에서 '메뉴 구조'를 변경할 수 있습니다.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">설정변경</a>
|
||||
</section>
|
||||
<section class="odd i3">
|
||||
<h3>레이아웃 디자인 바꾸기</h3>
|
||||
<section class="i3">
|
||||
<h1>레이아웃 디자인 바꾸기</h1>
|
||||
<p>관리자로 로그인 한 다음 '<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">관리 > 사이트 제작/편집 > 사이트 디자인 설정</a>'에서 '레이아웃 디자인'을 변경할 수 있습니다.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">설정변경</a>
|
||||
</section>
|
||||
<section class="even i4">
|
||||
<h3>초기화면 바꾸기</h3>
|
||||
<section class="i4">
|
||||
<h1>초기화면 바꾸기</h1>
|
||||
<p>관리자로 로그인 한 다음 '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">관리 > 사이트 제작/편집 > 사이트 메뉴 편집</a>'에서 '초기화면'을 바꿀 수 있습니다.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">설정변경</a>
|
||||
</section>
|
||||
<section class="odd i5">
|
||||
<h3>초기화면 꾸미기</h3>
|
||||
<section class="i5">
|
||||
<h1>초기화면 꾸미기</h1>
|
||||
<p>관리자로 로그인 한 다음 '<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">페이지 수정</a>' 버튼을 눌러 '초기화면'을 꾸밀 수 있습니다.</p>
|
||||
<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">설정변경</a>
|
||||
</section>
|
||||
<section class="even i6">
|
||||
<h3>모듈 설치하기</h3>
|
||||
<section class="i6">
|
||||
<h1>모듈 설치하기</h1>
|
||||
<p>관리자로 로그인 한 다음 '<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">관리 > 고급 > 쉬운 설치</a>'에서 '모듈'을 설치할 수 있습니다.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">설정변경</a>
|
||||
</section>
|
||||
</article>
|
||||
|
|
|
|||
|
|
@ -1,28 +1,34 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
<h3>Change the site title</h3>
|
||||
<h1>XE core '{$version}' has been successfully installed!</h1>
|
||||
<section class="i1">
|
||||
<h1>Change the site title</h1>
|
||||
<p>After login as administrator, you can change the 'site title' as '<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Admin > Settings > General > Primary...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i2">
|
||||
<h3>Change the menu structure</h3>
|
||||
<section class="i2">
|
||||
<h1>Change the menu structure</h1>
|
||||
<p>After login as administrator, you can change the 'menu structure' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i3">
|
||||
<h3>Change the layout design</h3>
|
||||
<section class="i3">
|
||||
<h1>Change the layout design</h1>
|
||||
<p>After login as administrator, you can change the 'layout design' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Admin > Menu > Site Design...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i4">
|
||||
<h3>Main page replacement</h3>
|
||||
<section class="i4">
|
||||
<h1>Main page replacement</h1>
|
||||
<p>After login as administrator, you can change the 'main page' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i5">
|
||||
<h3>Main page decoration</h3>
|
||||
<section class="i5">
|
||||
<h1>Main page decoration</h1>
|
||||
<p>After login as administrator, you can edit the 'main page' by click the '<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Modify...</a>' button.</p>
|
||||
<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i6">
|
||||
<h3>Module installation</h3>
|
||||
<section class="i6">
|
||||
<h1>Module installation</h1>
|
||||
<p>After login as administrator, you can install the 'module' as '<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Admin > Advanced > Easy install...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Settings</a>
|
||||
</section>
|
||||
</article>
|
||||
|
|
|
|||
|
|
@ -1,28 +1,34 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
<h3>Change the site title</h3>
|
||||
<h1>XE core '{$version}' has been successfully installed!</h1>
|
||||
<section class="i1">
|
||||
<h1>Change the site title</h1>
|
||||
<p>After login as administrator, you can change the 'site title' as '<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Admin > Settings > General > Primary...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i2">
|
||||
<h3>Change the menu structure</h3>
|
||||
<section class="i2">
|
||||
<h1>Change the menu structure</h1>
|
||||
<p>After login as administrator, you can change the 'menu structure' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i3">
|
||||
<h3>Change the layout design</h3>
|
||||
<section class="i3">
|
||||
<h1>Change the layout design</h1>
|
||||
<p>After login as administrator, you can change the 'layout design' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Admin > Menu > Site Design...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i4">
|
||||
<h3>Main page replacement</h3>
|
||||
<section class="i4">
|
||||
<h1>Main page replacement</h1>
|
||||
<p>After login as administrator, you can change the 'main page' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i5">
|
||||
<h3>Main page decoration</h3>
|
||||
<section class="i5">
|
||||
<h1>Main page decoration</h1>
|
||||
<p>After login as administrator, you can edit the 'main page' by click the '<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Modify...</a>' button.</p>
|
||||
<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i6">
|
||||
<h3>Module installation</h3>
|
||||
<section class="i6">
|
||||
<h1>Module installation</h1>
|
||||
<p>After login as administrator, you can install the 'module' as '<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Admin > Advanced > Easy install...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Settings</a>
|
||||
</section>
|
||||
</article>
|
||||
|
|
|
|||
|
|
@ -1,28 +1,34 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
<h3>Change the site title</h3>
|
||||
<h1>XE core '{$version}' has been successfully installed!</h1>
|
||||
<section class="i1">
|
||||
<h1>Change the site title</h1>
|
||||
<p>After login as administrator, you can change the 'site title' as '<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Admin > Settings > General > Primary...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i2">
|
||||
<h3>Change the menu structure</h3>
|
||||
<section class="i2">
|
||||
<h1>Change the menu structure</h1>
|
||||
<p>After login as administrator, you can change the 'menu structure' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i3">
|
||||
<h3>Change the layout design</h3>
|
||||
<section class="i3">
|
||||
<h1>Change the layout design</h1>
|
||||
<p>After login as administrator, you can change the 'layout design' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Admin > Menu > Site Design...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i4">
|
||||
<h3>Main page replacement</h3>
|
||||
<section class="i4">
|
||||
<h1>Main page replacement</h1>
|
||||
<p>After login as administrator, you can change the 'main page' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i5">
|
||||
<h3>Main page decoration</h3>
|
||||
<section class="i5">
|
||||
<h1>Main page decoration</h1>
|
||||
<p>After login as administrator, you can edit the 'main page' by click the '<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Modify...</a>' button.</p>
|
||||
<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i6">
|
||||
<h3>Module installation</h3>
|
||||
<section class="i6">
|
||||
<h1>Module installation</h1>
|
||||
<p>After login as administrator, you can install the 'module' as '<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Admin > Advanced > Easy install...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Settings</a>
|
||||
</section>
|
||||
</article>
|
||||
|
|
|
|||
|
|
@ -1,28 +1,34 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
<h3>Change the site title</h3>
|
||||
<h1>XE core '{$version}' has been successfully installed!</h1>
|
||||
<section class="i1">
|
||||
<h1>Change the site title</h1>
|
||||
<p>After login as administrator, you can change the 'site title' as '<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Admin > Settings > General > Primary...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i2">
|
||||
<h3>Change the menu structure</h3>
|
||||
<section class="i2">
|
||||
<h1>Change the menu structure</h1>
|
||||
<p>After login as administrator, you can change the 'menu structure' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i3">
|
||||
<h3>Change the layout design</h3>
|
||||
<section class="i3">
|
||||
<h1>Change the layout design</h1>
|
||||
<p>After login as administrator, you can change the 'layout design' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Admin > Menu > Site Design...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i4">
|
||||
<h3>Main page replacement</h3>
|
||||
<section class="i4">
|
||||
<h1>Main page replacement</h1>
|
||||
<p>After login as administrator, you can change the 'main page' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i5">
|
||||
<h3>Main page decoration</h3>
|
||||
<section class="i5">
|
||||
<h1>Main page decoration</h1>
|
||||
<p>After login as administrator, you can edit the 'main page' by click the '<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Modify...</a>' button.</p>
|
||||
<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i6">
|
||||
<h3>Module installation</h3>
|
||||
<section class="i6">
|
||||
<h1>Module installation</h1>
|
||||
<p>After login as administrator, you can install the 'module' as '<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Admin > Advanced > Easy install...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Settings</a>
|
||||
</section>
|
||||
</article>
|
||||
|
|
|
|||
|
|
@ -1,28 +1,34 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
<h3>Change the site title</h3>
|
||||
<h1>XE core '{$version}' has been successfully installed!</h1>
|
||||
<section class="i1">
|
||||
<h1>Change the site title</h1>
|
||||
<p>After login as administrator, you can change the 'site title' as '<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Admin > Settings > General > Primary...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i2">
|
||||
<h3>Change the menu structure</h3>
|
||||
<section class="i2">
|
||||
<h1>Change the menu structure</h1>
|
||||
<p>After login as administrator, you can change the 'menu structure' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i3">
|
||||
<h3>Change the layout design</h3>
|
||||
<section class="i3">
|
||||
<h1>Change the layout design</h1>
|
||||
<p>After login as administrator, you can change the 'layout design' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Admin > Menu > Site Design...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i4">
|
||||
<h3>Main page replacement</h3>
|
||||
<section class="i4">
|
||||
<h1>Main page replacement</h1>
|
||||
<p>After login as administrator, you can change the 'main page' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i5">
|
||||
<h3>Main page decoration</h3>
|
||||
<section class="i5">
|
||||
<h1>Main page decoration</h1>
|
||||
<p>After login as administrator, you can edit the 'main page' by click the '<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Modify...</a>' button.</p>
|
||||
<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i6">
|
||||
<h3>Module installation</h3>
|
||||
<section class="i6">
|
||||
<h1>Module installation</h1>
|
||||
<p>After login as administrator, you can install the 'module' as '<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Admin > Advanced > Easy install...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Settings</a>
|
||||
</section>
|
||||
</article>
|
||||
|
|
|
|||
|
|
@ -1,28 +1,34 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
<h3>Change the site title</h3>
|
||||
<h1>XE core '{$version}' has been successfully installed!</h1>
|
||||
<section class="i1">
|
||||
<h1>Change the site title</h1>
|
||||
<p>After login as administrator, you can change the 'site title' as '<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Admin > Settings > General > Primary...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i2">
|
||||
<h3>Change the menu structure</h3>
|
||||
<section class="i2">
|
||||
<h1>Change the menu structure</h1>
|
||||
<p>After login as administrator, you can change the 'menu structure' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i3">
|
||||
<h3>Change the layout design</h3>
|
||||
<section class="i3">
|
||||
<h1>Change the layout design</h1>
|
||||
<p>After login as administrator, you can change the 'layout design' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Admin > Menu > Site Design...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteDesign')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i4">
|
||||
<h3>Main page replacement</h3>
|
||||
<section class="i4">
|
||||
<h1>Main page replacement</h1>
|
||||
<p>After login as administrator, you can change the 'main page' as '<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Admin > Menu > Menu Editor...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}">Settings</a>
|
||||
</section>
|
||||
<section class="odd i5">
|
||||
<h3>Main page decoration</h3>
|
||||
<section class="i5">
|
||||
<h1>Main page decoration</h1>
|
||||
<p>After login as administrator, you can edit the 'main page' by click the '<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Modify...</a>' button.</p>
|
||||
<a href="{geturl('', 'mid', $mid, 'act','dispPageAdminContentModify')}">Settings</a>
|
||||
</section>
|
||||
<section class="even i6">
|
||||
<h3>Module installation</h3>
|
||||
<section class="i6">
|
||||
<h1>Module installation</h1>
|
||||
<p>After login as administrator, you can install the 'module' as '<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Admin > Advanced > Easy install...</a>' progress.</p>
|
||||
<a href="{geturl('','module','admin','act','dispAutoinstallAdminIndex')}">Settings</a>
|
||||
</section>
|
||||
</article>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue