Faq::arbitModuleFaqDefintion
Class arbitModuleFaqDefintion
Arbit FAQ module definition Arbit FAQ module definition
arbitBaseStruct
|
--arbitModuleDefintion
|
--arbitModuleFaqDefintion
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( 'faq_categories' => 'arbitBackendCouchDbFaqCategoriesDocument', 'faq_question' => 'arbitBackendCouchDbFaqQuestionDocument', )
CouchDB documents to be registered at the document manager.
CouchDB documents to be registered at the document manager. |
|
protected array |
$couchDbViews
= array( 'faq_questions' => 'arbitBackendCouchDbFaqQuestionView', )
CouchDB documents to be registered at the document manager.
CouchDB documents to be registered at the document manager. |
|
protected array |
$facades
= array( 'couchdb' => array( 'faq_categories' => 'arbitCouchDbFaqCategoriesFacade', 'faq_question' => 'arbitCouchDbFaqQuestionFacade', ),)
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( 'faq_ask_question' => 'User is allowed to ask new questions.', 'faq_edit_answer' => 'User is allowed to answer new questions and edit existing answers.', 'faq_edit_categories' => 'User is allowed to edit the categories available for FAQ questions.', ),'slots'=>array(),'signals'=>array('faqNewQuestion'=>'A new question has been asked by a user.','faqQuestionRemoved'=>'A question has been removed.','faqAnswerEdit'=>'A answer has been given or edited.',),'templateDirectory'=>'templates/','controller'=>'arbitModuleFaqController','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( 'arbitFaqOverviewViewModel' => 'arbitModuleFaqXHtmlHandler::showOverviewModel', 'arbitFaqQuestionViewModel' => 'arbitModuleFaqXHtmlHandler::showQuestionModel', 'arbitFaqQuestionEditModel' => 'arbitModuleFaqXHtmlHandler::showEditModel', 'arbitFaqAskViewModel' => 'arbitModuleFaqXHtmlHandler::showAskModel', 'arbitFaqAnswerViewModel' => 'arbitModuleFaqXHtmlHandler::showAnswerModel', 'arbitFaqCategoriesViewModel' => 'arbitModuleFaqXHtmlHandler::showCategoriesModel', ),'arbitViewEmailHandler'=>array('arbitFaqAnswerEditStruct'=>'arbitModuleFaqEmailHandler::showAnswerEdit','arbitFaqQuestionRemovedStruct'=>'arbitModuleFaqEmailHandler::showQuestionRemoved','arbitFaqNewQuestionStruct'=>'arbitModuleFaqEmailHandler::showNewQuestion',),)
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
|