Horde_Date_Recurrence::getExceptions PHP Method

getExceptions() public method

Retrieves all the exceptions for this event.
public getExceptions ( ) : array
return array Array containing the dates of all the exceptions in YYYYMMDD form.
    public function getExceptions()
    {
        return $this->exceptions;
    }

Usage Example

Exemplo n.º 1
0
 /**
  * Returns a list of exception dates for recurring events including links
  * to delete them.
  *
  * @return string  List of exception dates and delete links.
  */
 public function exceptionsList()
 {
     $exceptions = $this->recurrence->getExceptions();
     asort($exceptions);
     return implode(', ', array_map(array($this, 'exceptionLink'), $exceptions));
 }
All Usage Examples Of Horde_Date_Recurrence::getExceptions