This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Implements hook_mail_alter(). | |
| * | |
| * Also send pending approval mails to users who have | |
| * the 'administer users' permission | |
| * | |
| * @see _user_mail_notify() | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function ($) { | |
| Drupal.behaviors.mymodule_charts = { | |
| attach:function () { | |
| if (Drupal.settings.mymodule.charts) { | |
| for (var chart in Drupal.settings.mymodule.charts) { | |
| new Highcharts.Chart(Drupal.settings.mymodule.charts[chart]); | |
| } | |
| } | |
| } | |
| }; |
NewerOlder