Repository URL to install this package:
|
Version:
2.0.2 ▾
|
<?php
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function dds_sendgrid_template_list_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.dds_sendgrid_template_list':
return 'Maintains a list of all templates from a SendGrid account for easy reference.';
}
}
function _asort_recursive(&$array) {
if (is_array($array)) {
asort($array);
array_walk($array, '_asort_recursive');
}
}