Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117881094
VObjectUtils.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
VObjectUtils.php
View Options
<?php
/**
* Utility class providing functions for VObject data encoding
*
* @author Thomas Bruederli <bruederli@kolabsys.com>
*
* Copyright (C) 2013, 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/>.
*/
namespace
Kolab\Utils
;
use
Sabre\VObject\Property
;
/**
* Helper class proviting utility functions for VObject data encoding
*/
class
VObjectUtils
{
/**
* Helper method to correctly interpret an all-day date value
*/
public
static
function
convert_datetime
(
$prop
)
{
if
(
empty
(
$prop
))
{
return
null
;
}
else
if
(
$prop
instanceof
Property\MultiDateTime
)
{
$dt
=
array
();
$dateonly
=
(
$prop
->
getDateType
()
&
Property\DateTime
::
DATE
);
foreach
(
$prop
->
getDateTimes
()
as
$item
)
{
$item
->
_dateonly
=
$dateonly
;
$dt
[]
=
$item
;
}
}
else
if
(
$prop
instanceof
Property\DateTime
)
{
$dt
=
$prop
->
getDateTime
();
if
(
$prop
->
getDateType
()
&
Property\DateTime
::
DATE
)
{
$dt
->
_dateonly
=
true
;
}
}
else
if
(
$prop
instanceof
\DateTime
)
{
$dt
=
$prop
;
}
return
$dt
;
}
/**
* Create a Sabre\VObject\Property instance from a PHP DateTime object
*
* @param string Property name
* @param object DateTime
*/
public
static
function
datetime_prop
(
$name
,
$dt
,
$utc
=
false
)
{
$vdt
=
new
Property\DateTime
(
$name
);
$vdt
->
setDateTime
(
$dt
,
$dt
->
_dateonly
?
Property\DateTime
::
DATE
:
(
$utc
?
Property\DateTime
::
UTC
:
Property\DateTime
::
LOCALTZ
));
return
$vdt
;
}
/**
* Copy values from one hash array to another using a key-map
*/
public
static
function
map_keys
(
$values
,
$map
)
{
$out
=
array
();
foreach
(
$map
as
$from
=>
$to
)
{
if
(
isset
(
$values
[
$from
]))
$out
[
$to
]
=
$values
[
$from
];
}
return
$out
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Apr 5, 11:41 PM (1 w, 5 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
be/d6/e971ff2eb8edf4b58b4be5506949
Default Alt Text
VObjectUtils.php (2 KB)
Attached To
Mode
rI iRony
Attached
Detach File
Event Timeline