source: temp/test-xoops.ec-cube.net/html/modules/rssj/index.php @ 405

Revision 405, 3.3 KB checked in by root, 20 years ago (diff)
Line 
1<?php
2###############################################################################
3##                RSSFit - Extendable XML news feed generator                ##
4##                   Copyright (c) 2004 NS Tai (aka tuff)                    ##
5##                       <http://www.brandycoke.com/>                        ##
6##                      Modified By 2005 CACHE RSSfitJ                       ##
7##                       <http://gyakubiki.kir.jp/>                          ##
8###############################################################################
9##                    XOOPS - PHP Content Management System                  ##
10##                       Copyright (c) 2000 XOOPS.org                        ##
11##                          <http://www.xoops.org/>                          ##
12###############################################################################
13##  This program is free software; you can redistribute it and/or modify     ##
14##  it under the terms of the GNU General Public License as published by     ##
15##  the Free Software Foundation; either version 2 of the License, or        ##
16##  (at your option) any later version.                                      ##
17##                                                                           ##
18##  You may not change or alter any portion of this comment or credits       ##
19##  of supporting developers from this source code or any supporting         ##
20##  source code which is considered copyrighted (c) material of the          ##
21##  original comment or credit authors.                                      ##
22##                                                                           ##
23##  This program is distributed in the hope that it will be useful,          ##
24##  but WITHOUT ANY WARRANTY; without even the implied warranty of           ##
25##  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            ##
26##  GNU General Public License for more details.                             ##
27##                                                                           ##
28##  You should have received a copy of the GNU General Public License        ##
29##  along with this program; if not, write to the Free Software              ##
30##  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA ##
31###############################################################################
32##  Author of this file: CACHE                                               ##
33##  URL: http://gyakubiki.kir.jp/                                            ##
34##  Project: RSSFitJ                                                         ##
35###############################################################################
36include 'header.php';
37$xoopsOption['template_main'] = 'rssfitJ_index.html';
38include XOOPS_ROOT_PATH.'/header.php';
39$intro = grabIntro();
40$myts =& MyTextSanitizer::getInstance();
41$intro['title'] = $myts->makeTboxData4Show($intro['title']);
42$intro['title'] = str_replace('{SITENAME}', $xoopsConfig['sitename'],  $intro['title']);
43$intro['content'] = $myts->makeTareaData4Show($intro['content']);
44$intro['content'] = str_replace('{SITENAME}', $xoopsConfig['sitename'],  $intro['content']);
45$intro['content'] = str_replace('{SITEURL}', XOOPS_URL.'/',  $intro['content']);
46$xoopsTpl->assign('intro', $intro);
47include XOOPS_ROOT_PATH.'/footer.php';
48?>
Note: See TracBrowser for help on using the repository browser.