additional_plugins/serendipity_event_typesetbuttons/buttons/StrikeButton.php
Matthias Gutjahr 51710d37e9 Complete refactoring of serendipity_event_typesetbuttons
- Add new syntax for s9y 2.0
- Add button classes
- Add unit tests
2014-04-25 10:12:17 +02:00

47 lines
1.2 KiB
PHP

<?php
require_once 'Button.php';
/**
* Class button
*/
class StrikeButton extends Button
{
/**
* Constructor
*
* @param string $textarea
*/
public function __construct($textarea)
{
parent::__construct($textarea);
$this->setName('insstrike');
$this->setValue(PLUGIN_EVENT_TYPESETBUTTONS_STRIKE_BUTTON);
}
/**
* @return string
*/
public function render()
{
if ($this->isLegacyMode()) {
$this->addClass('serendipityPrettyButton');
$this->addClass('input_button');
if ($this->isXhtml11()) {
$this->setOnClickEvent(
"wrapSelection(document.forms['serendipityEntry']['" . $this->getTextarea() . "'],'<del>','</del>')"
);
} else {
$this->setOnClickEvent(
"wrapSelection(document.forms['serendipityEntry']['" . $this->getTextarea() . "'],'<s>','</s>')"
);
}
} else {
$this->addClass('wrap_selection');
$this->addClass('lang-html');
$this->setOpenTag('p style=\'text-decoration: line-through;\'');
$this->setCloseTag('p');
}
return parent::render();
}
}