nuova versione del file:
\doceboCms\lib\page_models\layout.Custom.php
<?php
/*************************************************************************/
/* DOCEBO - E-Learning System */
/* ============================================ */
/* */
/* Copyright (c) 2002 by Claudio Erba (webmaster@spaghettilearning.com) */
/* & Fabio Pirovano (gishell@tiscali.it) http://www.spaghettilearning.com*/
/* */
/* 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; either version 2 of the License. */
/*************************************************************************/
require_once($GLOBALS["where_cms"]."/class/class.layout.php");
class Layout_Custom extends Layout
{
function Layout_Custom()
{
$this->main_block_number = 1;
$this->content_block_number = 0;
$this->param_main_block = array("area1" => array('type' => 'content', 'width' => '100', 'sequence' => 0 ));
return;
}
}
$layout = new Layout_Custom();;
?>