Files
server/usr/share/psa-horde/kronolith/lib/Prefs/Special/Sourceselect.php
2026-01-07 20:52:11 +01:00

58 lines
1.4 KiB
PHP

<?php
/**
* Special prefs handling for the 'sourceselect' preference.
*
* Copyright 2012-2017 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.horde.org/licenses/gpl.
*
* @author Michael Slusarz <slusarz@horde.org>
* @category Horde
* @license http://www.horde.org/licenses/gpl GPL
* @package Kronolith
*/
class Kronolith_Prefs_Special_Sourceselect implements Horde_Core_Prefs_Ui_Special
{
/**
*/
public function init(Horde_Core_Prefs_Ui $ui)
{
}
/**
*/
public function display(Horde_Core_Prefs_Ui $ui)
{
Horde_Core_Prefs_Ui_Widgets::addressbooksInit();
$search = Kronolith::getAddressbookSearchParams();
return Horde_Core_Prefs_Ui_Widgets::addressbooks(array(
'fields' => $search['fields'],
'sources' => $search['sources']
));
}
/**
*/
public function update(Horde_Core_Prefs_Ui $ui)
{
global $prefs;
$data = Horde_Core_Prefs_Ui_Widgets::addressbooksUpdate($ui);
$updated = false;
if (isset($data['sources'])) {
$prefs->setValue('search_sources', $data['sources']);
$updated = true;
}
if (isset($data['fields'])) {
$prefs->setValue('search_fields', $data['fields']);
$updated = true;
}
return $updated;
}
}