<?php require_once ('/usr/local/www/public_html/gallery2/embed.php'); // Path to Gallery's embed.php $ret = GalleryEmbed::init(array('g2Uri'=>'http://www.flashyourweb.com/gallery2/main.php', 'embedUri'=>'http://www.flashyourweb.com/gallery2/embed_samples/g2_html_segments_example.php', 'fullInit'=>'false')); if ($ret) { print $ret->getAsHtml(); } $gallery->setConfig('showSidebarBlocks', false); // you can hide the sidebarblocks in fact you must to use $g2data['sidebarBlocksHtml'] $gallery->setConfig('login', true); // you can allow for login if you want $gallery->setConfig('defaultAlbumId', 32); // set the default home album $ret = GalleryEmbed::setThemeForRequest('matrix'); if ($ret) { print 'Failed to set theme'.$ret->getAsHtml(); } $g2data = GalleryEmbed::handleRequest(); if ($g2data['isDone']) { exit; } GalleryEmbed::done();?>
<link rel="stylesheet" type="text/css" href="/gallery2/main.php?g2_view=imageframe.CSS&g2_frames=shadow"/><title>Gallery User Administration</title><link rel="stylesheet" type="text/css" href="/gallery2/modules/core/data/gallery.css"/><link rel="stylesheet" type="text/css" href="/gallery2/modules/icons/iconpacks/silk/icons.css"/><script type="text/javascript" src="http://www.flashyourweb.com/gallery2/main.php?g2_view=core.CombinedJavascript&g2_key=6eb1cecff47b248dda8f5fde5d742e80"></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/><meta name="robots" content="noindex"/><meta http-equiv="Cache-Control" content="no-cache"/><meta http-equiv="Pragma" content="no-cache"/><meta http-equiv="Expires" content="Thu, 19 Apr 2018 02:03:18 GMT"/><link rel="stylesheet" type="text/css" href="/gallery2/themes/matrix/theme.css"/>
Date: 12/21/2005 Views: 263775
Requires $gallery->setConfig('showSidebarBlocks', false); as seen above.
Basically you would only use this if you were planning on placing your sidebar in a specific location in your layout. Otherwise the sidebar is included in bodyHtml.
<?php if(isset($g2data['sidebarBlocksHtml'])){ foreach ($g2data['sidebarBlocksHtml'] as $snippet) { echo $snippet; } }?>