forked from horde/turba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
128 lines (117 loc) · 4.08 KB
/
contact.php
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?php
/**
* Turba contact.php.
*
* Copyright 2000-2017 Horde LLC (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/apache.
*
* @author Chuck Hagenbuch <[email protected]>
*/
require_once __DIR__ . '/lib/Application.php';
Horde_Registry::appInit('turba');
$vars = Horde_Variables::getDefaultVariables();
$source = $vars->get('source');
if (!isset($GLOBALS['cfgSources'][$source])) {
$notification->push(_("The contact you requested does not exist."));
Horde::url($prefs->getValue('initial_page'), true)->redirect();
}
/* Set the contact from the key requested. */
try {
$driver = $injector->getInstance('Turba_Factory_Driver')->create($source);
} catch (Turba_Exception $e) {
$notification->push($e, 'horde.error');
Horde::url($prefs->getValue('initial_page'), true)->redirect();
}
$contact = null;
$uid = $vars->get('uid');
if (!empty($uid)) {
try {
$search = $driver->search(array('__uid' => $uid));
if (count($search)) {
$contact = $search->next();
$vars->set('key', $contact->getValue('__key'));
}
} catch (Turba_Exception $e) {}
}
if (!$contact) {
try {
$contact = $driver->getObject($vars->get('key'));
} catch (Horde_Exception $e) {
$notification->push($e);
Horde::url($prefs->getValue('initial_page'), true)->redirect();
}
}
// Mark this contact as the user's own?
if ($vars->get('action') == 'mark_own') {
$prefs->setValue('own_contact', $source . ';' . $contact->getValue('__key'));
$notification->push(_("This contact has been marked as your own."), 'horde.success');
}
// Get view.
$viewName = Horde_Util::getFormData('view', 'Contact');
switch ($viewName) {
case 'Contact':
$view = new Turba_View_Contact($contact);
if (!$vars->get('url')) {
$vars->set('url', $contact->url(null, true));
}
break;
case 'EditContact':
$view = new Turba_View_EditContact($contact);
break;
case 'DeleteContact':
$view = new Turba_View_DeleteContact($contact);
break;
}
// Get tabs.
$url = $contact->url();
$tabs = new Horde_Core_Ui_Tabs('view', $vars);
$tabs->addTab(_("_View"), $url,
array('tabname' => 'Contact',
'id' => 'tabContact',
'class' => 'horde-icon',
'onclick' => 'return TurbaTabs.showTab(\'Contact\');'));
if ($contact->hasPermission(Horde_Perms::EDIT)) {
$tabs->addTab(_("_Edit"), $url,
array('tabname' => 'EditContact',
'id' => 'tabEditContact',
'class' => 'horde-icon',
'onclick' => 'return TurbaTabs.showTab(\'EditContact\');'));
}
if ($contact->hasPermission(Horde_Perms::DELETE)) {
$tabs->addTab(_("De_lete"), $url,
array('tabname' => 'DeleteContact',
'id' => 'tabDeleteContact',
'class' => 'horde-icon',
'onclick' => 'return TurbaTabs.showTab(\'DeleteContact\');'));
}
$owner = explode(';', $prefs->getValue('own_contact'));
if (count($owner) == 2 &&
$owner[0] == $source && $owner[1] == $contact->getValue('__key')) {
$own_icon = ' ' . Horde_Themes_Image::tag('user.png', array(
'alt' => _("Your own contact"),
'attr' => array('title' => _("Your own contact"))
));
$own_link = '';
} else {
$own_icon = '';
$own_link = '<span class="smallheader rightFloat">'
. $url->copy()->add('action', 'mark_own')->link()
. _("Mark this as your own contact") . '</a></span>';
}
$page_output->addScriptFile('contact_tabs.js');
$page_output->header(array(
'title' => $view->getTitle()
));
$notification->notify(array('listeners' => 'status'));
echo '<div id="page">';
echo $tabs->render($viewName, 'horde-buttonbar');
echo '<h1 class="header">' . $own_link
. ($contact->getValue('name')
? htmlspecialchars($contact->getValue('name'))
: '<em>' . _("Blank name") . '</em>')
. $own_icon . '</h1>';
$view->html();
echo '</div>';
$page_output->footer();