[ Index ]

PHP Cross Reference of Mambo 4.6.5

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

title

Body

[close]

/administrator/components/com_typedcontent/ -> toolbar.typedcontent.html.php (source)

   1  <?php
   2  /**
   3  * @package Mambo
   4  * @subpackage Content
   5  * @author Mambo Foundation Inc see README.php
   6  * @copyright (C) 2000 - 2009 Mambo Foundation Inc.
   7  * See COPYRIGHT.php for copyright notices and details.
   8  * @license GNU/GPL Version 2, see LICENSE.php
   9  *
  10  * Redistributions of files must retain the above copyright notice.
  11  *
  12  * Mambo is free software; you can redistribute it and/or
  13  * modify it under the terms of the GNU General Public License
  14  * as published by the Free Software Foundation; version 2 of the License.
  15  */
  16  
  17  class TOOLBAR_typedcontent {
  18  	function _EDIT( ) {
  19          mosMenuBar::startTable();
  20          mosMenuBar::preview( 'contentwindow', true );
  21          mosMenuBar::spacer();
  22          mosMenuBar::media_manager();
  23          mosMenuBar::spacer();
  24          mosMenuBar::save();
  25          mosMenuBar::spacer();
  26          mosMenuBar::apply();
  27          mosMenuBar::spacer();
  28          mosMenuBar::cancel();
  29          mosMenuBar::spacer();
  30          mosMenuBar::help( 'edit' );
  31          mosMenuBar::endTable();
  32      }
  33  
  34  	function _DEFAULT() {
  35          mosMenuBar::startTable();
  36          mosMenuBar::addNewX();
  37          mosMenuBar::spacer();
  38          mosMenuBar::editListX( 'editA' );
  39          mosMenuBar::spacer();
  40          mosMenuBar::publishList();
  41          mosMenuBar::spacer();
  42          mosMenuBar::unpublishList();
  43          mosMenuBar::spacer();
  44          mosMenuBar::trash();
  45          mosMenuBar::spacer();
  46          mosMenuBar::help( 'manager' );
  47          mosMenuBar::endTable();
  48      }
  49  }
  50  ?>