-
Notifications
You must be signed in to change notification settings - Fork 125
Sabre VObject Component VEvent
VEvent component
This component contains some additional functionality specific for VEVENT's.
- Class name: VEvent
- Namespace: Sabre\VObject\Component
- Parent class: Sabre\VObject\Component
const REPAIR = 1
public string $name
Component name.
This will contain a string such as VEVENT, VTODO, VCALENDAR, VCARD.
- Visibility: public
public array $children = array()
A list of properties and/or sub-components.
- Visibility: public
public \Sabre\VObject\Node $parent
Reference to the parent object, if this is not the top object.
- Visibility: public
protected \Sabre\VObject\ElementList $iterator = null
Iterator override
- Visibility: protected
protected \Sabre\VObject\Component $root
The root document
- Visibility: protected
boolean Sabre\VObject\Component\VEvent::isInTimeRange(\DateTime $start, \DateTime $end)
Returns true or false depending on if the event falls in the specified time-range. This is used for filtering purposes.
The rules used to determine if an event falls within the specified time-range is based on the CalDAV specification.
- Visibility: public
- $start DateTime
- $end DateTime
array Sabre\VObject\Component::getDefaults()
This method should return a list of default property values.
- Visibility: protected
- This method is defined by Sabre\VObject\Component
mixed Sabre\VObject\Component::getValidationRules()
A simple list of validation rules.
This is simply a list of properties, and how many times they either must or must not appear.
Possible values per property:
- 0 - Must not appear.
- 1 - Must appear exactly once.
-
-
- Must appear at least once.
-
-
-
- Can appear any number of times.
-
- ? - May appear, but not more than once.
It is also possible to specify defaults and severity levels for violating the rule.
See the VEVENT implementation for getValidationRules for a more complex example.
- Visibility: public
- This method is defined by Sabre\VObject\Component
void Sabre\VObject\Component::__construct(\Sabre\VObject\Document $root, string $name, array $children, boolean $defaults)
Creates a new component.
You can specify the children either in key=>value syntax, in which case properties will automatically be created, or you can just pass a list of Component and Property object.
By default, a set of sensible values will be added to the component. For an iCalendar object, this may be something like CALSCALE:GREGORIAN. To ensure that this does not happen, set $defaults to false.
- Visibility: public
- This method is defined by Sabre\VObject\Component
- $root Sabre\VObject\Document
- $name string - <p>such as VCALENDAR, VEVENT.</p>
- $children array
- $defaults boolean
\Sabre\VObject\Node Sabre\VObject\Component::add($a1, $a2, $a3)
Adds a new property or component, and returns the new item.
This method has 3 possible signatures:
add(Component $comp) // Adds a new component add(Property $prop) // Adds a new property add($name, $value, array $parameters = array()) // Adds a new property add($name, array $children = array()) // Adds a new component by name.
- Visibility: public
- This method is defined by Sabre\VObject\Component
- $a1 mixed
- $a2 mixed
- $a3 mixed
void Sabre\VObject\Component::remove(mixed $item)
This method removes a component or property from this component.
You can either specify the item by name (like DTSTART), in which case all properties/components with that name will be removed, or you can pass an instance of a property or component, in which case only that exact item will be removed.
The removed item will be returned. In case there were more than 1 items removed, only the last one will be returned.
- Visibility: public
- This method is defined by Sabre\VObject\Component
- $item mixed
array Sabre\VObject\Component::children()
Returns an iterable list of children
- Visibility: public
- This method is defined by Sabre\VObject\Component
array Sabre\VObject\Component::getComponents()
This method only returns a list of sub-components. Properties are ignored.
- Visibility: public
- This method is defined by Sabre\VObject\Component
array Sabre\VObject\Component::select(string $name)
Returns an array with elements that match the specified name.
This function is also aware of MIME-Directory groups (as they appear in vcards). This means that if a property is grouped as "HOME.EMAIL", it will also be returned when searching for just "EMAIL". If you want to search for a property in a specific group, you can select on the entire string ("HOME.EMAIL"). If you want to search on a specific property that has not been assigned a group, specify ".EMAIL".
Keys are retained from the 'children' array, which may be confusing in certain cases.
- Visibility: public
- This method is defined by Sabre\VObject\Component
- $name string
string Sabre\VObject\Node::serialize()
Serializes the node into a mimedir format
- Visibility: public
- This method is abstract.
- This method is defined by Sabre\VObject\Node
array Sabre\VObject\Node::jsonSerialize()
This method returns an array, with the representation as it should be encoded in json. This is used to create jCard or jCal documents.
- Visibility: public
- This method is abstract.
- This method is defined by Sabre\VObject\Node
\Sabre\VObject\Property Sabre\VObject\Component::__get(string $name)
Using 'get' you will either get a property or component.
If there were no child-elements found with the specified name, null is returned.
To use this, this may look something like this:
$event = $calendar->VEVENT;
- Visibility: public
- This method is defined by Sabre\VObject\Component
- $name string
boolean Sabre\VObject\Component::__isset(string $name)
This method checks if a sub-element with the specified name exists.
- Visibility: public
- This method is defined by Sabre\VObject\Component
- $name string
void Sabre\VObject\Component::__set(string $name, mixed $value)
Using the setter method you can add properties or subcomponents
You can either pass a Component, Property object, or a string to automatically create a Property.
If the item already exists, it will be removed. If you want to add a new item with the same name, always use the add() method.
- Visibility: public
- This method is defined by Sabre\VObject\Component
- $name string
- $value mixed
void Sabre\VObject\Component::__unset(string $name)
Removes all properties and components within this component with the specified name.
- Visibility: public
- This method is defined by Sabre\VObject\Component
- $name string
void Sabre\VObject\Component::__clone()
This method is automatically called when the object is cloned.
Specifically, this will ensure all child elements are also cloned.
- Visibility: public
- This method is defined by Sabre\VObject\Component
array Sabre\VObject\Node::validate(integer $options)
Validates the node for correctness.
The following options are supported: Node::REPAIR - May attempt to automatically repair the problem.
This method returns an array with detected problems. Every element has the following properties:
- level - problem level.
- message - A human-readable string describing the issue.
- node - A reference to the problematic node.
The level means: 1 - The issue was repaired (only happens if REPAIR was turned on) 2 - An inconsequential issue 3 - A severe issue.
- Visibility: public
- This method is defined by Sabre\VObject\Node
- $options integer
\Sabre\VObject\ElementList Sabre\VObject\Node::getIterator()
Returns the iterator for this object
- Visibility: public
- This method is defined by Sabre\VObject\Node
void Sabre\VObject\Node::setIterator(\Sabre\VObject\ElementList $iterator)
Sets the overridden iterator
Note that this is not actually part of the iterator interface
- Visibility: public
- This method is defined by Sabre\VObject\Node
- $iterator Sabre\VObject\ElementList
integer Sabre\VObject\Node::count()
Returns the number of elements
- Visibility: public
- This method is defined by Sabre\VObject\Node
boolean Sabre\VObject\Node::offsetExists(integer $offset)
Checks if an item exists through ArrayAccess.
This method just forwards the request to the inner iterator
- Visibility: public
- This method is defined by Sabre\VObject\Node
- $offset integer
mixed Sabre\VObject\Node::offsetGet(integer $offset)
Gets an item through ArrayAccess.
This method just forwards the request to the inner iterator
- Visibility: public
- This method is defined by Sabre\VObject\Node
- $offset integer
void Sabre\VObject\Node::offsetSet(integer $offset, mixed $value)
Sets an item through ArrayAccess.
This method just forwards the request to the inner iterator
- Visibility: public
- This method is defined by Sabre\VObject\Node
- $offset integer
- $value mixed
void Sabre\VObject\Node::offsetUnset(integer $offset)
Sets an item through ArrayAccess.
This method just forwards the request to the inner iterator
- Visibility: public
- This method is defined by Sabre\VObject\Node
- $offset integer