Argument #2 must be of type array, null given

Created on 14 February 2025, about 2 months ago

Problem/Motivation

Once I installed that module and navigate to : /admin/config/system/dbtable

I was able to add new table (manually created in database), however when I click on Table name I am getting following error:

The website encountered an unexpected error. Try again later.

TypeError: array_merge(): <strong>Argument #2 must be of type array, null given in array_merge() </strong>(line 40 of modules\contrib\custom_table_operations\src\Controller\TableContentController.php).
Drupal\custom_table_operations\Controller\TableContentController->Listing('People', 'ID')
call_user_func_array(Array, Array) (Line: 123)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 638)
Drupal\Core\Render\Renderer->executeInRenderContext(Object, Object) (Line: 124)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->wrapControllerExecutionInRenderContext(Array, Array) (Line: 97)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 181)
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Object, 1) (Line: 76)
Symfony\Component\HttpKernel\HttpKernel->handle(Object, 1, 1) (Line: 53)
Drupal\Core\StackMiddleware\Session->handle(Object, 1, 1) (Line: 48)
Drupal\Core\StackMiddleware\KernelPreHandle->handle(Object, 1, 1) (Line: 28)
Drupal\Core\StackMiddleware\ContentLength->handle(Object, 1, 1) (Line: 32)
Drupal\big_pipe\StackMiddleware\ContentLength->handle(Object, 1, 1) (Line: 116)
Drupal\page_cache\StackMiddleware\PageCache->pass(Object, 1, 1) (Line: 90)
Drupal\page_cache\StackMiddleware\PageCache->handle(Object, 1, 1) (Line: 48)
Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle(Object, 1, 1) (Line: 51)
Drupal\Core\StackMiddleware\NegotiationMiddleware->handle(Object, 1, 1) (Line: 36)
Drupal\Core\StackMiddleware\AjaxPageState->handle(Object, 1, 1) (Line: 51)
Drupal\Core\StackMiddleware\StackedHttpKernel->handle(Object, 1, 1) (Line: 741)
Drupal\Core\DrupalKernel->handle(Object) (Line: 19)

Also when I click Edit : I am getting following warning:

Warning: A<strong>ttempt to read property "field_list" on null in</strong> Drupal\custom_table_operations\Controller\TableContentController->Listing() (line 28 of modules\custom\custom_table_operations\src\Controller\TableContentController.php).
Drupal\custom_table_operations\Controller\TableContentController->Listing()
call_user_func_array() (Line: 123)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 638)
Drupal\Core\Render\Renderer->executeInRenderContext() (Line: 124)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->wrapControllerExecutionInRenderContext() (Line: 97)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 181)
Symfony\Component\HttpKernel\HttpKernel->handleRaw() (Line: 76)
Symfony\Component\HttpKernel\HttpKernel->handle() (Line: 53)
Drupal\Core\StackMiddleware\Session->handle() (Line: 48)
Drupal\Core\StackMiddleware\KernelPreHandle->handle() (Line: 28)
Drupal\Core\StackMiddleware\ContentLength->handle() (Line: 32)
Drupal\big_pipe\StackMiddleware\ContentLength->handle() (Line: 116)
Drupal\page_cache\StackMiddleware\PageCache->pass() (Line: 90)
Drupal\page_cache\StackMiddleware\PageCache->handle() (Line: 48)
Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle() (Line: 51)
Drupal\Core\StackMiddleware\NegotiationMiddleware->handle() (Line: 36)
Drupal\Core\StackMiddleware\AjaxPageState->handle() (Line: 51)
Drupal\Core\StackMiddleware\StackedHttpKernel->handle() (Line: 741)
Drupal\Core\DrupalKernel->handle() (Line: 19)

I created table in db using following sql (if needed the same) :

CREATE TABLE People (
    ID INT NOT NULL AUTO_INCREMENT,
    Name VARCHAR(50) NOT NULL,
    Surname VARCHAR(50) NOT NULL,
    Address VARCHAR(100),
    PRIMARY KEY (ID)
);

INSERT INTO People (Name, Surname, Address) VALUES
('John', 'Doe', '123 Main St, Anytown, USA'),
('Jane', 'Smith', '456 Oak St, Somecity, USA'),
('Michael', 'Brown', '789 Pine St, Thistown, USA'),
('Emily', 'Davis', '101 Maple St, Thattown, USA'),
('Daniel', 'Wilson', '202 Birch St, Anothertown, USA'),
('Emma', 'Taylor', '303 Elm St, Newcity, USA'),
('James', 'Anderson', '404 Cedar St, Oldtown, USA'),
('Olivia', 'Thomas', '505 Aspen St, Westcity, USA'),
('William', 'Johnson', '606 Cherry St, Eastcity, USA'),
('Sophia', 'Martinez', '707 Walnut St, Northcity, USA');

I am using Drupal 10.4 and PHP 8.126

πŸ› Bug report
Status

Active

Version

1.0

Component

Code

Created by

πŸ‡ΈπŸ‡°Slovakia coaston

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024