View of /mambo/branches/4.6/administrator/components/com_poll/toolbar.poll.html.php
Parent Directory
|
Revision Log
Revision 551 -
(download)
(annotate)
Tue May 30 23:35:27 2006 UTC (6 years, 11 months ago) by csouza
File size: 2454 byte(s)
Tue May 30 23:35:27 2006 UTC (6 years, 11 months ago) by csouza
File size: 2454 byte(s)
final installment of new and renamed help screens and component toolbars changed to reflect new naming.
<?php /** * @package Mambo Open Source * @subpackage Polls * @copyright (C) 2005 - 2006 Mambo Foundation Inc. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * * Mambo was originally developed by Miro (www.miro.com.au) in 2000. Miro assigned the copyright in Mambo to The Mambo Foundation in 2005 to ensure * that Mambo remained free Open Source software owned and managed by the community. * Mambo is Free Software */ /** ensure this file is being included by a parent file */ defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); class TOOLBAR_poll { /** * Draws the menu for a New category */ function _NEW() { mosMenuBar::startTable(); mosMenuBar::save(); mosMenuBar::spacer(); mosMenuBar::cancel(); mosMenuBar::spacer(); mosMenuBar::help( 'new' ); mosMenuBar::endTable(); } /** * Draws the menu for Editing an existing category */ function _EDIT( $pollid, $cur_template ) { global $database; global $id; $sql = "SELECT template FROM #__templates_menu WHERE client_id='0' AND menuid='0'"; $database->setQuery( $sql ); $cur_template = $database->loadResult(); mosMenuBar::startTable(); $popup='pollwindow'; ?> <td><a class="toolbar" href="#" onclick="window.open('popups/<?php echo $popup;?>.php?pollid=<?php echo $pollid; ?>&t=<?php echo $cur_template; ?>', 'win1', 'status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage('preview','','images/preview_f2.png',1);"><img src="images/preview.png" alt="<?php echo T_('Preview') ?>" border="0" name="preview" align="middle" /> <?php echo T_('Preview') ?></a></td> <?php mosMenuBar::spacer(); mosMenuBar::save(); mosMenuBar::spacer(); if ( $id ) { // for existing content items the button is renamed `close` mosMenuBar::cancel( 'cancel', T_('Close') ); } else { mosMenuBar::cancel(); } mosMenuBar::spacer(); mosMenuBar::help( 'edit' ); mosMenuBar::endTable(); } function _DEFAULT() { mosMenuBar::startTable(); mosMenuBar::publishList(); mosMenuBar::spacer(); mosMenuBar::unpublishList(); mosMenuBar::spacer(); mosMenuBar::addNewX(); mosMenuBar::spacer(); mosMenuBar::editListX(); mosMenuBar::spacer(); mosMenuBar::deleteList(); mosMenuBar::spacer(); mosMenuBar::help( 'manager' ); mosMenuBar::endTable(); } } ?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

