ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
CalAddress.php
Go to the documentation of this file.
1
<?
php
2
3
namespace
Sabre\VObject\Property\ICalendar
;
4
5
use
6
Sabre\VObject\Property\Text
;
7
17
class
CalAddress
extends
Text
{
18
25
public
$delimiter
= null;
26
35
function
getValueType
() {
36
37
return
'CAL-ADDRESS'
;
38
39
}
40
51
function
getNormalizedValue
() {
52
53
$input
= $this->
getValue
();
54
if
(!strpos(
$input
,
':'
)) {
55
return
$input
;
56
}
57
list($schema, $everythingElse) = explode(
':'
,
$input
, 2);
58
return
strtolower($schema) .
':'
. $everythingElse;
59
60
}
61
}
Sabre\VObject\Property\ICalendar\CalAddress
CalAddress property.
Definition:
CalAddress.php:17
Sabre\VObject\Property\ICalendar
Definition:
CalAddress.php:3
Text
Sabre\VObject\$input
if($argc< 3) $input
Definition:
mergeduplicates.php:35
Sabre\VObject\Property\ICalendar\CalAddress\getNormalizedValue
getNormalizedValue()
This returns a normalized form of the value.
Definition:
CalAddress.php:51
Sabre\VObject\Property\ICalendar\CalAddress\$delimiter
$delimiter
Definition:
CalAddress.php:25
Sabre\VObject\Property\Text
Text property.
Definition:
Text.php:20
Sabre\VObject\Property\ICalendar\CalAddress\getValueType
getValueType()
Returns the type of value.
Definition:
CalAddress.php:35
Sabre\VObject\Property\getValue
getValue()
Returns the current value.
Definition:
Property.php:115
php
libs
composer
vendor
sabre
vobject
lib
Property
ICalendar
CalAddress.php
Generated on Thu Jan 16 2025 19:01:53 for ILIAS by
1.8.13 (using
Doxyfile
)