stjo15 / c-rss-feed
An RSS module to add RSS functionality to MVC frameworks. Developed for Anax-MVC
Requires
- php: >=5.4
This package is not auto-updated.
Last update: 2025-03-29 20:29:04 UTC
README
-
Add dependency to "stjo15/c-rss-feed": "dev-master" to 'require' in your Anax-MVC composer.json file.
-
In your bash command line, at your Anax-MVC folder, use the command 'composer install --no-dev'. If you didn't install Composer yet, you should!
-
Add Anax-MVC/vendor/stjo15/c-rss-feed/app/config/mysql.php to your config folder. Insert SQL database your username, database name and password to the file.
-
Copy the c-rss-feed/app/view folder with contents to Anax-MVC/app/view/
-
Import sql-table/mvc_rssfeed.sql to your database.
-
Add the contents of c-rss-feed/webroot/config_with_app.php to Anax-MVC/webroot/config_with_app.php
-
Add the contents of src/db_di.txt to your DI (Dependency Injection) class to inject 'db' as dependency.
-
To test your installation, copy the test-controller webroot/rss.php to your Anax webroot and point your browser to it. You might need to make corrections to the path variables or make hard links in order to make it work in your application.
-
Use the contents of webroot/examplecontent.php to customize your RSS feed. Read the instructions/documentation.
-
Your RSS content database should contain columns for pagekey, id, title and description. However, you can and should choose your own column names in the class RssFeed, in the method getItems(). The xml tags should stay as they are, just change the contents of these tags. For example, if you want to feed your new blog article, put $item['title'] as the content of tag 'title'.
Important! In the RssFeed:getItems() method, set the variable $itemstable to the name of your content db table.
There are also functions to edit, delete and list RSS feeds. You should really check out the contents and customize it to your needs.