You are here

function views_elements in Views (for Drupal 7) 5

Custom form element to do our nice images.

File

./views_ui.module, line 730

Code

function views_elements() {
  $type['views_imagebutton'] = array(
    '#input' => TRUE,
    '#button_type' => 'submit',
  );
  return $type;
}