Add "buttonGenerate" event

This commit is contained in:
Dmitriy Simushev 2014-11-12 10:58:21 +00:00
parent c43fccf297
commit f82d42e729
5 changed files with 45 additions and 9 deletions

View File

@ -19,13 +19,15 @@
namespace Mibew\Button\Generator; namespace Mibew\Button\Generator;
use Mibew\EventDispatcher\EventDispatcher;
use Mibew\EventDispatcher\Events;
use Mibew\Routing\Generator\SecureUrlGeneratorInterface as RouteUrlGeneratorInterface; use Mibew\Routing\Generator\SecureUrlGeneratorInterface as RouteUrlGeneratorInterface;
use Mibew\Style\ChatStyle; use Mibew\Style\ChatStyle;
/** /**
* Contains base button generation functionality. * Contains base button generation functionality.
*/ */
abstract class AbstractGenerator abstract class AbstractGenerator implements GeneratorInterface
{ {
/** /**
* A routes URL generator. * A routes URL generator.
@ -73,6 +75,27 @@ abstract class AbstractGenerator
return isset($this->options[$name]) ? $this->options[$name] : $default; return isset($this->options[$name]) ? $this->options[$name] : $default;
} }
/**
* {@inheritdoc}
*/
public function generate()
{
$args = array(
'button' => $this->doGenerate(),
'generator' => $this,
);
EventDispatcher::getInstance()->triggerEvent(Events::BUTTON_GENERATE, $args);
return (string)$args['button'];
}
/**
* Really generates the button.
*
* @return \Canteen\HTML5\Fragment Button's markup.
*/
abstract protected function doGenerate();
/** /**
* Generates URL for the specified route. * Generates URL for the specified route.
* *

View File

@ -59,7 +59,7 @@ class ImageGenerator extends TextGenerator
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function generate() public function doGenerate()
{ {
$image_link_args = array( $image_link_args = array(
'i' => $this->getOption('image'), 'i' => $this->getOption('image'),
@ -88,7 +88,7 @@ class ImageGenerator extends TextGenerator
$button->addChild($this->getWidgetCode()); $button->addChild($this->getWidgetCode());
$button->addChild(HTML5\html('comment', '/ mibew button')); $button->addChild(HTML5\html('comment', '/ mibew button'));
return (string)$button; return $button;
} }
/** /**

View File

@ -24,12 +24,12 @@ use Canteen\HTML5;
/** /**
* Generates an Operator's Code field. * Generates an Operator's Code field.
*/ */
class OperatorCodeGenerator extends AbstractGenerator implements GeneratorInterface class OperatorCodeGenerator extends AbstractGenerator
{ {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function generate() public function doGenerate()
{ {
$form = HTML5\html('form'); $form = HTML5\html('form');
$form->setAttributes(array( $form->setAttributes(array(
@ -60,6 +60,6 @@ class OperatorCodeGenerator extends AbstractGenerator implements GeneratorInterf
$button->addChild($form); $button->addChild($form);
$button->addChild(HTML5\html('comment', '/ mibew operator code field')); $button->addChild(HTML5\html('comment', '/ mibew operator code field'));
return (string)$button; return $button;
} }
} }

View File

@ -24,19 +24,19 @@ use Canteen\HTML5;
/** /**
* Generates a Text button. * Generates a Text button.
*/ */
class TextGenerator extends AbstractGenerator implements GeneratorInterface class TextGenerator extends AbstractGenerator
{ {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function generate() public function doGenerate()
{ {
$button = HTML5\html('fragment'); $button = HTML5\html('fragment');
$button->addChild(HTML5\html('comment', 'mibew text link')); $button->addChild(HTML5\html('comment', 'mibew text link'));
$button->addChild($this->getPopup($this->getOption('caption'))); $button->addChild($this->getPopup($this->getOption('caption')));
$button->addChild(HTML5\html('comment', '/ mibew text link')); $button->addChild(HTML5\html('comment', '/ mibew text link'));
return (string)$button; return $button;
} }
/** /**

View File

@ -54,6 +54,19 @@ final class Events
*/ */
const BAN_DELETE = 'banDelete'; const BAN_DELETE = 'banDelete';
/**
* A button is generated.
*
* This event is triggered after a button has been deleted. An associative
* array with the following items is passed to the event handlers:
* - "button": an instance of {@link \Canteen\HTML5\Fragment} which
* represents markup of the button.
* - "generator": an instance of
* {@link \Mibew\Button\Generator\GeneratorInterface} which is used for
* button generation.
*/
const BUTTON_GENERATE = 'buttonGenerate';
/** /**
* Cron is run. * Cron is run.
* *