如何在后端的项目列表中获取已检查项目的 ID。我想为功能添加额外的publish
功能。所以我需要的是得到那个检查的ID。在 (com_registracijos\controllers\lists.php) 我尝试添加如下内容:
function publish()
{
$id = JRequest::getInt('id');
$value = JRequest::getInt('value');
$boxchecked = JRequest::getInt('boxchecked');
}