blob: 1e74c3e246a717725b279981b2566a233975b4a8 (
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
25
|
<?php
/**
* @package fisheye
* @subpackage functions
*/
global $gContent;
$lookup = array();
if( !$gContent = FisheyeGallery::lookup( $_REQUEST ) ) {
$gContent = new FisheyeGallery();
$galleryId = NULL;
}
if( !empty( $_REQUEST['gallery_path'] ) ) {
$gContent->setGalleryPath( $_REQUEST['gallery_path'] );
} elseif( $gContent->isValid() && $parents = $gContent->getParentGalleries() ) {
$gal = current( $parents );
$gContent->setGalleryPath( '/'.$gal['gallery_id'] );
}
$gBitSmarty->assign_by_ref('gContent', $gContent);
$gBitSmarty->assign_by_ref('galleryId', $gContent->mGalleryId);
|