Lines Matching refs:R
23 function render($mode, Doku_Renderer $R, $data) {
26 $R->listu_open();
27 $R->listitem_open(1);
28 $R->listcontent_open();
29 $this->displayError($mode, $R, $data);
30 $R->listcontent_close();
31 $R->listitem_close();
32 $R->listu_close();
45 $R->listu_open();
46 $R->listitem_open(1);
47 $R->listcontent_open();
48 $R->emphasis_open();
49 $R->cdata(sprintf($this->helper->getLang('content_error_explanation'),'Strata list'));
50 $R->emphasis_close();
51 $R->listcontent_close();
52 $R->listitem_close();
53 $R->listu_close();
76 $this->ui_container_open($mode, $R, $data, array('strata-container', 'strata-container-list'));
78 $this->util->renderCaptions($mode, $R, $fields);
80 $R->listu_open();
86 $R->doc .= '<li class="level1 strata-item" data-strata-order="'.($itemcount++).'">'.DOKU_LF;
88 $R->listitem_open(1);
90 $R->listcontent_open();
97 if($fieldCount>1) $R->cdata('; ');
98 if($fieldCount==1) $R->cdata(' (');
99 $this->util->renderField($mode, $R, $this->triples, $values, $f['typeName'], $f['hint'], $f['type'], $f['variable']);
103 if($fieldCount>1) $R->cdata(')');
105 $R->listcontent_close();
107 $R->doc.= '</li>'.DOKU_LF;
109 $R->listitem_close();
114 $R->listu_close();
115 $this->ui_container_close($mode, $R);
122 $this->util->renderField($mode, $R, $this->triples, $f['aggregate']->aggregate($row[$f['variable']],$f['aggregateHint']), $f['typeName'], $f['hint'], $f['type'], $f['variable']);