1<?php 2/** 3 * Mikio Syntax Plugin: Carousel 4 * 5 * @link http://github.com/nomadjimbob/mikioplugin 6 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 7 * @author James Collins <james.collins@outlook.com.au> 8 */ 9if (!defined('DOKU_INC')) die(); 10if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); 11require_once(dirname(__FILE__).'/core.php'); 12 13class syntax_plugin_mikioplugin_carousel extends syntax_plugin_mikioplugin_core { 14 public $tag = 'carousel'; 15 public $hasEndTag = true; 16 public $options = array( 17 'transition' => array('type' => 'choice', 18 'data' => array('slide', 'fade'), 19 'default' => ''), 20 'indicators' => array('type' => 'boolean', 'default' => 'true'), 21 'controls' => array('type' => 'boolean', 'default' => 'true'), 22 'start' => array('type' => 'boolean', 'default' => 'false'), 23 'cover' => array('type' => 'boolean', 'default' => 'false'), 24 ); 25 26 public function __construct() { 27 $this->addCommonOptions('height'); 28 } 29 30 31 public function render_lexer_enter(Doku_Renderer $renderer, $data) { 32 $classes = $this->buildClass($data, array('transition')); 33 $styles = $this->buildStyle(array('height' => $data['height']), TRUE); 34 35 $renderer->doc .= '<div class="' . $this->elemClass . ' ' . $this->classPrefix . 'carousel' . ($data['cover'] ? ' ' . $this->classPrefix . 'image-cover' : '') . $classes . '" data-auto-start="' . ($data['start'] ? 'true' : 'false') . '"' . $styles . '>'; 36 $renderer->doc .= '<div class="' . $this->elemClass . ' ' . $this->classPrefix . 'carousel-inner">'; 37 } 38 39 40 public function render_lexer_exit(Doku_Renderer $renderer, $data) { 41 $renderer->doc .= '</div>'; 42 43 if($data['controls'] === TRUE) { 44 $renderer->doc .= '<a href="#" class="' . $this->elemClass . ' ' . $this->classPrefix . 'carousel-control ' . $this->classPrefix . 'carousel-control-prev" role="button"></a>'; 45 $renderer->doc .= '<a href="#" class="' . $this->elemClass . ' ' . $this->classPrefix . 'carousel-control ' . $this->classPrefix . 'carousel-control-next" role="button"></a>'; 46 } 47 48 if($data['indicators'] === TRUE) { 49 $renderer->doc .= '<ul class="' . $this->elemClass . ' ' . $this->classPrefix . 'carousel-indicators"></ul>'; 50 } 51 52 $renderer->doc .= '</div>'; 53 } 54} 55?>