*/
protected function _params()
{
- $params = array('count' => array(
- 'name' => _("Number of tags to display"),
- 'type' => 'int',
- 'default' => 20));
- return $params;
+ return array('count' => array(
+ 'name' => _("Number of tags to display"),
+ 'type' => 'int',
+ 'default' => 20));
}
/**
}
/**
- *
- * @global Horde_Registry $registry
* @return string
*/
protected function _content()
{
- global $registry;
-
/* Get the tags */
$tags = $GLOBALS['injector']->getInstance('Ansel_Tagger')->getCloud(null, $this->_params['count']);
if (count($tags)) {
}
return $html;
}
-
}