diff options
| author | Nigel Osborne <kiwi3685@me.com> | 2012-10-14 20:59:51 +0000 |
|---|---|---|
| committer | Nigel Osborne <kiwi3685@me.com> | 2012-10-14 20:59:51 +0000 |
| commit | f0abcacb035bb796fd7a2289f51d83912a685cc8 (patch) | |
| tree | 5f8ded949d09239f49ca1fe463eb83da734cefb0 /modules_v3/theme_select | |
| parent | b6d29f7924c070c0c3a74a33dc45bebc00feb0dd (diff) | |
| download | webtrees-f0abcacb035bb796fd7a2289f51d83912a685cc8.tar.gz webtrees-f0abcacb035bb796fd7a2289f51d83912a685cc8.tar.bz2 webtrees-f0abcacb035bb796fd7a2289f51d83912a685cc8.zip | |
Revert changes to random media block.
Diffstat (limited to 'modules_v3/theme_select')
| -rw-r--r-- | modules_v3/theme_select/module.php | 79 |
1 files changed, 0 insertions, 79 deletions
diff --git a/modules_v3/theme_select/module.php b/modules_v3/theme_select/module.php deleted file mode 100644 index a57ed52bb0..0000000000 --- a/modules_v3/theme_select/module.php +++ /dev/null @@ -1,79 +0,0 @@ -<?php -// Classes and libraries for module system -// -// webtrees: Web based Family History software -// Copyright (C) 2011 webtrees development team. -// -// Derived from PhpGedView -// Copyright (C) 2010 John Finlay -// -// 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// $Id$ - -if (!defined('WT_WEBTREES')) { - header('HTTP/1.0 403 Forbidden'); - exit; -} - -class theme_select_WT_Module extends WT_Module implements WT_Module_Block { - // Extend class WT_Module - public function getTitle() { - return /* I18N: Name of a module */ WT_I18N::translate('Theme change'); - } - - // Extend class WT_Module - public function getDescription() { - return /* I18N: Description of the "Theme change" module */ WT_I18N::translate('An alternative way to select a new theme.'); - } - - // Implement class WT_Module_Block - public function getBlock($block_id, $template=true, $cfg=null) { - $id=$this->getName().$block_id; - $class=$this->getName().'_block'; - $title=$this->getTitle(); - $menu=WT_MenuBar::getThemeMenu(); - if ($menu) { - $content='<br><div class="center theme_form">'.WT_MenuBar::getThemeMenu()->getMenuAsDropdown().'</div><br>'; - - if ($template) { - require WT_THEME_DIR.'templates/block_main_temp.php'; - } else { - return $content; - } - } else { - return ''; - } - } - - // Implement class WT_Module_Block - public function loadAjax() { - return false; - } - - // Implement class WT_Module_Block - public function isUserBlock() { - return true; - } - - // Implement class WT_Module_Block - public function isGedcomBlock() { - return true; - } - - // Implement class WT_Module_Block - public function configureBlock($block_id) { - } -} |
