This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
MatritumCantat_Web/www/administrator/components/com_poll/admin.poll.html.php

229 lines
5.4 KiB
PHP
Raw Permalink Normal View History

<?php
/**
* @version $Id: admin.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 HTML_poll {
function showPolls( &$rows, &$pageNav, $option ) {
global $my;
mosCommonHTML::loadOverlib();
?>
<form action="index2.php" method="post" name="adminForm">
<table class="adminheading">
<tr>
<th>Poll Manager</th>
</tr>
</table>
<table class="adminlist">
<tr>
<th width="5">
#
</th>
<th width="20">
<input type="checkbox" name="toggle" value="" onClick="checkAll(<?php echo count( $rows ); ?>);" />
</th>
<th align="left">
Poll Title
</th>
<th width="10%" align="center">
Published
</th>
<th width="10%" align="center">
Options
</th>
<th width="10%" align="center">
Lag
</th>
</tr>
<?php
$k = 0;
for ($i=0, $n=count( $rows ); $i < $n; $i++) {
$row = &$rows[$i];
mosMakeHtmlSafe($row);
$link = 'index2.php?option=com_poll&task=editA&hidemainmenu=1&id='. $row->id;
$task = $row->published ? 'unpublish' : 'publish';
$img = $row->published ? 'publish_g.png' : 'publish_x.png';
$alt = $row->published ? 'Published' : 'Unpublished';
$checked = mosCommonHTML::CheckedOutProcessing( $row, $i );
?>
<tr class="<?php echo "row$k"; ?>">
<td>
<?php echo $pageNav->rowNumber( $i ); ?>
</td>
<td>
<?php echo $checked; ?>
</td>
<td>
<a href="<?php echo $link; ?>" title="Edit Poll">
<?php echo $row->title; ?>
</a>
</td>
<td align="center">
<a href="javascript: void(0);" onclick="return listItemTask('cb<?php echo $i;?>','<?php echo $task;?>')">
<img src="images/<?php echo $img;?>" width="12" height="12" border="0" alt="<?php echo $alt; ?>" />
</a>
</td>
<td align="center">
<?php echo $row->numoptions; ?>
</td>
<td align="center">
<?php echo $row->lag; ?>
</td>
</tr>
<?php
$k = 1 - $k;
}
?>
</table>
<?php echo $pageNav->getListFooter(); ?>
<input type="hidden" name="option" value="<?php echo $option;?>" />
<input type="hidden" name="task" value="" />
<input type="hidden" name="boxchecked" value="0" />
<input type="hidden" name="hidemainmenu" value="0">
<input type="hidden" name="<?php echo josSpoofValue(); ?>" value="1" />
</form>
<?php
}
function editPoll( &$row, &$options, &$lists ) {
mosMakeHtmlSafe( $row, ENT_QUOTES );
?>
<script language="javascript" type="text/javascript">
function submitbutton(pressbutton) {
var form = document.adminForm;
if (pressbutton == 'cancel') {
submitform( pressbutton );
return;
}
// do field validation
if (form.title.value == "") {
alert( "Poll must have a title" );
} else if( isNaN( parseInt( form.lag.value ) ) ) {
alert( "Poll must have a non-zero lag time" );
//} else if (form.menu.options.value == ""){
// alert( "Poll must have pages." );
//} else if (form.adminForm.textfieldcheck.value == 0){
// alert( "Poll must have options." );
} else {
submitform( pressbutton );
}
}
</script>
<form action="index2.php" method="post" name="adminForm">
<table class="adminheading">
<tr>
<th>
Poll:
<small>
<?php echo $row->id ? 'Edit' : 'New';?>
</small>
</th>
</tr>
</table>
<table class="adminform">
<tr>
<th colspan="4">
Details
</th>
</tr>
<tr>
<td width="10%">
Title:
</td>
<td>
<input class="inputbox" type="text" name="title" size="60" value="<?php echo $row->title; ?>" />
</td>
<td width="20px">&nbsp;
</td>
<td width="100%" rowspan="20" valign="top">
Show on menu items:
<br />
<?php echo $lists['select']; ?>
</td>
</tr>
<tr>
<td>
Lag:
</td>
<td>
<input class="inputbox" type="text" name="lag" size="10" value="<?php echo $row->lag; ?>" /> (seconds between votes)
</td>
</tr>
<tr>
<td valign="top">
Published:
</td>
<td>
<?php echo $lists['published']; ?>
</td>
</tr>
<tr>
<td colspan="3">
Options:
</td>
</tr>
<?php
for ($i=0, $n=count( $options ); $i < $n; $i++ ) {
?>
<tr>
<td>
<?php echo ($i+1); ?>
</td>
<td>
<input class="inputbox" type="text" name="polloption[<?php echo $options[$i]->id; ?>]" value="<?php echo htmlspecialchars( stripslashes($options[$i]->text) ); ?>" size="60" />
</td>
</tr>
<?php
}
for (; $i < 12; $i++) {
?>
<tr>
<td>
<?php echo ($i+1); ?>
</td>
<td>
<input class="inputbox" type="text" name="polloption[]" value="" size="60"/>
</td>
</tr>
<?php
}
?>
</table>
<input type="hidden" name="task" value="">
<input type="hidden" name="option" value="com_poll" />
<input type="hidden" name="id" value="<?php echo $row->id; ?>" />
<input type="hidden" name="textfieldcheck" value="<?php echo $n; ?>" />
<input type="hidden" name="<?php echo josSpoofValue(); ?>" value="1" />
</form>
<?php
}
}
?>