91 $date = htmlspecialchars( $this->list->getLanguage()->userTimeAndDate(
92 $this->row->log_timestamp, $this->list->getUser() ) );
93 $title = Title::makeTitle( $this->row->log_namespace, $this->row->log_title );
95 $formatter = $services->getLogFormatterFactory()->newFromRow( $this->row );
96 $formatter->setContext( $this->list->getContext() );
100 $loglink = $services->getLinkRenderer()->makeLink(
102 $this->list->msg(
'log' )->text(),
104 [
'page' => $title->getPrefixedText() ]
106 $loglink = $this->list->msg(
'parentheses' )->rawParams( $loglink )->escaped();
108 $action = $formatter->getActionText();
110 $dir = $this->list->getLanguage()->getDir();
111 $comment = Html::rawElement(
'bdi', [
'dir' => $dir ], $formatter->getComment() );
113 $content =
"$loglink $date $action $comment";
120 $this->list->getContext()
122 $content .=
" $tagSummary";
123 $attribs[
'class'] = $classes;
125 return Html::rawElement(
'li', $attribs, $content );