You are here

function quote_handler_field_comment_link_quote::access in Quote 7

Check whether current user has access to this handler.

Return value

bool

Overrides views_handler::access

File

views/quote_handler_field_comment_link_quote.inc, line 12
Provides a 'quote' link for Views.

Class

quote_handler_field_comment_link_quote
Field handler to present a link to delete a node.

Code

function access() {

  // Check for permission to reply to comments.
  return user_access('post comments');
}