Esempio n. 1
0
 /**
  * Sets the profile entry's CCR data
  * @param string $ccrXMLStr The CCR as an xml string
  * @return \Zend\GData\Health\Extension\Ccr
  */
 public function setCcr($ccrXMLStr)
 {
     $ccrElement = null;
     if ($ccrXMLStr != null) {
         $ccrElement = new Extension\Ccr();
         $ccrElement->transferFromXML($ccrXMLStr);
         $this->_ccrData = $ccrElement;
     }
     return $ccrElement;
 }