function opigno_field_formatter_info in Opigno 7
Implements hook_field_formatter_info().
File
- ./
opigno.module, line 276 - Contains all hook_implementations and module specific API.
Code
function opigno_field_formatter_info() {
return array(
'opigno_tools_name' => array(
'label' => t('Only display tool name'),
'field types' => array(
'opigno_tools',
),
),
'opigno_tools_tool' => array(
'label' => t('Display the tool "block" (opigno--tool.tpl.php)'),
'field types' => array(
'opigno_tools',
),
),
);
}