You are here

function tmgmt_node_handler_filter_missing_translation::accept_exposed_input in Translation Management Tool 7

Check to see if input from the exposed filters should change the behavior.

Overrides views_handler_filter::accept_exposed_input

File

sources/node/views/handlers/tmgmt_node_handler_filter_missing_translation.inc, line 100
Definition of tmgmt_node_handler_filter_missing_translation.

Class

tmgmt_node_handler_filter_missing_translation
Filter by language.

Code

function accept_exposed_input($input) {
  $return = parent::accept_exposed_input($input);
  if ($return && isset($input['target_status'])) {
    $this->target_status = $input['target_status'];
  }
  return $return;
}