114 lines
4.5 KiB
Smarty
114 lines
4.5 KiB
Smarty
|
{ $block->display("core:top_clean") }
|
||
|
|
||
|
{$method->exe("static_relation","search_show")}
|
||
|
{if ($method->result == FALSE)}
|
||
|
{$block->display("core:method_error")}
|
||
|
{else}
|
||
|
{if $results == 1}
|
||
|
{translate results=$results}search_result_count{/translate}
|
||
|
{else}
|
||
|
{translate results=$results}search_results_count{/translate}
|
||
|
{/if}
|
||
|
<BR>
|
||
|
|
||
|
|
||
|
{literal}
|
||
|
<script language="JavaScript">
|
||
|
<!-- START
|
||
|
var module = 'static_relation';
|
||
|
{/literal}
|
||
|
{if $VAR._print == TRUE}
|
||
|
var p = '&_escape=y&_print=y';
|
||
|
{else}
|
||
|
var p = '';
|
||
|
{/if}{literal}
|
||
|
var IMAGE = '{/literal}{$NONSSL_IMAGE}{literal}';
|
||
|
var order = '{/literal}{$order}{literal}';
|
||
|
var sort1 = '{/literal}{$sort}{literal}';
|
||
|
var search_id = '{/literal}{$search_id}{literal}';
|
||
|
var page = {/literal}{$page}{literal};
|
||
|
var pages = '{/literal}{$pages}{literal}';
|
||
|
var results = '{/literal}{$results}{literal}';
|
||
|
var limit = '{/literal}{$limit}{literal}';
|
||
|
record_arr = new Array ({/literal}{$limit}{literal});
|
||
|
var i = 0;
|
||
|
// END -->
|
||
|
</script>
|
||
|
<SCRIPT SRC="themes/{/literal}{$THEME_NAME}{literal}/search.js"></SCRIPT>
|
||
|
{/literal}
|
||
|
|
||
|
<!-- SHOW THE SEARCH NAVIGATION MENU -->
|
||
|
<center><script language="JavaScript">document.write(search_nav_top());</script></center>
|
||
|
|
||
|
<!-- BEGIN THE RESULTS CONTENT AREA -->
|
||
|
<div id="search_results" onKeyPress="key_handler(event);">
|
||
|
<table id="main1" width="100%" border="0" cellspacing="0" cellpadding="0" class="table_background">
|
||
|
<form id="form1" name="form1" method="post" action="">
|
||
|
<tr>
|
||
|
<td>
|
||
|
<table id="main2" width="100%" border="0" cellspacing="1" cellpadding="2">
|
||
|
<!-- DISPLAY THE SEARCH HEADING -->
|
||
|
<tr valign="middle" align="center" class="table_heading">
|
||
|
<td width="6%" class="table_heading"> </td>
|
||
|
<td width="29%" class="table_heading">
|
||
|
{literal}
|
||
|
<script language="JavaScript">
|
||
|
document.write(search_heading('{/literal}{translate module=static_relation}field_static_var_id{/translate}{literal}','static_var_id'));
|
||
|
</script>
|
||
|
{/literal}
|
||
|
</td>
|
||
|
<td width="16%" class="table_heading">
|
||
|
{literal}
|
||
|
<script language="JavaScript">
|
||
|
document.write(search_heading('{/literal}{translate module=static_relation}field_module_id{/translate}{literal}','module_id'));
|
||
|
</script>
|
||
|
{/literal}
|
||
|
</td>
|
||
|
<td width="15%" class="table_heading">
|
||
|
{literal}
|
||
|
<script language="JavaScript">
|
||
|
document.write(search_heading('{/literal}{translate module=static_relation}field_sort_order{/translate}{literal}','sort_order'));
|
||
|
</script>
|
||
|
{/literal}
|
||
|
</td>
|
||
|
<td width="34%" class="table_heading">
|
||
|
{literal}
|
||
|
<script language="JavaScript">
|
||
|
document.write(search_heading('{/literal}{translate module=static_relation}field_default_value{/translate}{literal}','default_value'));
|
||
|
</script>
|
||
|
{/literal}
|
||
|
</td>
|
||
|
</tr>
|
||
|
<!-- LOOP THROUGH EACH RECORD -->
|
||
|
{foreach from=$static_relation item=record}
|
||
|
<tr id="row{$record.id}" onClick="row_sel('{$record.id}',1); window.location='?_page=static_relation:view&id={$record.id}&_escape=1';" onMouseOver="row_mouseover('{$record.id}', 'row_mouse_over_select', 'row_mouse_over');" onMouseOut="row_mouseout('{$record.id}', '{$record._C}', 'row_select');" class="{$record._C}">
|
||
|
<td align="center" width="6%">
|
||
|
<input type="checkbox" name="record{$record.id}" value="{$record.id}" onClick="row_sel('{$record.id}',1,'{$record._C}');">
|
||
|
</td>
|
||
|
<td width="29%">
|
||
|
{$record.static_var_id}
|
||
|
</td>
|
||
|
<td width="16%">
|
||
|
{$record.module_id}
|
||
|
</td>
|
||
|
<td width="15%">
|
||
|
{$record.sort_order}
|
||
|
</td>
|
||
|
<td width="34%">
|
||
|
{$record.default_value}
|
||
|
</td>
|
||
|
</tr>
|
||
|
{literal}
|
||
|
<script language="JavaScript">row_sel('{/literal}{$record.id}{literal}', 0, '{/literal}{$record._C}{literal}'); record_arr[i] = '{/literal}{$record.id}{literal}'; i++; </script>
|
||
|
{/literal}
|
||
|
{/foreach}
|
||
|
<!-- END OF RESULT LOOP -->
|
||
|
</table>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</form>
|
||
|
</table>
|
||
|
|
||
|
{/if}
|
||
|
</div>
|