Lines Matching defs:node
9 * Custom XML node that allows prepending
13 * @param string $name Name of the new node
29 * @param \SimpleXMLElement $node the node to be added
32 public function appendNode(\SimpleXMLElement $node) {
34 $domNode = dom_import_simplexml($node);
41 * @param \SimpleXMLElement $node the child to remove
44 public function removeChild(\SimpleXMLElement $node) {
45 $dom = dom_import_simplexml($node);
47 return $node;