forked from horde/turba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Smartmobile.php
128 lines (110 loc) · 3.42 KB
/
Smartmobile.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
/**
* Copyright 2012-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.
*
* @category Horde
* @copyright 2012-2017 Horde LLC
* @license http://www.horde.org/licenses/apache ASL
* @package Turba
*/
/**
* Base class for smartmobile view pages.
*
* @author Michael Slusarz <[email protected]>
* @category Horde
* @copyright 2012-2017 Horde LLC
* @license http://www.horde.org/licenses/apache ASL
* @package Turba
*/
class Turba_Smartmobile
{
/**
* @var Horde_Variables
*/
public $vars;
/**
* @var Horde_View
*/
public $view;
/**
*/
public function __construct(Horde_Variables $vars)
{
global $notification, $page_output;
$this->vars = $vars;
$this->view = new Horde_View(array(
'templatePath' => TURBA_TEMPLATES . '/smartmobile'
));
$this->view->addHelper('Horde_Core_Smartmobile_View_Helper');
$this->view->addHelper('Horde_Core_View_Helper_Image');
$this->view->addHelper('Text');
$this->_initPages();
$this->_addBaseVars();
$page_output->addScriptFile('smartmobile.js');
$notification->notify(array('listeners' => 'status'));
}
/**
*/
public function render()
{
echo $this->view->render('browse');
echo $this->view->render('entry');
}
/**
*/
protected function _initPages()
{
global $injector;
$this->view->list = array();
if ($GLOBALS['browse_source_count']) {
foreach (Turba::getAddressBooks() as $key => $val) {
if (!empty($val['browse'])) {
try {
$driver = $injector->getInstance('Turba_Factory_Driver')->create($key);
} catch (Turba_Exception $e) {
continue;
}
try {
$contacts = $driver->search(array(), null, 'AND', array('__key', 'name'));
$contacts->reset();
} catch (Turba_Exception $e) {
continue;
}
$url = new Horde_Core_Smartmobile_Url();
$url->add('source', $key);
$url->setAnchor('entry');
$tmp = array();
while ($contact = $contacts->next()) {
$name = Turba::formatName($contact);
$tmp[] = array(
'group' => $contact->isGroup(),
'name' => strlen($name) ? $name : ('[' . _("No Name") . ']'),
'url' => strval($url->add('key', $contact->getValue('__key')))
);
}
$this->view->list[$val['title']] = $tmp;
}
}
}
}
/**
* Add base javascript variables to the page.
*/
protected function _addBaseVars()
{
global $page_output;
$code = array(
/* Gettext strings. */
'text' => array(
'browse' => _("Browse"),
'group' => _("Contact List")
)
);
$page_output->addInlineJsVars(array(
'var Turba' => $code
), array('top' => true));
}
}