You are here

function npop_field_formatter_info in Node pop-up 7

Implements hook_field_formatter_info().

File

./npop.module, line 293
Create popup nodes with ajax and Drupal core functionality.

Code

function npop_field_formatter_info() {
  $info = array(
    'npop_image_link' => array(
      'label' => t('Link use npop'),
      'field types' => array(
        'image',
      ),
      'description' => t('Link to node using npop module.'),
      'settings' => array(
        'image_style' => '',
      ),
    ),
  );
  return $info;
}