Skip to content
Snippets Groups Projects
Commit 4da6c73f authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2002914 by crowdcg: Rename Views method get_field_value() to getFieldValue().

parent 0a563e85
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -569,7 +569,7 @@ public function renderGrouping($records, $groupings = array(), $group_rendered =
}
}
else {
$grouping = $this->get_field_value($index, $field);
$grouping = $this->getFieldValue($index, $field);
// Not all field handlers return a scalar value,
// e.g. views_handler_field_field.
if (!is_scalar($grouping)) {
......@@ -674,7 +674,7 @@ public function get_field($index, $field) {
* @param $field
* The id of the field.
*/
function get_field_value($index, $field) {
protected function getFieldValue($index, $field) {
$this->view->row_index = $index;
$value = $this->view->field[$field]->get_value($this->view->result[$index]);
unset($this->view->row_index);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment