getAttribute('include'); $decorator = $this->getAttribute('using'); $code->writePhp($this->parent->getComponentRefCode() . '->addDataSetDecorator("' . $decorator . '", "' . $include_path . '");'); foreach(array_keys($this->attributeNodes) as $key) { $name = $this->attributeNodes[$key]->getName(); if($name == 'using') continue; $code->writePhp($this->parent->getComponentRefCode() . '->addDataSetDecoratorParameter("' . $decorator . '","' . $name . '",'); $this->attributeNodes[$key]->generateExpression($code); $code->writePhp(');'); } } } ?>