View of /mambo/branches/4.6/modules/mod_rssfeed.php
Parent Directory
|
Revision Log
Revision 1756 -
(download)
(annotate)
Thu May 28 06:41:09 2009 UTC (3 years, 11 months ago) by elpie
File size: 3255 byte(s)
Thu May 28 06:41:09 2009 UTC (3 years, 11 months ago) by elpie
File size: 3255 byte(s)
! Added back copyright date & note (which should not be needed, but which is) that copyright notices must be retained.
<?php
/**
* @package Mambo
* @author Mambo Foundation Inc see README.php
* @copyright (C) 2000 - 2009 Mambo Foundation Inc.
* See COPYRIGHT.php for copyright notices and details.
* @license GNU/GPL Version 2, see LICENSE.php
*
* Redistributions of files must retain the above copyright notice.
*
* Mambo 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; version 2 of the License.
*/
/** ensure this file is being included by a parent file */
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
global $mosConfig_live_site, $mosConfig_absolute_path, $cur_template;
$text = $params->get( 'text' );
$moduleclass_sfx = $params->get( 'moduleclass_sfx', '' );
$rss091 = $params->get( 'rss091', 1 );
$rss10 = $params->get( 'rss10', 1 );
$rss20 = $params->get( 'rss20', 1 );
$atom = $params->get( 'atom', 1 );
$opml = $params->get( 'opml', 1 );
$rss091_image = $params->get( 'rss091_image', '' );
$rss10_image = $params->get( 'rss10_image', '' );
$rss20_image = $params->get( 'rss20_image', '' );
$atom_image = $params->get( 'atom_image', '' );
$opml_image = $params->get( 'opml_image', '' );
$t_path = $mosConfig_live_site .'/templates/'. $cur_template .'/images/';
$d_path = $mosConfig_live_site .'/images/M_images/';
$mainframe =& mosMainFrame::getInstance();
?>
<div class="syndicate<?php echo $moduleclass_sfx;?>">
<?php
// rss091 link
if ( $text ) {
?>
<div align="center" class="syndicate_text<?php echo $moduleclass_sfx;?>">
<?php echo $text;?>
</div>
<?php
}
?>
<?php
// rss091 link
if ( $rss091 ) {
$img = $mainframe->ImageCheck( 'rss091.gif', '/images/M_images/', $rss091_image, '/images/M_images/', 'RSS 0.91' );
?>
<div align="center">
<a href="<?php echo sefRelToAbs('index.php?option=com_rss&feed=RSS0.91&no_html=1'); ?>">
<?php echo $img ?>
</a>
</div>
<?php
}
?>
<?php
// rss10 link
if ( $rss10 ) {
$img = $mainframe->ImageCheck( 'rss10.gif', '/images/M_images/', $rss10_image, '/images/M_images/', 'RSS 1.0' );
?>
<div align="center">
<a href="<?php echo sefRelToAbs('index.php?option=com_rss&feed=RSS1.0&no_html=1'); ?>">
<?php echo $img ?>
</a>
</div>
<?php
}
?>
<?php
// rss20 link
if ( $rss20 ) {
$img = $mainframe->ImageCheck( 'rss20.gif', '/images/M_images/', $rss20_image, '/images/M_images/', 'RSS 2.0' );
?>
<div align="center">
<a href="<?php echo sefRelToAbs('index.php?option=com_rss&feed=RSS2.0&no_html=1'); ?>">
<?php echo $img ?>
</a>
</div>
<?php
}
?>
<?php
// atom link
if ( $atom ) {
$img = $mainframe->ImageCheck( 'atom10.gif', '/images/M_images/', $atom_image, '/images/M_images/', 'ATOM 1.0' );
?>
<div align="center">
<a href="<?php echo sefRelToAbs('index.php?option=com_rss&feed=ATOM1.0&no_html=1'); ?>">
<?php echo $img ?>
</a>
</div>
<?php
}
?>
<?php
// opml link
if ( $opml ) {
$img = $mainframe->ImageCheck( 'opml.png', '/images/M_images/', $opml_image, '/images/M_images/', 'OPML' );
?>
<div align="center">
<a href="<?php echo sefRelToAbs('index.php?option=com_rss&feed=OPML&no_html=1'); ?>">
<?php echo $img ?>
</a>
</div>
<?php
}
?>
</div>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

