Exemplo n.º 1
0
 public function addContentState(ActiveSync_Model_ContentState $_state)
 {
     /**
      * if the entry got added earlier, and there was an error, the entry gets added again
      */
     try {
         $this->_contentStateBackend->create($_state);
     } catch (Zend_Db_Statement_Exception $e) {
         $this->deleteContentState($_state);
         $this->_contentStateBackend->create($_state);
     }
 }