You are here

function price_help in Price 2.0.x

Implements hook_help().

File

./price.module, line 18
Defines the functionalities for the 'price' module.

Code

function price_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.price':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Price field with currencies.') . '</p>';
      $output .= '<p>' . t('Use bellow links to add new currency to your project.') . '</p>';
      $output .= '<p>' . t('Started as a decoupling commerce_price from commerce.') . '</p>';
      return $output;
  }
}