2006-12-02 04:36:16 +00:00
|
|
|
|
<?php
|
|
|
|
|
/*
|
|
|
|
|
+ ----------------------------------------------------------------------------+
|
|
|
|
|
| e107 website system
|
|
|
|
|
|
|
|
|
|
|
| <EFBFBD>Steve Dunstan 2001-2002
|
|
|
|
|
| http://e107.org
|
|
|
|
|
| jalist@e107.org
|
|
|
|
|
|
|
|
|
|
|
| Released under the terms and conditions of the
|
|
|
|
|
| GNU General Public License (http://gnu.org).
|
|
|
|
|
|
|
|
|
|
|
| $Source: /cvs_backup/e107_0.8/e107_plugins/poll/poll_menu.php,v $
|
2008-06-03 21:31:31 +00:00
|
|
|
|
| $Revision: 1.2 $
|
|
|
|
|
| $Date: 2008-06-03 21:31:31 $
|
|
|
|
|
| $Author: e107steved $
|
2006-12-02 04:36:16 +00:00
|
|
|
|
+----------------------------------------------------------------------------+
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
|
|
|
|
|
|
global $e107;
|
|
|
|
|
|
|
|
|
|
if(defined("POLLRENDERED"))
|
|
|
|
|
{
|
|
|
|
|
// return;
|
|
|
|
|
}
|
|
|
|
|
if(!defined("POLLCLASS"))
|
|
|
|
|
{
|
|
|
|
|
require(e_PLUGIN."poll/poll_class.php");
|
|
|
|
|
}
|
|
|
|
|
if(!isset($poll) || !is_object($poll))
|
|
|
|
|
{
|
|
|
|
|
$poll = new poll;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(!defined("POLL_1"))
|
|
|
|
|
{
|
|
|
|
|
/* if menu is being called from comments, lan files have to be included manually ... */
|
|
|
|
|
@include_once(e_PLUGIN."poll/languages/".e_LANGUAGE.".php");
|
|
|
|
|
@include_once(e_PLUGIN."poll/languages/English.php");
|
|
|
|
|
}
|
|
|
|
|
|
2008-06-03 21:31:31 +00:00
|
|
|
|
if (empty($poll_to_show))
|
|
|
|
|
{
|
|
|
|
|
$poll_to_show = ' AND p.`poll_vote_userclass`!=255';
|
|
|
|
|
$pollType = 'menu';
|
|
|
|
|
$pollMode = 'query';
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
$poll_to_show = ' AND p.`poll_id`='.$poll_to_show;
|
|
|
|
|
$pollType = 'menu';
|
|
|
|
|
$pollMode = 'results';
|
|
|
|
|
}
|
|
|
|
|
|
2006-12-02 04:36:16 +00:00
|
|
|
|
$query = "SELECT p.*, u.user_name FROM #polls AS p
|
|
|
|
|
LEFT JOIN #user AS u ON p.poll_admin_id = u.user_id
|
2008-06-03 21:31:31 +00:00
|
|
|
|
WHERE p.poll_type=1{$poll_to_show}
|
2006-12-02 04:36:16 +00:00
|
|
|
|
ORDER BY p.poll_datestamp DESC LIMIT 0,1
|
|
|
|
|
";
|
|
|
|
|
|
2008-06-03 21:31:31 +00:00
|
|
|
|
$poll->render_poll($query, $pollType, $pollMode);
|
2006-12-02 04:36:16 +00:00
|
|
|
|
|
|
|
|
|
?>
|