1
0

Initial Commit.

Signed-off-by: Bharat Mediratta <bharat@menalto.com>
This commit is contained in:
rWatcher 2009-07-09 03:56:06 +08:00 committed by Bharat Mediratta
parent 1ad1beac73
commit a50a4e0a5f
6 changed files with 254 additions and 0 deletions

View File

@ -0,0 +1,139 @@
<?php defined("SYSPATH") or die("No direct script access.");
/**
* Gallery - a web based photo album viewer and editor
* Copyright (C) 2000-2009 Bharat Mediratta
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
class latestupdates_Controller extends Controller {
public function albums($id) {
// Figure out how many items to display on each page.
$itemsPerPage = module::get_var("gallery", "page_size", 9);
// Figure out which page # the visitor is on and
// don't allow the visitor to go below page 1.
$page = $this->input->get("page", 1);
if ($page < 1) {
url::redirect("latestupdates/albums/{$item->id}");
}
// First item to display.
$offset = ($page - 1) * $itemsPerPage;
// Determine the total number of items,
// for page numbering purposes.
$count = ORM::factory("item", $id)
->viewable()
->where("type !=", "album")
->orderby("created", "DESC")
->descendants()
->count();
// Figure out what the highest page number is.
$max_pages = ceil($count / $itemsPerPage);
// Don't let the visitor go past the last page.
if ($max_pages && $page > $max_pages) {
url::redirect("latestupdates/albums/{$item->id}?page=$max_pages");
}
// Figure out which items to display on this page.
$children = ORM::factory("item", $id)
->viewable()
->where("type !=", "album")
->orderby("created", "DESC")
->limit($itemsPerPage)
->offset($offset)
->descendants();
// Set up the previous and next page buttons.
if ($page > 1) {
$previous_page = $page - 1;
$view->previous_page_link = url::site("latestupdates/albums/{$item->id}?page={$previous_page}");
}
if ($page < $max_pages) {
$next_page = $page + 1;
$view->next_page_link = url::site("latestupdates/albums/{$item->id}?page={$next_page}");
}
// Set up and display the actual page.
$template = new Theme_View("page.html", "updates");
$template->set_global("page_size", $itemsPerPage);
$template->set_global("children_count", $count);
$template->content = new View("updates.html");
$template->content->items = $children;
$template->content->q = count($children);
print $template;
}
public function updates() {
// Figure out how many items to display on each page.
$itemsPerPage = module::get_var("gallery", "page_size", 9);
// Figure out which page # the visitor is on and
// don't allow the visitor to go below page 1.
$page = $this->input->get("page", 1);
if ($page < 1) {
url::redirect("latestupdates/updates");
}
// First item to display.
$offset = ($page - 1) * $itemsPerPage;
// Determine the total number of items,
// for page numbering purposes.
$count = ORM::factory("item")
->viewable()
->where("type !=", "album")
->find_all()
->count();
// Figure out what the highest page number is.
$max_pages = ceil($count / $itemsPerPage);
// Don't let the visitor go past the last page.
if ($max_pages && $page > $max_pages) {
url::redirect("latestupdates/updates?page=$max_pages");
}
// Figure out which items to display on this page.
$items = ORM::factory("item")
->viewable()
->where("type !=", "album")
->orderby("created", "DESC")
->find_all($itemsPerPage, $offset);
// Set up the previous and next page buttons.
if ($page > 1) {
$previous_page = $page - 1;
$view->previous_page_link = url::site("latestupdates/updates?page={$previous_page}");
}
if ($page < $max_pages) {
$next_page = $page + 1;
$view->next_page_link = url::site("latestupdates/updates?page={$next_page}");
}
// Set up and display the actual page.
$template = new Theme_View("page.html", "updates");
$template->set_global("page_size", $itemsPerPage);
$template->set_global("children_count", $count);
$template->content = new View("updates.html");
$template->content->items = $items;
$template->content->q = count($items);
print $template;
}
}

View File

@ -0,0 +1,31 @@
<?php defined("SYSPATH") or die("No direct script access.");
/**
* Gallery - a web based photo album viewer and editor
* Copyright (C) 2000-2009 Bharat Mediratta
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
class latestupdates_installer {
static function install() {
$version = module::get_version("latestupdates");
if ($version == 0) {
module::set_version("latestupdates", 1);
}
}
static function uninstall() {
module::delete("latestupdates");
}
}

View File

@ -0,0 +1,38 @@
<?php defined("SYSPATH") or die("No direct script access.");
/**
* Gallery - a web based photo album viewer and editor
* Copyright (C) 2000-2009 Bharat Mediratta
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
class latestupdates_theme_Core {
static function sidebar_blocks($theme) {
if (!$theme->item()) {
return;
}
$albumID = $theme->item->is_album() ? $theme->item->id : $theme->item->parent_id;
$block = new Block();
$block->css_id = "gUpdates";
$block->title = t("Updates");
$block->content = new View("latestupdates_block.html");
$block->content->updateLinks = array(
t("Entire Gallery") => url::site("latestupdates/updates"),
t("This Album") => url::site("latestupdates/albums/$albumID")
);
return $block;
}
}

View File

@ -0,0 +1,3 @@
name = LatestUpdates
description = Display recently uploaded photos and videos.
version = 1

View File

@ -0,0 +1,10 @@
<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul id="gUpdates">
<? foreach($updateLinks as $title => $url): ?>
<li style="clear: both;">
<a href="<?= $url ?>">
<?= $title ?>
</a>
</li>
<? endforeach ?>
</ul>

View File

@ -0,0 +1,33 @@
<?php defined("SYSPATH") or die("No direct script access.") ?>
<? // @todo Set hover on AlbumGrid list items ?>
<div id="gLatestUpdates">
<h1><?= t("Latest Updates") ?></h1>
<? array("term" => p::clean($q)) ?>
<? if (count($items)): ?>
<ul id="gAlbumGrid">
<? foreach ($items as $item): ?>
<? $item_class = "gPhoto"; ?>
<? if ($item->is_album()): ?>
<? $item_class = "gAlbum"; ?>
<? endif ?>
<li class="gItem <?= $item_class ?>">
<a href="<?= url::site("items/$item->id") ?>">
<?= $item->thumb_img() ?>
<p>
<?= p::clean($item->title) ?>
</p>
<div>
<?= p::clean($item->description) ?>
</div>
</a>
</li>
<? endforeach ?>
</ul>
<?= $theme->pager() ?>
<? else: ?>
<p><?= t("There are no items to display.") ?></p>
<? endif; ?>
</div>