Ci::arbitModuleCiDefintion
Class arbitModuleCiDefintion
Arbit Ci module definition Arbit Ci module definition
arbitBaseStruct
|
--arbitModuleDefintion
|
--arbitModuleCiDefintion
Author(s):
|
Version:
|
$Revision: 1497 $ |
|
License:
|
GPL |
Member Variables
|
protected array |
$caches
= array( 'ci_charts' => array( 'path' => 'ci/charts/', 'ttl' => arbitCache::INFINITE, ),'ci_reports'=>array('path'=>'ci/reports/','ttl'=>arbitCache::INFINITE,),)
Array with caches registered on initialization
Each cache must have a unique name, normally prefixed with the module identifier. time to live for the cache.
Array with caches registered on initialization
Each cache must have a unique name, normally prefixed with the module identifier. The definition array should at least contain a path and a time to live for the cache.
'name' => array(
'path' => 'dir/',
),
...
|
|
protected array |
$properties
= array( 'autoload' => null, 'permissions' => array( ),'slots'=>array('ciModuleResult'=>'arbitModuleCiController::reportModuleResult',),'signals'=>array('ciModuleResult'=>'Report a module result to the Continious Integration module',),'templateDirectory'=>'templates/','controller'=>'arbitModuleCiController','path'=>__DIR__,)
Array containing the module structures properties.
Array containing the module structures properties.
Take a look at the property descriptions in the class level documentation for a more detailed description for each of the properties.
Do not add any properties to this array, which are not defined in this base class, because those might be used later on by the core. |
|
protected array |
$viewModels
= array( 'arbitViewXHtmlHandler' => array( 'arbitCiOverviewViewModel' => 'arbitModuleCiXHtmlHandler::showOverviewModel', 'arbitCiDetailViewModel' => 'arbitModuleCiXHtmlHandler::showDetailModel', 'arbitCiTestsOverviewViewModel' => 'arbitModuleCiXHtmlHandler::showTestsOverviewModel', 'arbitCiPhpcsOverviewViewModel' => 'arbitModuleCiXHtmlHandler::showPhpcsOverviewModel', ),)
List of view models used by the module
List of used view handlers associated with a list of view models used by the module, each associated with a callback to the concrete handler implementation to visit the view model.
List of view models used by the module
List of used view handlers associated with a list of view models used by the module, each associated with a callback to the concrete handler implementation to visit the view model.
'arbitViewXHtmlHandler' => array(
'myViewModel' => 'myXHtmlHandler::showMyModel',
...
),
...
|
Inherited Member Variables
Inherited Methods
|