Debugger - you can use this in your extended classes to output debugging information. Uses DB_DataObject::DebugLevel(x) to turn it on, and can be completly turned off by using the production setting in the configuration file
Parameter
string $message - message to output
integer $logtype - A bold prefix string
integer $level - output level, 1 is general, 5 tends to reveal things like database connection passwords..
$person = new DataObjects_Person; $person->get(12); // always prints $person->debug('just got the person, about to set stuff', 'my application',0); $person->setFrom($_POST['input']); // only prints if debuglevel is set $person->debug('just set the variables, about to update', 'my application',1); $person->update();
Deliver First Class Web Sites: 101 Essential Checklists Want to learn how to make your web sites usable and accessible? Want to ensure that your sites meet current best practice, without spending hours trawling through incomprehensible specifications and recommendations from dozens of different books, research papers, and web sites? Want to make sure that the sites you build are "right the first time," requiring no costly redevelopments?