示例#1
0
 /**
  * {@inheritdoc}
  */
 protected function renderLink(ResultRow $row)
 {
     /** @var \Drupal\node\NodeInterface $node */
     $node = $this->getEntity($row);
     if (!$node->getRevisionid()) {
         return '';
     }
     $text = parent::renderLink($row);
     $this->options['alter']['query'] = $this->getDestinationArray();
     return $text;
 }
 /**
  * {@inheritdoc}
  */
 protected function renderLink(ResultRow $row)
 {
     /** @var \Drupal\support_ticket\SupportTicketInterface $support_ticket */
     $support_ticket = $this->getEntity($row);
     if (!$support_ticket->getRevisionId()) {
         return '';
     }
     $text = parent::renderLink($row);
     $this->options['alter']['query'] = $this->getDestinationArray();
     return $text;
 }
示例#3
0
 /**
  * {@inheritdoc}
  */
 protected function renderLink(ResultRow $row)
 {
     $this->options['alter']['query'] = $this->getDestinationArray();
     return parent::renderLink($row);
 }