manhattan / posts-bundle
Bundle used to manage and display Posts. Bundle is used within Symfony2.
Installs: 91
Dependents: 0
Suggesters: 1
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- knplabs/knp-paginator-bundle: *
- manhattan/content-bundle: dev-master
- manhattan/publish-bundle: dev-master
- symfony/symfony: 2.3.*
Suggests
- rezzza/flickr-bundle: 1.0.*@dev
This package is auto-updated.
Last update: 2024-10-26 21:37:30 UTC
README
This bundle has been created to allow editing and display of News, Articles or Posts Items. The idea is simple created data that is associated by Categories and by dates that publishes new Posts.
Installation
If you are using Symfony 2.1 you can install by adding the dependencies into the composer.json
file.
"require": {
...
"manhattan/posts-bundle": "dev-master"
},
[{
"type": "package",
"package": {
"version": "dev-master",
"name": "manhattan/posts-bundle",
"source": {
"url": "git@bitbucket.org:frodosghost/postsbundle.git",
"type": "git",
"reference": "master"
},
"autoload": {
"psr-0": { "Manhattan\\Bundle\\PostsBundle": "" }
},
"target-dir": "Manhattan/Bundle/PostsBundle"
}
}]
Setup Routing
To ensure that the trailing slash is removed from the Post routes you need to ensure that the index
route is separated from the inported route collection.
The pattern for the #posts
is the same as the prefix
for the route collection:
<route id="posts" pattern="/news">
<default key="_controller">ManhattanPostsBundle:Public:index</default>
<requirement key="_method">GET</requirement>
</route>
<import resource="@ManhattanPostsBundle/Resources/config/routing/public.xml" prefix="/news" />