Issue #2002988 by kenianbei, tvlooy: Rename Views method summary_basics() to summaryBasics().

8.0.x
Alex Pott 2013-05-29 07:16:44 +01:00
parent 4df1036a4a
commit 4547223c34
4 changed files with 5 additions and 5 deletions

View File

@ -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));

View File

@ -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);
}
/**

View File

@ -181,7 +181,7 @@ class ManyToOne extends ArgumentPluginBase {
$this->summary_name_field();
return $this->summary_basics();
return $this->summaryBasics();
}
function summary_argument($data) {

View File

@ -167,7 +167,7 @@ class String extends ArgumentPluginBase {
}
$this->summary_name_field();
return $this->summary_basics(FALSE);
return $this->summaryBasics(FALSE);
}
/**