Feed plugin for Flextype supports Atom 1.0, RSS and JSON feed types and allows you to generate feeds for entries.
Feed plugin for Flextype supports Atom 1.0, RSS and JSON feed types and allows you to generate feeds for entries.
/project/plugins/feed
/project/plugins/feed
Key | Value | Description |
---|---|---|
enabled | true | true or false to disable the plugin |
priority | 100 | Feed plugin priority |
feed | [] | Feed specific data |
In project/config/plugins/feed/settings.yaml
you may create unlimited feed for you entries.
Lets create RSS, ATOM and JSON feed for blog collection:
feed:
blog-rss:
id: blog
options:
title: Blog
description: Blog description
collection: true
Feedat: rss
route: '/blog.rss'
blog-atom:
id: blog
options:
title: Blog
description: Blog description
collection: true
Feedat: atom
route: '/blog.atom'
blog-json:
id: blog
options:
title: Blog
description: Blog description
collection: true
Feedat: json
route: '/blog.json'
You may easily display feed urls from example above in TWIG templates:
<a href="{{ url() }}/blog.atom">Atom 1.0</a>
<a href="{{ url() }}/blog.rss">RSS</a>
<a href="{{ url() }}/blog.json">JSON</a>
Simple redirect plugin for Flextype.
PHP Mailer plugin for Flextype.
Blueprints plugin simplifies creating truly customizable user interface and basic logic for data management, like handling user forms with simple config schema that is easy to learn, understand and remember.
Site plugin to display entries content on the website frontend.
PHP Embed plugin allows you to embed php code into your page.
Themes Admin plugin to manage site themes for the website frontend.