* @copyright (C) 2015-2020, Giuseppe Di Terlizzi */ class syntax_plugin_bootswrapper_alert extends syntax_plugin_bootswrapper_bootstrap { public $p_type = 'block'; public $pattern_start = '<(?:ALERT|alert).*?>(?=.*?(?:ALERT|alert)>)'; public $pattern_end = '(?:ALERT|alert)>'; public $tag_name = 'alert'; public $tag_attributes = array( 'type' => array( 'type' => 'string', 'values' => array('success', 'info', 'warning', 'danger'), 'required' => true, 'default' => 'info'), 'dismiss' => array( 'type' => 'boolean', 'values' => array(0, 1), 'required' => false, 'default' => false), 'icon' => array( 'type' => 'string', 'values' => null, 'required' => false, 'default' => null), ); public function render($mode, Doku_Renderer $renderer, $data) { if (empty($data)) { return false; } if ($mode !== 'xhtml') { return false; } /** @var Doku_Renderer_xhtml $renderer */ list($state, $match, $pos, $attributes) = $data; if ($state == DOKU_LEXER_ENTER) { extract($attributes); $html_attributes = $this->mergeCoreAttributes($attributes); $html_attributes['class'][] = 'bs-wrap alert'; $html_attributes['class'][] = "alert-$type"; $html_attributes['role'] = 'alert'; if ($dismiss) { $html_attributes['class'][] = 'alert-dismissible'; } $markup = '