[ Index ]

PHP Cross Reference of Mambo 4.6.5

[ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/administrator/includes/ -> toolbar.html.php (source)

   1  <?php
   2  /**
   3  * @package Mambo
   4  * @author Mambo Foundation Inc see README.php
   5  * @copyright (C) 2000 - 2009 Mambo Foundation Inc.
   6  * See COPYRIGHT.php for copyright notices and details.
   7  * @license GNU/GPL Version 2, see LICENSE.php
   8  *
   9  * Redistributions of files must retain the above copyright notice.
  10  *
  11  * Mambo is free software; you can redistribute it and/or
  12  * modify it under the terms of the GNU General Public License
  13  * as published by the Free Software Foundation; version 2 of the License.
  14  */
  15  
  16  class MENU_Default {
  17      /**
  18      * Draws a default set of menu icons
  19      */
  20  	function MENU_Default() {
  21          mosMenuBar::startTable();
  22          mosMenuBar::publishList();
  23          mosMenuBar::unpublishList();
  24          mosMenuBar::addNew();
  25          mosMenuBar::editList();
  26          mosMenuBar::deleteList();
  27          mosMenuBar::spacer();
  28          mosMenuBar::endTable();
  29      }
  30  }
  31  ?>