Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/Access.php')
-rw-r--r--core/Access.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/Access.php b/core/Access.php
index a1b823a2cc..bd3dbbb6a1 100644
--- a/core/Access.php
+++ b/core/Access.php
@@ -12,24 +12,24 @@ use Piwik\Db;
/**
* Singleton that manages user access to Piwik resources.
- *
+ *
* To check whether a user has access to a resource, use one of the {@link Piwik Piwik::checkUser...}
* methods.
*
* In Piwik there are four different access levels:
- *
+ *
* - **no access**: Users with this access level cannot view the resource.
* - **view access**: Users with this access level can view the resource, but cannot modify it.
* - **admin access**: Users with this access level can view and modify the resource.
* - **Super User access**: Only the Super User has this access level. It means the user can do
* whatever he/she wants.
- *
+ *
* Super user access is required to set some configuration options.
* All other options are specific to the user or to a website.
*
* Access is granted per website. Uses with access for a website can view all
* data associated with that website.
- *
+ *
*/
class Access
{