mirror of
https://github.com/e107inc/e107.git
synced 2025-01-18 05:09:05 +01:00
77 lines
2.2 KiB
PHP
77 lines
2.2 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)
|
|
*
|
|
* linksPage e_list Handler
|
|
*
|
|
* $Source: /cvs_backup/e107_0.8/e107_plugins/links_page/e_list.php,v $
|
|
* $Revision: 1.5 $
|
|
* $Date: 2009-11-18 01:05:46 $
|
|
* $Author: e107coders $
|
|
*
|
|
*/
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
class list_links_page
|
|
{
|
|
function list_links_page($parent)
|
|
{
|
|
$this->parent = $parent;
|
|
}
|
|
|
|
function getListData()
|
|
{
|
|
$list_caption = $this->parent->settings['caption'];
|
|
$list_display = ($this->parent->settings['open'] ? "" : "none");
|
|
|
|
$qry = '';
|
|
if($this->parent->mode == "new_page" || $this->parent->mode == "new_menu" )
|
|
{
|
|
$lvisit = $this->parent->getlvisit();
|
|
$qry = " l.link_datestamp>".$lvisit." AND ";
|
|
}
|
|
|
|
$bullet = $this->parent->getBullet($this->parent->settings['icon']);
|
|
|
|
$qry = "
|
|
SELECT l.*, c.link_category_id, c.link_category_name
|
|
FROM #links_page AS l
|
|
LEFT JOIN #links_page_cat AS c ON c.link_category_id = l.link_category
|
|
WHERE ".$qry." l.link_class REGEXP '".e_CLASS_REGEXP."' AND c.link_category_class REGEXP '".e_CLASS_REGEXP."'
|
|
ORDER BY l.link_datestamp DESC LIMIT 0,".intval($this->parent->settings['amount'])." ";
|
|
|
|
if(!$this->parent->e107->sql->db_Select_gen($qry))
|
|
{
|
|
$list_data = LIST_LINKS_2;
|
|
}
|
|
else
|
|
{
|
|
$list_data = array();
|
|
while($row = $this->parent->e107->sql->db_Fetch())
|
|
{
|
|
$record = array();
|
|
$rowheading = $this->parent->parse_heading($row['link_name']);
|
|
$record['icon'] = $bullet;
|
|
$record['heading'] = "<a href='".$row['link_url']."' rel='external'>".$rowheading."</a>";
|
|
$record['author'] = "";
|
|
$record['category'] = ($this->parent->settings['category'] ? "<a href='".e_PLUGIN."links_page/links.php?cat.".$row['link_category_id']."'>".$row['link_category_name']."</a>" : "");
|
|
$record['date'] = ($this->parent->settings['date'] ? ($row['link_datestamp'] > 0 ? $this->parent->getListDate($row['link_datestamp']) : "") : "");
|
|
$record['info'] = "";
|
|
|
|
$list_data[] = $record;
|
|
}
|
|
}
|
|
//return array with 'records', (global)'caption', 'display'
|
|
return array(
|
|
'records'=>$list_data,
|
|
'caption'=>$list_caption,
|
|
'display'=>$list_display
|
|
);
|
|
}
|
|
}
|
|
|
|
?>
|