You are here

function mediafront_widget_info in MediaFront 6

Same name and namespace in other branches
  1. 6.2 mediafront_field.inc \mediafront_widget_info()

Implementation of hook_widget_info().

File

./mediafront_field.inc, line 80
Provides CCK integration for the mediafront module

Code

function mediafront_widget_info() {
  return array(
    'player' => array(
      'label' => t('Media Player'),
      'field types' => array(
        'mediafront',
      ),
      'multiple values' => CONTENT_HANDLE_MODULE,
    ),
  );
}