Lines Matching refs:rcmd
30 var $rcmd = array(); /**< Command array for the renderer */ variable in syntax_plugin_menu
143 $this->rcmd['columns'] = $col;
146 if ($opts['align'] == "left") $this->rcmd['float'] = "left";
147 if ($opts['align'] == "center") $this->rcmd['float'] = "center";
148 if ($opts['align'] == "right") $this->rcmd['float'] = "right";
151 if ($opts['valign'] == "top") $this->rcmd['valign'] = "vtop";
152 if ($opts['valign'] == "center") $this->rcmd['valign'] = "vcenter";
153 if ($opts['valign'] == "bottom") $this->rcmd['valign'] = "vbottom";
156 $this->rcmd['caption'] = hsc($opts['caption']);
158 $this->rcmd['type'] = hsc($opts['type']);
160 $this->rcmd['width'] = hsc($opts['width']);
161 $this->rcmd['wrap'] = !empty($opts['wrap']);
174 $this->rcmd['items'][] = array("image" => $image,
181 if ($titlelen > $this->rcmd['width'])
182 $this->rcmd['width'] = $titlelen;
188 $this->rcmd['width'] += 5;
190 return $this->rcmd;
199 $this->rcmd = array();
200 $this->rcmd['columns'] = 1;
201 $this->rcmd['float'] = "left";
202 $this->rcmd['valign'] = "vtop";