You are here

function angularjs_help in AngularJS 7

Implements hook_help().

File

./angularjs.module, line 43

Code

function angularjs_help($path, $arg) {
  switch ($path) {
    case 'admin/config/development/angularjs':
      return '<p>' . t('Configure what files <a href="@angularjs">AngularJS</a> are loaded onto the site. Select which AngularJS version, the compression level and whether or not to use a CDN.', array(
        '@jquery' => 'http://angularjs.com',
      )) . '</p>';
  }
}