Skip to content
Snippets Groups Projects

Issue #3307934: Deprecated function: Automatic conversion of false to array is deprecated

1 file
+ 6
6
Compare changes
  • Side-by-side
  • Inline
@@ -141,7 +141,7 @@ class AjaxController extends ControllerBase {
@@ -141,7 +141,7 @@ class AjaxController extends ControllerBase {
* {@inheritdoc}
* {@inheritdoc}
*/
*/
public function getResults($entities, $components, $setting = []) {
public function getResults($entities, $components, $setting = []) {
$data = FALSE;
$data = [];
foreach ($entities as $delta => $entity) {
foreach ($entities as $delta => $entity) {
$table_entity = $this->renderBuild->build($entity);
$table_entity = $this->renderBuild->build($entity);
$objectData = new \stdClass();
$objectData = new \stdClass();
@@ -183,14 +183,14 @@ class AjaxController extends ControllerBase {
@@ -183,14 +183,14 @@ class AjaxController extends ControllerBase {
}
}
$data[$delta] = $objectData;
$data[$delta] = $objectData;
}
}
return $data;
return count($data) ? $data : FALSE;
}
}
/**
/**
* {@inheritdoc}
* {@inheritdoc}
*/
*/
public function getTable($entities, $components, $setting = []) {
public function getTable($entities, $components, $setting = []) {
$data = FALSE;
$data = [];
foreach ($entities as $delta => $entity) {
foreach ($entities as $delta => $entity) {
$table_entity = $this->renderBuild->build($entity);
$table_entity = $this->renderBuild->build($entity);
foreach ($components as $field_name => $field) {
foreach ($components as $field_name => $field) {
@@ -207,14 +207,14 @@ class AjaxController extends ControllerBase {
@@ -207,14 +207,14 @@ class AjaxController extends ControllerBase {
$data[$delta]['operation'] = $this->paragraphsTableLinksAction($entity->id(), $destination);
$data[$delta]['operation'] = $this->paragraphsTableLinksAction($entity->id(), $destination);
}
}
}
}
return $data;
return count($data) ? $data : FALSE;
}
}
/**
/**
* {@inheritdoc}
* {@inheritdoc}
*/
*/
public function getData($entities, $components, $setting = []) {
public function getData($entities, $components, $setting = []) {
$data = FALSE;
$data = [];
$header = [];
$header = [];
foreach ($components as $field_name => $field) {
foreach ($components as $field_name => $field) {
$header[] = $field['title'];
$header[] = $field['title'];
@@ -262,7 +262,7 @@ class AjaxController extends ControllerBase {
@@ -262,7 +262,7 @@ class AjaxController extends ControllerBase {
array_unshift($data, $header);
array_unshift($data, $header);
return $data;
return count($data) ? $data : FALSE;
}
}
/**
/**
Loading