Lines Matching refs:R
246 function render($mode, Doku_Renderer $R, $data) {
277 if($mode == 'xhtml') { $R->doc .= '<div class="strata-entry" id="'.Clean::deaccent(strtolower($heading)).'">'; }
278 if($mode == 'odt' && isset($currentPosition) && method_exists ($R, 'insertBookmark')) {
279 $R->insertBookmark($currentPosition, false);
281 $R->table_open();
282 $R->tablerow_open();
283 $R->tableheader_open(2);
285 $R->cdata($heading);
289 $R->emphasis_open();
290 $R->cdata(' (');
292 $this->util->openField($mode, $R, $this->util->getIsaKey());
295 if($i!=0) $R->cdata(', ');
297 $this->util->renderValue($mode, $R, $this->triples, $triple['value'], $triple['type'], $type, $triple['hint']);
299 $this->util->closeField($mode, $R);
300 $R->cdata(')');
301 $R->emphasis_close();
303 $R->tableheader_close();
304 $R->tablerow_close();
312 $R->tablerow_open();
313 $R->tableheader_open();
314 $this->util->renderPredicate($mode, $R, $this->triples, $key);
315 $R->tableheader_close();
318 $R->tablecell_open();
319 $this->util->openField($mode, $R, $key);
322 if($i!=0) $R->cdata(', ');
323 $this->util->renderValue($mode, $R, $this->triples, $triple['value'], $triple['type'], $triple['hint']);
325 $this->util->closeField($mode, $R);
326 $R->tablecell_close();
327 $R->tablerow_close();
331 $R->tablerow_open();
332 $R->tableheader_open(2);
334 if($mode == 'xhtml') { $R->doc .= '<span class="strata-data-fragment-link-previous">'; }
335 $R->locallink($previousPosition, $this->util->getLang('data_entry_previous'));
336 if($mode == 'xhtml') { $R->doc .= '</span>'; }
338 $R->cdata(' ');
340 if($mode == 'xhtml') { $R->doc .= '<span class="strata-data-fragment-link-next">'; }
341 $R->locallink($nextPosition, $this->util->getLang('data_entry_next'));
342 if($mode == 'xhtml') { $R->doc .= '</span>'; }
344 $R->tableheader_close();
345 $R->tablerow_close();
348 $R->table_close();
349 if($mode == 'xhtml') { $R->doc .= '</div>'; }
370 if(!empty($R->meta['title'])) {
374 'value'=>$R->meta['title'],
390 $R->meta['strata']['positions'][$data['entry']][] = $data['position'];
395 $this->util->renderPredicate($mode, $R, $this->triples, $property);
400 $type->render($mode, $R, $this->triples, $triple['value'], $triple['hint']);
408 if(!isset($R->info['data']) || $R->info['data']==true) {
414 $R->meta['strata']['fixTitle'] = true;