selectwithsearch-1.0.3/selectwithsearch.module
selectwithsearch.module
<?php
/**
* @file
* @This module is designed to enhance the feature of search with select option
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function selectwithsearch_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.selectwithsearch':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Enhance the feature of search with select option.') . '</p>';
$output .= '<p>'. t('For more information related to module please visit <a href="https://www.drupal.org/project/selectwithsearch" target="_blank">project page</a>') . '</p>';
return $output;
default:
}
}
