Hi,
In List PHP plugin, accessing the selected rows data with the code:
$ids = $app->input->get('ids', array(), 'array');
return this error:
Debug: Eval exception : list php plugin : Since joomla/application 2.0.0: Accessing the input property of Joomla\Application\AbstractWebApplication is deprecated, use the Joomla\Application\AbstractWebApplication::getInput() method instead.
Using:
$app->getInput()->get('myparam',...);
doesn't work. How can I chage the code?
Thank you!
In List PHP plugin, accessing the selected rows data with the code:
$ids = $app->input->get('ids', array(), 'array');
return this error:
Debug: Eval exception : list php plugin : Since joomla/application 2.0.0: Accessing the input property of Joomla\Application\AbstractWebApplication is deprecated, use the Joomla\Application\AbstractWebApplication::getInput() method instead.
Using:
$app->getInput()->get('myparam',...);
doesn't work. How can I chage the code?
Thank you!