Lines Matching refs:opt
92 $opt = array(
98 list($optstr,$opt['content']) = explode('>',$match,2);
106 $opt['name'] = $matches[1];
108 $opt['height'] = $matches[1];
110 $opt['descending'] = 1;
113 return $opt;
134 function render($mode, Doku_Renderer $renderer, $opt) { argument
137 $content = $opt['content'];
171 $item['u_top'] = $item['u_bottom'] + ($opt['descending']?-1:1)*($item['u_size'] - 1);
173 …$csv .= "\"$item[model]\",\"$item[name]\",$opt[name],$item[u_bottom],$item[u_size],\"$item[comment…
182 $u_first = $opt['descending'] ? 1 : $opt['height'];
183 $u_last = $opt['descending'] ? $opt['height'] : 1;
184 $u_delta = $opt['descending'] ? +1 : -1;
185 $renderer->doc .= "<table class='rack'><tr><th colspan='2' class='title'>$opt[name]</th></tr>\n";
188 for ($u=$u_first; ($opt['descending'] ? $u<=$u_last : $u>=$u_last); $u += $u_delta) {