open-orchestra / open-orchestra-newsletter-bundle
A bundle which provides a newsletter subscription management for Open Orchestra
Installs: 36
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 10
Forks: 0
Open Issues: 0
Type:package
Requires
Requires (Dev)
- codeclimate/php-test-reporter: dev-master
- open-orchestra/open-orchestra-base-bundle: dev-master
- phake/phake: 2.1.0
- phpunit/phpunit: 4.8.2
- psr/log: 1.0.0
Suggests
- open-orchestra/open-orchestra-model-bundle: To use the mongo functionnality
This package is not auto-updated.
Last update: 2024-10-27 02:06:32 UTC
README
A Open Orchestra newsletter bundle
Description
The open-orchestra-newsletter-bundle
provide an easy way to manage a newsletter inside the Open Orchestra project.
It will provide you with :
- A Front Office block
- A Back Office integration
- A way to store the data inside a Mongo database
Usage
Front Office
To use the bundle in a front environment, you will need to activate the bundle and the model :
// app/AppKernel.php new OpenOrchestra\NewsletterBundle\OpenOrchestraNewsletterBundle, new OpenOrchestra\NewsletterModelBundle\OpenOrchestraNewsletterModelBundle,
Back Office
To use the bundle in a back envirenment, you will have to add the admin bundle :
// app/AppKernel.php new OpenOrchestra\NewsletterBundle\OpenOrchestraNewsletterBundle, new OpenOrchestra\NewsletterModelBundle\OpenOrchestraNewsletterModelBundle, new OpenOrchestra\NewsletterAdminBundle\OpenOrchestraNewsletterAdminBundle,
You will also have to import the route for the bundle :
#app/config/routing.yml open_orchestra_newsletter_api: resource: "@OpenOrchestraNewsletterAdminBundle/Controller/Api" type: annotation prefix: /api open_orchestra_newsletter_admin: resource: "@OpenOrchestraNewsletterAdminBundle/Controller/Admin" type: annotation prefix: /admin