1<?php
2/**
3 * Dummy Renderer
4 *
5 */
6if(!defined('DOKU_INC')) die('meh.');
7
8/**
9 * Dummy Renderer
10 */
11class MultiOrphanDummyRenderer extends Doku_Renderer_xhtml {
12
13    /** @var array list of allowed URL schemes */
14    public $instructions = array();
15
16    /**
17    * handle nested render instructions
18    * this method (and nest_close method) should not be overloaded in actual renderer output classes
19    *
20    * @param array $instructions
21    */
22    function nest($instructions) {
23        $this->instructions = array_merge($this->instructions, $instructions);
24    }
25
26    /**
27    * dummy closing instruction issued by Doku_Handler_Nest
28    *
29    * normally the syntax mode should override this instruction when instantiating Doku_Handler_Nest -
30    * however plugins will not be able to - as their instructions require data.
31    */
32    function nest_close() {
33        $this->instructions = array();
34    }
35}
36
37//Setup VIM: ex: et ts=4 :
38