2017 © Pedro Peláez
 

symfony-bundle feed-bundle

Feed manager integration for symfony

image

brainwasher/feed-bundle

Feed manager integration for symfony

  • Monday, December 10, 2012
  • by brainwasher
  • Repository
  • 0 Watchers
  • 0 Stars
  • 33 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 19 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

FeedBundle

Version 2.0 Changes: * Tested for Symfony 2.1 * Added composer support * Namespace changed * (versioning change), (*1)

Version 1.1 Changes: * in the configuration you need to defined an url, not a route. (Maybe another website ? You can type what you want) * the method getFeedRoute become getFeedRoutes in the ItemInterface (it's an array of routes). For more information, see the ItemInterface or the wiki. * for naming your feeds you must add |format| (where you want in the filename), (*2)

Version 1.0 Warning: finally the new version (1.1) make substantial changes, but not in the code logic., (*3)

Features

  • can make atom and rss 2.0 feeds
  • support multiple feeds
  • support edit of feeds
  • extensible
  • On-the-fly and at-save feed generation

Read about configuration and more on the wiki

https://github.com/Nek-/FeedBundle/wiki, (*4)

Configuration

app/config.yml

    nekland_feed:
        feeds:
            my_feed:
                class:        My\MyBundle\Entity\Post
                title:       'My fabulous posts'
                description: 'Here is my very fabulous posts'
                url:         'http://my-website.com'
                language:    'fr'
            my_feed2:
                class:        My\MyBundle\Entity\Comment
                title:       'My fabulous comments'
                description: 'Here is my very fabulous comments'
                url:         'http://my-website.com'
                language:    'fr'

Optional (default values):, (*5)

    nekland_feed:
        feeds:
            ...
        renderers:
            rss:
                id: nekland_feed.renderer.rss
        loaders:
            rss_file:
                id: nekland_feed.loader.rss_file

Notice that if you want change the path where are saved files, you can redefined this option:, (*6)

# Default path
nekland_feed.feeds.base_path: %kernel.root_dir%/../web/feeds

Models

To use the NeklandFeedBundle, you must have class that implements the ItemInterface. In most of case, you can do it with your entities/documents, (*7)

    class Post implements ItemInterface
    {
        //.....
    }

Usage

Retrieve your feed instance

    $container->get('nekland_feed.factory')->get('my_feed');

If your controller extends the base Symfony controller, you can use, (*8)

    $this->get('nekland_feed.factory')->get('my_feed');

Render the feed

    $factory->render('my_feed', 'renderer');

Add an item

    /** @var $post My\MyBundle\Entity\Post */
    $factory->load('my_feed', 'loader');
    $factory->get('my_feed')->add($post);

Tests

NeklandFeedBundle is bundled with some behat flavoured tests. Install BehatBundle and launch it with, (*9)

app/console -e=test behat @NeklandFeedBundle

TODO

  • Annotation configuration

Author :

Contributors :

The Versions

10/12 2012

dev-master

9999999-dev https://github.com/Nek-/FeedBundle

Feed manager integration for symfony

  Sources   Download

MIT

The Requires

  • php >=5.3.2

 

xml symfony atom feed

10/11 2012

2.0.0

2.0.0.0 https://github.com/Nek-/FeedBundle

Feed manager integration for symfony

  Sources   Download

MIT

The Requires

  • php >=5.3.2

 

xml symfony atom feed