Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117757618
configuration.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
2 KB
Referenced Files
None
Subscribers
None
configuration.php
View Options
<?php
/**
* Kolab XML handler for configuration (KEP:9).
*
* @author Aleksander Machniak <machniak@kolabsys.com>
*
* Copyright (C) 2011, Kolab Systems AG <contact@kolabsys.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
class
Horde_Kolab_Format_XML_configuration
extends
Horde_Kolab_Format_XML
{
/**
* Specific data fields for the configuration object
*
* @var Kolab
*/
var
$_fields_specific
;
var
$_root_version
=
2.1
;
/**
* Constructor
*/
function
Horde_Kolab_Format_XML_configuration
(
$params
=
array
())
{
$this
->
_root_name
=
'configuration'
;
// Specific configuration fields, in kolab format specification order
$this
->
_fields_specific
=
array
(
'application'
=>
array
(
'type'
=>
HORDE_KOLAB_XML_TYPE_STRING
,
'value'
=>
HORDE_KOLAB_XML_VALUE_MAYBE_MISSING
,
),
'type'
=>
array
(
'type'
=>
HORDE_KOLAB_XML_TYPE_STRING
,
'value'
=>
HORDE_KOLAB_XML_VALUE_NOT_EMPTY
,
),
);
// Dictionary fields
if
(!
empty
(
$params
[
'subtype'
])
&&
preg_match
(
'/^dictionary.*/'
,
$params
[
'subtype'
]))
{
$this
->
_fields_specific
=
array_merge
(
$this
->
_fields_specific
,
array
(
'language'
=>
array
(
'type'
=>
HORDE_KOLAB_XML_TYPE_STRING
,
'value'
=>
HORDE_KOLAB_XML_VALUE_NOT_EMPTY
,
),
'e'
=>
array
(
'type'
=>
HORDE_KOLAB_XML_TYPE_MULTIPLE
,
'value'
=>
HORDE_KOLAB_XML_VALUE_NOT_EMPTY
,
'array'
=>
array
(
'type'
=>
HORDE_KOLAB_XML_TYPE_STRING
,
'value'
=>
HORDE_KOLAB_XML_VALUE_NOT_EMPTY
,
),
),
));
}
parent
::
Horde_Kolab_Format_XML
(
$params
);
unset
(
$this
->
_fields_basic
[
'body'
]);
unset
(
$this
->
_fields_basic
[
'categories'
]);
unset
(
$this
->
_fields_basic
[
'sensitivity'
]);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Apr 4, 9:20 AM (3 w, 3 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
4c/35/a0e3bb1612283535eb196dddbd77
Default Alt Text
configuration.php (2 KB)
Attached To
Mode
rRPK roundcubemail-plugins-kolab
Attached
Detach File
Event Timeline