function reset()
 {
     $this->_frame->reset();
     // Reset all children
     foreach ($this->get_children() as $child) {
         $child->reset();
     }
 }
Example #2
0
    /**
     * Delegate calls to decorated frame object
     */
    function reset()
    {
        $this->_frame->reset();

        $this->_counters = array();

        // Reset all children
        foreach ($this->get_children() as $child)
            $child->reset();
    }