blob: 7d628a409e320f77ddd34e93889d394f449519fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
global $gContent;
if (!empty($_REQUEST['gallery_id']) && is_numeric($_REQUEST['gallery_id'])) {
$gContent = new FisheyeGallery( $_REQUEST['gallery_id'] );
if( !$gContent->load() ) {
}
} elseif (!empty($_REQUEST['content_id']) && is_numeric($_REQUEST['content_id'])) {
$gContent = new FisheyeGallery( NULL, $_REQUEST['content_id'] );
if( !$gContent->load() ) {
}
} else {
$gContent = new FisheyeGallery();
$galleryId = NULL;
}
if( !empty( $_REQUEST['gallery_path'] ) ) {
$gContent->setGalleryPath( $_REQUEST['gallery_path'] );
}
$smarty->assign_by_ref('gContent', $gContent);
$smarty->assign_by_ref('galleryId', $gContent->mGalleryId);
?>
|