mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
6561b9be04
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@57766 467b73ca-7a2a-4603-9d3b-597d59a354a9
36 lines
976 B
Scheme
Executable File
36 lines
976 B
Scheme
Executable File
<% control EditorToolbar %>
|
|
<div class="mceToolbarExternal" id="mce_editor_toolbar">
|
|
<table width="100%" border="0">
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<!--
|
|
<a title="Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X" accesskey="q" href="#">
|
|
</a>
|
|
-->
|
|
|
|
<% control Buttons %>
|
|
<% if Type = button %>
|
|
<a href="#$Command">
|
|
<img width="20" height="20" class="mceButtonNormal" title="$Title" alt="$Title" src="$Icon" id="mce_editor_$IDSegment" />
|
|
</a>
|
|
<% else_if Type = dropdown %>
|
|
<select name="$Command" class="mceSelectList" id="mce_editor_$IDSegment">$Options</select>
|
|
<% else_if Type = separator %>
|
|
<img width="1" height="15" class="mceSeparatorLine" src="{$MceRoot}themes/advanced/images/separator.gif" alt="|" />
|
|
<% else_if Type = break %>
|
|
<br />
|
|
<% end_if %>
|
|
<% end_control %>
|
|
|
|
<br />
|
|
<!--<a onfocus="tinyMCE.getInstanceById('mce_editor_0').getWin().focus();" accesskey="z" href="#">
|
|
</a>-->
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<% end_control %>
|