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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
<?php
/**
* $Horde: turba/edit.php,v 1.70.4.10 2008/01/02 11:32:38 jan Exp $
*
* Copyright 2000-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.
*
* @author Chuck Hagenbuch <chuck@horde.org>
*/
@define('TURBA_BASE', dirname(__FILE__));
require_once TURBA_BASE . '/lib/base.php';
require_once TURBA_BASE . '/lib/Forms/EditContact.php';
require_once 'Horde/Form/Renderer.php';
require_once 'Horde/Variables.php';
$listView = null;
$vars = Variables::getDefaultVariables();
$source = $vars->get('source');
$original_source = $vars->get('original_source');
$key = $vars->get('key');
$groupedit = $vars->get('actionID') == 'groupedit';
$objectkeys = $vars->get('objectkeys');
$url = Util::getFormData('url', Horde::applicationUrl($prefs->getValue('initial_page'), true));
/* Edit the first of a list of contacts? */
if ($groupedit && (!$key || $key == '**search')) {
if (!count($objectkeys)) {
$notification->push(_("You must select at least one contact first."), 'horde.warning');
header('Location: ' . $url);
exit;
}
if ($key == '**search') {
$original_source = $key;
}
list($source, $key) = explode(':', $objectkeys[0], 2);
if (empty($original_source)) {
$original_source = $source;
}
$vars->set('key', $key);
$vars->set('source', $source);
$vars->set('original_source', $original_source);
}
if ($source === null || !isset($cfgSources[$source])) {
$notification->push(_("Not found"), 'horde.error');
header('Location: ' . $url);
exit;
}
$driver = &Turba_Driver::singleton($source);
/* Set the contact from the requested key. */
$contact = $driver->getObject($key);
if (is_a($contact, 'PEAR_Error')) {
$notification->push($contact, 'horde.error');
header('Location: ' . $url);
exit;
}
/* Check permissions on this contact. */
if (!$contact->hasPermission(PERMS_EDIT)) {
if (!$contact->hasPermission(PERMS_READ)) {
$notification->push(_("You do not have permission to view this contact."), 'horde.error');
header('Location: ' . Horde::applicationUrl($prefs->getValue('initial_page'), true));
exit;
} else {
$notification->push(_("You only have permission to view this contact."), 'horde.error');
header('Location: ' . $contact->url('Contact', true));
exit;
}
}
/* Create the edit form. */
if ($groupedit) {
$form = &new Turba_EditContactGroupForm($vars, $contact);
} else {
$form = &new Turba_EditContactForm($vars, $contact);
}
/* Execute() checks validation first. */
$edited = $form->execute();
if (!is_a($edited, 'PEAR_Error')) {
$url = Util::getFormData('url');
header('Location: ' . (empty($url) ? $contact->url('Contact', true) : $url));
exit;
}
$title = sprintf(_("Edit \"%s\""), $contact->getValue('name'));
require TURBA_TEMPLATES . '/common-header.inc';
require TURBA_TEMPLATES . '/menu.inc';
$form->setTitle($title);
$form->renderActive(new Horde_Form_Renderer(), $vars, 'edit.php', 'post');
require $registry->get('templates', 'horde') . '/common-footer.inc';
|