} // END - if
// Debug message
- //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(str_replace('_', '-', strtoupper($messageType)) . '-TAG: key=' . $key . ',value=' . $value);
+ /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(str_replace('_', '-', strtoupper($messageType)) . '-TAG: key=' . $key . ',value=' . $value);
// Set it now
$this->dataXmlNodes[$key] = $value;
*/
);
- // Init config-copy array
- $this->configCopy = array(
- XmlRequestNodeListAnswerTemplateEngine::REQUEST_DATA_SESSION_ID => 'session_id',
- );
-
- // Init array
+ // Init search data array
$this->searchData = array(
XmlRequestNodeListAnswerTemplateEngine::REQUEST_DATA_SESSION_ID,
);
*/
class XmlRequestNodeListAnswerTemplateEngine extends BaseXmlTemplateEngine implements CompileableTemplate, Registerable {
// Constants for array elements
- const REQUEST_DATA_SESSION_ID = 'my-session-id';
+ const REQUEST_DATA_SESSION_ID = 'session-id';
const REQUEST_DATA_NODE_LIST = 'node-list';
/**
}
/**
- * Starts the my-session-id
+ * Starts the session-id
*
* @return void
*/
- protected function startMySessionId () {
+ protected function startSessionId () {
// Push the node name on the stacker
$this->getStackerInstance()->pushNamed('node_request_node_list_answer', self::REQUEST_DATA_SESSION_ID);
}
}
/**
- * Finishes the my-session-id
+ * Finishes the session-id
*
* @return void
*/
- protected function finishMySessionId () {
+ protected function finishSessionId () {
// Pop the last entry
$this->getStackerInstance()->popNamed('node_request_node_list_answer');
}