Lines Matching refs:R

245     function render($mode, Doku_Renderer $R, $data) {
255 if($mode == 'xhtml') { $R->doc .= '<div class="strata-entry" '.(isset($currentPosition)?'id="'.$currentPosition.'"':'').'>'; }
256 if($mode == 'odt' && isset($currentPosition) && method_exists ($R, 'insertBookmark')) {
257 $R->insertBookmark($currentPosition, false);
259 $R->table_open();
260 $R->tablerow_open();
261 $R->tableheader_open(2);
282 $R->cdata($heading);
286 $R->emphasis_open();
287 $R->cdata(' (');
289 $this->util->openField($mode, $R, $this->util->getIsaKey());
292 if($i!=0) $R->cdata(', ');
294 $this->util->renderValue($mode, $R, $this->triples, $triple['value'], $triple['type'], $type, $triple['hint']);
296 $this->util->closeField($mode, $R);
297 $R->cdata(')');
298 $R->emphasis_close();
300 $R->tableheader_close();
301 $R->tablerow_close();
309 $R->tablerow_open();
310 $R->tableheader_open();
311 $this->util->renderPredicate($mode, $R, $this->triples, $key);
312 $R->tableheader_close();
315 $R->tablecell_open();
316 $this->util->openField($mode, $R, $key);
319 if($i!=0) $R->cdata(', ');
320 $this->util->renderValue($mode, $R, $this->triples, $triple['value'], $triple['type'], $triple['hint']);
322 $this->util->closeField($mode, $R);
323 $R->tablecell_close();
324 $R->tablerow_close();
328 $R->tablerow_open();
329 $R->tableheader_open(2);
331 if($mode == 'xhtml') { $R->doc .= '<span class="strata-data-fragment-link-previous">'; }
332 $R->locallink($previousPosition, $this->util->getLang('data_entry_previous'));
333 if($mode == 'xhtml') { $R->doc .= '</span>'; }
335 $R->cdata(' ');
337 if($mode == 'xhtml') { $R->doc .= '<span class="strata-data-fragment-link-next">'; }
338 $R->locallink($nextPosition, $this->util->getLang('data_entry_next'));
339 if($mode == 'xhtml') { $R->doc .= '</span>'; }
341 $R->tableheader_close();
342 $R->tablerow_close();
345 $R->table_close();
346 if($mode == 'xhtml') { $R->doc .= '</div>'; }
367 if(!empty($R->meta['title'])) {
371 'value'=>$R->meta['title'],
387 $R->meta['strata']['positions'][$data['entry']][] = $data['position'];
392 $this->util->renderPredicate($mode, $R, $this->triples, $property);
397 $type->render($mode, $R, $this->triples, $triple['value'], $triple['hint']);
405 if(!isset($R->info['data']) || $R->info['data']==true) {
411 $R->meta['strata']['fixTitle'] = true;