function select2_bef_help in Select2 Boxes 8
Implements hook_help().
File
- modules/
select2_bef/ select2_bef.module, line 11 - Basic module file.
Code
function select2_bef_help($route_name) {
switch ($route_name) {
case 'help.page.select2_bef':
$output = 'Provides an integration between Select2 and Better Exposed Filters';
return $output;
}
}