SproutCMS

This is the code documentation for the SproutCMS project

class Database_Expression

Database expression class to allow for explicit joins and where expressions.

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-05-03
**/
class NewClassName extends Database_Expression {
    
    public function __construct ($expression) {
        // Method code goes here
    }
    
    public function __toString () {
        // Method code goes here
    }
    
}
?>