Initial project files: BESCMS full source
This commit is contained in:
@@ -0,0 +1,102 @@
|
||||
{template "header.html"}
|
||||
|
||||
|
||||
<div class="note note-danger" id="table-search-tool">
|
||||
<div class="row table-search-tool">
|
||||
<form action="{SELF}" method="get">
|
||||
{dr_form_search_hidden()}
|
||||
<div class="col-md-12 col-sm-12">
|
||||
<label>
|
||||
<select name="field" class="form-control">
|
||||
<option value="id"> Id </option>
|
||||
{loop $field $t}
|
||||
{if $t.ismain}
|
||||
<option value="{$t.fieldname}" {if $param.field==$t.fieldname}selected{/if}>{$t.name}</option>
|
||||
{/if}
|
||||
{/loop}
|
||||
</select>
|
||||
</label>
|
||||
<label><i class="fa fa-caret-right"></i></label>
|
||||
<label><input type="text" class="form-control" placeholder="" value="{$param['keyword']}" name="keyword" /></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-12 col-sm-12">
|
||||
<button type="submit" class="btn blue btn-sm onloading" name="submit" > <i class="fa fa-search"></i> {dr_lang('搜索')}</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="right-card-box">
|
||||
|
||||
|
||||
<form class="form-horizontal" role="form" id="myform">
|
||||
{dr_form_hidden()}
|
||||
<div class="table-scrollable">
|
||||
<table class="table table-striped table-bordered table-hover table-checkable dataTable">
|
||||
<thead>
|
||||
<tr class="heading">
|
||||
{if $ci->_is_admin_auth('del')}
|
||||
<th class="myselect">
|
||||
<label class="mt-table mt-checkbox mt-checkbox-single mt-checkbox-outline">
|
||||
<input type="checkbox" class="group-checkable" data-set=".checkboxes" />
|
||||
<span></span>
|
||||
</label>
|
||||
</th>
|
||||
{/if}
|
||||
<th style="text-align:center" width="90" class="{dr_sorting('id')}" name="id">{dr_lang('Id')}</th>
|
||||
<th width="60" style="text-align:center"> {dr_lang('状态')} </th>
|
||||
<th style="text-align:center" width="80">{dr_lang('类型')}</th>
|
||||
<th width="200" class="{dr_sorting('code')}" name="code">{dr_lang('别名')}</th>
|
||||
<th class="{dr_sorting('name')}" name="name">{dr_lang('名称')}</th>
|
||||
<th>{dr_lang('操作')}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{loop $list $t}
|
||||
<tr class="odd gradeX" id="dr_row_{$t.id}">
|
||||
{if $ci->_is_admin_auth('del')}
|
||||
<td class="myselect">
|
||||
<label class="mt-table mt-checkbox mt-checkbox-single mt-checkbox-outline">
|
||||
<input type="checkbox" class="checkboxes" name="ids[]" value="{$t.id}" />
|
||||
<span></span>
|
||||
</label>
|
||||
</td>
|
||||
{/if}
|
||||
<td style="text-align:center"> {$t.id} </td>
|
||||
<td style="text-align:center">
|
||||
<a href="javascript:;" onclick="dr_ajax_open_close(this, '{dr_url(APP_DIR.'/home/hidden_edit', ['id'=>$t.id])}', 1);" class="badge badge-{if $t.hide}no{else}yes{/if}"><i class="fa fa-{if $t.no}times{else}check{/if}"></i></a>
|
||||
</td>
|
||||
<td style="text-align:center"> {$type[$t['i']]} </td>
|
||||
<td>{$t.code}</td>
|
||||
<td>{$t.name}</td>
|
||||
<td>
|
||||
{if $ci->_is_admin_auth('edit')}
|
||||
<label><a href="{dr_url($uriprefix.'/edit', ['id'=>$t.id])}" class="btn btn-xs green"> <i class="fa fa-edit"></i> {dr_lang('修改')}</a></label>
|
||||
{/if}
|
||||
<label><a href="javascript:dr_iframe_show('code', '{dr_url($uriprefix.'/show_index', ['id'=>$t.id])}', '400px', '50%');" class="btn btn-xs dark"> <i class="fa fa-code"></i> {dr_lang('调用代码')}</a></label>
|
||||
</td>
|
||||
</tr>
|
||||
{/loop}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="row fc-list-footer table-checkable ">
|
||||
<div class="col-md-5 fc-list-select">
|
||||
{if $ci->_is_admin_auth('del')}
|
||||
<label class="mt-table mt-checkbox mt-checkbox-single mt-checkbox-outline">
|
||||
<input type="checkbox" class="group-checkable" data-set=".checkboxes" />
|
||||
<span></span>
|
||||
</label>
|
||||
<button type="button" onclick="dr_ajax_option('{dr_url($uriprefix.'/del')}', '{dr_lang('你确定要删除它们吗?')}', 1)" class="btn red btn-sm"> <i class="fa fa-trash"></i> {dr_lang('删除')}</button>
|
||||
{/if}
|
||||
</div>
|
||||
<div class="col-md-7 fc-list-page">
|
||||
{$mypages}
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
|
||||
{template "footer.html"}
|
||||
@@ -0,0 +1,65 @@
|
||||
{template "header.html"}
|
||||
<div class="note note-danger">
|
||||
<p><a href="javascript:dr_update_cache('block', 'system');">{dr_lang('更改数据之后需要更新缓存之后才能生效')}</a></p>
|
||||
</div>
|
||||
<script type="application/javascript">
|
||||
$(function(){
|
||||
dr_set_value({intval($i)});
|
||||
});
|
||||
function dr_set_value(i) {
|
||||
$('#dr_row_value_0').hide();
|
||||
$('#dr_row_value_1').hide();
|
||||
$('#dr_row_value_2').hide();
|
||||
$('#dr_row_value_3').hide();
|
||||
$('#dr_row_value_4').hide();
|
||||
$('#dr_row_value_'+i).show();
|
||||
}
|
||||
</script>
|
||||
<form action="" class="form-horizontal" method="post" name="myform" id="myform">
|
||||
{$form}
|
||||
<div class="portlet bordered light myfbody">
|
||||
<div class="portlet-title">
|
||||
<div class="caption">
|
||||
<span class="caption-subject font-green-sharp">
|
||||
{dr_lang('自定义资料')}
|
||||
</span>
|
||||
</div>
|
||||
<div class="actions">
|
||||
<div class="btn-group">
|
||||
<a class="btn" href="{$reply_url}"> <i class="fa fa-mail-reply"></i> {dr_lang('返回')}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="portlet-body">
|
||||
<div class="form-body">
|
||||
|
||||
{$myfield}
|
||||
<div class="form-group {if $id}dr_block_type_html{/if}">
|
||||
<label class="col-md-2 control-label">{dr_lang('类别')}</label>
|
||||
<div class="col-md-9">
|
||||
<div class="mt-radio-inline">
|
||||
{loop $type $ii $name}
|
||||
<label class="mt-radio">
|
||||
<input onclick="dr_set_value({$ii})" {if $ii==$i}checked{/if} name="type" type="radio" value="{$ii}"> {$name}
|
||||
<span></span>
|
||||
</label>
|
||||
{/loop}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{$diyfield}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="portlet-body form myfooter">
|
||||
<div class="form-actions text-center">
|
||||
<button type="button" onclick="dr_ajax_submit('{dr_now_url()}', 'myform', '2000')" class="btn green"> <i class="fa fa-save"></i> {dr_lang('保存内容')}</button>
|
||||
<button type="button" onclick="dr_ajax_submit('{dr_now_url()}', 'myform', '2000', '{$post_url}')" class="btn green"> <i class="fa fa-plus"></i> {dr_lang('保存再添加')}</button>
|
||||
<button type="button" onclick="dr_ajax_submit('{dr_now_url()}', 'myform', '2000', '{$reply_url}')" class="btn yellow"> <i class="fa fa-mail-reply-all"></i> {dr_lang('保存并返回')}</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
{template "footer.html"}
|
||||
@@ -0,0 +1,59 @@
|
||||
{template "header.html"}
|
||||
|
||||
<form class="form-horizontal" method="post" role="form" id="myform">
|
||||
|
||||
<div class="form-body">
|
||||
|
||||
|
||||
<link href="{THEME_PATH}assets/global/plugins/codemirror/lib/codemirror.css" rel="stylesheet" type="text/css" />
|
||||
<link href="{THEME_PATH}assets/global/plugins/codemirror/theme/neat.css" rel="stylesheet" type="text/css" />
|
||||
<link href="{THEME_PATH}assets/global/plugins/codemirror/theme/ambiance.css" rel="stylesheet" type="text/css" />
|
||||
<link href="{THEME_PATH}assets/global/plugins/codemirror/theme/material.css" rel="stylesheet" type="text/css" />
|
||||
<link href="{THEME_PATH}assets/global/plugins/codemirror/theme/neo.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
<script src="{THEME_PATH}assets/global/plugins/codemirror/lib/codemirror.js" type="text/javascript"></script>
|
||||
<script src="{THEME_PATH}assets/global/plugins/codemirror/mode/javascript/javascript.js" type="text/javascript"></script>
|
||||
<script src="{THEME_PATH}assets/global/plugins/codemirror/mode/htmlmixed/htmlmixed.js" type="text/javascript"></script>
|
||||
<script src="{THEME_PATH}assets/global/plugins/codemirror/mode/css/css.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
var ComponentsCodeEditors = function () {
|
||||
|
||||
var handleDemo1 = function () {
|
||||
var myTextArea = document.getElementById('code_editor_demo_1');
|
||||
var myCodeMirror = CodeMirror.fromTextArea(myTextArea, {
|
||||
lineNumbers: false,
|
||||
matchBrackets: true,
|
||||
styleActiveLine: true,
|
||||
theme:"neo",
|
||||
mode: 'css',
|
||||
readOnly: true
|
||||
});
|
||||
}
|
||||
|
||||
return {
|
||||
//main function to initiate the module
|
||||
init: function () {
|
||||
handleDemo1();
|
||||
}
|
||||
};
|
||||
|
||||
}();
|
||||
|
||||
jQuery(document).ready(function() {
|
||||
ComponentsCodeEditors.init();
|
||||
});
|
||||
</script>
|
||||
<div class="form-group ">
|
||||
<div class="col-xs-12">
|
||||
<textarea id="code_editor_demo_1">{$code}</textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<style>
|
||||
.CodeMirror {
|
||||
height:180px;
|
||||
}
|
||||
</style>
|
||||
{template "footer.html"}
|
||||
@@ -0,0 +1,21 @@
|
||||
{template "header.html"}
|
||||
|
||||
<form action="" class="form-horizontal" method="post" name="myform" id="myform">
|
||||
{$form}
|
||||
<div class="form-body">
|
||||
<div class="form-group">
|
||||
<label class="col-md-2 control-label">{dr_lang('文件存储策略')}</label>
|
||||
<div class="col-md-9">
|
||||
<label><select class="form-control" name="data[file]">
|
||||
<option value="0"> {dr_lang('默认存储')} </option>
|
||||
{loop $remote $i $t}
|
||||
<option value="{$i}" {php echo ($i == $data['file'] ? 'selected' : '');}> {dr_lang($t['name'])} </option>
|
||||
{/loop}
|
||||
</select></label>
|
||||
<span class="help-block">资料中的文件存储位置选择</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
{template "footer.html"}
|
||||
Reference in New Issue
Block a user