<?php
/**
- * The Ansel_Tagger:: class provides logic for dealing with tags within Ansel
+ * The Ansel_Tagger:: class wraps Ansel's interaction with the Content/Tagger
+ * system.
*
* Copyright 2010 The Horde Project (http://www.horde.org/)
*
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
*
* @author Michael J. Rubinsky <mrubinsk@horde.org>
+ * @category Horde
* @license http://www.fsf.org/copyleft/gpl.html GPL
* @package Ansel
*/
*
* @param string $token The token to match the start of the tag with.
*
- * @return A tag_id => tag_name hash
+ * @return array A tag_id => tag_name hash
* @throws Ansel_Exception
*/
public function listTags($token)
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
*
* @author Michael J. Rubinsky <mrubinsk@horde.org>
+ * @category Horde
+ * @license http://www.fsf.org/copyleft/gpl.html GPL
* @package Ansel
*/
class Ansel_Widget
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
*
* @author Michael J. Rubinsky <mrubinsk@horde.org>
+ * @category Horde
+ * @license http://www.fsf.org/copyleft/gpl.html GPL
* @package Ansel
*/
abstract class Ansel_Widget_Base
* thumbnails of images that are similar, based on tags.
*
* @author Michael J. Rubinsky <mrubinsk@horde.org>
+ * @category Horde
+ * @license http://www.fsf.org/copyleft/gpl.html GPL
* @package Ansel
*/
class Ansel_Widget_SimilarPhotos extends Ansel_Widget_Base
/**
* Array of views that this widget may appear in.
*
- * @var unknown_type
+ * @var array
*/
protected $_supported_views = array('Image');
* Constructor
*
* @param array $params Any parameters for this widget
+ *
* @return Ansel_Widget_SimilarPhotos
*/
public function __construct($params)