-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
feed.php
50 lines (36 loc) · 1.4 KB
/
feed.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
const PLX_ROOT = './';
const PLX_CORE = PLX_ROOT . 'core/';
include PLX_CORE . 'lib/config.php';
# On verifie que PluXml est installé
if(!file_exists(path('XMLFILE_PARAMETERS'))) {
header('Location: ' . PLX_ROOT . 'install.php');
exit;
}
# Autorise le cross-origin des flus rss/atom : Cross-Origin Resource Sharing
# https://enable-cors.org/server_php.html
# https://developer.mozilla.org/fr/docs/Web/HTTP/Headers/Access-Control-Allow-Origin
header('Access-Control-Allow-Origin: *');
# Creation de l'objet principal et lancement du traitement
$plxFeed = plxFeed::getInstance();
# Détermination de la langue à utiliser (modifiable par le hook : FeedBegin)
$lang = $plxFeed->aConf['default_lang'];
eval($plxFeed->plxPlugins->callHook('FeedBegin')); # Hook Plugins
# Chargement du fichier de langue du core de PluXml
loadLang(PLX_CORE . 'lang/' . $lang . '/core.php');
if(!$plxFeed->aConf['enable_rss']) {
plxFeed::notFound(); # exit
}
$plxFeed->fprechauffage();
# On démarre la bufferisation
ob_start();
# ob_implicit_flush(0);
$plxFeed->fdemarrage();
# Récuperation de la bufférisation
$output = XML_HEADER . ob_get_clean();
eval($plxFeed->plxPlugins->callHook('FeedEnd')); # Hook Plugins
# Restitution écran
header('Content-Type: application/rss+xml');
header('Content-Disposition: attachment; filename="' . $plxFeed->rssAttachment . '"');
header('Content-Length: ' . strlen($output));
echo $output;