1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
<?php
/**
* RSS Block
*
* This is the RSS block
*
* webtrees: Web based Family History software
* Copyright (C) 2010 webtrees development team.
*
* Derived from PhpGedView
* Copyright (C) 2002 to 2009 PGV Development Team. All rights reserved.
*
* Modifications Copyright (c) 2010 Greg Roach
*
* 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
*
* @package webtrees
* @subpackage Blocks
* @version $Id$
*/
if (!defined('WT_WEBTREES')) {
header('HTTP/1.0 403 Forbidden');
exit;
}
define('WT_RSS_BLOCK_PHP', '');
global $GEDCOM_TITLE;
$WT_BLOCKS['print_RSS_block']=array(
'name'=>i18n::translate('RSS Feeds'),
'type'=>'gedcom',
'descr'=>i18n::translate('News and links from the %s site', $GEDCOM_TITLE),
'canconfig'=>false,
'config'=>array(
'cache'=>0
)
);
/**
* Print RSS Block
*
* Prints a block allowing the user to login to the site directly from the portal
*/
function print_RSS_block($block = true, $config="", $side, $index) {
$id="rss_block";
$title=i18n::translate('RSS Feeds').help_link('rss_feed');
$content = "<div class=\"center\">";
$content .= "<form method=\"post\" action=\"\" name=\"rssform\">";
$content .= "<br />";
$content .= "<select name=\"rssStyle\" class=\"header_select\" onchange=\"javascript:document.getElementById('rss_button').href = '".encode_url("rss.php?ged=".WT_GEDCOM."&lang=".WT_LOCALE) . "' + (document.rssform.module.value==''? '' : '&module=' + document.rssform.module.value) + (document.rssform.rssStyle.value==''? '' : '&rssStyle=' + document.rssform.rssStyle.value);\">";
$content .= "<option value=\"ATOM\" selected=\"selected\">ATOM 1.0</option>";
$content .= "<option value=\"RSS2.0\">RSS 2.0</option>";
$content .= "<option value=\"RSS1.0\">RSS 1.0</option>";
$content .= "<option value=\"ATOM0.3\">ATOM 0.3</option>";
$content .= "<option value=\"RSS0.91\">RSS 0.91</option>";
$content .= "<option value=\"HTML\">HTML</option>";
$content .= "<option value=\"JS\">JavaScript</option>";
$content .= "</select>";
$content .= "<select name=\"module\" class=\"header_select\" onchange=\"javascript:document.getElementById('rss_button').href = '".encode_url("rss.php?ged=".WT_GEDCOM."&lang=".WT_LOCALE) . "' + (document.rssform.module.value==''? '' : '&module=' + document.rssform.module.value) + (document.rssform.rssStyle.value==''? '' : '&rssStyle=' + document.rssform.rssStyle.value);\">";
$content .= "<option value=\"\">" . i18n::translate('ALL') . "</option>";
$content .= "<option value=\"today\">" . i18n::translate('On This Day ...') . " </option>";
$content .= "<option value=\"upcoming\">" . i18n::translate('Upcoming Events') . "</option>";
$content .= "<option value=\"gedcomStats\">" . i18n::translate('GEDCOM Statistics') . "</option>";
$content .= "<option value=\"gedcomNews\">" . i18n::translate('News') . "</option>";
$content .= "<option value=\"top10Surnames\">" . i18n::translate('Top 10 Surnames') . "</option>";
$content .= "<option value=\"recentChanges\">" . i18n::translate('Recent Changes') . "</option>";
$content .= "<option value=\"randomMedia\">" . i18n::translate('Random Picture') . "</option>";
$content .= "</select>";
$content .= " <a id=\"rss_button\" href=\"".encode_url("rss.php?ged=".WT_GEDCOM."&lang=".WT_LOCALE) . "\"><img class=\"icon\" src=\"images/feed-icon16x16.png\" alt=\"RSS\" title=\"RSS\" /></a>";
$content .= "</form></div>";
$content .= "<div class=\"center\">";
$content .= "</div>";
global $THEME_DIR;
if ($block) {
require $THEME_DIR.'templates/block_small_temp.php';
} else {
require $THEME_DIR.'templates/block_main_temp.php';
}
}
?>
|