PluginProbe
CSS & JavaScript Toolbox / 8.0.2
CSS & JavaScript Toolbox v8.0.2
trunk 0.3 0.8 10 10.1 11 11.2 11.3 11.4 11.5 11.6 11.7 11.8 11.9 11.9.1 12 12.0 12.0.1 12.0.3 12.0.4 12.0.5 12.0.6 12.0.7 6.0 6.0.11 All 60 releases
css-javascript-toolbox / views / blocks / block / tmpl / codefile / codefile.html.tmpl

codefile.html.tmpl in CSS & JavaScript Toolbox 8.0.2, at views/blocks/block/tmpl/codefile/codefile.html.tmpl

46 lines 2.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <ul id="code-files-manager">
2 <li class="dialog-tool-buttons">
3 <a class="delete" href="#" title="<?php echo cssJSToolbox::getText('Delete all selected Code Files') ?>"><?php echo cssJSToolbox::getText('Delete') ?></a> |
4 <a class="close" href="#" title="<?php echo cssJSToolbox::getText('Close Code Files Manager Dialog') ?>"><?php echo cssJSToolbox::getText('Close') ?></a>
5 </li>
6 <li class="overlay"></li>
7 <li class="edit-code-file">
8 <input type="hidden" id="code-file-id" value="0" />
9 <fieldset>
10 <ul>
11 <li><label title="<?php echo cssJSToolbox::getText('Code File Name should be unique for each Block. Use simple names that describe fow what Code File is used for.') ?>" for="codef-file-name"><?php echo cssJSToolbox::getText('Name') ?></label><input id="code-file-name" type="text" /></li>
12 <li>
13 <label for="code-file-type" title="<?php echo cssJSToolbox::getText('Type tells CJT how to handle applying the Code File to the Associated Request. It also automatically switch Code Editor language for you.') ?>"><?php echo cssJSToolbox::getText('Type') ?></label>
14 <select id="code-file-type">
15 <option value=""></option>
16 <?php
17 // List template types.
18 $templateTypes =& cssJSToolbox::$config->templates->types;
19 foreach ($templateTypes as $typeName => $type) :
20 ?>
21 <option value="<?php echo $typeName ?>"><?php echo $typeName ?></option>
22 <?php endforeach; ?>
23 </select>
24 </li>
25 <li>
26 <label for="code-file-tag" title="<?php echo cssJSToolbox::getText('Its automatically generated when the Type is changed. In most cases you won\'t need to modify it manually, only change it when you know how to works. Please point out to CJT Web site documentation for more details about TAG field.') ?>"><?php echo cssJSToolbox::getText('Tag') ?></label>
27 <textarea id="code-file-tag"></textarea>
28 </li>
29 <li>
30 <label for="code-file-description" title="<?php echo cssJSToolbox::getText('Optionally Code File notes.') ?>"><?php echo cssJSToolbox::getText('Description') ?></label>
31 <textarea id="code-file-description"></textarea>
32 </li>
33 <li>
34 <input type="button" id="code-file-save-button" value="<?php echo cssJSToolbox::getText('Save') ?>" />
35 <input type="button" id="code-file-cancel-button" value="<?php echo cssJSToolbox::getText('Close') ?>" />
36 </li>
37 </ul>
38 </fieldset>
39 </li>
40 <li class="code-file-item create-file-row"><a class="create-file" href="#"><?php echo cssJSToolbox::getText('Create File') ?> ...</a></li>
41 <li class="separator"></li>
42 <li class="quick-toolbar">
43 <input type="checkbox" class="select-code-file"> |
44 <a class="edit" href="#"><?php echo cssJSToolbox::getText('Edit') ?></a>
45 </li>
46 </ul>