本文整理汇总了PHP中UserRepository::LoadAll方法的典型用法代码示例。如果您正苦于以下问题:PHP UserRepository::LoadAll方法的具体用法?PHP UserRepository::LoadAll怎么用?PHP UserRepository::LoadAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserRepository
的用法示例。
在下文中一共展示了UserRepository::LoadAll方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Map
public function Map()
{
//Gibt alle öffentlichen Todoentries zurück
$this->Route('GET', '/todoentry', function () {
$todoEntryRepository = new TodoEntryRepository();
$entries = $todoEntryRepository->LoadWhere("Public = 1", [["CreatorUserId" => "user", "ProofPhotoId" => "media"]]);
$counter = 0;
while ($counter < count($entries)) {
unset($entries[$counter]["Public"]);
unset($entries[$counter]["user"]["Email"]);
$counter++;
}
$this->Send($entries);
});
//Gibt einen Zufälligen EntryofTheDay zurück
$this->Route('GET', '/entryoftheday', function () {
$entryOfTheDayRepository = new EntryOfTheDayRepository();
$entries = $entryOfTheDayRepository->LoadOrderBy("RAND() LIMIT 1", [["UserId" => "user"]]);
$entry = $entries[0];
$this->Send(["Message" => $entry["Message"], "user" => ["Id" => $entry["user"]["Id"], "Username" => $entry["user"]["Username"], "Profilepicture" => $entry["user"]["Profilepicture"]]]);
});
//Zeigt die Anzahl User
$this->Route('GET', '/user-count', function () {
$userRepository = new UserRepository();
$number = count($userRepository->LoadAll());
$this->Send(array("amount" => $number));
});
//Lädt alle User
$this->Route('GET', '/users', function () {
$userRepository = new UserRepository();
$users = $userRepository->LoadAll();
$counter = 0;
while ($counter < count($users)) {
unset($users[$counter]["Password"]);
unset($users[$counter]["Email"]);
$counter++;
}
$this->Send($users);
});
}