1: <?php
2: /**
3: * Copyright 2007-2012 Horde LLC (http://www.horde.org/)
4: *
5: * See the enclosed file COPYING for license information (GPL). If you
6: * did not receive this file, see http://www.horde.org/licenses/gpl.
7: *
8: * @author Duck <duck@obala.net>
9: */
10: class Folks_AddFriend_Form extends Horde_Form {
11:
12: function __construct($vars, $title, $name)
13: {
14: parent::__construct($vars, $title, $name);
15:
16: $this->addVariable(_("Username"), 'user', 'text', true, false, null, array('', 20, 32));
17: $this->setButtons(_("Add / Remove"));
18: }
19: }
20: