Skip to content

rjz/Spark-Atomizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Atomizer

Atomizer provides a friendly interface for managing RSS data, but it doesn't officially support Atom.

Introduction

Atomizer is available for Codeigniter via Sparks.

Once you've got the spark set up, you can load it using:

$this->load->spark('atomizer/[version #]');

Once Atomizer is loaded, we can get on to more exciting things.

###Creating feeds

$info = array(
	'title' => 'my feed'
);

$items = array(
	array(
		'title' => 'my first entry',
		'description' => 'This is the first entry in my new feed'
	),
	array(
		'title' => 'my second entry',
		'description' => 'This is the second entry in my new feed'
	)
);

$feed = $this->atomizer->create( $info, $items );

###Adding items to a feed

$item = new AtomizerItem(array(
	'title' => 'my third feed entry',
	'description' => 'This is a new entry for my feed'
));

$feed->addItem( $item );

###(re)Mixing feeds

Two feeds may be combined using the convolve method.

$remix = $feed->convolve( $otherfeed, $info );

###Sorting feeds

The order of an RSS feed is time-agnostic, but applications may benefit from having data ordered by publishing time.

$feed->sort();

###Saving a feed as XML

header('Content-type: application/rss+xml');
echo $this->atomizer->save( $feed );

###Parsing feeds

$url = 'http://rss.news.yahoo.com/rss/topstories';
$feed = $this->atomizer->load( file_get_contents( $url ) );

foreach( $feed->channels as $channel ) {

	$items = $channel->items;

	foreach( $items as $item ) {
		echo '<li>' . $item->title . '</li>';
	}
}

Author

RJ Zaworski rj@rjzaworski.com

License

Atomizer is released under the JSON License. You can read the license here.

About

RSS Spark for Codeigniter

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages