Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Nesuprantu kodėl taip:

Parašė WyPuk· 2010 Lap. 8 19:11:03
#3


<?php
 
/*-------------------------------------------------------+
 
| <span style="border-bottom: 1px dotted black;">PHP</span>-Fusion Content Management System
 
| Copyright © 2002 - 2008 Nick Jones
 
| <a href='http://www.php-fusion.co.uk/' target='_blank'><span style='color:005C5B'>http://www.php-fusion.co.uk/</span></a>
 
+--------------------------------------------------------+
 
| Filename: ip_poll_panel.php
 
| Author: Jeepers1993
 
+--------------------------------------------------------+
 
| This program is released as free software under the
 
| Affero GPL license. You can redistribute it and/or
 
| modify it under the terms of this license which you
 
| can read by viewing the included agpl.txt or online
 
| at <a href='http://www.gnu.org/licenses/agpl.html.' target='_blank'><span style='color:005C5B'>www.gnu.org/licenses/agpl.html.</span></a> Removal of this
 
| copyright header is strictly prohibited without
 
| written permission from the original author(s).
 
+--------------------------------------------------------*/
 
if (file_exists(INFUSIONS."ip_poll_panel/locale/".$settings['locale'].".php")) {
 
	include INFUSIONS."ip_poll_panel/locale/".$settings['locale'].".php";
 
} else {
 
	include INFUSIONS."ip_poll_panel/locale/Lithuanian.php";
 
}
 
 
 
openside($locale['PLAN_100']);
 
if (isset($_POST['cast_vote'])) {
 
	$voteoption = $_POST['voteoption'];
 
	$poll_id = $_POST['poll_id'];
 
	$sql = dbquery("SELECT * FROM ".$db_prefix."ip_polls WHERE poll_id='$poll_id'");
 
	$data = dbarray($sql);
 
	$poll_ips = explode("|", $data['poll_ips']);
 
	if (!in_array(USER_IP, $poll_ips)) {
 
		array_push($poll_ips, USER_IP);
 
		$poll_ips = implode("|", $poll_ips);
 
		$result = dbquery("UPDATE ".$db_prefix."ip_polls SET poll_votes_$voteoption=poll_votes_$voteoption+1, poll_ips='$poll_ips' WHERE poll_id=$poll_id");
 
		header("Location: ".FUSION_SELF.(FUSION_QUERY ? "?".FUSION_QUERY : ""));
 
	}
 
}
 
$result = dbquery("SELECT * FROM ".$db_prefix."ip_polls ORDER BY poll_started DESC LIMIT 1");
 
if (dbrows($result) != 0) {
 
	$data = dbarray($result);
 
	$poll_title = $data['poll_title'];
 
	$poll_ips = explode("|", $data['poll_ips']);
 
	$poll_votes = 0;
 
	for ($i=0; $i<=9; $i++) {
 
		if ($data["poll_opt_".$i]) $poll_option[$i] = $data["poll_opt_".$i];
 
		$poll_votes = $poll_votes + $data["poll_votes_".$i];
 
	}
 
	if (!in_array(USER_IP, $poll_ips) && $data['poll_ended'] == 0) {
 
		$poll = ""; $i = 0; $num_opts = count($poll_option);
 
		while ($i < $num_opts) {
 
			$poll .= "<input type='radio' name='voteoption' value='$i'> $poll_option[$i]<br>\n";
 
			$i++;
 
		}
 
		echo "<form name='voteform' method='post' action='".FUSION_SELF.(FUSION_QUERY ? "?".FUSION_QUERY : "")."'>
 
<b>$poll_title</b><br><br>
 
$poll<center><input type='hidden' name='poll_id' value='".$data['poll_id']."'>
 
<input type='submit' name='cast_vote' value='".$locale['PLAN_101']."' class='button'></center>
 
</form>\n";
 
	} else {
 
		$poll =  ""; $i = 0; $num_opts = count($poll_option);
 
		while ($i < $num_opts) {
 
			$num_votes = $data["poll_votes_".$i];
 
			$opt_votes = ($poll_votes ? number_format(100 / $poll_votes * $num_votes) : 0);
 
			$poll .= "<div>".$poll_option[$i]."</div>
 
<div><img src='".THEME."images/pollbar.gif' alt='".$poll_option[$i]."' height='7' width='$opt_votes%' class='poll'></div>
 
<div>".$opt_votes."% [".$num_votes." ".($num_votes == 1 ? $locale['PLAN_102'] : $locale['PLAN_103'])."]</div><br>\n";
 
			$i++;
 
		}
 
		echo "<b>".$poll_title."</b><br>
 
$poll
 
<center>".$locale['PLAN_104'].$poll_votes."<br>
 
".$locale['PLAN_105'].showdate("shortdate", $data['poll_started']);
 
		if ($data['poll_ended'] > 0) {
 
			echo "<br>\n".$locale['PLAN_106'].showdate("shortdate", $data['poll_ended'])."\n";
 
		}
 
		$result = dbquery("SELECT * FROM ".$db_prefix."ip_polls");
 
		if (dbrows($result) > 1) {
 
			echo "<br><br><img src='".THEME."images/bullet.gif'>
 
<a href='".INFUSIONS."ip_poll_panel/ip_poll_archive.php' class='side'>".$locale['PLAN_107']."</a> <img src='".THEME."images/bulletb.gif'>\n";
 
		}
 
		echo "</center>\n";
 
	}
 
} else {
 
	echo "<center>".$locale['004']."</center>\n";
 
}
 
closeside();
 
?>