2013-07-13 13:00:46 +02:00
|
|
|
<% with $EditorToolbar %>
|
2011-03-23 10:51:00 +01:00
|
|
|
<div class="mceToolbarExternal" id="mce_editor_toolbar">
|
|
|
|
<table width="100%" border="0">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
|
2013-07-13 13:00:46 +02:00
|
|
|
<% loop $Buttons %>
|
|
|
|
<% if $Type = button %>
|
2011-03-23 10:51:00 +01:00
|
|
|
<a href="#$Command">
|
|
|
|
<img width="20" height="20" class="mceButtonNormal" title="$Title" alt="$Title" src="$Icon" id="mce_editor_$IDSegment" />
|
|
|
|
</a>
|
2013-07-13 13:00:46 +02:00
|
|
|
<% else_if $Type = dropdown %>
|
2011-03-23 10:51:00 +01:00
|
|
|
<select name="$Command" class="mceSelectList" id="mce_editor_$IDSegment">$Options</select>
|
2013-07-13 13:00:46 +02:00
|
|
|
<% else_if $Type = separator %>
|
2011-03-23 10:51:00 +01:00
|
|
|
<img width="1" height="15" class="mceSeparatorLine" src="{$MceRoot}themes/advanced/images/separator.gif" alt="|" />
|
2013-07-13 13:00:46 +02:00
|
|
|
<% else_if $Type = break %>
|
2011-03-23 10:51:00 +01:00
|
|
|
<br />
|
|
|
|
<% end_if %>
|
2012-05-11 03:49:20 +02:00
|
|
|
<% end_loop %>
|
2011-03-23 10:51:00 +01:00
|
|
|
|
|
|
|
<br />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
2012-05-11 03:49:20 +02:00
|
|
|
<% end_with %>
|