AppManager

This name is used in the config.
default:
appManager
Options
default :
'app'
default :
'/layouts/main'
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