eZ/Publish/Core/Persistence/Cache/BookmarkHandler.php 1 location
|
@@ 82-91 (lines=10) @@
|
| 79 |
|
/** |
| 80 |
|
* {@inheritdoc} |
| 81 |
|
*/ |
| 82 |
|
public function loadUserBookmarks(int $userId, int $offset = 0, int $limit = -1): array |
| 83 |
|
{ |
| 84 |
|
$this->logger->logCall(__METHOD__, [ |
| 85 |
|
'userId' => $userId, |
| 86 |
|
'offset' => $offset, |
| 87 |
|
'limit' => $limit, |
| 88 |
|
]); |
| 89 |
|
|
| 90 |
|
return $this->persistenceHandler->bookmarkHandler()->loadUserBookmarks($userId, $offset, $limit); |
| 91 |
|
} |
| 92 |
|
|
| 93 |
|
/** |
| 94 |
|
* {@inheritdoc} |
eZ/Publish/Core/Persistence/Cache/NotificationHandler.php 1 location
|
@@ 151-160 (lines=10) @@
|
| 148 |
|
/** |
| 149 |
|
* {@inheritdoc} |
| 150 |
|
*/ |
| 151 |
|
public function loadUserNotifications(int $userId, int $offset, int $limit): array |
| 152 |
|
{ |
| 153 |
|
$this->logger->logCall(__METHOD__, [ |
| 154 |
|
'ownerId' => $userId, |
| 155 |
|
'offset' => $offset, |
| 156 |
|
'limit' => $limit, |
| 157 |
|
]); |
| 158 |
|
|
| 159 |
|
return $this->persistenceHandler->notificationHandler()->loadUserNotifications($userId, $offset, $limit); |
| 160 |
|
} |
| 161 |
|
} |
| 162 |
|
|
eZ/Publish/Core/Persistence/Cache/LocationHandler.php 1 location
|
@@ 210-219 (lines=10) @@
|
| 207 |
|
/** |
| 208 |
|
* {@inheritdoc} |
| 209 |
|
*/ |
| 210 |
|
public function copySubtree($sourceId, $destinationParentId, $newOwnerId = null) |
| 211 |
|
{ |
| 212 |
|
$this->logger->logCall(__METHOD__, [ |
| 213 |
|
'source' => $sourceId, |
| 214 |
|
'destination' => $destinationParentId, |
| 215 |
|
'newOwner' => $newOwnerId, |
| 216 |
|
]); |
| 217 |
|
|
| 218 |
|
return $this->persistenceHandler->locationHandler()->copySubtree($sourceId, $destinationParentId, $newOwnerId); |
| 219 |
|
} |
| 220 |
|
|
| 221 |
|
/** |
| 222 |
|
* {@inheritdoc} |