Lines Matching refs:opt
46 $opt = helper_plugin_csv::parseOptions($optstr);
48 return $opt;
52 * @param array $opt
55 public function getCachedValue($opt) argument
57 $r = $opt['outr'] + $opt['hdr_rows'];
58 $c = $opt['outc'];
59 unset($opt['output']);
60 unset($opt['outr']);
61 unset($opt['outc']);
63 $cache = md5(serialize($opt));
66 $content = helper_plugin_csv::loadContent($opt['file']);
70 $this->rowcache[$cache] = helper_plugin_csv::prepareData($content, $opt);
81 public function render($mode, Doku_Renderer $renderer, $opt) argument
85 if ($opt['file'] === '') {
90 if (!media_ispublic($opt['file'])) $renderer->info['cache'] = false;
92 $value = $this->getCachedValue($opt);