DataTypeHandler::startElement PHP Метод

startElement() публичный Метод

Checks for nested tags within the current one. Creates and calls handlers respectively.
public startElement ( $name, $attrs )
    function startElement($name, $attrs)
    {
        $nef = new NestedElementHandler($this->parser, $this, $this->configurator, $this->element, $this->wrapper, $this->target);
        $nef->init($name, $attrs);
    }