Beispiel #1
0
 public function __construct()
 {
     if ($this->filterClassName === false) {
         $this->filterClassName = __CLASS__;
     }
     parent::__construct();
 }
Beispiel #2
0
 public function getObjectRemoteID(array $objectData)
 {
     if (isset($objectData['XMLNode']) === true && $objectData['XMLNode'] instanceof DOMElement === true) {
         $objectXMLNode = $objectData['XMLNode'];
         if ($objectXMLNode->hasAttribute('id') === true) {
             return $this->contentClass->attribute('identifier') . '_' . $objectXMLNode->getAttribute('id');
         }
     }
     return parent::getObjectRemoteID($objectData);
 }