Elgg  Version 2.3
default.php
Go to the documentation of this file.
1 <?php
12 // Set title
13 if (empty($vars['title'])) {
14  $title = elgg_get_config('sitename');
15 } else {
16  $title = elgg_get_config('sitename') . ": " . $vars['title'];
17 }
18 
19 // Remove RSS from URL
22 
23 $rssurl = htmlspecialchars($url, ENT_NOQUOTES, 'UTF-8');
24 $url = htmlspecialchars($url, ENT_NOQUOTES, 'UTF-8');
25 
26 $body = elgg_extract('body', $vars, '');
27 $description = elgg_extract('description', $vars, '');
28 
29 $namespaces = elgg_view('extensions/xmlns');
30 $extensions = elgg_view('extensions/channel');
31 
32 
33 // allow caching as required by stupid MS products for https feeds.
34 elgg_set_http_header('Pragma: public');
35 elgg_set_http_header("Content-Type: text/xml;charset=utf-8");
36 
37 echo "<?xml version='1.0'?>";
38 echo <<<END
39 <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:atom="http://www.w3.org/2005/Atom" $namespaces>
40 <channel>
41  <title><![CDATA[$title]]></title>
42  <link>$url</link>
43  <atom:link href="$rssurl" rel="self" type="application/rss+xml" />
44  <description><![CDATA[$description]]></description>
46  $body
47 </channel>
48 </rss>
49 END;
elgg_get_config($name, $site_guid=0)
Get an Elgg configuration value.
$description
Definition: default.php:18
elgg_set_http_header($header, $replace=true)
Set a response HTTP header.
Definition: elgglib.php:114
$rssurl
Definition: default.php:20
current_page_url()
Returns the current page&#39;s complete URL.
Definition: input.php:65
list style type
Definition: admin.css.php:808
ui datepicker title
Definition: admin.css.php:662
$namespaces
Definition: default.php:29
if(!$site) if(!($site instanceof ElggSite)) $site description
elgg_http_remove_url_query_element($url, $element)
Removes an element from a URL&#39;s query string.
Definition: elgglib.php:1185
elgg echo
Translates a string.
Definition: languages.js:48
$url
Definition: default.php:35
elgg_view($view, $vars=array(), $ignore1=false, $ignore2=false, $viewtype= '')
Return a parsed view.
Definition: views.php:336
it is up to the author donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License If the distribution and or use of the Program is restricted in certain countries either by patents or by copyrighted the original copyright holder who places the Program under this License may add an geographical distribution limitation excluding those so that distribution is permitted only in or among countries not thus excluded In such this License incorporates the limitation as if written in the body of this License The Free Software Foundation may publish revised and or new versions of the General Public License from time to time Such new versions will be similar in spirit to the present version
if(!array_key_exists($size, $icon_sizes)) $vars['size']
Definition: default.php:24
elgg_extract($key, $array, $default=null, $strict=true)
Checks for $array[$key] and returns its value if it exists, else returns $default.
Definition: elgglib.php:1375
$title
Definition: default.php:33
$body
Definition: default.php:29
$extensions
Definition: default.php:30