bulkbatchdelete-8.x-1.2/bulkbatchdelete.module
bulkbatchdelete.module
<?php
/**
* @file
* Module for bulk user delete.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function bulkbatchdelete_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the bulkbatchdelete module.
case 'help.page.bulkbatchdelete':
$output = '';
$output .= '<h3>' . t('Overview') . '</h3>';
$output .= '<p>' . t('The bulk batch delete is a module which help you to delete users, content or taxonomies in bulk. it comes with very simple form, where you need to select some form fields as per the entity and give some appropriate names to your log files (To track the deletion of entity).') . '</p>';
$output .= '<p>' . t('You done. entities in bulk will get deleted') . '</p>';
$output .= '<h3>' . t('Features') . '</h3>';
$output .= '<ul>' . t('<li>Quantity – Option to select number to delete entities.</li>') . '</ul>';
$output .= '<ul>' . t('<li>Tracking – Logs will get write into the file, you can track the same.</li>') . '</ul>';
$output .= '<ul>' . t('<li>No log burden on DB - Logs written in files, once you done with it delete it. </li>') . '</ul>';
return $output;
default:
}
}
