Download the PHP package steadlane/vision6 without Composer
On this page you can find all versions of the php package steadlane/vision6. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download steadlane/vision6
More information about steadlane/vision6
Files in steadlane/vision6
Package vision6
Short Description A form generator for Vision6 mailing lists
License BSD (3-Clause)
Informations about the package vision6
silverstripe-vision6
Installation
This module only supports installation via composer:
Run /dev/build
afterwards for SilverStripe to become aware of this extension
Configuration
Your Vision6 API key must be defined as the constant VISION6_API_KEY
. In your mysite/_config.php
you'll be required to add:
Once configured you can then ?flush=1
to syncronise your Vision6 Mailing Lists with SilverStripe. These lists will be refreshed upon every flush
Short Code
To include a subscriber form on any given page from within the CMS you will need to use the shortcode below:
Code:
Note: Change <<<YOUR LIST ID>>>
to the ID of the form you want to display. See Finding my List ID
Template Syntax
Within an .SS template you can invoke a list in a similar way you would for the shortcode
Code:
Note: Change <<<YOUR LIST ID>>>
to the ID of the form you want to display. See Finding my List ID
Caveat
Due to the way forms are being generated dynamically, and in order to maintain the functionality provided by Form
you may only have one list per page. Having more will lead to validation issues and data handling issues. If you feel you can eliminate this caveat then we implore you to submit a PR
Finding my List ID
- Login to Vision6 dashboard and select "Lists and Forms" from the side menu
- Find the list you want the ID for and click the "Edit" button
- You can find the list ID in the address bar, eg for
http://www.vision6.com.au/list/form/designer?id=377499
your list ID is 377499
Independent Form Field
This module comes with a SubscribeField
which is based off CheckboxField
the only difference is that the validator on this will actually check to see if an email is subscribed to a specific list.
A complete example for you to implement this yourself:
Then in your form handling function, which in the above example would be process
simply
Contributing
If you feel you can improve this module in any way, shape or form please do not hesitate to submit a PR for review.
Bugs / Issues
To report a bug or an issue please use our issue tracker.
License
This module is distributed under the BSD-3 Clause license.