git-svn-id: https://192.168.0.254/svn/Proyectos.MatritumCantat_Web/trunk@2 8e3496fd-7892-4c45-be36-0ff06e9dacc6
79 lines
2.5 KiB
PHP
79 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* @version $Id: pollwindow.php 10002 2008-02-08 10:56:57Z willebil $
|
|
* @package Joomla
|
|
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
|
|
* @license http://www.gnu.org/copyleft/gpl.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.
|
|
*/
|
|
|
|
// Set flag that this is a parent file
|
|
define( "_VALID_MOS", 1 );
|
|
|
|
require_once( '../includes/auth.php' );
|
|
include_once ( $mosConfig_absolute_path . '/language/' . $mosConfig_lang . '.php' );
|
|
|
|
$database = new database( $mosConfig_host, $mosConfig_user, $mosConfig_password, $mosConfig_db, $mosConfig_dbprefix );
|
|
$database->debug( $mosConfig_debug );
|
|
|
|
$pollid = mosGetParam( $_REQUEST, 'pollid', 0 );
|
|
$css = mosGetParam( $_REQUEST, 't', '' );
|
|
|
|
$query = "SELECT title"
|
|
. "\n FROM #__polls"
|
|
. "\n WHERE id = " . (int) $pollid
|
|
;
|
|
$database->setQuery( $query );
|
|
$title = $database->loadResult();
|
|
|
|
$query = "SELECT text"
|
|
. "\n FROM #__poll_data"
|
|
. "\n WHERE pollid = " . (int) $pollid
|
|
. "\n ORDER BY id"
|
|
;
|
|
$database->setQuery( $query );
|
|
$options = $database->loadResultArray();
|
|
|
|
$iso = split( '=', _ISO );
|
|
// xml prolog
|
|
echo '<?xml version="1.0" encoding="'. $iso[1] .'"?' .'>';
|
|
?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>Poll Preview</title>
|
|
<link rel="stylesheet" href="../../templates/<?php echo $css; ?>/css/template_css.css" type="text/css">
|
|
<meta http-equiv="Content-Type" content="text/html; <?php echo _ISO; ?>" />
|
|
</head>
|
|
|
|
<body>
|
|
<form>
|
|
<table align="center" width="90%" cellspacing="2" cellpadding="2" border="0" >
|
|
<tr>
|
|
<td class="moduleheading" colspan="2"><?php echo $title; ?></td>
|
|
</tr>
|
|
<?php foreach ($options as $text)
|
|
{
|
|
if ($text != "")
|
|
{?>
|
|
<tr>
|
|
<td valign="top" height="30"><input type="radio" name="poll" value="<?php echo $text; ?>"></td>
|
|
<td class="poll" width="100%" valign="top"><?php echo $text; ?></td>
|
|
</tr>
|
|
<?php }
|
|
} ?>
|
|
<tr>
|
|
<td valign="middle" height="50" colspan="2" align="center"><input type="button" name="submit" value="Vote"> <input type="button" name="result" value="Results"></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="center" colspan="2"><a href="#" onClick="window.close()">Close</a></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</body>
|
|
</html>
|