1
0

Updated for new sidebar code.

This commit is contained in:
rWatcher 2009-10-13 05:00:07 +08:00 committed by Bharat Mediratta
parent 46a6db4c9f
commit bd23299c67
5 changed files with 59 additions and 29 deletions

View File

@ -0,0 +1,55 @@
<?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 embedlinks_block_Core {
static function get_site_list() {
return array("embed_links_dialog" => t("Embed Links Dialog"), "embed_links_album" => t("Embed Links Album"));
}
static function get($block_id, $theme) {
$block = "";
switch ($block_id) {
case "embed_links_dialog":
// If displaying links in a dialog box is enabled then
// insert buttons into the bottom of the side bar
// to open up the dialog window.
if (module::get_var("embedlinks", "DialogLinks") && $theme->item()) {
$block = new Block();
$block->css_id = "g-embed-links-sidebar";
$block->title = t("Link To This Page");
$block->content = new View("embedlinks_sidebar.html");
}
break;
case "embed_links_album":
// If the current item is an album and if "In Page" links are enabled then
// display links to the current album in the theme sidebar.
if ($theme->item()->is_album() && module::get_var("embedlinks", "InPageLinks")) {
$block = new Block();
$block->css_id = "g-embed-links-album-sidebar";
$block->title = t("Links");
$block->content = new View("embedlinks_album_block.html");
}
break;
}
return $block;
}
}

View File

@ -18,31 +18,6 @@
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
class embedlinks_theme_Core {
static function sidebar_blocks($theme) {
// If the current item is an album and if "In Page" links are enabled then
// display links to the current album in the theme sidebar.
if ($theme->item()->is_album() && module::get_var("embedlinks", "InPageLinks")) {
$block = new Block();
$block->css_id = "g-metadata";
$block->title = t("Links");
$block->content = new View("embedlinks_album_block.html");
return $block;
}
}
static function sidebar_bottom($theme) {
// If displaying links in a dialog box is enabled then
// insert buttons into the bottom of the side bar
// to open up the dialog window.
if (module::get_var("embedlinks", "DialogLinks")) {
$block = new Block();
$block->css_id = "g-metadata";
$block->title = t("Link To This Page:");
$block->content = new View("embedlinks_sidebar.html");
return $block;
}
}
static function photo_bottom($theme) {
// If the current item is a photo and displaying "In Page" links
// is enabled, then insert HTML/BBCode links into the bottom

View File

@ -1,3 +1,3 @@
name = EmbedLinks
description = Display BBCode and HTML code to embed links to albums/images into other web pages.
name = "EmbedLinks"
description = "Display BBCode and HTML code to embed links to albums/images into other web pages."
version = 1

View File

@ -5,7 +5,7 @@ input[type="text"] {
}
</style>
<h1 style="display: none;"><?= t("HTML Code") ?></h1>
<div id="g-embed-linksHTMLData">
<div id="g-embed-links-html-data">
<? $counter = 0; ?>
<? for ($i = 0; $i < count($titles); $i++): ?>
<table class="g-links-html" >

View File

@ -7,7 +7,7 @@ input[type="text"] {
<? if (module::get_var("embedlinks", "HTMLCode")) { ?>
<h3 align="center"><?= t("HTML Links")?></h3>
<table class="g-embed-link">
<table class="g-embed-links">
<tbody>
<tr>
<th colspan="2"><?= t("Link To This Page:") ?></th>