function opigno_preprocess_opigno_tool in Opigno 7
Implements hook_preprocess_opigno_tool().
File
- ./
opigno.module, line 358 - Contains all hook_implementations and module specific API.
Code
function opigno_preprocess_opigno_tool(&$vars) {
$vars['name'] = check_plain($vars['tool']['name']);
$vars['machine_name'] = check_plain($vars['tool']['machine_name']);
$vars['description'] = check_plain($vars['tool']['description']);
$vars['path'] = check_plain($vars['tool']['path']);
}