示例#1
4
 /**
  * Show bbcodes and smilies in the quickreply
  * Template data for Ajax submit
  *
  * @param object $event The event object
  * @return null
  * @access public
  */
 public function viewtopic_modify_data($event)
 {
     $forum_id = $event['forum_id'];
     $topic_data = $event['topic_data'];
     $post_list = $event['post_list'];
     $topic_id = $topic_data['topic_id'];
     $s_quick_reply = false;
     if (($this->user->data['is_registered'] || $this->config['qr_allow_for_guests']) && $this->config['allow_quick_reply'] && $topic_data['forum_flags'] & FORUM_FLAG_QUICK_REPLY && $this->auth->acl_get('f_reply', $forum_id)) {
         // Quick reply enabled forum
         $s_quick_reply = $topic_data['forum_status'] == ITEM_UNLOCKED && $topic_data['topic_status'] == ITEM_UNLOCKED || $this->auth->acl_get('m_edit', $forum_id) ? true : false;
     }
     if (!$this->user->data['is_registered'] && $s_quick_reply) {
         add_form_key('posting');
         $s_attach_sig = $this->config['allow_sig'] && $this->user->optionget('attachsig') && $this->auth->acl_get('f_sigs', $forum_id) && $this->auth->acl_get('u_sig');
         $s_smilies = $this->config['allow_smilies'] && $this->user->optionget('smilies') && $this->auth->acl_get('f_smilies', $forum_id);
         $s_bbcode = $this->config['allow_bbcode'] && $this->user->optionget('bbcode') && $this->auth->acl_get('f_bbcode', $forum_id);
         $s_notify = false;
         $qr_hidden_fields = array('topic_cur_post_id' => (int) $topic_data['topic_last_post_id'], 'lastclick' => (int) time(), 'topic_id' => (int) $topic_data['topic_id'], 'forum_id' => (int) $forum_id);
         // Originally we use checkboxes and check with isset(), so we only provide them if they would be checked
         !$s_bbcode ? $qr_hidden_fields['disable_bbcode'] = 1 : true;
         !$s_smilies ? $qr_hidden_fields['disable_smilies'] = 1 : true;
         !$this->config['allow_post_links'] ? $qr_hidden_fields['disable_magic_url'] = 1 : true;
         $s_attach_sig ? $qr_hidden_fields['attach_sig'] = 1 : true;
         $s_notify ? $qr_hidden_fields['notify'] = 1 : true;
         $topic_data['topic_status'] == ITEM_LOCKED ? $qr_hidden_fields['lock_topic'] = 1 : true;
         $this->template->assign_vars(array('S_QUICK_REPLY' => true, 'U_QR_ACTION' => append_sid("{$this->phpbb_root_path}posting.{$this->php_ext}", "mode=reply&f={$forum_id}&t={$topic_id}"), 'QR_HIDDEN_FIELDS' => build_hidden_fields($qr_hidden_fields), 'USERNAME' => $this->request->variable('username', '', true)));
         if ($this->config['enable_post_confirm']) {
             $captcha = $this->captcha->get_instance($this->config['captcha_plugin']);
             $captcha->init(CONFIRM_POST);
         }
         if ($this->config['enable_post_confirm'] && (isset($captcha) && $captcha->is_solved() === false)) {
             $this->template->assign_vars(array('S_CONFIRM_CODE' => true, 'CAPTCHA_TEMPLATE' => $captcha->get_template()));
         }
         // Add the confirm id/code pair to the hidden fields, else an error is displayed on next submit/preview
         if (isset($captcha) && $captcha->is_solved() !== false) {
             $this->template->append_var('QR_HIDDEN_FIELDS', build_hidden_fields($captcha->get_hidden_fields()));
         }
     }
     // Ajaxify viewtopic data
     if ($this->request->is_ajax() && $this->request->is_set('qr_request')) {
         if (!$this->user->data['is_registered'] && $this->config['enable_post_confirm']) {
             $captcha = $this->captcha->get_instance($this->config['captcha_plugin']);
             $captcha->init(CONFIRM_POST);
             // Add the confirm id/code pair to the hidden fields, else an error is displayed on next submit/preview
             if (isset($captcha) && $captcha->is_solved() !== false) {
                 $this->template->append_var('QR_HIDDEN_FIELDS', build_hidden_fields($captcha->get_hidden_fields()));
             }
         }
         // Fix issues if the inserted post is not the first.
         if ($this->qr_insert && !$this->qr_first) {
             $this->template->alter_block_array('postrow', array('S_FIRST_ROW' => false), false, 'change');
         }
         $page_title = $event['page_title'];
         $this->template->assign_vars(array('S_QUICKREPLY_REQUEST' => true, 'S_QR_NO_FIRST_POST' => $this->qr_insert, 'S_QR_FULL_QUOTE' => $this->config['qr_full_quote']));
         $this->template->append_var('QR_HIDDEN_FIELDS', build_hidden_fields(array('qr' => 1, 'qr_cur_post_id' => (int) max($post_list))));
         // Output the page
         page_header($page_title, false, $forum_id);
         page_footer(false, false, false);
         $json_response = new \phpbb\json_response();
         $json_response->send(array('success' => true, 'result' => $this->template->assign_display('@tatiana5_quickreply/quickreply_template.html', '', true), 'insert' => $this->qr_insert));
     }
     if ($s_quick_reply) {
         include_once $this->phpbb_root_path . 'includes/functions_posting.' . $this->php_ext;
         // HTML, BBCode, Smilies, Images and Flash status
         $bbcode_status = $this->config['allow_bbcode'] && $this->config['qr_bbcode'] && $this->auth->acl_get('f_bbcode', $forum_id) ? true : false;
         $smilies_status = $this->config['allow_smilies'] && $this->config['qr_smilies'] && $this->auth->acl_get('f_smilies', $forum_id) ? true : false;
         $img_status = $bbcode_status && $this->auth->acl_get('f_img', $forum_id) ? true : false;
         $url_status = $this->config['allow_post_links'] ? true : false;
         $flash_status = $bbcode_status && $this->auth->acl_get('f_flash', $forum_id) && $this->config['allow_post_flash'] ? true : false;
         $quote_status = true;
         // Build custom bbcodes array
         if ($bbcode_status) {
             display_custom_bbcodes();
         }
         // Generate smiley listing
         if ($smilies_status) {
             generate_smilies('inline', $forum_id);
         }
         // Show attachment box for adding attachments if true
         $form_enctype = @ini_get('file_uploads') == '0' || strtolower(@ini_get('file_uploads')) == 'off' || !$this->config['allow_attachments'] || !$this->auth->acl_get('u_attach') || !$this->auth->acl_get('f_attach', $forum_id) ? '' : '" enctype="multipart/form-data';
         $allowed = $this->auth->acl_get('f_attach', $forum_id) && $this->auth->acl_get('u_attach') && $this->config['allow_attachments'] && $form_enctype;
         $attachment_data = false;
         if ($bbcode_status || $smilies_status || $this->config['qr_attach'] && $allowed) {
             $this->user->add_lang('posting');
         }
         if ($this->config['qr_attach'] && $allowed) {
             $this->template->assign_vars(array('U_QR_ACTION' => append_sid("{$this->phpbb_root_path}posting.{$this->php_ext}", "mode=reply&f={$forum_id}&t={$topic_id}") . $form_enctype));
             include_once $this->phpbb_root_path . 'includes/message_parser.' . $this->php_ext;
             $message_parser = new \parse_message();
             $message_parser->set_plupload($this->plupload);
             $message_parser->set_mimetype_guesser($this->mimetype_guesser);
             $message_parser->get_submitted_attachment_data($this->user->data['user_id']);
             $attachment_data = $message_parser->attachment_data;
             $filename_data = $message_parser->filename_data;
             posting_gen_inline_attachments($attachment_data);
             $max_files = $this->auth->acl_get('a_') || $this->auth->acl_get('m_', $forum_id) ? 0 : (int) $this->config['max_attachments'];
             $topic_id = $topic_data['topic_id'];
             $s_action = append_sid("{$this->phpbb_root_path}posting.{$this->php_ext}", "mode=reply&f={$forum_id}&t={$topic_id}");
             $this->plupload->configure($this->cache, $this->template, $s_action, $forum_id, $max_files);
             posting_gen_attachment_entry($attachment_data, $filename_data, $allowed);
         }
         $this->template->append_var('QR_HIDDEN_FIELDS', build_hidden_fields(array('qr' => 1, 'qr_cur_post_id' => (int) max($post_list))));
         if ($this->phpbb_extension_manager->is_enabled('rxu/PostsMerging') && $this->user->data['is_registered'] && $this->config['merge_interval']) {
             // Always show the checkbox if PostsMerging extension is installed.
             $this->user->add_lang_ext('rxu/PostsMerging', 'posts_merging');
             $this->template->assign_var('POSTS_MERGING_OPTION', true);
         }
         $this->template->assign_vars(array('S_QR_COLOUR_NICKNAME' => $this->config['qr_color_nickname'], 'S_QR_NOT_CHANGE_SUBJECT' => $this->auth->acl_get('f_qr_change_subject', $forum_id) ? false : true, 'S_QR_COMMA_ENABLE' => $this->config['qr_comma'], 'S_QR_QUICKNICK_ENABLE' => $this->config['qr_quicknick'], 'S_QR_QUICKNICK_REF' => $this->config['qr_quicknick_ref'], 'S_QR_QUICKNICK_PM' => $this->config['qr_quicknick_pm'], 'S_QR_QUICKQUOTE_ENABLE' => $this->config['qr_quickquote'], 'S_QR_QUICKQUOTE_LINK' => $this->config['qr_quickquote_link'], 'S_QR_FULL_QUOTE' => $this->config['qr_full_quote'], 'S_QR_CE_ENABLE' => $this->config['qr_ctrlenter'], 'QR_SOURCE_POST' => $this->config['qr_source_post'], 'S_DISPLAY_USERNAME' => !$this->user->data['is_registered'], 'S_BBCODE_ALLOWED' => $bbcode_status ? 1 : 0, 'S_SMILIES_ALLOWED' => $smilies_status, 'S_BBCODE_IMG' => $img_status, 'S_LINKS_ALLOWED' => $url_status, 'S_BBCODE_FLASH' => $flash_status, 'S_BBCODE_QUOTE' => $quote_status, 'MESSAGE' => $this->request->variable('message', '', true), 'READ_POST_IMG' => $this->user->img('icon_post_target', 'POST'), 'S_QR_CAPS_ENABLE' => $this->config['qr_capslock_transfer'], 'S_QR_SHOW_BUTTON_TRANSLIT' => $this->config['qr_show_button_translit'], 'L_FULL_EDITOR' => $this->config['qr_ajax_submit'] ? $this->user->lang['PREVIEW'] : $this->user->lang['FULL_EDITOR'], 'S_QR_AJAX_SUBMIT' => $this->config['qr_ajax_submit'], 'S_QR_AJAX_PAGINATION' => $this->config['qr_ajax_pagination'] && $this->user->data['ajax_pagination'], 'S_QR_ENABLE_SCROLL' => $this->user->data['qr_enable_scroll'], 'S_QR_SCROLL_INTERVAL' => $this->config['qr_scroll_time'], 'S_QR_SOFT_SCROLL' => $this->config['qr_scroll_time'] && $this->user->data['qr_soft_scroll'], 'S_QR_ALLOWED_GUEST' => $this->config['qr_allow_for_guests'] && $this->user->data['user_id'] == ANONYMOUS, 'S_ABBC3_INSTALLED' => $this->phpbb_extension_manager->is_enabled('vse/abbc3'), 'S_QR_SHOW_ATTACH_BOX' => $this->config['qr_attach'] && $allowed, 'S_ATTACH_DATA' => $attachment_data ? json_encode($attachment_data) : '[]'));
         $add_re = $this->config['qr_enable_re'] ? 'Re: ' : '';
         $this->template->assign_var('SUBJECT', $this->request->variable('subject', $add_re . censor_text($topic_data['topic_title']), true));
     }
     $this->template->assign_vars(array('QR_HIDE_POSTS_SUBJECT' => $this->config['qr_show_subjects'] ? false : true));
 }
 /**
  * Do some postprocessing just before the page gets rendered
  *
  * @param Event $event
  */
 public function postProcessLayout(Event $event)
 {
     if (isset($this->config['body_class'])) {
         $this->template->append_var('BODY_CLASS', $this->config['body_class']);
     }
     //$this->contaoConnector->test();
 }
 /**
  * @param Event $event
  */
 public function injectThemeFooter(Event $event)
 {
     if (isset($this->config['body_class'])) {
         $this->template->append_var('BODY_CLASS', $this->config['body_class']);
     }
     //        echo "ContaoConnection";
     //
     //        dump($this->contaoConnector->getForumPageId());
     //
     //        echo "template";
     //
     //        dump(get_class($this->template));
     //        dump($this->template);
     //
     //
     //
     //        echo "event";
     //
     //        dump($event);
 }
示例#4
0
 /**
  * Show bbcodes and smilies in the quickreply
  * Template data for Ajax submit
  *
  * @param object $event The event object
  * @return null
  * @access public
  */
 public function viewtopic_modify_data($event)
 {
     $forum_id = $event['forum_id'];
     $topic_data = $event['topic_data'];
     $post_list = $event['post_list'];
     $topic_id = $topic_data['topic_id'];
     $s_quick_reply = false;
     if (($this->user->data['is_registered'] || $this->config['qr_allow_for_guests']) && $this->config['allow_quick_reply'] && $topic_data['forum_flags'] & FORUM_FLAG_QUICK_REPLY && $this->auth->acl_get('f_reply', $forum_id)) {
         // Quick reply enabled forum
         $s_quick_reply = $topic_data['forum_status'] == ITEM_UNLOCKED && $topic_data['topic_status'] == ITEM_UNLOCKED || $this->auth->acl_get('m_edit', $forum_id) ? true : false;
     }
     if (!$this->user->data['is_registered'] && $s_quick_reply) {
         $this->helper->enable_qr_for_guests($forum_id, $topic_data);
     }
     // Ajaxify viewtopic data
     if ($this->request->is_ajax() && $this->request->is_set('qr_request')) {
         $this->helper->ajax_response($event['page_title'], max($post_list), $forum_id);
     }
     if ($s_quick_reply) {
         if (!function_exists('generate_smilies')) {
             include $this->phpbb_root_path . 'includes/functions_posting.' . $this->php_ext;
         }
         // HTML, BBCode, Smilies, Images, Url, Flash and Quote status
         $bbcode_status = $this->config['allow_bbcode'] && $this->config['qr_bbcode'] && $this->auth->acl_get('f_bbcode', $forum_id) ? true : false;
         $smilies_status = $this->config['allow_smilies'] && $this->config['qr_smilies'] && $this->auth->acl_get('f_smilies', $forum_id) ? true : false;
         $img_status = $bbcode_status && $this->auth->acl_get('f_img', $forum_id) ? true : false;
         $url_status = $this->config['allow_post_links'] ? true : false;
         $flash_status = $bbcode_status && $this->auth->acl_get('f_flash', $forum_id) && $this->config['allow_post_flash'] ? true : false;
         $quote_status = true;
         // Build custom bbcodes array
         if ($bbcode_status) {
             display_custom_bbcodes();
         }
         // Generate smiley listing
         if ($smilies_status) {
             generate_smilies('inline', $forum_id);
         }
         $this->template->assign_vars(array('S_BBCODE_ALLOWED' => $bbcode_status ? 1 : 0, 'S_SMILIES_ALLOWED' => $smilies_status, 'S_BBCODE_IMG' => $img_status, 'S_LINKS_ALLOWED' => $url_status, 'S_BBCODE_FLASH' => $flash_status, 'S_BBCODE_QUOTE' => $quote_status));
         // Show attachment box for adding attachments
         $show_attach_box = @ini_get('file_uploads') != '0' && strtolower(@ini_get('file_uploads')) != 'off' && $this->config['allow_attachments'] && $this->auth->acl_get('u_attach') && $this->auth->acl_get('f_attach', $forum_id);
         if ($bbcode_status || $smilies_status || $this->config['qr_attach'] && $show_attach_box) {
             $this->user->add_lang('posting');
         }
         if ($this->config['qr_attach'] && $show_attach_box) {
             $this->helper->handle_attachments($forum_id, $topic_id, $show_attach_box);
         }
         $this->template->append_var('QR_HIDDEN_FIELDS', build_hidden_fields(array('qr' => 1, 'qr_cur_post_id' => (int) max($post_list))));
         $this->helper->assign_template_variables_for_qr($forum_id);
         $add_re = $this->config['qr_enable_re'] ? 'Re: ' : '';
         $this->template->assign_var('SUBJECT', $this->request->variable('subject', $add_re . censor_text($topic_data['topic_title']), true));
     }
     $this->template->assign_vars(array('QR_HIDE_POSTS_SUBJECT' => !$this->config['qr_show_subjects']));
 }
示例#5
0
文件: pbwow.php 项目: bbDKP/PBWoW3ext
 /**
  * Assign global template vars, based on the ACP config of the extension
  */
 public function global_style_append()
 {
     $pbwow_config = $this->pbwow_config;
     if (isset($pbwow_config) && is_array($pbwow_config)) {
         extract($pbwow_config);
     } else {
         return;
     }
     $logo_margins = '';
     $tpl_vars = array();
     $body_class = ' pbwow-ext';
     // Logo
     if ($logo_enable && isset($logo_src) && isset($logo_size_width) && isset($logo_size_height) && $logo_size_width > 1 && $logo_size_height > 1) {
         $tpl_vars += array('S_PBLOGO' => true, 'PBLOGO_SRC' => $this->path_helper->update_web_root_path($this->root_path . html_entity_decode($logo_src)), 'PBLOGO_WIDTH' => $logo_size_width, 'PBLOGO_HEIGHT' => $logo_size_height, 'PBLOGO_WIDTH_MOB' => floor($logo_size_width * 0.8), 'PBLOGO_HEIGHT_MOB' => floor($logo_size_height * 0.8), 'PBLOGO_MARGINS' => $logo_margins);
         if (isset($logo_margins) && strlen($logo_margins) > 0) {
             $tpl_vars += array('PBLOGO_MARGINS' => $logo_margins);
         }
     }
     // Top-bar
     if ($topbar_enable && isset($topbar_code)) {
         $tpl_vars += array('TOPBAR_CODE' => str_replace('&', '&', html_entity_decode($topbar_code)));
         $body_class .= ' topbar';
         if ($topbar_fixed) {
             $tpl_vars += array('S_TOPBAR_FIXED' => true);
             $body_class .= ' topbar-fixed';
         }
     }
     // Video BG
     if ($videobg_enable) {
         $tpl_vars += array('S_VIDEOBG' => true);
         $body_class .= ' videobg';
         if ($videobg_allpages) {
             $tpl_vars += array('S_VIDEOBG_ALL' => true);
             $body_class .= ' videobg-all';
         }
     }
     // Fixed BG
     if ($fixedbg) {
         $tpl_vars += array('S_FIXEDBG' => true);
         $body_class .= ' fixedbg';
         if ($topbar_enable && !$topbar_fixed) {
             // if we don't do this, scrolling down will look weird
             $body_class .= ' topbar-fixed';
         }
     }
     // Misc
     $tpl_vars += array('HEADERLINKS_CODE' => $headerlinks_enable && isset($headerlinks_code) ? str_replace('&', '&', html_entity_decode($headerlinks_code)) : false, 'ADS_INDEX_CODE' => $ads_index_enable && isset($ads_index_code) ? str_replace('&', '&', html_entity_decode($ads_index_code)) : false, 'S_PBWOW_AVATARS' => isset($avatars_enable) ? $avatars_enable : false, 'S_SMALL_RANKS' => isset($smallranks_enable) && $this->avatars_enabled ? $smallranks_enable : false);
     // Assign vars
     $this->template->assign_vars($tpl_vars);
     $this->template->append_var('BODY_CLASS', $body_class);
 }
示例#6
0
 /**
  * Output the page for QuickReply
  *
  * @param string $page_title      The title of the page
  * @param int    $current_post_id ID of the current last post
  * @param int    $forum_id        Forum ID
  */
 public function ajax_response($page_title, $current_post_id, $forum_id)
 {
     // Fix issues if the inserted post is not the first.
     if ($this->qr_insert && !$this->qr_first) {
         $this->template->alter_block_array('postrow', array('S_FIRST_ROW' => false), false, 'change');
     }
     $this->template->assign_vars(array('S_QUICKREPLY_REQUEST' => true, 'S_QR_FULL_QUOTE' => $this->config['qr_full_quote']));
     $this->template->append_var('QR_HIDDEN_FIELDS', build_hidden_fields(array('qr' => 1, 'qr_cur_post_id' => (int) $current_post_id)));
     // Output the page
     page_header($page_title, false, $forum_id);
     page_footer(false, false, false);
     $json_response = new \phpbb\json_response();
     $json_response->send(array('success' => true, 'result' => $this->template->assign_display('@boardtools_quickreply/quickreply_template.html', '', true), 'insert' => $this->qr_insert));
 }
示例#7
0
    /**
     * Add the possible options to the template
     * 
     * @param array	$post_data		The array of post data
     * @return void
     */
    public function do_poll_modification($topic_data)
    {
        $options = $this->get_possible_options();
        $javascript_vars = array('wolfsblvt_poll_votes_hide_topic' => false, 'wolfsblvt_poll_voters_show_topic' => false, 'wolfsblvt_poll_voters_limit_topic' => false, 'username_clean' => $this->user->data['username_clean'], 'username_string' => get_username_string('full', $this->user->data['user_id'], $this->user->data['username'], $this->user->data['user_colour']), 'l_seperator' => $this->user->lang['COMMA_SEPARATOR'], 'l_none' => $this->user->lang['AP_NONE']);
        // Check how many options
        $sql = 'SELECT poll_option_id
				FROM ' . POLL_OPTIONS_TABLE . '
				WHERE topic_id = ' . $topic_data['topic_id'] . '
				ORDER BY poll_option_id ASC';
        $result = $this->db->sql_query($sql);
        $poll_options = array();
        while ($row = $this->db->sql_fetchrow($result)) {
            $poll_options[] = $row['poll_option_id'];
        }
        $poll_options_count = count($poll_options);
        $this->db->sql_freeresult($result);
        $poll_votes_hidden = false;
        if ($topic_data['wolfsblvt_poll_votes_hide'] == 1 && in_array('wolfsblvt_poll_votes_hide', $options) && $topic_data['poll_length'] > 0 && $topic_data['poll_start'] + $topic_data['poll_length'] > time()) {
            $javascript_vars['wolfsblvt_poll_votes_hide_topic'] = true;
            // Overwrite options to hide values
            for ($i = 0; $i < $poll_options_count; $i++) {
                $this->template->alter_block_array('poll_option', array('POLL_OPTION_RESULT' => '??', 'POLL_OPTION_PERCENT' => '??%', 'POLL_OPTION_PERCENT_REL' => sprintf("%.1d%%", round(100 * (1 / $poll_options_count))), 'POLL_OPTION_PCT' => round(100 * (1 / $poll_options_count)), 'POLL_OPTION_WIDTH' => round(250 * (1 / $poll_options_count)), 'POLL_OPTION_MOST_VOTES' => false), $i, 'change');
            }
            // Overwrite language vars to explain the hide
            $this->template->assign_vars(array('L_NO_VOTES' => $this->user->lang['AP_VOTES_HIDDEN'], 'AP_POLL_HIDE_VOTES' => true));
            $this->template->append_var('L_POLL_LENGTH', $this->user->lang['AP_POLL_RUN_TILL_APPEND']);
            $poll_votes_hidden = true;
        }
        if ($topic_data['wolfsblvt_poll_voters_show'] == 1 && in_array('wolfsblvt_poll_voters_show', $options) && !$poll_votes_hidden && $this->auth->acl_get('u_see_voters')) {
            $javascript_vars['wolfsblvt_poll_voters_show_topic'] = true;
            $sql = 'SELECT poll_option_id, vote_user_id
					FROM ' . POLL_VOTES_TABLE . '
					WHERE topic_id = ' . $topic_data['topic_id'];
            $result = $this->db->sql_query($sql);
            $option_voters = array_fill_keys($poll_options, array());
            $user_cache = array();
            while ($row = $this->db->sql_fetchrow($result)) {
                $option_voters[$row['poll_option_id']][] = $row['vote_user_id'];
                $user_cache[$row['vote_user_id']] = null;
            }
            $this->db->sql_freeresult($result);
            // We need to get the user data so that we can print out their username
            if (!empty($user_cache)) {
                $sql = 'SELECT user_id, username, username_clean, user_colour
						FROM ' . USERS_TABLE . '
						WHERE ' . $this->db->sql_in_set('user_id', array_keys($user_cache));
                $result = $this->db->sql_query($sql);
                while ($row = $this->db->sql_fetchrow($result)) {
                    $user_cache[$row['user_id']] = $row;
                }
                $this->db->sql_freeresult($result);
            }
            foreach ($option_voters as $option_id => $voter_ids) {
                $voter_list = array();
                $last_voter_id = end($voter_ids);
                foreach ($voter_ids as $voter_id) {
                    $username = get_username_string('full', $voter_id, $user_cache[$voter_id]['username'], $user_cache[$voter_id]['user_colour']);
                    $separator = $voter_id != $last_voter_id ? $this->user->lang['COMMA_SEPARATOR'] : '';
                    $html_surrounded = '<span name="' . $user_cache[$voter_id]['username_clean'] . '">' . $username . $separator . '</span>';
                    $voter_list[] = $html_surrounded;
                }
                $block_vars = array('VOTER_LIST' => !empty($voter_list) ? implode($voter_list) : false);
                $this->template->alter_block_array('poll_option', $block_vars, $option_id - 1, 'change');
            }
            $message = $this->user->lang['AP_POLL_VOTES_ARE_VISIBLE'];
            $this->template->assign_vars(array('AP_POLL_SHOW_VOTERS' => true));
            $this->template->append_var('L_POLL_LENGTH', '<span class="poll_vote_notice">' . $message . '</span>');
        }
        if ($topic_data['wolfsblvt_poll_voters_limit'] == 1 && in_array('wolfsblvt_poll_voters_limit', $options)) {
            $javascript_vars['wolfsblvt_poll_voters_limit_topic'] = true;
            $not_be_able_to_vote = false;
            $reason = "";
            // Check if user has posted in this thread
            $sql = 'SELECT post_id
					FROM ' . POSTS_TABLE . '
					WHERE poster_id = ' . $this->user->data['user_id'] . '
						AND topic_id = ' . $topic_data['topic_id'];
            $result = $this->db->sql_query_limit($sql, 1);
            $has_posted = $this->db->sql_fetchrow($result) ? true : false;
            $this->db->sql_freeresult($result);
            if (!$has_posted) {
                $not_be_able_to_vote = true;
                $reason = $this->user->lang['AP_POLL_REASON_NOT_POSTED'];
                $this->template->assign_vars(array('AP_POLL_REASON_NOT_POSTED' => true));
            }
            /**
             * Event to modify the limit poll modification
             *
             * @event wolfsblvt.advancedpolls.modify_poll_limit
             * @var	bool	not_be_able_to_vote			Bool if the user should be able to vote.
             * @var bool	has_posted					Bool if the user already has posted in this topic
             * @var string	reason						The reason why the user can't vote. Should be translated already.
             * @var	array	$topic_data					The topic data array
             * @since 1.0.0
             */
            $vars = array('not_be_able_to_vote', 'has_posted', 'reason', 'topic_row');
            extract($this->dispatcher->trigger_event('wolfsblvt.advancedpolls.modify_poll_limit', compact($vars)));
            if ($not_be_able_to_vote) {
                $this->template->assign_vars(array('S_CAN_VOTE' => false));
                $vote_error = $this->user->lang['AP_POLL_CANT_VOTE'] . $this->user->lang['COLON'] . ' ' . $reason;
                $this->template->assign_vars(array('L_POLL_LENGTH' => '<span class="poll_vote_notice">' . $vote_error . '</span>'));
            }
            $this->template->assign_vars(array('AP_POLL_LIMIT_VOTES' => true));
        }
        // Okay, lets push some of this information to the template
        $this->template->assign_vars(array('AP_JSON_DATA' => 'var wolfsblvt_ap_json_data = ' . json_encode($javascript_vars) . ';'));
    }