You are here

function _amazon_make_simple_markup_field in Amazon Product Advertisement API 6

Same name and namespace in other branches
  1. 7.2 includes/amazon.views.inc \_amazon_make_simple_markup_field()
  2. 7 includes/amazon.views.inc \_amazon_make_simple_markup_field()

Related topics

File

includes/amazon.views.inc, line 250
Provide views data and handlers for amazon.module

Code

function _amazon_make_simple_markup_field(&$data, $table, $column, $title, $help = '') {
  $data[$table][$column] = array(
    'title' => $title,
    // The item it appears as on the UI,
    'help' => $help,
    // The help that appears on the UI,
    // Information for displaying a title as a field
    'field' => array(
      'handler' => 'views_handler_field_markup',
      'format' => FILTER_FORMAT_DEFAULT,
    ),
  );
}