getRecurName() 공개 메소드

Returns a description of this event's recurring type.
public getRecurName ( ) : string
리턴 string Human readable recurring type.
예제 #1
0
파일: Event.php 프로젝트: DSNS-LAB/Dmail
 /**
  * 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");
     }
 }