gmap_cck_widget_info()
gmap_addons/gmap_cck.module, line 300
Declare information about a widget.
An array keyed by widget name. Each element of the array is an associative array with these keys and values:
| Name | Description |
|---|---|
| Hooks | Allow modules to interact with the Drupal core. |
<?php
function gmap_cck_widget_info() {
return array(
'gmap_cck' => array(
'label' => 'Google Map',
'field types' => array('gmap_cck'),
),
);
}
?>