本文整理汇总了PHP中DataAccess::GetMaps方法的典型用法代码示例。如果您正苦于以下问题:PHP DataAccess::GetMaps方法的具体用法?PHP DataAccess::GetMaps怎么用?PHP DataAccess::GetMaps使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DataAccess
的用法示例。
在下文中一共展示了DataAccess::GetMaps方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Execute
public function Execute()
{
$viewData = array();
$errors = array();
if (Helper::IsLoggedInAdmin() && isset($_GET["loginAsUser"])) {
// login as a certain user and redirect to his page
if (Helper::LoginUserByUsername($_GET["loginAsUser"])) {
Helper::Redirect("index.php?" . Helper::CreateQuerystring(getCurrentUser()));
}
}
$viewData["Users"] = DataAccess::GetAllUsers(!Helper::IsLoggedInAdmin());
$viewData["LastMapForEachUser"] = DataAccess::GetLastMapsForUsers("date");
// last x maps
$numberOfMaps = isset($_GET["lastMaps"]) && is_numeric($_GET["lastMaps"]) ? (int) $_GET["lastMaps"] : (isset($_GET["lastMaps"]) && $_GET["lastMaps"] == "all" ? 999999 : 10);
$viewData["LastMaps"] = DataAccess::GetMaps(0, 0, 0, 0, null, $numberOfMaps, "createdTime", Helper::GetLoggedInUserID());
// last x comments
$numberOfComments = isset($_GET["lastComments"]) && is_numeric($_GET["lastComments"]) ? (int) $_GET["lastComments"] : (isset($_GET["lastComments"]) && $_GET["lastComments"] == "all" ? 999999 : 10);
$viewData["LastComments"] = DataAccess::GetLastComments($numberOfComments, Helper::GetLoggedInUserID());
$viewData["OverviewMapData"] = null;
$categories = DataAccess::GetCategoriesByUserID();
foreach ($viewData["LastMaps"] as $map) {
$data = Helper::GetOverviewMapData($map, false, true, true, $categories);
if ($data != null) {
$viewData["OverviewMapData"][] = $data;
}
}
if (isset($_GET["error"]) && $_GET["error"] == "email") {
$errors[] = sprintf(__("ADMIN_EMAIL_ERROR"), ADMIN_EMAIL);
}
$viewData["Errors"] = $errors;
return $viewData;
}
示例2: Execute
public function Execute()
{
$viewData = array();
// check if user is not specified or hidden
if (!getCurrentUser()) {
// all maps in archive
$mode = "all";
$count = $_GET["count"];
if (!$count) {
$count = 30;
}
$maps = DataAccess::GetMaps(0, 0, 0, 0, null, $count, "ID");
$categories = DataAccess::GetCategoriesByUserID();
$users = DataAccess::GetAllUsers(true);
$viewData["Title"] = _SITE_TITLE;
$viewData["LastCreatedTime"] = date("r", DataAccess::GetLastCreatedTime());
$viewData["Description"] = _SITE_DESCRIPTION;
$viewData["WebsiteUrl"] = Helper::GlobalPath("index.php");
} else {
// specified archive
$mode = "user";
if (!getCurrentUser()->Visible) {
die;
}
$users[getCurrentUser()->ID] = getCurrentUser();
$maps = DataAccess::GetMaps(getCurrentUser()->ID);
$categories = DataAccess::GetCategoriesByUserID(getCurrentUser()->ID);
$viewData["Title"] = __("PAGE_TITLE");
$viewData["LastCreatedTime"] = date("r", DataAccess::GetLastCreatedTime(getCurrentUser()->ID));
$viewData["Description"] = __("RSS_DESCRIPTION");
$viewData["WebsiteUrl"] = Helper::GlobalPath("index.php?" . Helper::CreateQuerystring(getCurrentUser()));
}
$viewData["Items"] = array();
foreach ($maps as $map) {
$item = array();
$user = $users[$map->UserID];
$item["Title"] = hsc(Helper::DateToLongString(Helper::StringToTime($map->Date, true)) . ": " . $map->Name);
$item["URL"] = $map->MapImage ? Helper::GlobalPath('show_map.php?user=' . urlencode($user->Username) . '&map=' . $map->ID) : "";
$atoms = array();
if (__("SHOW_MAP_AREA_NAME") && $map->MapName != "") {
$atoms[] = $map->MapName;
}
if (__("SHOW_ORGANISER") && $map->Organiser != "") {
$atoms[] = $map->Organiser;
}
if (__("SHOW_COUNTRY") && $map->Country != "") {
$atoms[] = $map->Country;
}
$atoms2 = array();
if (__("SHOW_DISCIPLINE") && $map->Discipline != "") {
$atoms2[] = hsc($map->Discipline);
}
if (__("SHOW_RELAY_LEG") && $map->RelayLeg != "") {
$atoms2[] = __("RELAY_LEG_LOWERCASE") . ' ' . hsc($map->RelayLeg);
}
$item["Description"] = ($mode == "all" ? hsc($user->FirstName . " " . $user->LastName . '<br />') : '') . __("CATEGORY") . ": " . hsc($categories[$map->CategoryID]->Name) . hsc('<br />') . hsc(join(", ", $atoms)) . hsc('<br />') . join(", ", $atoms2);
$item["PubDate"] = hsc(date("r", Helper::StringToTime($map->CreatedTime, true)));
$viewData["Items"][] = $item;
}
return $viewData;
}
示例3: Execute
public function Execute()
{
$viewData = array();
// no user specified - redirect to user list page
if (!getCurrentUser()) {
$singleUserID = DataAccess::GetSingleUserID();
if (!$singleUserID) {
Helper::Redirect("users.php");
}
Helper::SetUser(DataAccess::GetUserByID($singleUserID));
}
// user is hidden - redirect to user list page
if (!getCurrentUser()->Visible) {
Helper::Redirect("users.php");
}
$searchCriteria = Session::GetSearchCriteria(getCurrentUser()->ID);
if (!isset($searchCriteria)) {
// default search criteria
$searchCriteria = array("selectedYear" => date("Y"), "selectedCategoryID" => getCurrentUser()->DefaultCategoryID, "filter" => null);
}
$viewData["Errors"] = array();
if (isset($_GET["error"]) && $_GET["error"] == "thumbnailCreationFailure") {
// calculate max image size for auto-generation of thumbnail
$memoryLimit = ini_get("memory_limit");
if (stripos($memoryLimit, "M")) {
$memoryLimit = (int) str_replace("M", "", $memoryLimit) * 1024 * 1024;
}
$memoryLimit -= memory_get_usage();
$size = round(sqrt($memoryLimit / 4) / 100) * 100;
$viewData["Errors"][] = sprintf(__("THUMBNAIL_CREATION_FAILURE"), $size . "x" . $size);
}
// get all categories
$allCategoriesItem = new Category();
$allCategoriesItem->ID = 0;
$allCategoriesItem->Name = __("ALL_CATEGORIES");
$categories = DataAccess::GetCategoriesByUserID(getCurrentUser()->ID);
$viewData["Categories"] = $categories;
$viewData["CategoriesWithText"] = array_merge(array(0 => $allCategoriesItem), $categories);
// get all years
$years = DataAccess::GetYearsByUserID(getCurrentUser()->ID, Helper::GetLoggedInUserID());
$years = array_reverse($years);
$viewData["YearsWithText"][0] = array("value" => 0, "text" => __("ALL_YEARS"));
foreach ($years as $year) {
$viewData["YearsWithText"][$year] = array("value" => $year, "text" => $year);
}
if (!in_array($searchCriteria["selectedYear"], array_keys($viewData["YearsWithText"])) && count($years) > 0) {
$searchCriteria["selectedYear"] = $years[0];
}
$categoryIds = array_keys($categories);
if ($searchCriteria["selectedCategoryID"] != 0 && !in_array($searchCriteria["selectedCategoryID"], $categoryIds) && count($categories) > 0) {
$searchCriteria["selectedCategoryID"] = $categoryIds[0];
}
if (isset($_GET["year"])) {
$searchCriteria["selectedYear"] = $_GET["year"];
}
if (isset($_GET["categoryID"])) {
$searchCriteria["selectedCategoryID"] = $_GET["categoryID"];
}
if (isset($_GET["filter"])) {
$searchCriteria["filter"] = $_GET["filter"];
}
if (isset($_GET["displayMode"])) {
$viewData["DisplayMode"] = $_GET["displayMode"];
} else {
$viewData["DisplayMode"] = "list";
}
$startDate = $searchCriteria["selectedYear"] == 0 ? 0 : Helper::StringToTime($searchCriteria["selectedYear"] . "-01-01", true);
$endDate = $searchCriteria["selectedYear"] == 0 ? 0 : Helper::StringToTime($searchCriteria["selectedYear"] . "-12-31", true);
$viewData["SearchCriteria"] = $searchCriteria;
// get map data
$viewData["Maps"] = DataAccess::GetMaps(getCurrentUser()->ID, $startDate, $endDate, $searchCriteria["selectedCategoryID"], $searchCriteria["filter"], 0, "date", Helper::GetLoggedInUserID());
$viewData["GeocodedMapsExist"] = false;
foreach ($viewData["Maps"] as $map) {
$mapInfo = array();
$mapInfo["URL"] = $map->MapImage ? 'show_map.php?' . Helper::CreateQuerystring(getCurrentUser(), $map->ID) : "";
$mapInfo["Name"] = $map->Name . ' (' . date(__("DATE_FORMAT"), Helper::StringToTime($map->Date, true)) . ')';
$mapInfo["MapThumbnailHtml"] = Helper::EncapsulateLink('<img src="' . Helper::GetThumbnailImage($map) . '" alt="' . $mapInfo["Name"] . '" height="' . THUMBNAIL_HEIGHT . '" width="' . THUMBNAIL_WIDTH . '" />', $mapInfo["URL"]);
$atoms = array();
if (__("SHOW_MAP_AREA_NAME") && $map->MapName) {
$atoms[] = $map->MapName;
}
if (__("SHOW_ORGANISER") && $map->Organiser) {
$atoms[] = $map->Organiser;
}
if (__("SHOW_COUNTRY") && $map->Country) {
$atoms[] = $map->Country;
}
$mapInfo["MapAreaOrganiserCountry"] = join(", ", $atoms);
if ($map->Comment) {
$maxLength = 130;
$strippedComment = strip_tags($map->Comment);
$mapInfo["IsExpandableComment"] = !($strippedComment == $map->Comment && strlen($map->Comment) <= $maxLength);
if ($mapInfo["IsExpandableComment"]) {
$mapInfo["ContractedComment"] = substr($strippedComment, 0, $maxLength) . "...";
}
}
$viewData["MapInfo"][$map->ID] = $mapInfo;
if ($viewData["DisplayMode"] == "overviewMap" && $map->IsGeocoded) {
$viewData["OverviewMapData"][] = Helper::GetOverviewMapData($map, false, true, false, $categories, $searchCriteria["selectedCategoryID"]);
}
//.........这里部分代码省略.........