1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-20 04:32:01 +02:00

gsitemap addon for news plugin

This commit is contained in:
Jimmi08 2018-08-05 19:16:04 +02:00
parent 9bab8cc8c4
commit 2ef4ffd571

View File

@ -0,0 +1,55 @@
<?php
/*
* e107 website system
*
* Copyright (C) 2008-2018 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
* gSitemap addon
*/
if (!defined('e107_INIT'))
{
exit;
}
// e107::plugLan('news', true);
// solution from news.php:
e107::includeLan(e_LANGUAGEDIR . e_LANGUAGE . '/lan_news.php'); // Temporary
// v2.x Standard
class news_gsitemap
{
function import()
{
$import = array();
$sql = e107::getDb();
/* public, quests */
$userclass_list = "0,252";
$_t = time();
$data = $sql->retrieve("news_category", "*", " ORDER BY category_order ASC", true);
foreach($data as $row)
{
$import[] = array(
'name' => $row['category_name'],
'url' => e107::getUrl()->create('news/list/category', $row, array('full' => 1)) ,
'type' => LAN_NEWS_23
);
}
$data = $sql->retrieve("news", "*", "news_class IN (" . $userclass_list . ") AND news_start < " . $_t . " ORDER BY news_datestamp ASC", true);
foreach($data as $row)
{
$import[] = array(
'name' => $row['news_title'],
'url' => e107::getUrl()->create('news/view/item', $row, array('full' => 1)),
'type' => ADLAN_0
);
}
return $import;
}
}