node_type_count.module in Node Type count 8
Same filename and directory in other branches
Module file for node_type_count_module.
File
node_type_count.moduleView source
<?php
/**
* @file
* Module file for node_type_count_module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function node_type_count_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.node_type_count':
// Help text for the admin section, using the module name in the path.
return '<p>' . t("This Module is used to count the number Published and Unpublished nodes in all content types and Count number of User in Every User Role") . '</p>';
}
}
Functions
Name | Description |
---|---|
node_type_count_help | Implements hook_help(). |