mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
56 lines
1.1 KiB
PHP
56 lines
1.1 KiB
PHP
<?php
|
|
/*
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2008-2014 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
* Related configuration module - News
|
|
*
|
|
*
|
|
*/
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
|
|
|
|
class _blank_related // include plugin-folder in the name.
|
|
{
|
|
|
|
|
|
function compile($tags,$parm=array())
|
|
{
|
|
$sql = e107::getDb();
|
|
$items = array();
|
|
|
|
$tag_regexp = "'(^|,)(".str_replace(",", "|", $tags).")(,|$)'";
|
|
|
|
$query = "SELECT * FROM `#_blank` WHERE _blank_id != ".$parm['current']." AND _blank_keywords REGEXP ".$tag_regexp." ORDER BY _blank_datestamp DESC LIMIT ".$parm['limit'];
|
|
|
|
if($sql->gen($query))
|
|
{
|
|
while($row = $sql->fetch())
|
|
{
|
|
|
|
$items[] = array(
|
|
'title' => varset($row['blank_title']),
|
|
'url' => e107::url('other',$row), // '{e_BASE}news.php?extend.'.$row['news_id'],
|
|
'summary' => varset($row['blank_summary']),
|
|
'image' => '{e_PLUGIN}_blank/images/image.png'
|
|
);
|
|
}
|
|
|
|
return $items;
|
|
}
|
|
// elseif(ADMIN)
|
|
// {
|
|
// return array(array('title'=>$query,'url'=>''));
|
|
// }
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|