forked from extern/egroupware
a166bb0f57
- virtual baseclass egw_framework in the API which each template extends - replaces $api/footer.inc.php, $tpl/head.inc.php & $tpl/navbar.inc.php - all existing phplib template sets just inherit the idots_framework, but can have own templates - moved most html from navbar.inc.php into the navbar.tpl --> idots & jerryr are reworked and working, all other template sets are disabled at the moment --> The rework was done to add a selectbox to add all sorts of entries without the need to change to the app first. This is now implemented in the egw_framework class using the link-registry.
33 lines
799 B
PHP
33 lines
799 B
PHP
<?php
|
|
/**
|
|
* eGW jerryr template
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de> rewrite in 12/2006
|
|
* @author Pim Snel <pim@lingewoud.nl> author of the idots template set
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package api
|
|
* @subpackage framework
|
|
* @access public
|
|
* @version $Id$
|
|
*/
|
|
|
|
require_once(EGW_SERVER_ROOT.'/phpgwapi/templates/idots/class.idots_framework.inc.php');
|
|
|
|
/**
|
|
* eGW jerryr template
|
|
*/
|
|
class jerryr_framework extends idots_framework
|
|
{
|
|
/**
|
|
* Constructor, calls the contstructor of the extended class
|
|
*
|
|
* @param string $template='jerryr'
|
|
* @return jerryr_framework
|
|
*/
|
|
function jerryr_framework($template='jerryr')
|
|
{
|
|
$this->idots_framework($template);
|
|
}
|
|
}
|