1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-08 23:56:58 +02:00

Fix for news archive.

This commit is contained in:
Cameron
2016-12-15 08:06:19 -08:00
parent d7ae17f99f
commit bc572d1afc
2 changed files with 155 additions and 74 deletions

View File

@@ -0,0 +1,69 @@
<?php
/*
* e107 website system
*
* Copyright (C) 2008-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_files/shortcode/batch/news_archives.php,v $
* $Revision$
* $Date$
* $Author$
*/
if (!defined('e107_INIT')) { exit; }
// include_once(e_HANDLER.'shortcode_handler.php');
// $news_archive_shortcodes = $tp -> e_sc -> parse_scbatch(__FILE__);
class news_archive_shortcodes extends e_shortcode
{
function sc_archive_bullet()
{
$bullet = '';
if(defined('BULLET'))
{
$bullet = '<img src="'.THEME.'images/'.BULLET.'" alt="" class="icon" />';
}
elseif(file_exists(THEME.'images/bullet2.gif'))
{
$bullet = '<img src="'.THEME.'images/bullet2.gif" alt="" class="icon" />';
}
return $bullet;
}
function sc_archive_link()
{
return "<a href='news.php?item.".$this->var['news_id']."'>".$this->var['news_title']."</a>";
}
function sc_archive_author()
{
return "<a href='".e_BASE."user.php?id.".$this->var['user_id']."'>".$this->var['user_name']."</a>";
}
function sc_archive_datestamp()
{
return e107::getParser()->toDate($this->var['news_datestamp'], 'short');
}
function sc_archive_category()
{
return $this->var['category_name'];
}
}
?>