1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 20:58:30 +01:00
php-e107/e107_plugins/poll/poll_menu.php

67 lines
1.3 KiB
PHP
Raw Normal View History

2006-12-02 04:36:16 +00:00
<?php
/*
2009-11-17 13:48:46 +00:00
* e107 website system
*
2009-11-18 01:06:08 +00:00
* Copyright (C) 2008-2009 e107 Inc (e107.org)
2009-11-17 13:48:46 +00:00
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_plugins/poll/poll_menu.php,v $
2010-02-10 18:18:01 +00:00
* $Revision$
* $Date$
* $Author$
2009-11-17 13:48:46 +00:00
*/
2006-12-02 04:36:16 +00:00
if (!defined('e107_INIT')) { exit; }
global $e107;
if(defined("POLLRENDERED"))
{
// return;
}
if (!plugInstalled('poll'))
{
return '';
}
2006-12-02 04:36:16 +00:00
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_lan(e_PLUGIN."poll/languages/".e_LANGUAGE.".php");
2006-12-02 04:36:16 +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
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
";
$poll->remove_poll_cookies();
2006-12-02 04:36:16 +00:00
$poll->render_poll($query, $pollType, $pollMode);
2006-12-02 04:36:16 +00:00
?>