You are here

function backgroundfield_widget_info in BackgroundField 6

File

./backgroundfield.module, line 90

Code

function backgroundfield_widget_info() {
  return array(
    'theme_background_widget' => array(
      'label' => t('Background Field'),
      'field types' => array(
        'backgroundfield',
      ),
      'multiple values' => CONTENT_HANDLE_CORE,
      'callbacks' => array(
        'default value' => CONTENT_CALLBACK_DEFAULT,
      ),
      'description' => t('Allows users to apply a background image to a field defined css selector'),
    ),
  );
}