KTAPI User Guide Documentation, examples and tutorials for the KnowledgeTree API (KTAPI) KnowledgeTree Team This documentation is maintained by the {@link mailto:info@knowledgetree.com KnowledgeTree Team}. {@toc} Introduction This is an introductory blurb about the KTAPI Package. Examples This is a blurb about the KTAPI examples offered here. Example 1 This is KTAPI example one. Example 1 32 33 34 public function KTAPI_Error($msg, $obj = null) 35 { 36 if (PEAR::isError($obj)) 37 { 38 parent::PEAR_Error($msg . ' - ' . $obj->getMessage()); 39 } 40 else 41 { 42 parent::PEAR_Error($msg); 43 } 44 } 45 46 47