View of /mambo/trunk/administrator/components/com_poll/admin.poll.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
File size: 5024 byte(s)
Tue Dec 13 03:45:47 2005 UTC (7 years, 5 months ago) by root
File size: 5024 byte(s)
Initial repository layout
<?php /** * @version $Id: admin.poll.html.php,v 1.1 2005/07/22 01:53:21 eddieajau Exp $ * @package Mambo * @subpackage Polls * @copyright (C) 2000 - 2005 Miro International Pty Ltd * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * 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.' ); /** * @package Mambo * @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]; $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"> </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"> </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 colspan="3"> <br /><br /> 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( $options[$i]->text, ENT_QUOTES ); ?>" 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; ?>" /> </form> <?php } } ?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

