Lines Matching refs:opt
48 $opt = helper_plugin_csv::parseOptions($optstr);
49 $opt['content'] = $content;
51 return $opt;
55 public function render($mode, Doku_Renderer $renderer, $opt) argument
60 if ($opt['file']) {
62 $opt['content'] = helper_plugin_csv::loadContent($opt['file']);
63 if (!media_ispublic($opt['file'])) $renderer->info['cache'] = false;
71 $content =& $opt['content'];
78 $data = helper_plugin_csv::prepareData($content, $opt);
92 ($opt['hdr_rows']) ? $renderer->tablethead_open() : $renderer->tabletbody_open();
95 if ($line > 0 && $line == $opt['hdr_rows']) {
103 if ($opt['span_empty_cols']) {
114 if ($line < $opt['hdr_rows'] || $i < $opt['hdr_cols']) {
129 if ($line < $opt['hdr_rows'] || $i < $opt['hdr_cols']) {
141 if ($opt['hdr_rows'] < $line) $renderer->tabletbody_close();