예제 #1
0
파일: TodoEx.php 프로젝트: nielsk/otodo
 protected function parseAddons()
 {
     parent::parseAddons();
     if (isset($this->addons['due'])) {
         $this->due = $this->parseDate($this->addons['due']);
     }
     if (isset($this->addons['recurrent'])) {
         $this->recurrent = new Recurrent($this->addons['recurrent']);
     }
 }