Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F6065761
configuration.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
configuration.php
View Options
<?php
/**
* Kolab XML handler for configuration (KEP:9).
*
* Copyright (C) 2011 Kolab Systems AG
*
* @author Aleksander Machniak <machniak@kolabsys.com>
*/
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
Fri, May 22, 4:43 AM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
783097
Default Alt Text
configuration.php (1 KB)
Attached To
Mode
R14 roundcubemail-plugins-kolab
Attached
Detach File
Event Timeline
Log In to Comment