diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/field/Category.php b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/field/Category.php index ce29a53..05f77e1 100644 --- a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/field/Category.php +++ b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/field/Category.php @@ -60,10 +60,10 @@ public function buildOptionsForm(&$form, &$form_state) { * @param string $data * The XSS safe string for the link text. * @param \Drupal\views\ResultRow $values - * The values retrieved from the database. + * The values retrieved from a single row of a view's query result. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($data, ResultRow $values) { $cid = $this->getValue($values, 'cid'); diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/field/TitleLink.php b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/field/TitleLink.php index e3b854e..27b5aa0 100644 --- a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/field/TitleLink.php +++ b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/field/TitleLink.php @@ -69,10 +69,10 @@ public function render(ResultRow $values) { * @param string $data * The XSS safe string for the link text. * @param \Drupal\views\ResultRow $values - * The values retrieved from the database. + * The values retrieved from a single row of a view's query result. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($data, ResultRow $values) { $link = $this->getValue($values, 'link'); diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Comment.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Comment.php index ef9bc7e..1e12304 100644 --- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Comment.php +++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Comment.php @@ -69,10 +69,10 @@ public function buildOptionsForm(&$form, &$form_state) { * @param string $data * The XSS safe string for the link text. * @param \Drupal\views\ResultRow $values - * The values retrieved from the database. + * The values retrieved from a single row of a view's query result. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($data, ResultRow $values) { if (!empty($this->options['link_to_comment'])) { diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Link.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Link.php index c526592..e2a0dd2 100644 --- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Link.php +++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Link.php @@ -96,10 +96,10 @@ public function render(ResultRow $values) { * @param \Drupal\Core\Entity\EntityInterface $data * The comment entity. * @param \Drupal\views\ResultRow $values - * The values retrieved from the database. + * The values retrieved from a single row of a view's query result. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($data, ResultRow $values) { $text = !empty($this->options['text']) ? $this->options['text'] : t('view'); diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkApprove.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkApprove.php index 2c666ad..ae61971 100644 --- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkApprove.php +++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkApprove.php @@ -30,10 +30,10 @@ public function access() { * @param \Drupal\Core\Entity\EntityInterface $data * The comment entity. * @param \Drupal\views\ResultRow $values - * The values retrieved from the view's query result set. + * The values retrieved from a single row of a view's query result. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($data, ResultRow $values) { $status = $this->getValue($values, 'status'); diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkDelete.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkDelete.php index e803464..34ba8ae 100644 --- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkDelete.php +++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkDelete.php @@ -30,10 +30,10 @@ public function access() { * @param \Drupal\Core\Entity\EntityInterface $data * The comment entity. * @param \Drupal\views\ResultRow $values - * The values retrieved from the view's query result set. + * The values retrieved from a single row of a view's query result. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($data, ResultRow $values) { $text = !empty($this->options['text']) ? $this->options['text'] : t('delete'); diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkEdit.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkEdit.php index 4e8eae1..39ce70d 100644 --- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkEdit.php +++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkEdit.php @@ -43,10 +43,10 @@ public function buildOptionsForm(&$form, &$form_state) { * @param \Drupal\Core\Entity\EntityInterface $data * The comment entity. * @param \Drupal\views\ResultRow $values - * The values retrieved from the view's query result set. + * The values retrieved from a single row of a view's query result. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($data, ResultRow $values) { parent::renderLink($data, $values); diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkReply.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkReply.php index 3870c56..9b1d212 100644 --- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkReply.php +++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkReply.php @@ -30,10 +30,10 @@ public function access() { * @param \Drupal\Core\Entity\EntityInterface $data * The comment entity. * @param \Drupal\views\ResultRow $values - * The values retrieved from the view's query result set. + * The values retrieved from a single row of a view's query result. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($data, ResultRow $values) { $text = !empty($this->options['text']) ? $this->options['text'] : t('reply'); diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeNewComments.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeNewComments.php index 402a0e6..3e36dff 100644 --- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeNewComments.php +++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeNewComments.php @@ -133,10 +133,10 @@ public function preRender(&$values) { * @param string $data * The XSS safe string for the link text. * @param \Drupal\views\ResultRow $values - * The values retrieved from the database. + * The values retrieved from a single row of a view's query result. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($data, ResultRow $values) { if (!empty($this->options['link_to_comment']) && $data !== NULL && $data !== '') { diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Username.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Username.php index dd18d5d..9d63403 100644 --- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Username.php +++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Username.php @@ -55,10 +55,10 @@ public function buildOptionsForm(&$form, &$form_state) { * @param string $data * The XSS safe string for the link text. * @param \Drupal\views\ResultRow $values - * The values retrieved from the database. + * The values retrieved from a single row of a view's query result. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($data, ResultRow $values) { if (!empty($this->options['link_to_user'])) { diff --git a/core/modules/contextual/lib/Drupal/contextual/Plugin/views/field/ContextualLinks.php b/core/modules/contextual/lib/Drupal/contextual/Plugin/views/field/ContextualLinks.php index d8c07f2..ec7a3a6 100644 --- a/core/modules/contextual/lib/Drupal/contextual/Plugin/views/field/ContextualLinks.php +++ b/core/modules/contextual/lib/Drupal/contextual/Plugin/views/field/ContextualLinks.php @@ -69,7 +69,7 @@ public function preRender(&$values) { * Renders the contextual fields. * * @param \Drupal\views\ResultRow $values - * The values retrieved from the database. + * The values retrieved from a single row of a view's query result. * * @see contextual_preprocess() * @see contextual_contextual_links_view_alter() diff --git a/core/modules/file/lib/Drupal/file/Plugin/views/field/File.php b/core/modules/file/lib/Drupal/file/Plugin/views/field/File.php index e5c88c6..3f28bd8 100644 --- a/core/modules/file/lib/Drupal/file/Plugin/views/field/File.php +++ b/core/modules/file/lib/Drupal/file/Plugin/views/field/File.php @@ -58,10 +58,10 @@ public function buildOptionsForm(&$form, &$form_state) { * @param string $data * The XSS safe string for the link text. * @param \Drupal\views\ResultRow $values - * The values retrieved from the database. + * The values retrieved from a single row of a view's query result. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($data, ResultRow $values) { if (!empty($this->options['link_to_file']) && $data !== NULL && $data !== '') { diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/Link.php b/core/modules/node/lib/Drupal/node/Plugin/views/field/Link.php index 5588d44..18a9a9a 100644 --- a/core/modules/node/lib/Drupal/node/Plugin/views/field/Link.php +++ b/core/modules/node/lib/Drupal/node/Plugin/views/field/Link.php @@ -64,7 +64,7 @@ public function render(ResultRow $values) { * The values retrieved from the view's result set. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($node, ResultRow $values) { if (node_access('view', $node)) { diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/LinkDelete.php b/core/modules/node/lib/Drupal/node/Plugin/views/field/LinkDelete.php index 119df01..ed04c4f 100644 --- a/core/modules/node/lib/Drupal/node/Plugin/views/field/LinkDelete.php +++ b/core/modules/node/lib/Drupal/node/Plugin/views/field/LinkDelete.php @@ -29,7 +29,7 @@ class LinkDelete extends Link { * The values retrieved from the view's result set. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($node, ResultRow $values) { // Ensure user has access to delete this node. diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/LinkEdit.php b/core/modules/node/lib/Drupal/node/Plugin/views/field/LinkEdit.php index f3c163e..9dbc9ac 100644 --- a/core/modules/node/lib/Drupal/node/Plugin/views/field/LinkEdit.php +++ b/core/modules/node/lib/Drupal/node/Plugin/views/field/LinkEdit.php @@ -29,7 +29,7 @@ class LinkEdit extends Link { * The values retrieved from the view's result set. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($node, ResultRow $values) { // Ensure user has access to edit this node. diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/Node.php b/core/modules/node/lib/Drupal/node/Plugin/views/field/Node.php index 94195ad..e4731ac 100644 --- a/core/modules/node/lib/Drupal/node/Plugin/views/field/Node.php +++ b/core/modules/node/lib/Drupal/node/Plugin/views/field/Node.php @@ -65,10 +65,10 @@ public function buildOptionsForm(&$form, &$form_state) { * @param string $data * The XSS safe string for the link text. * @param \Drupal\views\ResultRow $values - * The values retrieved from the database. + * The values retrieved from a single row of a view's query result. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($data, ResultRow $values) { if (!empty($this->options['link_to_node']) && !empty($this->additional_fields['nid'])) { diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/Revision.php b/core/modules/node/lib/Drupal/node/Plugin/views/field/Revision.php index d31e4c2..5959827 100644 --- a/core/modules/node/lib/Drupal/node/Plugin/views/field/Revision.php +++ b/core/modules/node/lib/Drupal/node/Plugin/views/field/Revision.php @@ -61,10 +61,10 @@ public function buildOptionsForm(&$form, &$form_state) { * @param string $data * The XSS safe string for the link text. * @param \Drupal\views\ResultRow $values - * The values retrieved from the database. + * The values retrieved from a single row of a view's query result. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($data, ResultRow $values) { if (!empty($this->options['link_to_node_revision']) && $data !== NULL && $data !== '') { diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/RevisionLink.php b/core/modules/node/lib/Drupal/node/Plugin/views/field/RevisionLink.php index bfa5454..ac568ce 100644 --- a/core/modules/node/lib/Drupal/node/Plugin/views/field/RevisionLink.php +++ b/core/modules/node/lib/Drupal/node/Plugin/views/field/RevisionLink.php @@ -44,7 +44,7 @@ public function access() { * The values retrieved from the view's result set. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($data, ResultRow $values) { list($node, $vid) = $this->get_revision_entity($values, 'view'); diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/RevisionLinkDelete.php b/core/modules/node/lib/Drupal/node/Plugin/views/field/RevisionLinkDelete.php index b9096b0..0f8cc64 100644 --- a/core/modules/node/lib/Drupal/node/Plugin/views/field/RevisionLinkDelete.php +++ b/core/modules/node/lib/Drupal/node/Plugin/views/field/RevisionLinkDelete.php @@ -33,7 +33,7 @@ public function access() { * The values retrieved from the view's result set. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($data, ResultRow $values) { list($node, $vid) = $this->get_revision_entity($values, 'delete'); diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/RevisionLinkRevert.php b/core/modules/node/lib/Drupal/node/Plugin/views/field/RevisionLinkRevert.php index f438f27..13c10fd 100644 --- a/core/modules/node/lib/Drupal/node/Plugin/views/field/RevisionLinkRevert.php +++ b/core/modules/node/lib/Drupal/node/Plugin/views/field/RevisionLinkRevert.php @@ -33,7 +33,7 @@ public function access() { * The values retrieved from the view's result set. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($data, ResultRow $values) { list($node, $vid) = $this->get_revision_entity($values, 'update'); diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/field/Taxonomy.php b/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/field/Taxonomy.php index 065e92f..be01032 100644 --- a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/field/Taxonomy.php +++ b/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/field/Taxonomy.php @@ -71,10 +71,10 @@ public function buildOptionsForm(&$form, &$form_state) { * @param string $data * The XSS safe string for the link text. * @param \Drupal\views\ResultRow $values - * The values retrieved from the database. + * The values retrieved from a single row of a view's query result. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($data, ResultRow $values) { $tid = $this->getValue($values, 'tid'); diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/field/User.php b/core/modules/user/lib/Drupal/user/Plugin/views/field/User.php index 050c5b2..159b4aa 100644 --- a/core/modules/user/lib/Drupal/user/Plugin/views/field/User.php +++ b/core/modules/user/lib/Drupal/user/Plugin/views/field/User.php @@ -58,10 +58,10 @@ public function buildOptionsForm(&$form, &$form_state) { * @param string $data * The XSS safe string for the link text. * @param \Drupal\views\ResultRow $values - * The values retrieved from the database. + * The values retrieved from a single row of a view's query result. * * @return string - * Returns string for the link text. + * Returns a string for the link text. */ protected function renderLink($data, ResultRow $values) { if (!empty($this->options['link_to_user']) && user_access('access user profiles') && ($entity = $this->getEntity($values)) && $data !== NULL && $data !== '') { diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php index 02b006e..9bad53c 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php @@ -1096,7 +1096,7 @@ public function preRender(&$values) { } * Renders the field. * * @param \Drupal\views\ResultRow $values - * The values retrieved from the database. + * The values retrieved from a single row of a view's query result. */ public function render(ResultRow $values) { $value = $this->getValue($values); @@ -1110,7 +1110,7 @@ public function render(ResultRow $values) { * text-replacement rendering is necessary. * * @param \Drupal\views\ResultRow $values - * The values retrieved from the database. + * The values retrieved from a single row of a view's query result. */ public function advancedRender(ResultRow $values) { if ($this->allowAdvancedRender() && method_exists($this, 'render_item')) { @@ -1593,7 +1593,7 @@ protected function documentSelfTokens(&$tokens) { } * allows sites to override output fairly easily. * * @param \Drupal\views\ResultRow - * Holds single row of the view's result set. + * Holds single row of a view's result set. * * @return string|false * Returns rendered output of the given theme implementation.