You are here

function jeditable_handler_field_content::construct in jEditable inline content editing 6.2

Same name and namespace in other branches
  1. 6 views/jeditable_handler_field_content.inc \jeditable_handler_field_content::construct()

File

views/jeditable_handler_field_content.inc, line 41
Definition of jeditable_handler_field_content class.

Class

jeditable_handler_field_content
Extends the content_handler_field_multiple class.

Code

function construct() {
  parent::construct();
  $field_type = $this->content_field['type'];
  $field_widget_type = $this->content_field['widget']['type'];
  if (!$inline_editor_lookup[$field_type] || !$inline_editor_lookup[$field_type][$field_widget_type]) {
    $this->inline_editor_class = $this->inline_editor_lookup[$field_type][$field_widget_type];
  }
  else {
    $this->inline_editor_class = NULL;
  }
}