You are here

function select2widget_help in Select2 Field Widget 7

Same name and namespace in other branches
  1. 7.2 select2widget.module \select2widget_help()

Implements hook_help().

File

./select2widget.module, line 11
Select2Widget module functionality.

Code

function select2widget_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/help#select2widget':
      $output = '<p>' . t('Provides a CCK widget for editing fields that allows users to use Select2 jquery plugin.') . '</p>';
      break;
  }
  return $output;
}