Einfachen RSS-Block implementieren (ezFlow-Feedreader)
Einen FeedBlock definieren in block.ini.append.php
[RSSFeedReader] Name=RSS Feed (automatisch) ManualAddingOfItems=disabled CustomAttributes[] CustomAttributes[]=source CustomAttributeTypes[source]=string CustomAttributes[]=limit CustomAttributeTypes[limit]=string CustomAttributes[]=offset CustomAttributeTypes[offset]=string ViewList[]=rssfeed_reader ViewName[rssfeed_reader]=RSS Feed ZoneIdentifier[] ZoneIdentifier[]=middle ZoneIdentifier[]=left ZoneIdentifier[]=right ### Default START ### CustomAttributes[]=Boxueberschrift CustomAttributeTypes[Boxueberschrift]=text ### Default END ###
Ein Feedblock-Template erstellen in override/templates/block/rssfeed_reader.tpl
{cache-block expiry=300 keys=array($block.custom_attributes.source, $block.custom_attributes.limit, $block.custom_attributes.offset)} {def $source = $block.custom_attributes.source $limit = $block.custom_attributes.limit $offset = $block.custom_attributes.offset $res = feedreader( $source, $limit, $offset ) $valid_nodes = $block.valid_nodes } <div class="block-view {if ne($block_position,'middle')}block-small-view rss-box{else}block-large-view{/if}"> {include uri='design:tools/eZFlow_headerline.tpl' block=$block valid_nodes=$valid_nodes} <ul class="nospace noindent"> {foreach $res.items as $item} <li> <a href="{$item.links[0]}" title="{$item.title|wash()}">{$item.title|wash()}</a> </li> {/foreach} </ul> </div> {/cache-block} {undef $valid_nodes}

Kommentare
Feed-Description im Tooltip (RSS Browser-like)
Sonntag, 11. Dezember 2011 15:00:34
Administrator User
Bitte melden Sie sich an oder registrieren Sie sich um kommentieren zu können.