blob: 59eb5a2ac8f7f312bb82305eb34f22d7fdda673b (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<?php
/**
* @version $Header: /cvsroot/bitweaver/_bit_fisheye/image_lookup_inc.php,v 1.7 2010/02/02 22:02:21 spiderr Exp $
* @package fisheye
* @subpackage functions
*/
global $gContent, $gGallery;
if( $gContent = FisheyeImage::lookup( $_REQUEST ) ) {
// nothing to do. ::lookup will do a full load
} else {
$gContent = new FisheyeImage();
$imageId = NULL;
}
if( !empty( $_REQUEST['gallery_path'] ) ) {
$_REQUEST['gallery_path'] = rtrim( $_REQUEST['gallery_path'], '/' );
$gContent->setGalleryPath( $_REQUEST['gallery_path'] );
$matches = array();
$tail = strrpos( $_REQUEST['gallery_path'], '/' );
$_REQUEST['gallery_id'] = substr( $_REQUEST['gallery_path'], $tail + 1 );
}
if( empty( $_REQUEST['gallery_id'] ) ) {
if( $parents = $gContent->getParentGalleries() ) {
$gal = current( $parents );
$gContent->setGalleryPath( '/'.$gal['gallery_id'] );
$_REQUEST['gallery_id'] = $gal['gallery_id'];
}
}
// the image is considered the primary content, however the gallery is useful
if( !empty($_REQUEST['gallery_id']) && is_numeric($_REQUEST['gallery_id']) ) {
$gGallery = new FisheyeGallery( $_REQUEST['gallery_id'], NULL, FALSE );
$gGallery->load( $gContent->mImageId );
$gBitSmarty->assign_by_ref('gGallery', $gGallery);
$gBitSmarty->assign_by_ref('galleryId', $_REQUEST['gallery_id']);
}
// This user does not own this gallery and they have not been granted the permission to edit this gallery
$gContent->verifyViewPermission();
$gBitSmarty->assign_by_ref('gContent', $gContent);
$gBitSmarty->assign_by_ref('imageId', $gContent->mImageId );
?>
|