Lines Matching refs:opt
49 $opt = helper_plugin_csv::parseOptions($optstr);
50 $opt['content'] = $content;
52 return $opt;
56 public function render($mode, Doku_Renderer $renderer, $opt) argument
61 if ($opt['file']) {
63 $opt['content'] = helper_plugin_csv::loadContent($opt['file']);
64 if (!media_ispublic($opt['file'])) $renderer->info['cache'] = false;
72 $content =& $opt['content'];
79 $data = helper_plugin_csv::prepareData($content, $opt);
93 ($opt['hdr_rows']) ? $renderer->tablethead_open() : $renderer->tabletbody_open();
96 if ($line > 0 && $line == $opt['hdr_rows']) {
104 if ($opt['span_empty_cols']) {
115 if ($line < $opt['hdr_rows'] || $i < $opt['hdr_cols']) {
130 if ($line < $opt['hdr_rows'] || $i < $opt['hdr_cols']) {
142 if ($opt['hdr_rows'] < $line) $renderer->tabletbody_close();