mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 04:38:27 +01:00
41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
<?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)
|
|
*
|
|
* Plugin - newsfeeds
|
|
*
|
|
* $Source: /cvs_backup/e107_0.8/e107_plugins/newsfeed/templates/newsfeed_menu_template.php,v $
|
|
* $Revision$
|
|
* $Date$
|
|
* $Author$
|
|
*
|
|
*/
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
$truncate = 100;
|
|
$truncate_string = " ...";
|
|
// $items = 2;
|
|
|
|
$NEWSFEED_MENU_CAPTION = NFLAN_38;
|
|
|
|
$NEWSFEED_MENU_START = "\n\n<!-- Start NewsFeed Menu -->
|
|
<div style='text-align: center; margin-left: auto; margin-right: auto;'>{FEEDIMAGE}<br /><b>{FEEDTITLE}</b></div>\n<br />
|
|
<table class='newsfeed_menu_table' style='width:100%'>
|
|
";
|
|
|
|
$NEWSFEED_MENU = "
|
|
<tr><td style='vertical-align:top;width:5%'><b>»</b></td><td class='newsfeed_menu_cell' >{FEEDITEMLINK}<br /><span class='smalltext'>{FEEDITEMTEXT}</span></td></tr>\n";
|
|
|
|
$NEWSFEED_MENU_END = "</table><br />
|
|
|
|
<div style='text-align: center;'><hr /><span class='smalltext'>{FEEDLASTBUILDDATE}<br />{LINKTOMAIN}</span></div>\n
|
|
<!-- End News Feed Menu -->\n\n";
|
|
|
|
|
|
|