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
|
<?php
/**
* The Turba_View_DeleteContact:: class provides an API for viewing events.
*
* $Horde: turba/lib/Views/DeleteContact.php,v 1.3.2.1 2007/12/20 14:34:31 jan Exp $
*
* @author Chuck Hagenbuch <chuck@horde.org>
* @since Turba 2.2
* @package Turba
*/
class Turba_View_DeleteContact {
var $contact;
/**
* @param Turba_Object &$contact
*/
function Turba_View_DeleteContact(&$contact)
{
$this->contact =& $contact;
}
function getTitle()
{
if (!$this->contact || is_a($this->contact, 'PEAR_Error')) {
return _("Not Found");
}
return sprintf(_("Delete %s"), $this->contact->getValue('name'));
}
function html($active = true)
{
global $conf, $prefs;
if (!$this->contact || is_a($this->contact, 'PEAR_Error')) {
echo '<h3>' . _("The requested contact was not found.") . '</h3>';
return;
}
if (!$this->contact->hasPermission(PERMS_DELETE)) {
if (!$this->contact->hasPermission(PERMS_READ)) {
echo '<h3>' . _("You do not have permission to view this contact.") . '</h3>';
return;
} else {
echo '<h3>' . _("You only have permission to view this contact.") . '</h3>';
return;
}
}
echo '<div id="DeleteContact"' . ($active ? '' : ' style="display:none"') . '>';
?>
<form action="delete.php" method="post">
<?php echo Util::formInput() ?>
<input type="hidden" name="source" value="<?php echo htmlspecialchars($this->contact->driver->name) ?>" />
<input type="hidden" name="key" value="<?php echo htmlspecialchars($this->contact->getValue('__key')) ?>" />
<div class="headerbox" style="padding: 8px">
<p><?php echo _("Permanently delete this contact?") ?></p>
<input type="submit" class="button" name="delete" value="<?php echo _("Delete") ?>" />
</div>
</form>
</div>
<?php
if ($active && $GLOBALS['browser']->hasFeature('dom')) {
if ($this->contact->hasPermission(PERMS_READ)) {
require_once TURBA_BASE . '/lib/Views/Contact.php';
$view = new Turba_View_Contact($this->contact);
$view->html(false);
}
if ($this->contact->hasPermission(PERMS_EDIT)) {
require_once TURBA_BASE . '/lib/Views/EditContact.php';
$delete = new Turba_View_EditContact($this->contact);
$delete->html(false);
}
}
}
}
|