mirror of https://github.com/avecms/AVE.cms.git
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.
203 lines
6.1 KiB
203 lines
6.1 KiB
<script type="text/javascript"> |
|
$sid = parseInt('{$sid}'); |
|
$sess = '{$sess}'; |
|
|
|
var clipboard = new Clipboard('.copyBtn'); |
|
</script> |
|
|
|
<div class="title"> |
|
<h5>{#BLOCK_INSERT_H#}</h5> |
|
</div> |
|
|
|
<div class="widget" style="margin-top: 0px;"> |
|
<div class="body"> {#BLOCK_INSERT#} </div> |
|
</div> |
|
|
|
<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=blocks&cp={$sess}" title="">{#BLOCK_LIST_LINK#}</a> |
|
</li> |
|
<li>{if $smarty.request.id != ''}{#BLOCK_EDIT_H#}{else}{#BLOCK_INSERT_H#}{/if}</li> |
|
<li><strong class="code">{if $smarty.request.id != ''}{$block_name|escape}{else}{$smarty.request.block_name}{/if}</strong></li> |
|
</ul> |
|
</div> |
|
</div> |
|
|
|
<form id="block" action="index.php?do=blocks&action=save&cp={$sess}" method="post" class="mainForm"> |
|
<div class="widget first"> |
|
<div class="head"> |
|
<h5 class="iFrames">{if $smarty.request.id != ''}{#BLOCK_EDIT_H#}{else}{#BLOCK_INSERT_H#}{/if}</h5> |
|
</div> |
|
<table cellpadding="0" cellspacing="0" width="100%" class="tableStatic"> |
|
<col width="300"> |
|
<col width="300"> |
|
<col width="300"> |
|
<col> |
|
<tr class="noborder"> |
|
<td><strong>{#BLOCK_NAME#}</strong></td> |
|
<td colspan="3"> |
|
<div class="pr12"> |
|
<input name="block_name" class="mousetrap" type="text" value="{if $smarty.request.id != ''}{$block_name|escape}{else}{$smarty.request.block_name}{/if}" /> |
|
</div> |
|
</td> |
|
</tr> |
|
<tr> |
|
<td>{#BLOCK_DESCRIPTION#}</td> |
|
<td colspan="3"> |
|
<input name="block_description" type="text" id="block_description" value="{if $smarty.request.id != ''}{$block_description|escape}{else}{$smarty.request.block_description}{/if}" placeholder="{#BLOCK_DESCRIPTION#}"> |
|
</td> |
|
</tr> |
|
<tr> |
|
<td> |
|
<div class="nowrap"> |
|
<strong><a class="toprightDir" title="{#BLOCK_I#}">[?]</a></strong> {#BLOCK_ALIAS#}: |
|
</div> |
|
</td> |
|
<td colspan="3"> |
|
<div class="pr12"> |
|
<input type="text" name="block_alias" id="block_alias" value="{if $smarty.request.id != ''}{$block_alias|escape}{else}{$smarty.request.block_alias}{/if}" class="mousetrap" data-accept="{#BLOCK_ACCEPT#}" data-error-syn="{#BLOCK_ER_SYN#}" data-error-exists="{#BLOCK_ER_EXISTS#}" placeholder="{#BLOCK_ALIAS#}" maxlength="20" style="width: 200px;" autocomplete="off" /> |
|
<input type="text" id="block_alias_tag" value="[tag:block:{if $smarty.request.id != ''}{$block_alias|escape}{else}{$smarty.request.block_alias}{/if}]" readonly size="40" class="mousetrap" style="width: 200px;" /> |
|
<a style="text-align: center; padding: 5px 3px 4px 3px;" class="whiteBtn copyBtn" href="javascript:void(0);" data-clipboard-action="copy" data-clipboard-target="#block_alias_tag"> |
|
<img style="margin-top: -3px; position: relative; top: 4px; padding: 0 3px;" class="clippy" src="{$ABS_PATH}admin/templates/images/clippy.svg" width="13"> |
|
</a> |
|
</div> |
|
</td> |
|
</tr> |
|
</table> |
|
</div> |
|
<div class="widget first"> |
|
<div class="head"> |
|
<h5 class="iFrames">{#BLOCK_HTML#}</h5> |
|
</div> |
|
<table cellpadding="0" cellspacing="0" width="100%" class="tableStatic"> |
|
<tbody> |
|
<tr> |
|
<td> |
|
{$block_text} |
|
</td> |
|
</tr> |
|
</tbody> |
|
</table> |
|
|
|
<div class="rowElem" id="saveBtn"> |
|
<div class="saveBtn"> |
|
{if $smarty.request.id != ''} |
|
<input type="hidden" name="id" value="{$id}"> |
|
<input name="submit" type="submit" class="basicBtn" value="{#BLOCK_SAVEDIT#}" /> |
|
{else} |
|
<input name="submit" type="submit" class="basicBtn" value="{#BLOCK_SAVE#}" /> |
|
{/if} |
|
|
|
{if $smarty.request.action == 'edit'} |
|
<input type="submit" class="blackBtn SaveEdit" name="next_edit" value="{#BLOCK_SAVEDIT_NEXT#}" /> |
|
{/if} |
|
</div> |
|
</div> |
|
|
|
</div> |
|
</form> |
|
{literal} |
|
<script> |
|
$(document).on('change', '#block_alias', function (event) { |
|
|
|
var input = $(this); |
|
var alias = input.val(); |
|
|
|
if (alias > '') { |
|
$.ajax({ |
|
url: 'index.php?do=blocks&action=alias&cp=' + $sess, |
|
data: { |
|
alias: alias, |
|
id: $sid |
|
}, |
|
success: function (data) { |
|
if (data === '1') { |
|
$.jGrowl(input.attr('data-accept'), {theme: 'accept'}); |
|
} |
|
else if (data === 'syn') { |
|
$.jGrowl(input.attr('data-error-syn'), {theme: 'error'}); |
|
alias = $sid ? $sid : ''; |
|
} |
|
else { |
|
$.jGrowl(input.attr('data-error-exists'), {theme: 'error'}); |
|
alias = $sid ? $sid : ''; |
|
} |
|
$('#block_alias_tag').val('[tag:block:' + alias + ']'); |
|
} |
|
}); |
|
} |
|
else { |
|
alias = $sid ? $sid : ''; |
|
$('#block_alias_tag').val('[tag:block:' + alias + ']'); |
|
} |
|
|
|
return false; |
|
}); |
|
</script> |
|
{/literal} |
|
|
|
{if $smarty.request.action != 'new'} |
|
<script language="javascript"> |
|
|
|
var sett_options = {ldelim} |
|
url: 'index.php?do=blocks&action=save&cp={$sess}', |
|
beforeSubmit: Request, |
|
dataType: 'json', |
|
success: Response |
|
{rdelim} |
|
|
|
function Request(){ldelim} |
|
$.alerts._overlay('show'); |
|
{rdelim} |
|
|
|
function Response(data){ldelim} |
|
$.alerts._overlay('hide'); |
|
$.jGrowl(data['message'], {ldelim} |
|
header: data['header'], |
|
theme: data['theme'] |
|
{rdelim}); |
|
{rdelim} |
|
|
|
function SaveAjax () {ldelim} |
|
if (window.CKEDITOR) for(var instanceName in CKEDITOR.instances) CKEDITOR.instances[instanceName].updateElement(); |
|
{if $smarty.request.action=='edit'} |
|
$('#block').ajaxSubmit(sett_options); |
|
{else} |
|
$('#block').submit(); |
|
{/if} |
|
{rdelim} |
|
|
|
$(document).ready(function(){ldelim} |
|
|
|
Mousetrap.bind(['ctrl+s', 'command+s'], function(event) {ldelim} |
|
event.preventDefault(); |
|
if (window.CKEDITOR) for(var instanceName in CKEDITOR.instances) CKEDITOR.instances[instanceName].updateElement(); |
|
SaveAjax(); |
|
return false; |
|
{rdelim}); |
|
|
|
$('.SaveEdit').click(function (event) {ldelim} |
|
event.preventDefault(); |
|
if (window.CKEDITOR) for(var instanceName in CKEDITOR.instances) CKEDITOR.instances[instanceName].updateElement(); |
|
SaveAjax(); |
|
return false; |
|
{rdelim}); |
|
|
|
{literal} |
|
window.onload = function(){ |
|
if (window.CKEDITOR) { |
|
CKEDITOR.on('instanceReady', function (event) { |
|
event.editor.setKeystroke(CKEDITOR.CTRL + 83 /*S*/, 'savedoc'); |
|
}); |
|
} |
|
} |
|
{/literal} |
|
|
|
{rdelim}); |
|
</script> |
|
{/if} |