83 lines
2.5 KiB
PHP
83 lines
2.5 KiB
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* @version $Id: toolbar.poll.html.php 10002 2008-02-08 10:56:57Z willebil $
|
||
|
|
* @package Joomla
|
||
|
|
* @subpackage Polls
|
||
|
|
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
|
||
|
|
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL, see LICENSE.php
|
||
|
|
* Joomla! is free software. This version may have been modified pursuant
|
||
|
|
* to the GNU General Public License, and as distributed it includes or
|
||
|
|
* is derivative of works licensed under the GNU General Public License or
|
||
|
|
* other free or open source software licenses.
|
||
|
|
* See COPYRIGHT.php for copyright notices and details.
|
||
|
|
*/
|
||
|
|
|
||
|
|
// no direct access
|
||
|
|
defined( '_VALID_MOS' ) or die( 'Restricted access' );
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @package Joomla
|
||
|
|
* @subpackage Polls
|
||
|
|
*/
|
||
|
|
class TOOLBAR_poll {
|
||
|
|
/**
|
||
|
|
* Draws the menu for a New category
|
||
|
|
*/
|
||
|
|
function _NEW() {
|
||
|
|
mosMenuBar::startTable();
|
||
|
|
mosMenuBar::save();
|
||
|
|
mosMenuBar::spacer();
|
||
|
|
mosMenuBar::cancel();
|
||
|
|
mosMenuBar::spacer();
|
||
|
|
mosMenuBar::help( 'screen.polls.edit' );
|
||
|
|
mosMenuBar::endTable();
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* Draws the menu for Editing an existing category
|
||
|
|
*/
|
||
|
|
function _EDIT( $pollid, $cur_template ) {
|
||
|
|
global $database;
|
||
|
|
global $id;
|
||
|
|
|
||
|
|
$sql = "SELECT template"
|
||
|
|
. "\n FROM #__templates_menu"
|
||
|
|
. "\n WHERE client_id = 0"
|
||
|
|
. "\n 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="Preview" border="0" name="preview" align="middle" /><br />Preview</a></td>
|
||
|
|
<?php
|
||
|
|
mosMenuBar::spacer();
|
||
|
|
mosMenuBar::save();
|
||
|
|
mosMenuBar::spacer();
|
||
|
|
if ( $id ) {
|
||
|
|
// for existing content items the button is renamed `close`
|
||
|
|
mosMenuBar::cancel( 'cancel', 'Close' );
|
||
|
|
} else {
|
||
|
|
mosMenuBar::cancel();
|
||
|
|
}
|
||
|
|
mosMenuBar::spacer();
|
||
|
|
mosMenuBar::help( 'screen.polls.edit' );
|
||
|
|
mosMenuBar::endTable();
|
||
|
|
}
|
||
|
|
function _DEFAULT() {
|
||
|
|
mosMenuBar::startTable();
|
||
|
|
mosMenuBar::publishList();
|
||
|
|
mosMenuBar::spacer();
|
||
|
|
mosMenuBar::unpublishList();
|
||
|
|
mosMenuBar::spacer();
|
||
|
|
mosMenuBar::deleteList();
|
||
|
|
mosMenuBar::spacer();
|
||
|
|
mosMenuBar::editListX();
|
||
|
|
mosMenuBar::spacer();
|
||
|
|
mosMenuBar::addNewX();
|
||
|
|
mosMenuBar::spacer();
|
||
|
|
mosMenuBar::help( 'screen.polls' );
|
||
|
|
mosMenuBar::endTable();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
?>
|