Wiki::arbitModuleWikiDefintion
Class arbitModuleWikiDefintion
Arbit Wiki module definition Arbit Wiki module definition
arbitBaseStruct
|
--arbitModuleDefintion
|
--arbitModuleWikiDefintion
Author(s):
|
Version:
|
$Revision: 1236 $ |
|
License:
|
GPL |
Member Variables
|
protected array |
$caches
= array( )
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 |
$couchDbDocuments
= array( 'wiki_page' => 'arbitBackendCouchDbWikiPageDocument', )
CouchDB documents to be registered at the document manager.
CouchDB documents to be registered at the document manager. |
|
protected array |
$couchDbViews
= array( 'wiki_pages' => 'arbitBackendCouchDbWikiPageView', )
CouchDB documents to be registered at the document manager.
CouchDB documents to be registered at the document manager. |
|
protected array |
$facades
= array( 'couchdb' => array( 'wiki_page' => 'arbitCouchDbWikiPageFacade', ),)
Array with facades registered on initialization
Array with facedes for all known database backends linked with their respective implementation.
Array with facades registered on initialization
Array with facedes for all known database backends linked with their respective implementation.
'couchdb' => array(
'name' => 'class',
),
|
|
protected array |
$properties
= array( 'autoload' => null, 'permissions' => array( 'wiki_view' => 'User is allowed to view wiki pages.', 'wiki_edit' => 'User is allowed to edit wiki pages.', 'wiki_attach' => 'User is allowed to add attachments to wiki pages.', 'wiki_revert' => 'User is allowed to revert wiki pages back to old revisions.', ),'slots'=>array(),'signals'=>array('wikiPageNew'=>'A new wiki page has been created by an user.','wikiPageEdit'=>'A wiki page has been edited.',// 'wikiPageRevert' => 'A wiki page has been reverted to an older revision of the page.', // 'wikiPageDeleted' => 'A wiki page has been removed.', ),'templateDirectory'=>'templates/','controller'=>'arbitModuleWikiController','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( 'arbitWikiViewPageModel' => 'arbitModuleWikiXHtmlHandler::showPageModel', 'arbitWikiViewOldPageModel' => 'arbitModuleWikiXHtmlHandler::showOldPageModel', 'arbitWikiViewEditPageModel' => 'arbitModuleWikiXHtmlHandler::showEditPageModel', 'arbitWikiViewRevertPageModel' => 'arbitModuleWikiXHtmlHandler::showRevertPageModel', 'arbitWikiViewPageHistoryModel' => 'arbitModuleWikiXHtmlHandler::showPageHistoryModel', 'arbitWikiViewLastEditsModel' => 'arbitModuleWikiXHtmlHandler::showLastEditsModel', 'arbitWikiViewTextDiffModel' => 'arbitModuleWikiXHtmlHandler::showDiffModel', ),'arbitViewEmailHandler'=>array('arbitWikiPageNewViewStruct'=>'arbitModuleWikiEmailHandler::showPageNew','arbitWikiPageEditViewStruct'=>'arbitModuleWikiEmailHandler::showPageEdit',),)
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
|