pictures: update script and removal some all stuff
This commit is contained in:
parent
9c1cc15c8d
commit
6682c60866
3 changed files with 12 additions and 27 deletions
9
apps/gallery/appinfo/update.php
Normal file
9
apps/gallery/appinfo/update.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
|
||||
$stmt = OCP\DB::prepare('DROP TABLE IF EXISTS *PREFIX*gallery_photos');
|
||||
$stmt->execute();
|
||||
$stmt = OCP\DB::prepare('DROP TABLE IF EXISTS *PREFIX*gallery_albums');
|
||||
$stmt->execute();
|
||||
|
||||
\OC_DB::createDbFromStructure('./database.xml');
|
||||
|
|
@ -1 +1 @@
|
|||
0.4.3
|
||||
0.5.0
|
||||
|
|
|
@ -27,30 +27,6 @@ OCP\User::checkLoggedIn();
|
|||
OCP\App::checkAppEnabled('gallery');
|
||||
OCP\App::setActiveNavigationEntry( 'gallery_index' );
|
||||
|
||||
if (!file_exists(OCP\Config::getSystemValue("datadirectory").'/'. OCP\USER::getUser() .'/gallery')) {
|
||||
mkdir(OCP\Config::getSystemValue("datadirectory").'/'. OCP\USER::getUser() .'/gallery');
|
||||
}
|
||||
|
||||
if (!isset($_GET['view'])) {
|
||||
$result = OC_Gallery_Album::find(OCP\USER::getUser());
|
||||
|
||||
$r = array();
|
||||
while ($row = $result->fetchRow())
|
||||
$r[] = $row;
|
||||
|
||||
$tmpl = new OCP\Template( 'gallery', 'index', 'user' );
|
||||
$tmpl->assign('r', $r);
|
||||
$tmpl->printPage();
|
||||
} else {
|
||||
$result = OC_Gallery_Photo::findForAlbum(OCP\USER::getUser(), $_GET['view']);
|
||||
|
||||
$photos = array();
|
||||
while ($p = $result->fetchRow())
|
||||
$photos[] = $p['file_path'];
|
||||
|
||||
$tmpl = new OCP\Template( 'gallery', 'view_album', 'user' );
|
||||
$tmpl->assign('photos', $photos);
|
||||
$tmpl->assign('albumName', $_GET['view']);
|
||||
$tmpl->printPage();
|
||||
}
|
||||
$tmpl = new OCP\Template( 'gallery', 'index', 'user' );
|
||||
$tmpl->printPage();
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue