Pelzini

This is the code documentation for the Pelzini project

class FieldTreeNodeMatcher

Finds nodes in the tree which have a specified field which matches a specified value

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-04-23
**/
class NewClassName extends FieldTreeNodeMatcher {
    
    /**
    * Will return true if the node matches the specified condition, or false otherwise
    **/
    public function match (TreeNode $node) {
        // Method code goes here
    }
    
    public function __construct ($field, $value) {
        // Method code goes here
    }
    
}
?>