|
Andrew's Web Libraries (AWL) 0.64
|
Public Member Functions | |
| __construct ( $propstring=null) | |
| ParseFrom ( $propstring) | |
Public Attributes | |
| $name | |
| $parameters | |
| $content | |
| $rendered | |
Definition at line 15 of file iCalendar.php.
| iCalProp::__construct | ( | $propstring = null | ) |
#- The constructor parses the incoming string, which is formatted as per RFC2445 as a propname[;param1=pval1[; ... ]]:propvalue however we allow ourselves to assume that the RFC2445 content unescaping has already happened when iCalComponent\ParseFrom() called iCalComponent\UnwrapComponent().
| string | $propstring | The string from the iCalendar which contains this property. |
Definition at line 58 of file iCalendar.php.
| iCalProp::ParseFrom | ( | $propstring | ) |
The constructor parses the incoming string, which is formatted as per RFC2445 as a propname[;param1=pval1[; ... ]]:propvalue however we allow ourselves to assume that the RFC2445 content unescaping has already happened when iCalComponent\ParseFrom() called iCalComponent\UnwrapComponent().
| string | $propstring | The string from the iCalendar which contains this property. |
Get/Set name property
| string | $newname | [optional] A new name for the property |
Get/Set the content of the property
| string | $newvalue | [optional] A new value for the property |
Get/Set parameters in their entirety
| array | $newparams | An array of new parameter key/value pairs |
Test if our value contains a string
| string | $search | The needle which we shall search the haystack for. |
Get the value of a parameter
| string | $name | The name of the parameter to retrieve the value for |
Set the value of a parameter
| string | $name | The name of the parameter to set the value for |
| string | $value | The value of the parameter |
Render the set of parameters as key1=value1[;key2=value2[; ...]] with any colons or semicolons escaped.
Render a suitably escaped RFC2445 content string.
Content escaping does not apply to these properties culled from RFC2445
Content escaping applies by default to other properties
Definition at line 77 of file iCalendar.php.
| iCalProp::$content |
Definition at line 39 of file iCalendar.php.
| iCalProp::$name |
Definition at line 25 of file iCalendar.php.
| iCalProp::$parameters |
Definition at line 32 of file iCalendar.php.
| iCalProp::$rendered |
Definition at line 46 of file iCalendar.php.