Call parent class constructor in PHP5

This may be obvious to some, but I had a hard time figuring it out at first.  I needed to call the constructor of a parent class in the child.  This is handy when you have things that happen in the constructor of all children, but one place where there is some extra stuff that needs to happen.  Rather than duplicate the common things, just call the parent constructor before doing your extra stuff.

parent::Node($rTypes);

In this case it will call the parent class name Node and will pass the row record variable that was passed to the child constructor.