ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
AbstractBackend.php
Go to the documentation of this file.
1<?php
2
4
16abstract class AbstractBackend implements BackendInterface {
17
30 function getMultipleCards($addressBookId, array $uris) {
31
32 return array_map(function($uri) use ($addressBookId) {
33 return $this->getCard($addressBookId, $uri);
34 }, $uris);
35
36 }
37
38}
An exception for terminatinating execution or to throw for unit testing.
getMultipleCards($addressBookId, array $uris)
Returns a list of cards.
getCard($addressBookId, $cardUri)
Returns a specfic card.