1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
<?php
/**
* This file implements the toolbars (EXPERIMENTAL)
*
* b2evolution - {@link http://b2evolution.net/}
* Released under GNU GPL License - {@link http://b2evolution.net/about/license.html}
* @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}
*
* @package evocore
*/
if( !defined('DB_USER') ) die( 'Please, do not access this page directly.' );
/**
* Includes:
*/
require_once dirname(__FILE__). '/_class_plug.php';
/**
* Toolbars Class
*
* @package evocore
*/
class Toolbars extends Plug
{
/*
* Constructor
*
* {@internal Toolbars::Toolbars(-)}}
*
*/
function Toolbars()
{
// Call parent constructor:
parent::Plug( 'toolbar' );
}
/*
* Display the toolbars
*
* {@internal Toolbars::render(-)}}
*/
function display()
{
$this->init(); // Init if not done yet.
$this->index_Plugins['b2evQTag']->display();
$this->index_Plugins['b2evSmil']->display();
}
}
?>
|