Rights has been activated.

Rights

This name is used in the config.
default:
rights
Options
The name of the role with superuser privileges.
default (string) :
'Admin'
The name of the guest role.
default (string) :
'Authenticated'
The name of the user model class.
default (string) :
'User'
The name of the id column in the user table.
default (string) :
'id'
The name of the username column in the user table.
default (string) :
'username'
Whether to enable business rules.
default (boolean) :
true
Whether to enable data for business rules.
default (boolean) :
false
Whether to display authorization items description instead of name it is set.
default (boolean) :
true
The flash message key to use for success messages.
default (string) :
'RightsSuccess'
The flash message key to use for error messages.
default (string) :
'RightsError'
Whether to install rights when accessed.
default (boolean) :
false
The base url to Rights. Override when module is nested.
default (string) :
'/rights'
The path to the layout file to use for displaying Rights.
default (string) :
'rights.views.layouts.main'
The path to the application layout file.
default (string) :
'application.views.layouts.main'
The style sheet file to use for Rights.
default (string) :
null
Whether to enable debug mode.
default (boolean) :
false
The ID of the default controller for this module. Defaults to 'default'.
default (string) :
'default'
Namespace that should be used when loading controllers. Default is to use global namespace. @since 1.1.11
default (string) :
null
Mapping from controller ID to controller configurations. Pleaser refer to {@link CWebApplication::controllerMap} for more details.
default (array) :
array()
The IDs of the application components that should be preloaded.
default (array) :
array()
The behaviors that should be attached to the module. The behaviors will be attached to the module when {@link init} is called. Please refer to {@link CModel::behaviors} on how to specify the value of this property.
default (array) :
array()
The directory that contains the controller classes. @throws CException if the directory is invalid
default (string) :
null
The root directory of view files. @throws CException if the directory does not exist.
default (string) :
null
The root directory of layout files. @throws CException if the directory does not exist.
default (string) :
null
Sets the module ID. the module ID
default (string) :
null
Sets the root directory of the module. This method can only be invoked at the beginning of the constructor. the root directory of the module. @throws CException if the directory does not exist.
default (string) :
null
Sets user-defined parameters. user-defined parameters. This should be in name-value pairs.
default (array) :
null
Sets the directory that contains the application modules. the directory that contains the application modules. @throws CException if the directory is invalid
default (string) :
null
Sets the aliases that are used in the module. list of aliases to be imported
default (array) :
null
Defines the root aliases. list of aliases to be defined. The array keys are root aliases, while the array values are paths or aliases corresponding to the root aliases. For example,
array(
   'models'=>'application.models',              // an existing alias
   'extensions'=>'application.extensions',      // an existing alias
   'backend'=>dirname(__FILE__).'/../backend',  // a directory
)
default (array) :
null
Configures the sub-modules of this module. Call this method to declare sub-modules and configure them with their initial property values. The parameter should be an array of module configurations. Each array element represents a single module, which can be either a string representing the module ID or an ID-configuration pair representing a module with the specified ID and the initial property values. For example, the following array declares two modules:
array(
    'admin',                // a single module ID
    'payment'=>array(       // ID-configuration pair
        'server'=>'paymentserver.com',
    ),
)
By default, the module class is determined using the expression ucfirst($moduleID).'Module'. And the class file is located under modules/$moduleID. You may override this default by explicitly specifying the 'class' option in the configuration. You may also enable or disable a module by specifying the 'enabled' option in the configuration. module configurations.
default (array) :
null
Free Web Hosting