Exemplo n.º 1
0
 /**
  * Prepare profile schedule info
  */
 public function prepareScheduleInfo()
 {
     $this->_shouldRenderInfo = true;
     foreach (array('start_datetime', 'suspension_threshold') as $key) {
         $this->_addInfo(array('label' => $this->_profile->getFieldLabel($key), 'value' => $this->_profile->renderData($key)));
     }
     foreach ($this->_profile->exportScheduleInfo() as $i) {
         $this->_addInfo(array('label' => $i->getTitle(), 'value' => $i->getSchedule()));
     }
 }