Lines Matching refs:options

49 …$options['width']   = (int)(is_numeric($data['width']) ? $data['width'] : $this->getConf('width'));
50 …$options['height'] = (int)(is_numeric($data['height']) ? $data['height'] : $this->getConf('height…
51 … $options['tcolor'] = hsc(isset($data['tcolor']) ? $data['tcolor'] : $this->getConf('tcolor'));
52 … $options['tcolor2'] = hsc(isset($data['tcolor2']) ? $data['tcolor2'] : $this->getConf('tcolor2'));
53 … $options['hicolor'] = hsc(isset($data['hicolor']) ? $data['hicolor'] : $this->getConf('hicolor'));
54 … $options['bgcolor'] = hsc(isset($data['bgcolor']) ? $data['bgcolor'] : $this->getConf('bgcolor'));
55 …$options['speed'] = (int)(is_numeric($data['speed']) ? $data['speed'] : $this->getConf('speed'));
56 $options['distr'] = hsc(isset($data['distr']) ? $data['distr'] : $this->getConf('distr'));
57 … $options['max'] = (int)(is_numeric($data['max']) ? $data['max'] : $this->getConf('max'));
58 $options['show'] = $data['show'];
59 if ($options['show'] == 'tag') $options['show'] = 'tags';
60 if ($options['show'] == 'namespace') $options['show'] = 'namespaces';
63 $tagcloud = $this->_getTagXml($options);
76 'bgcolor' => '#'.$options['bgcolor'] ,
84 'tcolor' => '0x'.$options['tcolor'] ,
85 … 'tcolor2' => '0x'.($options['tcolor2'] == "" ? $options['tcolor'] : $options['tcolor2']) ,
86 … 'hicolor' => '0x'.($options['hicolor'] == "" ? $options['tcolor'] : $options['hicolor']) ,
87 'tspeed' => (int)$options['speed'] ,
88 'distr' => ($options['distr'] ? 'true' : 'false') ,
102 …$renderer->doc .= html_flashobject($movie, $options['width'], $options['height'], $params, $flashv…
110 function _getTagXml($options) { argument
113 if ($options['show'] == 'tags') { // we need the tag helper plugin
118 $cloud = $this->_getTagCloud($options['max'], $min, $max, $tag);
120 } elseif ($options['show'] == 'namespaces') {
121 $cloud = $this->_getNamespaceCloud($options['max'], $min, $max);
124 $cloud = $this->_getWordCloud($options['max'], $min, $max);
139 if ($options['show'] == 'tags') {
153 } elseif ($options['show'] == 'namespaces') {