/* Enjoy!!! Dino Ciuffetti - dam2k@users.sourceforge.net
*
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program (COPYING); if not, go to 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;
}
}