2011-10-02 15:52:04 +04:00
|
|
|
<?php
|
2011-09-26 00:32:08 +04:00
|
|
|
OC_Util::addStyle('gallery', 'styles');
|
|
|
|
OC_Util::addScript('gallery', 'album_cover');
|
|
|
|
OC_Util::addScript( 'files_imageviewer', 'lightbox' );
|
|
|
|
OC_Util::addStyle( 'files_imageviewer', 'lightbox' );
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div id="controls">
|
|
|
|
<a href="?"><input type="button" value="Back" /></a><br/>
|
|
|
|
</div>
|
|
|
|
<div id="gallery_list">
|
2011-10-02 15:52:04 +04:00
|
|
|
<?php
|
2011-09-26 00:32:08 +04:00
|
|
|
foreach ($_['photos'] as $a) {
|
|
|
|
?>
|
2011-10-02 15:52:04 +04:00
|
|
|
<a onclick="javascript:viewImage('/','<?php echo $a; ?>');"><img src="ajax/thumbnail.php?img=<?php echo $a ?>"></a>
|
|
|
|
<?php
|
2011-09-26 00:32:08 +04:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
</div>
|