* @copyright (C) 2015-2020, Giuseppe Di Terlizzi */ class syntax_plugin_bootswrapper_accordion extends syntax_plugin_bootswrapper_bootstrap { public $p_type = 'block'; public $pattern_start = '(?=.*?)'; public $pattern_end = ''; public $tag_name = 'accordion'; public $tag_attributes = array( 'id' => array( 'type' => 'string', 'values' => null, 'required' => true, 'default' => null), 'collapsed' => array( 'type' => 'boolean', 'values' => array(0, 1), '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, $pos, $attributes) = $data; if ($state == DOKU_LEXER_ENTER) { $html_attributes = $this->mergeCoreAttributes($attributes); $html_attributes['class'][] = 'bs-wrap bs-wrap-accordion panel-group'; if ($attributes['collapsed']) { $html_attributes['class'][] = 'bs-wrap-accordion-collapsed'; } $markup_attributes = $this->buildAttributes($html_attributes); $markup = "
"; $renderer->doc .= $markup; return true; } if ($state == DOKU_LEXER_EXIT) { $renderer->doc .= '
'; return true; } return true; } }