http://www.fsf.org/ or write * to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, * MA 02111-1307, USA. * */ /* PRESENTATION CLASS */ /** * Presentation logic is defined here. You can use it to generate presentation code * Class instance: $cms->presentation * @author dAm2K (Dino Ciuffetti) <dam2k@users.sourceforge.net> */ class cmsdam_presentation { /** * You should not use this variable from your section. */ var $conf; var $logs; var $debug; var $sections; var $dbms; var $html; /** * This is the class constructor. Here are automatically setted things. * Here are defined all cmsdAm presentation logic * @return true * @author dAm2K (Dino Ciuffetti) <dam2k@users.sourceforge.net> */ function cmsdam_presentation () { require ("presentation/presentation_html.php"); $this->html = new html; return true; } }