. * * @category Form * @package StatusNet * @author Zach Copley * @copyright 20010 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ if (!defined('STATUSNET')) { exit(1); } require_once INSTALLDIR.'/lib/form.php'; /** * Form for favoring a notice anonymously * * @category Form * @package StatusNet * @author Zach Copley * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ * * @see AnonDisfavorForm */ class AnonFavorForm extends FavorForm { /** * Constructor * * @param HTMLOutputter $out output channel * @param Notice $notice notice to favor */ function __construct($out=null, $notice=null) { parent::__construct($out, $notice); } /** * Action of the form * * @return string URL of the action */ function action() { return common_local_url('AnonFavor'); } }