| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,47 @@ |
| 1 |
+<?php |
|
| 2 |
+ |
|
| 3 |
+// ---------------------------------------------------------------------- |
|
| 4 |
+// eFiction 3.2 |
|
| 5 |
+// Copyright (c) 2007 by Tammy Keefer |
|
| 6 |
+// Valid HTML 4.01 Transitional |
|
| 7 |
+// Based on eFiction 1.1 |
|
| 8 |
+// Copyright (C) 2003 by Rebecca Smallwood. |
|
| 9 |
+// http://efiction.sourceforge.net/ |
|
| 10 |
+// ---------------------------------------------------------------------- |
|
| 11 |
+// LICENSE |
|
| 12 |
+// |
|
| 13 |
+// This program is free software; you can redistribute it and/or |
|
| 14 |
+// modify it under the terms of the GNU General Public License (GPL) |
|
| 15 |
+// as published by the Free Software Foundation; either version 2 |
|
| 16 |
+// of the License, or (at your option) any later version. |
|
| 17 |
+// |
|
| 18 |
+// This program is distributed in the hope that it will be useful, |
|
| 19 |
+// but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 20 |
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 21 |
+// GNU General Public License for more details. |
|
| 22 |
+// |
|
| 23 |
+// To read the license please visit http://www.gnu.org/copyleft/gpl.html |
|
| 24 |
+// ---------------------------------------------------------------------- |
|
| 25 |
+ |
|
| 26 |
+if(!defined("_CHARSET")) exit( );
|
|
| 27 |
+ |
|
| 28 |
+ |
|
| 29 |
+if(!defined("_CHARSET")) exit( );
|
|
| 30 |
+ $content = ""; |
|
| 31 |
+ $count = 0; |
|
| 32 |
+ $limit = isset($blocks['featured']['limit']) ? $blocks['featured']['limit'] : false; |
|
| 33 |
+ $use_tpl = isset($blocks['featured']['tpl']) && $blocks['featured']['tpl'] ? true : false; |
|
| 34 |
+ $query = dbquery(_STORYQUERY." AND stories.featured = '1'".($limit ? " LIMIT $limit" : "")); |
|
| 35 |
+ while($stories = dbassoc($query)) |
|
| 36 |
+ {
|
|
| 37 |
+ if(!isset($blocks['featured']['allowtags'])) $stories['summary'] = strip_tags($stories['summary']); |
|
| 38 |
+ $stories['summary'] = truncate_text(stripslashes($stories['summary']), (isset($blocks['featured']['sumlength']) ? $blocks['featured']['sumlength'] : 75)); |
|
| 39 |
+ if(!$use_tpl) $content .= "<div class='featuredstory'>".title_link($stories)." "._BY." ".author_link($stories)." ".$ratingslist[$stories['rid']]['name']."<br />".$stories['summary']."</div>"; |
|
| 40 |
+ else {
|
|
| 41 |
+ $tpl->newBlock("featuredblock");
|
|
| 42 |
+ include(_BASEDIR."includes/storyblock.php"); |
|
| 43 |
+ } |
|
| 44 |
+ } |
|
| 45 |
+ if($use_tpl && dbnumrows($query) > 0) $tpl->gotoBlock("_ROOT");
|
|
| 46 |
+ |
|
| 47 |
+?> |
|
| 0 | 48 |
\ No newline at end of file |