You are here

function ad_ui_ad_info in Advertisement 7.3

Implements hook_ad_info().

File

modules/ad_ui/ad_ui.module, line 53

Code

function ad_ui_ad_info() {
  return array(
    'ad' => array(
      // Field used to store the destination. It can be a textfield or a link.
      'link_field' => 'field_ad_link',
      // The view used to query the nodes.
      // @todo: support multiple views.
      'display_view' => 'ad_ui_display',
    ),
  );
}