mirror of
https://github.com/e107inc/e107.git
synced 2025-08-10 16:46:50 +02:00
Example addons added to _blank plugin.
This commit is contained in:
56
e107_plugins/_blank/e_related.php
Normal file
56
e107_plugins/_blank/e_related.php
Normal file
@@ -0,0 +1,56 @@
|
||||
<?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'=>''));
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
?>
|
Reference in New Issue
Block a user