b2evolution

Multilingual multiuser multiblog engine

b2evolution Technical Documentation (0.9.x) [ class tree: evocore ] [ index: evocore ] [ all elements ]

Source for file _class_toolbars.php

Documentation is available at _class_toolbars.php

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

Documentation generated on Tue, 20 May 2008 01:53:36 +0200 by phpDocumentor 1.4.2