-
181105 037 edaForum18 26
-
181105 044 edaForum18 29
-
181105 034 edaForum18 25
-
181105 040 edaForum18 27
-
181105 041 edaForum18 28
-
181105 046 edaForum18 30
-
181106 047 edaForum18 31
-
181106 050 edaForum18 32
-
181106 053 edaForum18 33
-
181106 054 edaForum18 34
-
181106 060 edaForum18 36
-
181106 065 edaForum18 37
-
181106 059 edaForum18 35
-
181106 068 edaForum18 38
-
181106 073 edaForum18 40
-
181106 070 edaForum18 39
-
181106 076 edaForum18 41
-
181106 081 edaForum18 44
-
181106 085 edaForum18 45
-
181106 077 edaForum18 42
-
181106 079 edaForum18 43
-
181106 087 edaForum18 46
-
181106 088 edaForum18 47
-
181106 089 edaForum18 48
-
181106 091 edaForum18 49
-
181106 095 edaForum18 53
-
181106 092 edaForum18 50
-
181106 094 edaForum18 52
-
181106 093 edaForum18 51
-
181106 096 edaForum18 54
-
181106 097 edaForum18 55
-
181106 098 edaForum18 56
-
181106 099 edaForum18 57
-
181106 102 edaForum18 60
-
181106 101 edaForum18 59
-
181106 100 edaForum18 58
-
181106 103 edaForum18 61
-
181106 104 edaForum18 62
-
181106 107 edaForum18 63
-
181106 109 edaForum18 65
// This is a generic paginator for album, photo and movie pages. Depending on the page type,
// there are different sets of variables available. With this data, you can make a paginator
// that lets you say "You're viewing photo 5 of 35", or "You're viewing photos 10 - 18 of 37"
// for album views.
//
// Available variables for all page types:
// $page_type - "collection", "item", or "other"
// $page_subtype - "album", "movie", "photo", "tag", etc.
// $previous_page_url - the url to the previous page, if there is one
// $next_page_url - the url to the next page, if there is one
// $total - the total number of photos in this album
//
// Available for the "collection" page types:
// $page - what page number we're on
// $max_pages - the maximum page number
// $page_size - the page size
// $first_page_url - the url to the first page, or null if we're on the first page
// $last_page_url - the url to the last page, or null if we're on the last page
// $first_visible_position - the position number of the first visible photo on this page
// $last_visible_position - the position number of the last visible photo on this page
//
// Available for "item" page types:
// $position - the position number of this photo
//
?>