getRecurName() public method

Returns a description of this event's recurring type.
public getRecurName ( ) : string
return string Human readable recurring type.
Exemplo n.º 1
0
 /**
  * Returns a description of this event's recurring type.
  *
  * @return string  Human readable recurring type.
  */
 public function getRecurName()
 {
     if (empty($this->baseid)) {
         return $this->recurs() ? $this->recurrence->getRecurName() : _("No recurrence");
     } else {
         return _("Exception");
     }
 }