You are here

function radioactivity_node_views_handler_sort_left_or_inner::admin_summary in Radioactivity 6

File

plugins/radioactivity_node_views_handler_sort_left_or_inner.inc, line 14
Node radioactivity views handler to allow choosing between LEFT or INNER joining.

Class

radioactivity_node_views_handler_sort_left_or_inner
@file Node radioactivity views handler to allow choosing between LEFT or INNER joining.

Code

function admin_summary() {
  $ret = parent::admin_summary();
  $type = t($this->options['join_type'] . ' join');
  return $ret . ', ' . $type;
}