function piwik_stats_field_widget_info in Piwik Statistic Integration 7.2
Implements hook_field_widget_info().
Defining a hidden pseudo widget.
File
- ./
piwik_stats.module, line 337 - Integrates piwik statistics as entity fields.
Code
function piwik_stats_field_widget_info() {
return array(
'piwik_stats_hidden' => array(
'label' => t('None'),
'field types' => array(
'piwik_stats',
),
),
);
}