mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-10 12:32:14 +09:00
위젯 모듈 설정시 CSS오류등 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5299 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
906bb46d19
commit
efc0e0f12d
5 changed files with 16 additions and 8 deletions
|
|
@ -125,6 +125,7 @@
|
||||||
Context::set('site_keyword', $site_keyword);
|
Context::set('site_keyword', $site_keyword);
|
||||||
} else {
|
} else {
|
||||||
$query_id = 'module.getDefaultModules';
|
$query_id = 'module.getDefaultModules';
|
||||||
|
$args->site_srl = 0;
|
||||||
$module_category_exists = true;
|
$module_category_exists = true;
|
||||||
}
|
}
|
||||||
// 사이트 검색어가 있으면 해당 사이트(들)의 정보를 추출
|
// 사이트 검색어가 있으면 해당 사이트(들)의 정보를 추출
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,11 @@
|
||||||
<query id="getDefaultModules" action="select">
|
<query id="getDefaultModules" action="select">
|
||||||
<tables>
|
<tables>
|
||||||
<table name="modules" />
|
<table name="modules" alias="modules" />
|
||||||
<table name="module_categories" />
|
<table name="module_categories" alias="module_categories" type="left join">
|
||||||
|
<conditions>
|
||||||
|
<condition operation="equal" column="module_categories.module_category_srl" default="modules.module_category_srl" />
|
||||||
|
</conditions>
|
||||||
|
</table>
|
||||||
</tables>
|
</tables>
|
||||||
<columns>
|
<columns>
|
||||||
<column name="modules.site_srl" />
|
<column name="modules.site_srl" />
|
||||||
|
|
@ -12,12 +16,11 @@
|
||||||
<column name="modules.module_srl" />
|
<column name="modules.module_srl" />
|
||||||
</columns>
|
</columns>
|
||||||
<conditions>
|
<conditions>
|
||||||
<condition operation="equal" column="modules.site_srl" default="0" />
|
<condition operation="equal" column="modules.site_srl" var="site_srl" default="0" notnull="notnull" />
|
||||||
<condition operation="equal" column="modules.module_category_srl" default="module_categories.module_category_srl" />
|
|
||||||
</conditions>
|
</conditions>
|
||||||
<navigation>
|
<navigation>
|
||||||
<index var="sort_index" default="module" order="asc" />
|
<index var="sort_index" default="modules.module" order="asc" />
|
||||||
<index var="sort_index" default="module_categories.title" order="asc" />
|
<index var="sort_index" default="module_categories.title" order="asc" />
|
||||||
<index var="sort_index" default="mid" order="asc" />
|
<index var="sort_index" default="modules.mid" order="asc" />
|
||||||
</navigation>
|
</navigation>
|
||||||
</query>
|
</query>
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@
|
||||||
<!--@if($module_category_exists)-->
|
<!--@if($module_category_exists)-->
|
||||||
<!--@foreach($selected_mids as $key => $val)-->
|
<!--@foreach($selected_mids as $key => $val)-->
|
||||||
<tr>
|
<tr>
|
||||||
<td rowspan="{count($val)}">{$key}</td>
|
<td rowspan="{count($val)}">{$key} </td>
|
||||||
{@ $_idx =0; }
|
{@ $_idx =0; }
|
||||||
<!--@foreach($val as $k => $v)-->
|
<!--@foreach($val as $k => $v)-->
|
||||||
<!--@if($_idx >0)--><tr><!--@end-->
|
<!--@if($_idx >0)--><tr><!--@end-->
|
||||||
|
|
|
||||||
|
|
@ -52,5 +52,7 @@ div.editor { width:700px; }
|
||||||
|
|
||||||
.help { padding:5px 0; background-color:#EFEFEF; border-top:1px solid #CCCCCC; }
|
.help { padding:5px 0; background-color:#EFEFEF; border-top:1px solid #CCCCCC; }
|
||||||
|
|
||||||
ul.midCommand { float:left; margin:0 0 0 10px;; padding:0;}
|
ul.midCommand { float:left; margin:0 0 0 10px;; padding:0; *zoom:1; }
|
||||||
ul.midCommand li { display:block; margin-bottom:5px; list-style:none;}
|
ul.midCommand li { display:block; margin-bottom:5px; list-style:none;}
|
||||||
|
|
||||||
|
#popBody { *zoom:1; position:relative;}
|
||||||
|
|
|
||||||
|
|
@ -22,8 +22,10 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="popBody">
|
<div id="popBody">
|
||||||
|
|
||||||
{@ $_caption = $lang->about_widget_code_in_page}
|
{@ $_caption = $lang->about_widget_code_in_page}
|
||||||
<!--#include("widget_generate_code.include.html")-->
|
<!--#include("widget_generate_code.include.html")-->
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div id="popFooter" class="tCenter gap1">
|
<div id="popFooter" class="tCenter gap1">
|
||||||
<span class="button green"><input type="submit" value="{$lang->cmd_generate_code}" /></span>
|
<span class="button green"><input type="submit" value="{$lang->cmd_generate_code}" /></span>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue