removed opencase_search module

it wasn't doing anything - the feature is what does stuff
This commit is contained in:
naomi
2018-06-29 15:52:39 +02:00
parent 5688f89857
commit b28c7a3f5d
5 changed files with 0 additions and 105 deletions

View File

@ -1,35 +0,0 @@
<?php
/**
* @file
* Contains opencase_search.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function opencase_search_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the opencase_search module.
case 'help.page.opencase_search':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Search functionality for OpenCase') . '</p>';
return $output;
default:
}
}
/**
* Implements hook_theme().
*/
function opencase_search_theme() {
return [
'opencase_search' => [
'render element' => 'children',
],
];
}