You are here

entityform_type_handler_submit_link_field.inc in Entityform 7.2

Same filename and directory in other branches
  1. 7 views/entityform_type_handler_submit_link_field.inc

Contains a Views field handler to take care of displaying submit links as fields

File

views/entityform_type_handler_submit_link_field.inc
View source
<?php

/**
 * @file
 * Contains a Views field handler to take care of displaying submit links
 * as fields
 */
class entityform_type_handler_submit_link_field extends views_handler_field {
  function construct() {
    parent::construct();
    $this->additional_fields['type'] = 'type';
  }
  function option_definition() {
    $options = parent::option_definition();
    $options['text'] = array(
      'default' => '',
      'translatable' => TRUE,
    );
    return $options;
  }
  function options_form(&$form, &$form_state) {
    parent::options_form($form, $form_state);
    $form['text'] = array(
      '#type' => 'textfield',
      '#title' => t('Text to display'),
      '#default_value' => $this->options['text'],
    );
  }
  function query() {
    $this
      ->ensure_my_table();
    $this
      ->add_additional_fields();
  }
  function render($values) {
    $type = $values->{$this->aliases['type']};
    if (!entityform_access('submit', $type)) {
      return;
    }
    $text = !empty($this->options['text']) ? $this->options['text'] : t('submit');
    return l($text, 'eform/submit/' . str_replace('_', '-', $type));
  }

}

Classes

Namesort descending Description
entityform_type_handler_submit_link_field @file Contains a Views field handler to take care of displaying submit links as fields