Subversion Repositories Applications.papyrus

Rev

Rev 735 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
345 jpm 1
<?php
2
require_once PAP_CHEMIN_API_PEAR.'XML/RSS.php';
3
 
4
class Text_Wiki_Render_Xhtml_Syndication extends Text_Wiki_Render {
5
 
6
    /**
7
    *
8
    * Renders a token into text matching the requested format.
9
    *
10
    * @access public
11
    *
12
    * @param array $options The "options" portion of the token (second
13
    * element).
14
    *
15
    * @return string The text rendered from the token options.
16
    *
17
    */
18
 
19
    function token($options)
20
    {
21
        // Initialisation des variables
22
        $sortie = '';
735 florian 23
        $titre = $options['titre'];
345 jpm 24
        $urls = $options['url'];
735 florian 25
        $nblimite = $options['nb'];
345 jpm 26
        $tab_url = array_map('trim', explode(',', $urls));
27
        if (ini_get('allow_url_fopen') != 0) {
28
            ini_set('allow_url_fopen', 1);
29
        }
30
        if (ini_get('allow_url_fopen') != 0) {
31
            foreach ($tab_url as $cle => $url) {
735 florian 32
                $url = str_replace('&amp;', '&', $url) ;
345 jpm 33
                $rss =& new XML_RSS($url);
763 alexandre_ 34
                if (!$rss->parse()) echo 'une erreur d\'analyse du fichier RSS s\'est produite';
345 jpm 35
                $aso_info_rss = $rss->getChannelInfo();
533 florian 36
                if ($titre!='') {
763 alexandre_ 37
					$sortie .= '<h2>'.$titre.'</h2>';
38
				} elseif (isset($aso_info_rss['title'])) {
354 jpm 39
                    $sortie .= '<h2>'.$aso_info_rss['title'].'</h2>';
40
                }
41
                $sortie .= '<ul class="syndication" >'."\n";
763 alexandre_ 42
				$nbannonces=0;
43
				$tabsortie=array();
345 jpm 44
                foreach ($rss->getItems() as $item) {
763 alexandre_ 45
					$tabsortie[$nbannonces]='<li><a href="'.preg_replace ('/&/', '&amp;', $item['link']).'">'.$item['title'].'</a></li>'."\n";
46
					$nbannonces++;
345 jpm 47
                }
553 alexandre_ 48
		//affichage du nombre limité d'annonces classées de la plus récente à  la plus vieille
533 florian 49
		if ($nblimite>0) {
50
			for ($i = $nbannonces-1; (($i >= $nbannonces-$nblimite)and($i>=0)); $i--) {
51
				$sortie .= $tabsortie[$i];
52
			}
53
		}
54
		else {
55
			for ($i = $nbannonces-1; ($i>=0); $i--) {
56
				$sortie .= $tabsortie[$i];
57
			}
58
		}
59
		//si toutes les annonces n'ont pas été affichées, on propose de consulter les reste des annonces
553 alexandre_ 60
		if ($i>0) $sortie .= '<li>'.
61
							'<a href="'.$aso_info_rss['link'].'">'.
62
							'toutes les annonces</a></li>';
345 jpm 63
                $sortie .= '</ul>'."\n";
64
            }
65
        }
66
        return $sortie;
67
    }
68
}
69
?>