You are here

function views_node_access_plugin_access_current_user::summary_title in Views node access 7

Same name and namespace in other branches
  1. 6 views_node_access_plugin_access_current_user.inc \views_node_access_plugin_access_current_user::summary_title()

Return a string to display as the clickable title for the access control.

Overrides views_plugin_access::summary_title

1 call to views_node_access_plugin_access_current_user::summary_title()
views_node_access_plugin_access_node_type_current_user::summary_title in ./views_node_access_plugin_access_node_type_current_user.inc
Return a string to display as the clickable title for the access control.
1 method overrides views_node_access_plugin_access_current_user::summary_title()
views_node_access_plugin_access_node_type_current_user::summary_title in ./views_node_access_plugin_access_node_type_current_user.inc
Return a string to display as the clickable title for the access control.

File

./views_node_access_plugin_access_current_user.inc, line 14
Views access plugin that provides node-type-based access control.

Class

views_node_access_plugin_access_current_user
@file Views access plugin that provides node-type-based access control.

Code

function summary_title() {
  return check_plain(t('Current user'));
}