init(); } /** * Constructor to keep PHP5 happy */ function __construct() { $this->XMLDBAction(); } /** * Init method, every subclass will have its own, * always calling the parent one */ function init() { $this->does_generate = ACTION_NONE; $this->title = strtolower(get_class($this)); $this->str = array(); $this->output = NULL; $this->errormsg = NULL; $this->subaction = NULL; $this->sesskey_protected = true; } /** * returns the type of output of the file */ function getDoesGenerate() { return $this->does_generate; } /** * getError method, returns the last error string. * Used if the invoke() methods returns false */ function getError() { return $this->errormsg; } /** * getOutput method, returns the output generated by the action. * Used after execution of the invoke() methods if they return true */ function getOutput() { return $this->output; } /** * getPostAtion method, returns the action to launch after executing * another one */ function getPostAction() { return $this->postaction; } /** * getTitle method returns the title of the action (that is part * of the $str array attribute */ function getTitle() { return $this->str['title']; } /** * loadStrings method, loads the required strings specified in the * array parameter */ function loadStrings($strings) { /// Load some commonly used strings $this->str['title'] = get_string($this->title, 'xmldb'); /// Now process the $strings array loading it in the $str atribute if ($strings) { foreach ($strings as $key => $module) { $this->str[$key] = get_string($key, $module); } } } /** * main invoke method, it sets the postaction attribute * if possible and checks sesskey_protected if needed */ function invoke() { global $SESSION; /// Sesskey protection if ($this->sesskey_protected) { require_sesskey(); } /// If we are used any dir, save it in the lastused session object /// Some actions can use it to perform positioning if ($lastused = optional_param ('dir', NULL, PARAM_PATH)) { $SESSION->lastused = stripslashes_safe($lastused); } $this->postaction = optional_param ('postaction', NULL, PARAM_ALPHAEXT); /// Avoid being recursive if ($this->title == $this->postaction) { $this->postaction = NULL; } } /** * launch method, used to easily call invoke methods between actions */ function launch($action) { global $CFG; /// Get the action path and invoke it $actionsroot = "$CFG->dirroot/$CFG->admin/xmldb/actions"; $actionclass = $action . '.class.php'; $actionpath = "$actionsroot/$action/$actionclass"; /// Load and invoke the proper action $result = false; if (file_exists($actionpath) && is_readable($actionpath)) { require_once($actionpath); if ($xmldb_action = new $action) { $result = $xmldb_action->invoke(); if ($result) { if ($xmldb_action->does_generate != ACTION_NONE && $xmldb_action->getOutput()) { $this->does_generate = $xmldb_action->does_generate; $this->title = $xmldb_action->title; $this->str = $xmldb_action->str; $this->output .= $xmldb_action->getOutput(); } } else { $this->errormsg = $xmldb_action->getError(); } } else { $this->errormsg = "Error: cannot instantiate class (actions/$action/$actionclass)"; } } else { $this->errormsg = "Error: wrong action specified ($action)"; } return $result; } } ?>