Pelzini

This is the code documentation for the Pelzini project

class RootTreeNode

The root node in a tree

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-04-24
**/
class NewClassName extends RootTreeNode {
    
    /**
    * Creates a tree based on a set of nodes in the database
    **/
    public function createFromDatabase (resource $res, string $id_col, string $parent_col) {
        // Method code goes here
    }
    
}
?>