Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

RSS API: Difference between revisions

From MoodleDocs
m (Text replacement - "</code>" to "</syntaxhighlight>")
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==Overview==
{{Moodle 2.3}}==Overview==


The RSS API is a core system in Moodle to allow you to create secure RSS feeds of data in your module.  
The RSS API is a core system in Moodle to allow you to create secure RSS feeds of data in your module.  
Line 26: Line 26:
This example shows how you can create the content of an RSS Feed.
This example shows how you can create the content of an RSS Feed.


<code>
<syntaxhighlight lang="php">
  require_once("lib/rsslib.php");
  require_once("lib/rsslib.php");
  //create some entries (these would normally be pulled from the database table of the module you are creating an rss feed for).
  //create some entries (these would normally be pulled from the database table of the module you are creating an rss feed for).
Line 39: Line 39:
  }
  }
  $content = rss_add_items($items);  // Convert the array of items into the XML Content
  $content = rss_add_items($items);  // Convert the array of items into the XML Content
 
  $title = 'RSS Feed';
  $title = 'RSS Feed';
  $description = 'General RSS Feed full of ENTRIES';
  $description = 'General RSS Feed full of ENTRIES';
Line 46: Line 46:
   
   
  $rssdata = $header.$content.$footer; // This is the complete RSS FEED
  $rssdata = $header.$content.$footer; // This is the complete RSS FEED
</code>
</syntaxhighlight>


===Caching an RSS feed===
===Caching an RSS feed===
Line 52: Line 52:
Following on from the previous example:  
Following on from the previous example:  


<code>
<syntaxhighlight lang="php">
   $filename = "$CFG->cachedir/rss/blog/user/0/$tagid.xml";
   $filename = $CFG->cachedir .'/rss/entry/user/0/rss.xml';
   rss_save_file('blog', $filename, $contents, true);
   rss_save_file('entry', $filename, $rssdata, true);
</code>
</syntaxhighlight>


===Linking to a RSS feed===
===Linking to a RSS feed===
Line 61: Line 61:
This example shows how you can output a link to an RSS feed. (Example taken from blocks/news_items/block_news_items.php)
This example shows how you can output a link to an RSS feed. (Example taken from blocks/news_items/block_news_items.php)


<code>
<syntaxhighlight lang="php">
  $cm = $modinfo->instances['forum'][$forum->id];
  $cm = $modinfo->instances['forum'][$forum->id];
  $context = get_context_instance(CONTEXT_MODULE, $cm->id);
  $context = get_context_instance(CONTEXT_MODULE, $cm->id);
Line 68: Line 68:
  $tooltiptext = get_string('rsssubscriberssposts','forum');
  $tooltiptext = get_string('rsssubscriberssposts','forum');
  echo rss_get_link($context->id, $userid, 'mod_forum', $forum->id, $tooltiptext);
  echo rss_get_link($context->id, $userid, 'mod_forum', $forum->id, $tooltiptext);
</code>
</syntaxhighlight>


==See also==
==See also==

Latest revision as of 20:21, 14 July 2021

Moodle 2.3

Overview

The RSS API is a core system in Moodle to allow you to create secure RSS feeds of data in your module.

These RSS feeds can then be syndicated by other websites or aggregated by a feed reader.

Any Moodle module can generate RSS feeds to allow secure access to it's data.

File Locations

The primary functions for the RSS API is located in lib/rsslib.php

Additional functions and usage examples can be found in the following files:

  • blog/rsslib.php
  • mod/data/rsslib.php
  • mod/forum/rsslib.php
  • mod/glossary/rsslib.php

Examples

Below you will find examples on how to use the RSS functions within your own modules.

Creating an RSS feed

This example shows how you can create the content of an RSS Feed.

 require_once("lib/rsslib.php");
 //create some entries (these would normally be pulled from the database table of the module you are creating an rss feed for).
 for ($i=1; $i <= 10; $i++) {
     $item = NULL;
     $item->author = 'Joe Blogs';
     $item->title = 'RSS Entry Number '.$i;
     $item->pubdate = time();
     $item->link = $CFG->wwwroot.'/entry/index.php?entryid='.$i;
     $item->description = 'Summary of the RSS Entry';
     $items[] = $item;
 }
 $content = rss_add_items($items);   // Convert the array of items into the XML Content
 
 $title = 'RSS Feed';
 $description = 'General RSS Feed full of ENTRIES';
 $header = rss_standard_header($title, $CFG->wwwroot.'/entry/index.php', $description);
 $footer = rss_standard_footer();
 
 $rssdata = $header.$content.$footer; // This is the complete RSS FEED

Caching an RSS feed

Following on from the previous example:

  $filename = $CFG->cachedir .'/rss/entry/user/0/rss.xml';
  rss_save_file('entry', $filename, $rssdata, true);

Linking to a RSS feed

This example shows how you can output a link to an RSS feed. (Example taken from blocks/news_items/block_news_items.php)

 $cm = $modinfo->instances['forum'][$forum->id];
 $context = get_context_instance(CONTEXT_MODULE, $cm->id);
 $forum = forum_get_course_forum($this->page->course->id, 'news');
 $userid = (!isloggedin()) ? 0 : $USER->id;
 $tooltiptext = get_string('rsssubscriberssposts','forum');
 echo rss_get_link($context->id, $userid, 'mod_forum', $forum->id, $tooltiptext);

See also