rss-l4
rss-l4 copied to clipboard
RSS builder for Laravel 4
Looks like this is pegged to 4.x and 5.x. I recognize it hasn't been updated in 6 years, but it still works well for our needs. Do you know of...
I tried to add a tag for itunes itunes:explicitFalse/itunes:explicit with this line: $feed->channel(array('title' => $podcast->name, 'description' => $podcast->description, 'link' => Request::url()**, "itunes:explicit" => 'False'**)); But in the feed, it just...
Added support of 'enclosure' element with attributes. Example: `` Code example: ``` $feed = new \Thujohn\Rss\Rss(); $feed->feed('2.0', 'UTF-8'); .... $item['enclosure'] = [ 'url'=> $image_url, 'type' => mime_content_type($image_path), 'length' => filesize($image_path)...
Hey! I've changed the ServiceProvidr so that it can be used in laravel 5. Merge if you like... Regards Tom
Is there an example on how to include a enclosure in the xml? doing 'enclosure' => 'url to image' produces //s3.amazonaws.com/test.s3.hotrodhotline.com/ui/5/02/5IdFF4SC1c.jpg is there a way to add the url inside...
It is not possible to add multiple category tags right now. I needed this feature and modified `Rss.php` a little bit. What I did was changing line 112: ``` php...
Hello, I have little information about rss feeds.My feeds are in the link " http://feed.sirtcantalilar.com " By your package I was able to add them to my site. Now I...
Hi, when I tried to validate the output in http://validator.w3.org/feed it says: line 2, column 0: Unexpected encoding attribute on rss element I think encoding needs to be put in...