Pelzini

This is the code documentation for the Pelzini project

class MetadataOutputter

Outputs the tree to a metadata file

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-04-26
**/
class NewClassName extends MetadataOutputter {
    
    /**
    * Returns the mimetype of the outputted file (e.g. 'text/xml')
    **/
    public function get_mimetype () {
        // Method code goes here
    }
    
    /**
    * Does nothing; there is no layout to check
    **/
    public function check_layout () {
        // Method code goes here
    }
    
    /**
    * Returns the file extension of the outputted file (e.g. 'xml')
    **/
    public function get_ext () {
        // Method code goes here
    }
    
    /**
    * Sets the full filename to output to
    **/
    public function set_filename ($filename) {
        // Method code goes here
    }
    
    /**
    * Sets the full filename to output to
    **/
    public function __construct ($filename) {
        // Method code goes here
    }
    
}
?>