renderRowInternally() protected méthode

NB: You must have initialized the row before you call this method.
protected renderRowInternally ( $request, $row ) : string
$request PKPRequest
$row GridRow
Résultat string the row HTML
 /**
  * @see GridHandler::renderRowInternally()
  */
 protected function renderRowInternally($request, $row)
 {
     if ($this->getCategoryRowIdParameterName()) {
         $param = $this->getRequestArg($this->getCategoryRowIdParameterName());
         $templateMgr = TemplateManager::getManager($request);
         $templateMgr->assign('categoryId', $param);
     }
     return parent::renderRowInternally($request, $row);
 }