Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moreonion/campaignion
The campaignion drupal module.
https://github.com/moreonion/campaignion
campaignion drupal drupal-7 online-marketing
Last synced: about 1 month ago
JSON representation
The campaignion drupal module.
- Host: GitHub
- URL: https://github.com/moreonion/campaignion
- Owner: moreonion
- Created: 2016-03-24T11:54:42.000Z (almost 9 years ago)
- Default Branch: 7.x-2.x
- Last Pushed: 2024-11-14T09:38:01.000Z (about 2 months ago)
- Last Synced: 2024-11-14T10:31:45.630Z (about 2 months ago)
- Topics: campaignion, drupal, drupal-7, online-marketing
- Language: PHP
- Homepage:
- Size: 9.3 MB
- Stars: 0
- Watchers: 9
- Forks: 5
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Campaignion
This project contains the main functionality of campaignion a distrubution and SaaS for online campaigning and online fundraising.
## Browser compatibility
JavaScript in this project is transpiled for IE 11 and Edge 18 compatibility. It does however *not* include the necessary polyfills. Adding these is left as responsibility of the distribution.
We recommend using [polyfill.io](https://polyfill.io) or something similar, for example by adding this in your profile’s `hook_init()`-implementation:
```php
if ($polyfill_url = variable_get('polyfill_url', 'https://polyfill.io/v3/polyfill.min.js?flags=gated')) {
drupal_add_js($polyfill_url, [
'type' => 'external',
'group' => JS_LIBRARY,
'every_page' => TRUE,
'weight' => -50,
]);
}
```