| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
- <?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
- <?php include $app->getModuleRoot() . 'common/view/markdown.html.php';?>
- <?php
- $content = $template->type == 'html' ? $template->content : '';
- $markdown = $template->type == 'markdown' ? $template->content : '';
- $url = $template->type == 'url' ? $template->content : '';
- ?>
- <div id="mainContent" class="main-content fade">
- <div class="center-block">
- <div class="main-header">
- <h2><?php echo $lang->baseline->editTemplate;?></h2>
- </div>
- <form class="load-indicator main-form form-ajax" method='post' enctype='multipart/form-data' id='dataform'>
- <table class="table table-form">
- <tbody>
- <tr>
- <th class='w-110px'><?php echo $lang->baseline->templateType;?></th>
- <td><?php echo html::select('templateType', $lang->baseline->objectList, $template->templateType, "class='form-control chosen'");?></td>
- </tr>
- <tr>
- <th class='w-110px'><?php echo $lang->baseline->templateTitle;?></th>
- <td><?php echo html::input('title', $template->title, "class='form-control'");?></td>
- <td></td>
- </tr>
- <tr>
- <th class='w-110px'><?php echo $lang->baseline->docType;?></th>
- <?php if($template->type == 'url') $lang->baseline->docTypeList['url'] = $lang->baseline->urlDoc;?>
- <td><?php echo html::radio('type', $lang->baseline->docTypeList, $template->type, "onchange=toggleEditor(this.value)");?></td>
- </tr>
- <tr id='contentBox'>
- <th class='w-110px'><?php echo $lang->baseline->docContent;?></th>
- <td colspan='2'>
- <div class='contenthtml'><?php echo html::textarea('content', $content, "style='width:100%;height:200px'");?></div>
- <div class='contentmarkdown hidden'><?php echo html::textarea('contentMarkdown', $markdown, "style='width:100%;height:200px'");?></div>
- <?php echo html::hidden('contentType', $template->type);?>
- </td>
- </tr>
- <tr id='urlBox' class='hidden'>
- <th><?php echo $lang->baseline->url;?></th>
- <td colspan='2'><?php echo html::input('url', $url, "class='form-control'");?></td>
- </tr>
- <tr>
- <td colspan='3' class='text-center form-actions'>
- <?php echo html::submitButton() . ' ' . html::backButton();?>
- </td>
- </tr>
- </tbody>
- </table>
- </form>
- </div>
- </div>
- <script>
- function toggleEditor(type)
- {
- if(type == 'html')
- {
- $('#contentBox').removeClass('hidden');
- $('#urlBox').addClass('hidden');
- $('.contenthtml').removeClass('hidden');
- $('.contentmarkdown').addClass('hidden');
- }
- else if(type == 'markdown')
- {
- $('#contentBox').removeClass('hidden');
- $('#urlBox').addClass('hidden');
- $('.contenthtml').addClass('hidden');
- $('.contentmarkdown').removeClass('hidden');
- }
- else if(type == 'url')
- {
- $('#contentBox').addClass('hidden');
- $('#urlBox').removeClass('hidden');
- }
- else if(type == 'book')
- {
- $('#contentBox').addClass('hidden');
- $('#urlBox').addClass('hidden');
- }
- $('#contentType').val(type);
- return false;
- }
- toggleEditor($('input[name="type"]:checked').val());
- </script>
- <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>
|