View of /mambo/branches/4.6/administrator/components/com_modules/toolbar.modules.html.php
Parent Directory
|
Revision Log
Revision 1 -
(download)
(annotate)
Tue Dec 13 03:45:47 2005 UTC (7 years, 5 months ago) by root
Original Path: mambo/trunk/administrator/components/com_modules/toolbar.modules.html.php
File size: 2521 byte(s)
Tue Dec 13 03:45:47 2005 UTC (7 years, 5 months ago) by root
Original Path: mambo/trunk/administrator/components/com_modules/toolbar.modules.html.php
File size: 2521 byte(s)
Initial repository layout
<?php /** * @version $Id: toolbar.modules.html.php,v 1.2 2005/11/08 10:26:19 eliasan Exp $ * @package Mambo * @subpackage Modules * @copyright (C) 2000 - 2005 Miro International Pty Ltd * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * Mambo is Free Software */ /** * @package Mambo * @subpackage Modules */ class TOOLBAR_modules { /** * Draws the menu for a New module */ function _NEW() { mosMenuBar::startTable(); mosMenuBar::preview( 'modulewindow' ); mosMenuBar::spacer(); mosMenuBar::save(); mosMenuBar::spacer(); mosMenuBar::apply(); mosMenuBar::spacer(); mosMenuBar::cancel(); mosMenuBar::spacer(); mosMenuBar::help( '453.screen.modules.new' ); mosMenuBar::endTable(); } /** * Draws the menu for Editing an existing module */ function _EDIT( $cur_template, $publish ) { global $id; mosMenuBar::startTable(); ?> <td><a class="toolbar" href="#" onClick="if (typeof document.adminForm.content == 'undefined') { alert('You can only preview typed modules.'); } else { var content = document.adminForm.content.value; content = content.replace('#', ''); var title = document.adminForm.title.value; title = title.replace('#', ''); window.open('popups/modulewindow.php?title=' + title + '&content=' + content + '&t=<?php echo $cur_template; ?>', 'win1', 'status=no,toolbar=no,scrollbars=auto,titlebar=no,menubar=no,resizable=yes,width=200,height=400,directories=no,location=no'); }" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage('preview','','images/preview_f2.png',1);"><img src="images/preview.png" alt="Preview" border="0" name="preview" align="middle">Preview</a></td> <?php mosMenuBar::spacer(); mosMenuBar::save(); mosMenuBar::spacer(); mosMenuBar::apply(); mosMenuBar::spacer(); if ( $id ) { // for existing content items the button is renamed `close` mosMenuBar::cancel( 'cancel', 'Close' ); } else { mosMenuBar::cancel(); } mosMenuBar::spacer(); mosMenuBar::help( '453.screen.modules.edit' ); mosMenuBar::endTable(); } function _DEFAULT() { mosMenuBar::startTable(); mosMenuBar::publishList(); mosMenuBar::spacer(); mosMenuBar::unpublishList(); mosMenuBar::spacer(); mosMenuBar::custom( 'copy', 'copy.png', 'copy_f2.png', 'Copy', true ); mosMenuBar::spacer(); mosMenuBar::addNewX(); mosMenuBar::spacer(); mosMenuBar::editListX(); mosMenuBar::spacer(); mosMenuBar::deleteList(); mosMenuBar::spacer(); mosMenuBar::help( '453.screen.modules.main' ); mosMenuBar::endTable(); } } ?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

