additional_plugins/serendipity_event_typesetbuttons/buttons/EmdashButton.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

41 lines
1.1 KiB
PHP

<?php
require_once 'Button.php';
/**
* Class EmdashButton
*/
class EmdashButton extends Button
{
/**
* Constructor
*
* @param string $textarea
*/
public function __construct($textarea)
{
parent::__construct($textarea);
$this->setName('insemd');
$this->setValue(PLUGIN_EVENT_TYPESETBUTTONS_EMDASH_BUTTON);
}
/**
* @return string
*/
public function render()
{
if ($this->isLegacyMode()) {
$this->addClass('serendipityPrettyButton');
$this->addClass('input_button');
if ($this->isUseNamedEnts()) {
$this->setOnClickEvent("wrapSelection(document.forms['serendipityEntry']['" . $this->getTextarea() . "'],'\\&mdash\\;','')");
} else {
$this->setOnClickEvent("wrapSelection(document.forms['serendipityEntry']['" . $this->getTextarea() . "'],'\\&\\#8212\\;','')");
}
} else {
$this->addClass('wrap_selection');
$this->setOpenTag('&mdash;');
}
return parent::render();
}
}