1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
<?php
/**
* Horde_Form for editing task lists.
*
* $Horde: nag/lib/Forms/EditTaskList.php,v 1.1.2.2 2008-07-31 10:10:03 jan Exp $
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
*
* @package Nag
*/
/** Variables */
require_once 'Horde/Variables.php';
/** Horde_Form */
require_once 'Horde/Form.php';
/** Horde_Form_Renderer */
require_once 'Horde/Form/Renderer.php';
/**
* The Nag_EditTaskListForm class provides the form for
* editing a task list.
*
* @author Chuck Hagenbuch <chuck@horde.org>
* @since Nag 2.2
* @package Nag
*/
class Nag_EditTaskListForm extends Horde_Form {
/**
* Task list being edited
*/
var $_tasklist;
function Nag_EditTaskListForm(&$vars, &$tasklist)
{
$this->_tasklist = &$tasklist;
parent::Horde_Form($vars, sprintf(_("Edit %s"), $tasklist->get('name')));
$this->addHidden('', 't', 'text', true);
$this->addVariable(_("Task List Name"), 'name', 'text', true);
$this->addVariable(_("Task List Description"), 'description', 'longtext', false, false, null, array(4, 60));
$this->setButtons(array(_("Save")));
}
function execute()
{
$this->_tasklist->set('name', $this->_vars->get('name'));
$this->_tasklist->set('desc', $this->_vars->get('description'));
$result = $this->_tasklist->save();
if (is_a($result, 'PEAR_Error')) {
return PEAR::raiseError(sprintf(_("Unable to save task list \"%s\": %s"), $id, $result->getMessage()));
}
return true;
}
}
|