AVE.CMS v3.28
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

174 lines
4.8 KiB

<script language="Javascript" type="text/javascript">
var sess = '{$sess}';
</script>
<div class="title">
<h5>{#RUBRIK_EDIT_CODE_T#}</h5>
</div>
<div class="widget" style="margin-top: 0px;">
<div class="body">
{#RUBRIK_EDIT_CODE_TIP#}
</div>
</div>
<table class="first tableButtons" cellpadding="0" cellspacing="0" width="100%" id="rubricButtons">
<col width="20%">
<col width="20%">
<col width="20%">
<col width="20%">
<col width="20%">
<tr>
<td>
<a class="button basicBtn topBtn" href="index.php?do=rubs&action=edit&Id={$smarty.request.Id|escape}&cp={$sess}">{#RUBRIC_TABLE_BTN_FIELDS#}</a>
</td>
<td>
<a class="button basicBtn topBtn" href="index.php?do=rubs&action=ftlist&Id={$smarty.request.Id|escape}&cp={$sess}">{#RUBRIC_TABLE_BTN_FTEMPLATES#}</a>
</td>
<td>
<a class="button basicBtn topBtn" href="index.php?do=rubs&action=fieldsgroups&Id={$smarty.request.Id|escape}&cp={$sess}">{#RUBRIC_TABLE_BTN_FGROUPS#}</a>
</td>
<td>
<a class="button basicBtn topBtn" href="index.php?do=rubs&action=template&Id={$smarty.request.Id|escape}&cp={$sess}">{#RUBRIC_TABLE_BTN_TEMPLATES#}</a>
</td>
<td>
<a class="button basicBtn topBtn" href="index.php?do=rubs&action=rules&Id={$smarty.request.Id|escape}&cp={$sess}">{#RUBRIC_TABLE_BTN_RULES#}</a>
</td>
</tr>
</table>
<div class="breadCrumbHolder module">
<div class="breadCrumb module">
<ul>
<li class="firstB">
<a href="index.php" title="{#MAIN_PAGE#}">{#MAIN_PAGE#}</a>
</li>
<li>
<a href="index.php?do=rubs&cp={$sess}">{#RUBRIK_SUB_TITLE#}</a>
</li>
<li>{#RUBRIK_CODE#}</li>
<li><strong class="code">{$rubric_title}</strong></li>
</ul>
</div>
</div>
{if check_permission('rubric_edit') && check_permission('rubric_code')}
<form id="code" action="{$formaction}" method="post" class="mainForm">
<div class="widget first">
<div class="head closed active">
<h5>{#RUBRIK_START_CODE#}</h5>
</div>
<div style="display: block">
<table cellpadding="0" cellspacing="0" width="100%" class="tableStatic">
<col width="100%">
<thead>
<tr>
<td>{#RUBRIK_START_CODE#}</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="pr12">
<textarea name="rubric_start_code" type="text" id="rubric_start_code" value="" style="height:300px;" />{$code->rubric_start_code}</textarea>
</div>
</td>
</tr>
<tr>
<td>
{#RUBRIK_EDIT_CODE_LOAD_TIP#}
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="widget first">
<div class="head">
<h5>{#RUBRIK_CODE#}</h5>
</div>
<table cellpadding="0" cellspacing="0" width="100%" class="tableStatic">
<col width="50%">
<col width="50%">
<thead>
<tr>
<td>{#RUBRIK_CODE_START#}</td>
<td>{#RUBRIK_CODE_END#}</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="pr12">
<textarea name="rubric_code_start" type="text" id="rubric_code_start" value="" style="height:300px;" />{$code->rubric_code_start}</textarea>
</div>
</td>
<td>
<div class="pr12">
<textarea name="rubric_code_end" type="text" id="rubric_code_end" value="" style="height:300px;" />{$code->rubric_code_end}</textarea>
</div>
</td>
</tr>
<tr>
<td>
{#RUBRIK_EDIT_CODE_BEF_TIP#}
</td>
<td>
{#RUBRIK_EDIT_CODE_AFT_TIP#}
</td>
</tr>
</tbody>
</table>
<div class="rowElem" id="saveBtn">
<div class="saveBtn">
<input class="basicBtn" type="submit" value="{#RUBRIK_BUTTON_SAVE#}" />
&nbsp;
<input type="submit" class="blackBtn SaveEdit" value="{#RUBRIK_BUTTON_TPL_NEXT#}" />
</div>
</div>
</div>
</form>
{/if}
{include file="$codemirror_connect"}
{include file="$codemirror_editor" conn_id="rsc" textarea_id='rubric_start_code' ctrls='$("#code").ajaxSubmit(sett_options);' height=300}
{include file="$codemirror_editor" conn_id="rcs" textarea_id='rubric_code_start' ctrls='$("#code").ajaxSubmit(sett_options);' height=300}
{include file="$codemirror_editor" conn_id="rce" textarea_id='rubric_code_end' ctrls='$("#code").ajaxSubmit(sett_options);' height=300}
<script language="javascript">
var sett_options = {ldelim}
url: 'index.php?do=rubs&action=code&sub=save&Id={$smarty.request.Id|escape}&cp={$sess}',
dataType: 'json',
beforeSubmit: function(){ldelim}
$.alerts._overlay('show');
{rdelim},
success: function(data){ldelim}
$.jGrowl(data['message'], {ldelim}
header: data['header'],
theme: data['theme']
{rdelim});
$.alerts._overlay('hide');
{rdelim}
{rdelim}
$(document).ready(function(){ldelim}
Mousetrap.bind(['ctrl+s', 'command+s'], function(event) {ldelim}
event.preventDefault();
$("#code").ajaxSubmit(sett_options)
return false;
{rdelim});
$(".SaveEdit").click(function(event){ldelim}
event.preventDefault();
$("#code").ajaxSubmit(sett_options);
return false;
{rdelim});
{rdelim});
</script>