jgallery2-php-foto-album
Gesponsorde koppelingen
PHP script bestanden
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
// Define the template,must be in 'jGallery2/templates/'
define( 'JGALL_TEMPLATE' , 'nautilus' );
// Define the language, must be in 'jGallery2/language/'
define( 'JGALL_LANGUAGE' , 'english' );
// Define weither you want to cache large images
// 0 for no, 1 for yes
define( 'JGALL_SAVE_LARGE_THUMBS' , 0 );
// Define the size of the thumbnails in the gallery
define( 'JGALL_THUMBNAIL_SIZE' , 118 );
// Define the thumbnail display mode
// 'OAR' for original aspect ratio
// 'RS' for resized cropped square
// 'ZS' for zoomed-in square
define( 'JGALL_THUMBNAIL_DISPLAY_MODE' , 'OAR' );
// Define the number of thumbnail columns
define( 'JGALL_THUMBNAIL_COLS' , 4 );
// Define the number of thumbnail rows
define( 'JGALL_THUMBNAIL_ROWS' , 3 );
// Define the number of characters in filenames under thumbnails
define( 'JGALL_FILENAME_LENGTH' , 18 );
// Define the size of images in image-view mode
define( 'JGALL_VIEW_IMG_SIZE' , 550 );
// Define what divides the breadcrumb links in the location bar (left top)
define( 'JGALL_BREADCRUMB_DEVIDER' , ' / ' );
// Define what divides the page links in the page link bar
define( 'JGALL_PAGELINK_DEVIDER' , ' | ' );
// Define include path for inclusion.
// Path must be relative to the page you include it in
// For example 'scripts/PHP/jGallery2/'
define( 'JGALL_INC_PATH' , 'jGallery2/' );
// Include jGallery
include( JGALL_INC_PATH . 'index.php' );
?>
// Define the template,must be in 'jGallery2/templates/'
define( 'JGALL_TEMPLATE' , 'nautilus' );
// Define the language, must be in 'jGallery2/language/'
define( 'JGALL_LANGUAGE' , 'english' );
// Define weither you want to cache large images
// 0 for no, 1 for yes
define( 'JGALL_SAVE_LARGE_THUMBS' , 0 );
// Define the size of the thumbnails in the gallery
define( 'JGALL_THUMBNAIL_SIZE' , 118 );
// Define the thumbnail display mode
// 'OAR' for original aspect ratio
// 'RS' for resized cropped square
// 'ZS' for zoomed-in square
define( 'JGALL_THUMBNAIL_DISPLAY_MODE' , 'OAR' );
// Define the number of thumbnail columns
define( 'JGALL_THUMBNAIL_COLS' , 4 );
// Define the number of thumbnail rows
define( 'JGALL_THUMBNAIL_ROWS' , 3 );
// Define the number of characters in filenames under thumbnails
define( 'JGALL_FILENAME_LENGTH' , 18 );
// Define the size of images in image-view mode
define( 'JGALL_VIEW_IMG_SIZE' , 550 );
// Define what divides the breadcrumb links in the location bar (left top)
define( 'JGALL_BREADCRUMB_DEVIDER' , ' / ' );
// Define what divides the page links in the page link bar
define( 'JGALL_PAGELINK_DEVIDER' , ' | ' );
// Define include path for inclusion.
// Path must be relative to the page you include it in
// For example 'scripts/PHP/jGallery2/'
define( 'JGALL_INC_PATH' , 'jGallery2/' );
// Include jGallery
include( JGALL_INC_PATH . 'index.php' );
?>