1<?php if($isOverridden): ?> 2 3 <img src="<?php echo DOKU_PLUGIN_ICONS.'delete_disabled.png' ?>" 4 alt="<?php echo hsc($helper->getLang('disable_action')) ?>" 5 title="<?php echo hsc($helper->getLang('disable_action_tooltip_disabled')) ?>" /> 6 7<?php else : ?> 8 9 <a class="disableButton clickable"> 10 <img 11 src="<?php echo DOKU_PLUGIN_ICONS.'delete.png'?>" 12 alt="<?php echo hsc($helper->getLang('disable_action')) ?>" 13 title="<?php echo hsc($helper->getLang('disable_action_tooltip')) ?>" 14 /> 15 </a> 16 17<?php endif ?> 18 19 20 21