TYPO3 CMS  TYPO3_6-2
IdentityMap.php
Go to the documentation of this file.
1 <?php
3 
25 
31 
39  public function hasObject($object) {
40  return $this->persistenceSession->hasObject($object);
41  }
42 
51  public function hasIdentifier($uuid, $className) {
52  return $this->persistenceSession->hasIdentifier($uuid, $className);
53  }
54 
63  public function getObjectByIdentifier($uuid, $className) {
64  return $this->persistenceSession->getObjectByIdentifier($uuid, $className);
65  }
66 
76  public function getIdentifierByObject($object) {
77  return $this->persistenceSession->getIdentifierByObject($object);
78  }
79 
87  public function registerObject($object, $uuid) {
88  $this->persistenceSession->registerObject($object, $uuid);
89  }
90 
98  public function unregisterObject($object) {
99  $this->persistenceSession->unregisterObject($object);
100  }
101 }