mirror of
https://github.com/e107inc/e107.git
synced 2025-08-09 16:17:14 +02:00
new module creation
This commit is contained in:
44
e107_plugins/chatbox_menu/e_rss.php
Normal file
44
e107_plugins/chatbox_menu/e_rss.php
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
if (!defined('e107_INIT')) { exit; }
|
||||
|
||||
//##### create feed for admin, return array $eplug_rss_feed --------------------------------
|
||||
$feed['name'] = 'Chatbox';
|
||||
$feed['url'] = 'chatbox'; //the identifier for the rss feed url
|
||||
$feed['topic_id'] = ''; //the topic_id, empty on default (to select a certain category)
|
||||
$feed['path'] = 'chatbox_menu'; //this is the plugin path location
|
||||
$feed['text'] = 'this is the rss feed for the chatbox entries';
|
||||
$feed['class'] = '0';
|
||||
$feed['limit'] = '9';
|
||||
|
||||
// ------------------------------------------------------------------------------------
|
||||
|
||||
|
||||
//##### create rss data, return as array $eplug_rss_data -----------------------------------
|
||||
$rss = array();
|
||||
if($items = $sql -> db_Select('chatbox', "*", "cb_blocked=0 ORDER BY cb_datestamp DESC LIMIT 0,".$this -> limit)){
|
||||
$i=0;
|
||||
while($rowrss = $sql -> db_Fetch()){
|
||||
$tmp = explode(".", $rowrss['cb_nick']);
|
||||
$rss[$i]['author'] = $tmp[1];
|
||||
$rss[$i]['author_email'] = '';
|
||||
$rss[$i]['link'] = $e107->base_path.$PLUGINS_DIRECTORY."chatbox_menu/chat.php?".$rowrss['cb_id'];
|
||||
$rss[$i]['linkid'] = $rowrss['cb_id'];
|
||||
$rss[$i]['title'] = '';
|
||||
$rss[$i]['description'] = $rowrss['cb_message'];
|
||||
$rss[$i]['category_name'] = '';
|
||||
$rss[$i]['category_link'] = '';
|
||||
$rss[$i]['datestamp'] = $rowrss['cb_datestamp'];
|
||||
$rss[$i]['enc_url'] = "";
|
||||
$rss[$i]['enc_leng'] = "";
|
||||
$rss[$i]['enc_type'] = "";
|
||||
$i++;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//##### ------------------------------------------------------------------------------------
|
||||
|
||||
$eplug_rss_data[] = $rss;
|
||||
$eplug_rss_feed[] = $feed;
|
||||
?>
|
Reference in New Issue
Block a user