Issue #2002988 by kenianbei, tvlooy: Rename Views method summary_basics() to summaryBasics().
parent
4df1036a4a
commit
4547223c34
|
@ -809,7 +809,7 @@ abstract class ArgumentPluginBase extends HandlerBase {
|
|||
$this->base_alias = $this->query->add_field($this->tableAlias, $this->realField);
|
||||
|
||||
$this->summary_name_field();
|
||||
return $this->summary_basics();
|
||||
return $this->summaryBasics();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -851,7 +851,7 @@ abstract class ArgumentPluginBase extends HandlerBase {
|
|||
* Some basic summary behavior that doesn't need to be repeated as much as
|
||||
* code that goes into summary_query()
|
||||
*/
|
||||
function summary_basics($count_field = TRUE) {
|
||||
public function summaryBasics($count_field = TRUE) {
|
||||
// Add the number of nodes counter
|
||||
$distinct = ($this->view->display_handler->getOption('distinct') && empty($this->query->no_distinct));
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ class Formula extends ArgumentPluginBase {
|
|||
$this->base_alias = $this->name_alias = $this->query->add_field(NULL, $formula, $this->field);
|
||||
$this->query->set_count_field(NULL, $formula, $this->field);
|
||||
|
||||
return $this->summary_basics(FALSE);
|
||||
return $this->summaryBasics(FALSE);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -181,7 +181,7 @@ class ManyToOne extends ArgumentPluginBase {
|
|||
|
||||
$this->summary_name_field();
|
||||
|
||||
return $this->summary_basics();
|
||||
return $this->summaryBasics();
|
||||
}
|
||||
|
||||
function summary_argument($data) {
|
||||
|
|
|
@ -167,7 +167,7 @@ class String extends ArgumentPluginBase {
|
|||
}
|
||||
|
||||
$this->summary_name_field();
|
||||
return $this->summary_basics(FALSE);
|
||||
return $this->summaryBasics(FALSE);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue