Welcome to the photo album!
Use the menu on the left to navigate through the pictures.
To download pictures, left click on an image to view the full sized image, then right click
on that image and choose 'Save Picture/Image As'. If you simply right click on the small
thumbnail image and save that one, you will not be downloading the full sized image, but
the small thumbnail version of it.";
$NUMBER_OF_THUMBNAILS_PER_ROW = 3; // Number of thumbnails to display on each row
$SHOW_FILENAMES = $YES; // ($YES or $NO) Display the filenames of the pictures
$SHOW_PICTURE_NUMBERS = $YES; // ($YES or $NO) Display the picture numbers (in the order they are displayed)
$DISPLAY_PICTURES_IN_HOME = $YES; // ($YES or $NO) Display the pictures in the Home directory (where this file is placed). NOTE: $SHOW_ALL_PICTURES_IN_HOME_AND_HIDE_DIRECTORY_MENU overrides this setting
$SHOW_DIRECTORY_MENU = $YES; // ($YES or $NO) Show the Directory Menu or not (If set to $NO, only pictures in the Home directory will be visible). NOTE: $SHOW_ALL_PICTURES_IN_HOME_AND_HIDE_DIRECTORY_MENU overrides this setting
$SHOW_DIRECTORY_NUMBERS = $NO; // ($YES or $NO) Show the directory level numbers in the Directory Menu
// Display all pictures from ALL DIRECTORIES and hide the Directory Menu (since it won't be needed because all pictures are being displayed)
// NOTE: If this is $YES, $DISPLAY_PICTURES_IN_HOME and $SHOW_DIRECTORY_MENU variables are ignored
// NOTE: Accessing the photo gallery using this set to $YES and the Pictures Per Page option set to 0 (display all pictures)
// may result in a timeout the first few times the photo gallery is accessed for the reason described
// in the OPTIONAL section at the top of this file, so you may need to access the site a few times before all pictures are actually
// displayed. If there are too many pictures in the photo gallery (thousands), the page may never completely load all of the pictures before
// the timeout, so you may want to force using X number of Pictures Per Page (Set $DISABLE_VIEW_ALL_PICTURES_OPTION = $YES and make sure $DEFAULT_PICTURES_PER_PAGE is not 0)
$SHOW_ALL_PICTURES_AND_HIDE_DIRECTORY_MENU = $NO; // ($YES or $NO)
// This will display a link to the Dans One File Photo Gallery homepage. I would appreciate you leaving this on, but if you really don't want it shown you can easily turn it off
$SHOW_FOOTER = $YES; // ($YES or $NO)
// END CONFIGURATION SECTION
// DO NOT EDIT THIS SECTION ?>
"); // If we are not on the first Page if ($CurrentPicturePage > 1) { // Display Previous Page link (htmlentities() is used to allow special characters, like apostrophes, by converting them into html entities) print("Previous "); }else { // Display Previous Page, but not as a link print("Previous "); } print(" | "); // Loop through all Pages for ($Count = 0; $Count < $NumberOfPages; $Count++) { // Display Page as a link (htmlentities() is used to allow special characters, like apostrophes, by converting them into html entities) print("" . ($Count + 1) . " "); } print(" | "); // If there are more Pages if ($CurrentPicturePage < $NumberOfPages) { // Display Next Page link print(" Next"); }else { // Display Next Page, but not as a link print(" Next"); } print(" |