Kronolith_Driver::open PHP Method

open() public method

Selects a calendar as the currently opened calendar.
public open ( string $calendar )
$calendar string A calendar identifier.
    public function open($calendar)
    {
        $this->calendar = $calendar;
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * Selects a calendar as the currently opened calendar.
  *
  * @param string $calendar  A calendar identifier.
  */
 public function open($calendar)
 {
     parent::open($calendar);
     $this->_client = null;
     $this->_permission = 0;
     unset($this->_davSupport);
 }
All Usage Examples Of Kronolith_Driver::open