Lines Matching refs:data

73     public function render_lexer_enter(Doku_Renderer $renderer, $data)  argument
75 $classes = $this->buildClass($data, array('overlay', 'horizontal'));
76 …$styles = $this->buildStyle(array('height' => $data['height'] ?? '', 'width' => $data['width'] ?? …
80 …if($data['horizontal']) { $renderer->doc .= '<div class="' . $this->elemClass . ' ' . $this->class…
82 if(!empty($data['placeholder-text'])) {
83 … $data['placeholder-text'] ?? '', 'color' => $data['placeholder-color'] ?? '', 'text-color' => $da…
84 } elseif(!empty($data['image'])) {
86 if(!empty($data['image-height'])) {
87 $style = 'height:' . $data['image-height'] . ';';
89 …rer->doc .= '<img src="' . $data['image'] . '" class="' . $this->elemClass . ' ' . $this->classPre…
91 …if($data['horizontal']) { $renderer->doc .= '</div><div class="' . $this->elemClass . ' ' . $this-…
94 if(!empty($data['header'])) {
95 …, 'cardheader', $data['header'], $this->arrayRemoveEmpties(array('text-align' => $data['header-tex…
98data['no-body'] == false) { $this->syntaxRender($renderer, 'cardbody', '', $this->arrayRemoveEmpti…
101 if(!empty($data['title'])) {
102 …er, 'cardtitle', $data['title'], $this->arrayRemoveEmpties(array('text-align' => $data['title-text…
105 if(!empty($data['subtitle'])) {
106 …ardsubtitle', $data['subtitle'], $this->arrayRemoveEmpties(array('text-align' => $data['subtitle-t…
111 public function render_lexer_exit(Doku_Renderer $renderer, $data) argument
113 …if($data['no-body'] == false) { $this->syntaxRender($renderer, 'cardbody', '', null, MIKIO_LEXER_E…
116 if(!empty($data['footer'])) {
117data['footer'], $this->arrayRemoveEmpties(array('small' => $data['footer-small'] ?? '', 'text-alig…
120 if(!empty($data['footer-placeholder-text'])) {
121 …es(array('text' => $data['footer-placeholder-text'] ?? '', 'color' => $data['footer-placeholder-co…
122 } elseif(!empty($data['footer-image'])) {
123 …>doc .= '<img src="' . $data['footer-image'] . '" class="' . $this->elemClass . ' ' . $this->class…
126 if($data['horizontal']) { $renderer->doc .= '</div>';