public function NodeCounterTimestamp::access in Drupal 8
Same name and namespace in other branches
- 9 core/modules/statistics/src/Plugin/views/field/NodeCounterTimestamp.php \Drupal\statistics\Plugin\views\field\NodeCounterTimestamp::access()
Check whether given user has access to this handler.
Parameters
\Drupal\Core\Session\AccountInterface $account: The user account to check.
Return value
bool TRUE if the user has access to the handler, FALSE otherwise.
Overrides HandlerBase::access
File
- core/
modules/ statistics/ src/ Plugin/ views/ field/ NodeCounterTimestamp.php, line 20
Class
- NodeCounterTimestamp
- Field handler to display the most recent time the node has been viewed.
Namespace
Drupal\statistics\Plugin\views\fieldCode
public function access(AccountInterface $account) {
return $account
->hasPermission('view post access counter');
}