4756074cf7
Changed "published" status of entity to "enabled". Removed author field from display
36 lines
606 B
Plaintext
36 lines
606 B
Plaintext
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Contains zencrm.module.
|
|
*/
|
|
|
|
use Drupal\Core\Routing\RouteMatchInterface;
|
|
|
|
/**
|
|
* Implements hook_help().
|
|
*/
|
|
function zencrm_help($route_name, RouteMatchInterface $route_match) {
|
|
switch ($route_name) {
|
|
// Main module help for the zencrm module.
|
|
case 'help.page.zencrm':
|
|
$output = '';
|
|
$output .= '<h3>' . t('About') . '</h3>';
|
|
$output .= '<p>' . t('Zen CRM') . '</p>';
|
|
return $output;
|
|
|
|
default:
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Implements hook_theme().
|
|
*/
|
|
function zencrm_theme() {
|
|
return [
|
|
'zencrm' => [
|
|
'render element' => 'children',
|
|
],
|
|
];
|
|
}
|