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
|
<?php
/**
* $Horde: mnemo/notepads/edit.php,v 1.2.2.2 2008/01/02 11:32:28 jan Exp $
*
* Copyright 2001-2008 The Horde Project (http://www.horde.org/)
*
* See the enclosed file LICENSE for license information (ASL). If you
* did not receive this file, see http://www.horde.org/licenses/asl.php.
*/
@define('MNEMO_BASE', dirname(dirname(__FILE__)));
require_once MNEMO_BASE . '/lib/base.php';
require_once MNEMO_BASE . '/lib/Forms/EditNotepad.php';
// Exit if this isn't an authenticated user.
if (!Auth::getAuth()) {
header('Location: ' . Horde::applicationUrl('list.php', true));
exit;
}
$vars = Variables::getDefaultVariables();
$notepad = $mnemo_shares->getShare($vars->get('n'));
if (is_a($notepad, 'PEAR_Error')) {
$notification->push($notepad, 'horde.error');
header('Location: ' . Horde::applicationUrl('notepads/', true));
exit;
} elseif ($notepad->get('owner') != Auth::getAuth()) {
$notification->push(_("You are not allowed to change this notepad."), 'horde.error');
header('Location: ' . Horde::applicationUrl('notepads/', true));
exit;
}
$form = new Mnemo_EditNotepadForm($vars, $notepad);
// Execute if the form is valid.
if ($form->validate($vars)) {
$original_name = $notepad->get('name');
$result = $form->execute();
if (is_a($result, 'PEAR_Error')) {
$notification->push($result, 'horde.error');
} else {
if ($notepad->get('name') != $original_name) {
$notification->push(sprintf(_("The notepad \"%s\" has been renamed to \"%s\"."), $original_name, $notepad->get('name')), 'horde.success');
} else {
$notification->push(sprintf(_("The notepad \"%s\" has been saved."), $original_name), 'horde.success');
}
}
header('Location: ' . Horde::applicationUrl('notepads/', true));
exit;
}
$vars->set('name', $notepad->get('name'));
$vars->set('description', $notepad->get('desc'));
$title = $form->getTitle();
require MNEMO_TEMPLATES . '/common-header.inc';
require MNEMO_TEMPLATES . '/menu.inc';
echo $form->renderActive($form->getRenderer(), $vars, 'edit.php', 'post');
require $registry->get('templates', 'horde') . '/common-footer.inc';
|