Source for file toolbar.trash.html.php

Documentation is available at toolbar.trash.html.php

  1. <?php
  2. /**
  3. @package Mambo
  4. @subpackage Trash
  5. @copyright  Refer to copyright.php
  6. @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
  7. @author Mambo Foundation Inc see README.php
  8. */ 
  9.  
  10. /** ensure this file is being included by a parent file */
  11. defined'_VALID_MOS' or die'Direct Access to this location is not allowed.' );
  12.  
  13. class TOOLBAR_Trash {
  14.     function _DEFAULT({
  15.         mosMenuBar::startTable();
  16.         mosMenuBar::custom('restoreconfirm','restore.png','restore_f2.png',T_('Restore')true);
  17.         mosMenuBar::spacer();
  18.         mosMenuBar::custom('deleteconfirm','delete.png','delete_f2.png',T_('Delete')true);
  19.         mosMenuBar::spacer();
  20.         mosMenuBar::help'manager' );
  21.         mosMenuBar::endTable();
  22.     }
  23.  
  24.     function _DELETE({
  25.         mosMenuBar::startTable();
  26.         mosMenuBar::cancel();
  27.         mosMenuBar::endTable();
  28.     }
  29.  
  30.     function _SETTINGS({
  31.         mosMenuBar::startTable();
  32.         mosMenuBar::save();
  33.         mosMenuBar::spacer();
  34.         mosMenuBar::back();
  35.         mosMenuBar::endTable();
  36.     }
  37.  
  38. }
  39. ?>

Documentation generated on Mon, 05 May 2008 16:23:49 +0400 by phpDocumentor 1.4.0