Lines Matching refs:opt
45 $opt = helper_plugin_csv::parseOptions($optstr);
47 return $opt;
51 * @param array $opt
54 public function getCachedValue($opt) argument
56 $r = $opt['outr'] + $opt['hdr_rows'];
57 $c = $opt['outc'];
58 unset($opt['output']);
59 unset($opt['outr']);
60 unset($opt['outc']);
62 $cache = md5(serialize($opt));
65 $content = helper_plugin_csv::loadContent($opt['file']);
69 $this->rowcache[$cache] = helper_plugin_csv::prepareData($content, $opt);
80 public function render($mode, Doku_Renderer $renderer, $opt) argument
84 if ($opt['file'] === '') {
89 if (!media_ispublic($opt['file'])) $renderer->info['cache'] = false;
91 $value = $this->getCachedValue($opt);