9include_once 
"./Services/Xml/classes/class.ilSaxParser.php";
 
   10include_once 
"./Services/Xml/exceptions/class.ilSaxParserException.php";
 
   11include_once 
"./Services/CopyWizard/classes/class.ilCopyWizardOptions.php";
 
   30    parent::__construct(
'', 
true);
 
   42        xml_set_object($a_xml_parser,$this);
 
   43    xml_set_element_handler($a_xml_parser,
'handlerBeginTag',
'handlerEndTag');
 
   44    xml_set_character_data_handler($a_xml_parser,
'handlerCharacterData');
 
   56        global $objDefinition, $ilAccess, $tree;
 
   61        $this->options = array();
 
   62        $this->source_id = (int) $a_attribs[
"source_id"];
 
   67        $this->target_id = (int) $a_attribs[
"target_id"];
 
   76        $id = (int) $a_attribs[
"id"];
 
   81        if(!$tree->isInTree($id))
 
   92                                                        $perm_copy = $ilAccess->checkAccess(
'copy',
'',$id);
 
   93                                                        $copy = $objDefinition->allowCopy($type);
 
   95                                                        if ($perm_copy && $copy)
 
   96                                                                $this->options [$id] = array(
"type" => $action);
 
   97                                                        elseif ($copy && !$perm_copy)
 
  103                                                        $perm_link = $ilAccess->checkAccess(
'write',
'',$id);
 
  104                                                        $link = $objDefinition->allowLink($type);
 
  106                                                        if ($perm_link && $link)
 
  107                                                                $this->options [$id] = array(
"type" => $action);
 
  108                                                        elseif ($copy && !$perm_link)
 
  124    return is_array($this->options) ? $this->options : array();
 
An exception for terminatinating execution or to throw for unit testing.
setHandlers($a_xml_parser)
set event handlers
static getActionForString($s)
__construct($xml)
constructor
handlerBeginTag($a_xml_parser, $a_name, $a_attribs)
handler for begin of element
getTargetId()
read access to target id
handlerCharacterData($a_xml_parser, $a_data)
handler for character data
handlerEndTag($a_xml_parser, $a_name)
getOptions()
read access to options array
getSourceId()
read access to source id
static getTypeByRefId($a_ref_id, $stop_on_error=true)
get object type by reference id
static _isInTrash($a_ref_id)
checks wether object is in trash
SaxParserException thrown by ilSaxParser if property throwException is set.
Base class for sax-based expat parsing extended classes need to overwrite the method setHandlers and ...
setXMLContent($a_xml_content)