Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
transistorization
/
19052025___siteeee
/
wp-content
/
plugins
/
wp-polls
:
polls-templates.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php ### Check Whether User Can Manage Polls if(!current_user_can('manage_polls')) { die('Access Denied'); } # Allow HTML $allowed_tags = wp_kses_allowed_html( 'post' ); $allowed_tags['input'] = array( 'type' => true, 'id' => true, 'name' => true, 'value' => true, 'class' => true, 'onclick' => true, ); $allowed_tags['a']['onclick'] = true; ### Variables Variables Variables $base_name = plugin_basename('wp-polls/polls-templates.php'); $base_page = 'admin.php?page='.$base_name; $id = ( isset($_GET['id'] ) ? (int) sanitize_key( $_GET['id'] ) : 0 ); ### If Form Is Submitted if( isset($_POST['Submit']) && $_POST['Submit'] ) { check_admin_referer('wp-polls_templates'); $poll_template_voteheader = wp_kses_post( trim( $_POST['poll_template_voteheader'] ) ); $poll_template_votebody = wp_kses( $_POST['poll_template_votebody'], $allowed_tags ); $poll_template_votefooter = wp_kses( $_POST['poll_template_votefooter'], $allowed_tags ); $poll_template_resultheader = wp_kses_post( trim($_POST['poll_template_resultheader'] ) ); $poll_template_resultbody = wp_kses_post( trim($_POST['poll_template_resultbody'] ) ); $poll_template_resultbody2 = wp_kses_post( trim($_POST['poll_template_resultbody2'] ) ); $poll_template_resultfooter = wp_kses( trim($_POST['poll_template_resultfooter'] ), $allowed_tags ); $poll_template_resultfooter2 = wp_kses( trim($_POST['poll_template_resultfooter2'] ), $allowed_tags ); $poll_template_pollarchivelink = wp_kses_post( trim($_POST['poll_template_pollarchivelink'] ) ); $poll_template_pollarchiveheader = wp_kses_post( trim($_POST['poll_template_pollarchiveheader'] ) ); $poll_template_pollarchivefooter = wp_kses_post( trim($_POST['poll_template_pollarchivefooter'] ) ); $poll_template_pollarchivepagingheader = wp_kses_post( trim($_POST['poll_template_pollarchivepagingheader'] ) ); $poll_template_pollarchivepagingfooter = wp_kses_post( trim($_POST['poll_template_pollarchivepagingfooter'] ) ); $poll_template_disable = wp_kses_post( trim($_POST['poll_template_disable'] ) ); $poll_template_error = wp_kses_post( trim($_POST['poll_template_error'] ) ); $update_poll_queries = array(); $update_poll_text = array(); $update_poll_queries[] = update_option('poll_template_voteheader', $poll_template_voteheader); $update_poll_queries[] = update_option('poll_template_votebody', $poll_template_votebody); $update_poll_queries[] = update_option('poll_template_votefooter', $poll_template_votefooter); $update_poll_queries[] = update_option('poll_template_resultheader', $poll_template_resultheader); $update_poll_queries[] = update_option('poll_template_resultbody', $poll_template_resultbody); $update_poll_queries[] = update_option('poll_template_resultbody2', $poll_template_resultbody2); $update_poll_queries[] = update_option('poll_template_resultfooter', $poll_template_resultfooter); $update_poll_queries[] = update_option('poll_template_resultfooter2', $poll_template_resultfooter2); $update_poll_queries[] = update_option('poll_template_pollarchivelink', $poll_template_pollarchivelink); $update_poll_queries[] = update_option('poll_template_pollarchiveheader', $poll_template_pollarchiveheader); $update_poll_queries[] = update_option('poll_template_pollarchivefooter', $poll_template_pollarchivefooter); $update_poll_queries[] = update_option('poll_template_pollarchivepagingheader', $poll_template_pollarchivepagingheader); $update_poll_queries[] = update_option('poll_template_pollarchivepagingfooter', $poll_template_pollarchivepagingfooter); $update_poll_queries[] = update_option('poll_template_disable', $poll_template_disable); $update_poll_queries[] = update_option('poll_template_error', $poll_template_error); $update_poll_text[] = __('Voting Form Header Template', 'wp-polls'); $update_poll_text[] = __('Voting Form Body Template', 'wp-polls'); $update_poll_text[] = __('Voting Form Footer Template', 'wp-polls'); $update_poll_text[] = __('Result Header Template', 'wp-polls'); $update_poll_text[] = __('Result Body Template', 'wp-polls'); $update_poll_text[] = __('Result Body2 Template', 'wp-polls'); $update_poll_text[] = __('Result Footer Template', 'wp-polls'); $update_poll_text[] = __('Result Footer2 Template', 'wp-polls'); $update_poll_text[] = __('Poll Archive Link Template', 'wp-polls'); $update_poll_text[] = __('Poll Archive Poll Header Template', 'wp-polls'); $update_poll_text[] = __('Poll Archive Poll Footer Template', 'wp-polls'); $update_poll_text[] = __('Poll Archive Paging Header Template', 'wp-polls'); $update_poll_text[] = __('Poll Archive Paging Footer Template', 'wp-polls'); $update_poll_text[] = __('Poll Disabled Template', 'wp-polls'); $update_poll_text[] = __('Poll Error Template', 'wp-polls'); $i=0; $text = ''; foreach($update_poll_queries as $update_poll_query) { if($update_poll_query) { $text .= '<p style="color: green;">'.$update_poll_text[$i].' '.__('Updated', 'wp-polls').'</p>'; } $i++; } if(empty($text)) { $text = '<p style="color: red;">'.__('No Poll Option Updated', 'wp-polls').'</p>'; } wp_clear_scheduled_hook('polls_cron'); if (!wp_next_scheduled('polls_cron')) { wp_schedule_event(time(), 'daily', 'polls_cron'); } } ?> <script type="text/javascript"> /* <![CDATA[*/ function poll_default_templates(template) { var default_template; switch(template) { case "voteheader": default_template = "<p style=\"text-align: center;\"><strong>%POLL_QUESTION%</strong></p>\n<div id=\"polls-%POLL_ID%-ans\" class=\"wp-polls-ans\">\n<ul class=\"wp-polls-ul\">"; break; case "votebody": default_template = "<li><input type=\"%POLL_CHECKBOX_RADIO%\" id=\"poll-answer-%POLL_ANSWER_ID%\" name=\"poll_%POLL_ID%\" value=\"%POLL_ANSWER_ID%\" /> <label for=\"poll-answer-%POLL_ANSWER_ID%\">%POLL_ANSWER%</label></li>"; break; case "votefooter": default_template = "</ul>\n<p style=\"text-align: center;\"><input type=\"button\" name=\"vote\" value=\" <?php _e('Vote', 'wp-polls'); ?> \" class=\"Buttons\" onclick=\"poll_vote(%POLL_ID%);\" /></p>\n<p style=\"text-align: center;\"><a href=\"#ViewPollResults\" onclick=\"poll_result(%POLL_ID%); return false;\" title=\"<?php _e('View Results Of This Poll', 'wp-polls'); ?>\"><?php _e('View Results', 'wp-polls'); ?></a></p>\n</div>"; break; case "resultheader": default_template = "<p style=\"text-align: center;\"><strong>%POLL_QUESTION%</strong></p>\n<div id=\"polls-%POLL_ID%-ans\" class=\"wp-polls-ans\">\n<ul class=\"wp-polls-ul\">"; break; case "resultbody": default_template = "<li>%POLL_ANSWER% <small>(%POLL_ANSWER_PERCENTAGE%%<?php _e(',', 'wp-polls'); ?> %POLL_ANSWER_VOTES% <?php _e('Votes', 'wp-polls'); ?>)</small><div class=\"pollbar\" style=\"width: %POLL_ANSWER_IMAGEWIDTH%%;\" title=\"%POLL_ANSWER_TEXT% (%POLL_ANSWER_PERCENTAGE%% | %POLL_ANSWER_VOTES% <?php _e('Votes', 'wp-polls'); ?>)\"></div></li>"; break; case "resultbody2": default_template = "<li><strong><i>%POLL_ANSWER% <small>(%POLL_ANSWER_PERCENTAGE%%<?php _e(',', 'wp-polls'); ?> %POLL_ANSWER_VOTES% <?php _e('Votes', 'wp-polls'); ?>)</small></i></strong><div class=\"pollbar\" style=\"width: %POLL_ANSWER_IMAGEWIDTH%%;\" title=\"<?php _e('You Have Voted For This Choice', 'wp-polls'); ?> - %POLL_ANSWER_TEXT% (%POLL_ANSWER_PERCENTAGE%% | %POLL_ANSWER_VOTES% <?php _e('Votes', 'wp-polls'); ?>)\"></div></li>"; break; case "resultfooter": default_template = "</ul>\n<p style=\"text-align: center;\"><?php _e('Total Voters', 'wp-polls'); ?>: <strong>%POLL_TOTALVOTERS%</strong></p>\n</div>"; break; case "resultfooter2": default_template = "</ul>\n<p style=\"text-align: center;\"><?php _e('Total Voters', 'wp-polls'); ?>: <strong>%POLL_TOTALVOTERS%</strong></p>\n<p style=\"text-align: center;\"><a href=\"#VotePoll\" onclick=\"poll_booth(%POLL_ID%); return false;\" title=\"<?php _e('Vote For This Poll', 'wp-polls'); ?>\"><?php _e('Vote', 'wp-polls'); ?></a></p>\n</div>"; break; case "pollarchivelink": default_template = "<ul>\n<li><a href=\"%POLL_ARCHIVE_URL%\"><?php _e('Polls Archive', 'wp-polls'); ?></a></li>\n</ul>"; break; case "pollarchiveheader": default_template = ""; break; case "pollarchivefooter": default_template = "<p><?php _e('Start Date:', 'wp-polls'); ?> %POLL_START_DATE%<br /><?php _e('End Date:', 'wp-polls'); ?> %POLL_END_DATE%</p>"; break; case "pollarchivepagingheader": default_template = ""; break; case "pollarchivepagingfooter": default_template = ""; break; case "disable": default_template = "<?php _e('Sorry, there are no polls available at the moment.', 'wp-polls'); ?>"; break; case "error": default_template = "<?php _e('An error has occurred when processing your poll.', 'wp-polls'); ?>"; break; } jQuery("#poll_template_" + template).val(default_template); } /* ]]> */ </script> <?php if(!empty($text)) { echo '<!-- Last Action --><div id="message" class="updated fade"><p>'.$text.'</p></div>'; } ?> <form id="poll_template_form" method="post" action="<?php echo admin_url('admin.php?page='.plugin_basename(__FILE__)); ?>"> <?php wp_nonce_field('wp-polls_templates'); ?> <div class="wrap"> <h2><?php _e('Poll Templates', 'wp-polls'); ?></h2> <!-- Template Variables --> <h3><?php _e('Template Variables', 'wp-polls'); ?></h3> <table class="widefat"> <tr> <td> <strong>%POLL_ID%</strong><br /> <?php _e('Display the poll\'s ID', 'wp-polls'); ?> </td> <td> <strong>%POLL_ANSWER_ID%</strong><br /> <?php _e('Display the poll\'s answer ID', 'wp-polls'); ?> </td> </tr> <tr class="alternate"> <td> <strong>%POLL_QUESTION%</strong><br /> <?php _e('Display the poll\'s question', 'wp-polls'); ?> </td> <td> <strong>%POLL_ANSWER%</strong><br /> <?php _e('Display the poll\'s answer', 'wp-polls'); ?> </td> </tr> <tr> <td> <strong>%POLL_TOTALVOTES%</strong><br /> <?php _e('Display the poll\'s total votes NOT the number of people who voted for the poll', 'wp-polls'); ?> </td> <td> <strong>%POLL_ANSWER_TEXT%</strong><br /> <?php _e('Display the poll\'s answer without HTML formatting.', 'wp-polls'); ?> </td> </tr> <tr class="alternate"> <td> <strong>%POLL_RESULT_URL%</strong><br /> <?php _e('Displays URL to poll\'s result', 'wp-polls'); ?> </td> <td> <strong>%POLL_ANSWER_VOTES%</strong><br /> <?php _e('Display the poll\'s answer votes', 'wp-polls'); ?> </td> </tr> <tr> <td> <strong>%POLL_MOST_ANSWER%</strong><br /> <?php _e('Display the poll\'s most voted answer', 'wp-polls'); ?> </td> <td> <strong>%POLL_ANSWER_PERCENTAGE%</strong><br /> <?php _e('Display the poll\'s answer percentage', 'wp-polls'); ?> </td> </tr> <tr class="alternate"> <td> <strong>%POLL_MOST_VOTES%</strong><br /> <?php _e('Display the poll\'s answer votes for the most voted answer', 'wp-polls'); ?> </td> <td> <strong>%POLL_ANSWER_IMAGEWIDTH%</strong><br /> <?php _e('Display the poll\'s answer image width', 'wp-polls'); ?> </td> </tr> <tr> <td> <strong>%POLL_MOST_PERCENTAGE%</strong><br /> <?php _e('Display the poll\'s answer percentage for the most voted answer', 'wp-polls'); ?> </td> <td> <strong>%POLL_LEAST_ANSWER%</strong><br /> <?php _e('Display the poll\'s least voted answer', 'wp-polls'); ?> </td> </tr> <tr class="alternate"> <td> <strong>%POLL_START_DATE%</strong><br /> <?php _e('Display the poll\'s start date/time', 'wp-polls'); ?> </td> <td> <strong>%POLL_LEAST_VOTES%</strong><br /> <?php _e('Display the poll\'s answer votes for the least voted answer', 'wp-polls'); ?> </td> </tr> <tr> <td> <strong>%POLL_END_DATE%</strong><br /> <?php _e('Display the poll\'s end date/time', 'wp-polls'); ?> </td> <td> <strong>%POLL_LEAST_PERCENTAGE%</strong><br /> <?php _e('Display the poll\'s answer percentage for the least voted answer', 'wp-polls'); ?> </td> </tr> <tr class="alternate"> <td> <strong>%POLL_MULTIPLE_ANS_MAX%</strong><br /> <?php _e('Display the the maximum number of answers the user can choose if the poll supports multiple answers', 'wp-polls'); ?> </td> <td> <strong>%POLL_CHECKBOX_RADIO%</strong><br /> <?php _e('Display "checkbox" or "radio" input types depending on the poll type', 'wp-polls'); ?> </td> </tr> <tr> <td> <strong>%POLL_TOTALVOTERS%</strong><br /> <?php _e('Display the number of people who voted for the poll NOT the total votes of the poll', 'wp-polls'); ?> </td> <td> <strong>%POLL_ARCHIVE_URL%</strong><br /> <?php _e('Display the poll archive URL', 'wp-polls'); ?> </td> </tr> <tr> <td> <strong>%POLL_MULTIPLE_ANSWER_PERCENTAGE%</strong><br /> <?php _e('Display the poll\'s mutiple answer percentage. This is total votes divided by total voters.', 'wp-polls'); ?> </td> <td> </td> </tr> <tr class="alternate"> <td colspan="2"> <?php _e('Note: <strong>%POLL_TOTALVOTES%</strong> and <strong>%POLL_TOTALVOTERS%</strong> will be different if your poll supports multiple answers. If your poll allows only single answer, both value will be the same.', 'wp-polls'); ?> </td> </tr> </table> <!-- Poll Voting Form Templates --> <h3><?php _e('Poll Voting Form Templates', 'wp-polls'); ?></h3> <table class="form-table"> <tr> <td width="30%" valign="top"> <strong><?php _e('Voting Form Header:', 'wp-polls'); ?></strong><br /><br /><br /> <?php _e('Allowed Variables:', 'wp-polls'); ?><br /> <p style="margin: 2px 0">- %POLL_ID%</p> <p style="margin: 2px 0">- %POLL_QUESTION%</p> <p style="margin: 2px 0">- %POLL_START_DATE%</p> <p style="margin: 2px 0">- %POLL_END_DATE%</p> <p style="margin: 2px 0">- %POLL_TOTALVOTES%</p> <p style="margin: 2px 0">- %POLL_TOTALVOTERS%</p> <p style="margin: 2px 0">- %POLL_MULTIPLE_ANS_MAX%</p><br /> <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-polls'); ?>" onclick="poll_default_templates('voteheader');" class="button" /> </td> <td valign="top"><textarea cols="80" rows="15" id="poll_template_voteheader" name="poll_template_voteheader"><?php echo esc_textarea( removeslashes( get_option( 'poll_template_voteheader' ) ) ); ?></textarea></td> </tr> <tr> <td width="30%" valign="top"> <strong><?php _e('Voting Form Body:', 'wp-polls'); ?></strong><br /><br /><br /> <?php _e('Allowed Variables:', 'wp-polls'); ?><br /> <p style="margin: 2px 0">- %POLL_ID%</p> <p style="margin: 2px 0">- %POLL_ANSWER_ID%</p> <p style="margin: 2px 0">- %POLL_ANSWER%</p> <p style="margin: 2px 0">- %POLL_ANSWER_VOTES%</p> <p style="margin: 2px 0">- %POLL_CHECKBOX_RADIO%</p><br /> <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-polls'); ?>" onclick="poll_default_templates('votebody');" class="button" /> </td> <td valign="top"><textarea cols="80" rows="15" id="poll_template_votebody" name="poll_template_votebody"><?php echo esc_textarea( removeslashes( get_option( 'poll_template_votebody' ) ) ); ?></textarea></td> </tr> <tr> <td width="30%" valign="top"> <strong><?php _e('Voting Form Footer:', 'wp-polls'); ?></strong><br /><br /><br /> <?php _e('Allowed Variables:', 'wp-polls'); ?><br /> <p style="margin: 2px 0">- %POLL_ID%</p> <p style="margin: 2px 0">- %POLL_RESULT_URL%</p> <p style="margin: 2px 0">- %POLL_MULTIPLE_ANS_MAX%</p><br /> <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-polls'); ?>" onclick="poll_default_templates('votefooter');" class="button" /> </td> <td valign="top"><textarea cols="80" rows="15" id="poll_template_votefooter" name="poll_template_votefooter"><?php echo esc_textarea( removeslashes( get_option( 'poll_template_votefooter' ) ) ); ?></textarea></td> </tr> </table> <!-- Poll Result Templates --> <h3><?php _e('Poll Result Templates', 'wp-polls'); ?></h3> <table class="form-table"> <tr> <td width="30%" valign="top"> <strong><?php _e('Result Header:', 'wp-polls'); ?></strong><br /><br /><br /> <?php _e('Allowed Variables:', 'wp-polls'); ?><br /> <p style="margin: 2px 0">- %POLL_ID%</p> <p style="margin: 2px 0">- %POLL_QUESTION%</p> <p style="margin: 2px 0">- %POLL_START_DATE%</p> <p style="margin: 2px 0">- %POLL_END_DATE%</p> <p style="margin: 2px 0">- %POLL_TOTALVOTES%</p> <p style="margin: 2px 0">- %POLL_TOTALVOTERS%</p> <p style="margin: 2px 0">- %POLL_MULTIPLE_ANS_MAX%</p><br /> <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-polls'); ?>" onclick="poll_default_templates('resultheader');" class="button" /> </td> <td valign="top"><textarea cols="80" rows="15" id="poll_template_resultheader" name="poll_template_resultheader"><?php echo esc_textarea( removeslashes( get_option( 'poll_template_resultheader' ) ) ); ?></textarea></td> </tr> <tr> <td width="30%" valign="top"> <strong><?php _e('Result Body:', 'wp-polls'); ?></strong><br /><?php _e('Displayed When The User HAS NOT Voted', 'wp-polls'); ?><br /><br /> <?php _e('Allowed Variables:', 'wp-polls'); ?><br /> <p style="margin: 2px 0">- %POLL_ID%</p> <p style="margin: 2px 0">- %POLL_ANSWER_ID%</p> <p style="margin: 2px 0">- %POLL_ANSWER%</p> <p style="margin: 2px 0">- %POLL_ANSWER_TEXT%</p> <p style="margin: 2px 0">- %POLL_ANSWER_VOTES%</p> <p style="margin: 2px 0">- %POLL_ANSWER_PERCENTAGE%</p> <p style="margin: 2px 0">- %POLL_MULTIPLE_ANSWER_PERCENTAGE%</p> <p style="margin: 2px 0">- %POLL_ANSWER_IMAGEWIDTH%</p><br /> <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-polls'); ?>" onclick="poll_default_templates('resultbody');" class="button" /> </td> <td valign="top"><textarea cols="80" rows="15" id="poll_template_resultbody" name="poll_template_resultbody"><?php echo esc_textarea( removeslashes( get_option( 'poll_template_resultbody' ) ) ); ?></textarea></td> </tr> <tr> <td width="30%" valign="top"> <strong><?php _e('Result Body:', 'wp-polls'); ?></strong><br /><?php _e('Displayed When The User HAS Voted', 'wp-polls'); ?><br /><br /> <?php _e('Allowed Variables:', 'wp-polls'); ?><br /> <p style="margin: 2px 0">- %POLL_ID%</p> <p style="margin: 2px 0">- %POLL_ANSWER_ID%</p> <p style="margin: 2px 0">- %POLL_ANSWER%</p> <p style="margin: 2px 0">- %POLL_ANSWER_TEXT%</p> <p style="margin: 2px 0">- %POLL_ANSWER_VOTES%</p> <p style="margin: 2px 0">- %POLL_ANSWER_PERCENTAGE%</p> <p style="margin: 2px 0">- %POLL_MULTIPLE_ANSWER_PERCENTAGE%</p> <p style="margin: 2px 0">- %POLL_ANSWER_IMAGEWIDTH%</p><br /> <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-polls'); ?>" onclick="poll_default_templates('resultbody2');" class="button" /> </td> <td valign="top"><textarea cols="80" rows="15" id="poll_template_resultbody2" name="poll_template_resultbody2"><?php echo esc_textarea( removeslashes( get_option( 'poll_template_resultbody2' ) ) ); ?></textarea></td> </tr> <tr> <td width="30%" valign="top"> <strong><?php _e('Result Footer:', 'wp-polls'); ?></strong><br /><?php _e('Displayed When The User HAS Voted', 'wp-polls'); ?><br /><br /> <?php _e('Allowed Variables:', 'wp-polls'); ?><br /> <p style="margin: 2px 0">- %POLL_ID%</p> <p style="margin: 2px 0">- %POLL_START_DATE%</p> <p style="margin: 2px 0">- %POLL_END_DATE%</p> <p style="margin: 2px 0">- %POLL_TOTALVOTES%</p> <p style="margin: 2px 0">- %POLL_TOTALVOTERS%</p> <p style="margin: 2px 0">- %POLL_MOST_ANSWER%</p> <p style="margin: 2px 0">- %POLL_MOST_VOTES%</p> <p style="margin: 2px 0">- %POLL_MOST_PERCENTAGE%</p> <p style="margin: 2px 0">- %POLL_LEAST_ANSWER%</p> <p style="margin: 2px 0">- %POLL_LEAST_VOTES%</p> <p style="margin: 2px 0">- %POLL_LEAST_PERCENTAGE%</p> <p style="margin: 2px 0">- %POLL_MULTIPLE_ANS_MAX%</p><br /> <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-polls'); ?>" onclick="poll_default_templates('resultfooter');" class="button" /> </td> <td valign="top"><textarea cols="80" rows="15" id="poll_template_resultfooter" name="poll_template_resultfooter"><?php echo esc_textarea( removeslashes( get_option( 'poll_template_resultfooter' ) ) ); ?></textarea></td> </tr> <tr> <td width="30%" valign="top"> <strong><?php _e('Result Footer:', 'wp-polls'); ?></strong><br /><?php _e('Displayed When The User HAS NOT Voted', 'wp-polls'); ?><br /><br /> <?php _e('Allowed Variables:', 'wp-polls'); ?><br /> <p style="margin: 2px 0">- %POLL_ID%</p> <p style="margin: 2px 0">- %POLL_START_DATE%</p> <p style="margin: 2px 0">- %POLL_END_DATE%</p> <p style="margin: 2px 0">- %POLL_TOTALVOTES%</p> <p style="margin: 2px 0">- %POLL_TOTALVOTERS%</p> <p style="margin: 2px 0">- %POLL_MOST_ANSWER%</p> <p style="margin: 2px 0">- %POLL_MOST_VOTES%</p> <p style="margin: 2px 0">- %POLL_MOST_PERCENTAGE%</p> <p style="margin: 2px 0">- %POLL_LEAST_ANSWER%</p> <p style="margin: 2px 0">- %POLL_LEAST_VOTES%</p> <p style="margin: 2px 0">- %POLL_LEAST_PERCENTAGE%</p> <p style="margin: 2px 0">- %POLL_MULTIPLE_ANS_MAX%</p><br /> <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-polls'); ?>" onclick="poll_default_templates('resultfooter2');" class="button" /> </td> <td valign="top"><textarea cols="80" rows="15" id="poll_template_resultfooter2" name="poll_template_resultfooter2"><?php echo esc_textarea( removeslashes( get_option( 'poll_template_resultfooter2' ) ) ); ?></textarea></td> </tr> </table> <!-- Poll Archive Templates --> <h3><?php _e('Poll Archive Templates', 'wp-polls'); ?></h3> <table class="form-table"> <tr> <td width="30%" valign="top"> <strong><?php _e('Poll Archive Link', 'wp-polls'); ?></strong><br /><?php _e('Template For Displaying Poll Archive Link', 'wp-polls'); ?><br /><br /> <?php _e('Allowed Variables:', 'wp-polls'); ?><br /> <p style="margin: 2px 0">- %POLL_ARCHIVE_URL%</p><br /> <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-polls'); ?>" onclick="poll_default_templates('pollarchivelink');" class="button" /> </td> <td valign="top"><textarea cols="80" rows="15" id="poll_template_pollarchivelink" name="poll_template_pollarchivelink"><?php echo esc_textarea( removeslashes( get_option( 'poll_template_pollarchivelink' ) ) ); ?></textarea></td> </tr> <tr> <td width="30%" valign="top"> <strong><?php _e('Individual Poll Header', 'wp-polls'); ?></strong><br /><?php _e('Displayed Before Each Poll In The Poll Archive', 'wp-polls'); ?><br /><br /> <?php _e('Allowed Variables:', 'wp-polls'); ?><br /> <p style="margin: 2px 0">- <?php _e('N/A', 'wp-polls'); ?></p><br /> <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-polls'); ?>" onclick="poll_default_templates('pollarchiveheader');" class="button" /> </td> <td valign="top"><textarea cols="80" rows="15" id="poll_template_pollarchiveheader" name="poll_template_pollarchiveheader"><?php echo esc_textarea( removeslashes( get_option( 'poll_template_pollarchiveheader' ) ) ); ?></textarea></td> </tr> <tr> <td width="30%" valign="top"> <strong><?php _e('Individual Poll Footer', 'wp-polls'); ?></strong><br /><?php _e('Displayed After Each Poll In The Poll Archive', 'wp-polls'); ?><br /><br /> <?php _e('Allowed Variables:', 'wp-polls'); ?><br /> <p style="margin: 2px 0">- %POLL_START_DATE%</p> <p style="margin: 2px 0">- %POLL_END_DATE%</p> <p style="margin: 2px 0">- %POLL_TOTALVOTES%</p> <p style="margin: 2px 0">- %POLL_TOTALVOTERS%</p> <p style="margin: 2px 0">- %POLL_MOST_ANSWER%</p> <p style="margin: 2px 0">- %POLL_MOST_VOTES%</p> <p style="margin: 2px 0">- %POLL_MOST_PERCENTAGE%</p> <p style="margin: 2px 0">- %POLL_LEAST_ANSWER%</p> <p style="margin: 2px 0">- %POLL_LEAST_VOTES%</p> <p style="margin: 2px 0">- %POLL_LEAST_PERCENTAGE%</p> <p style="margin: 2px 0">- %POLL_MULTIPLE_ANS_MAX%</p><br /> <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-polls'); ?>" onclick="poll_default_templates('pollarchivefooter');" class="button" /> </td> <td valign="top"><textarea cols="80" rows="15" id="poll_template_pollarchivefooter" name="poll_template_pollarchivefooter"><?php echo esc_textarea( removeslashes( get_option( 'poll_template_pollarchivefooter' ) ) ); ?></textarea></td> </tr> <tr> <td width="30%" valign="top"> <strong><?php _e('Paging Header', 'wp-polls'); ?></strong><br /><?php _e('Displayed Before Paging In The Poll Archive', 'wp-polls'); ?><br /><br /> <?php _e('Allowed Variables:', 'wp-polls'); ?><br /> <p style="margin: 2px 0">- <?php _e('N/A', 'wp-polls'); ?></p><br /> <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-polls'); ?>" onclick="poll_default_templates('pollarchivepagingheader');" class="button" /> </td> <td valign="top"><textarea cols="80" rows="15" id="poll_template_pollarchivepagingheader" name="poll_template_pollarchivepagingheader"><?php echo esc_textarea( removeslashes( get_option( 'poll_template_pollarchivepagingheader' ) ) ); ?></textarea></td> </tr> <tr> <td width="30%" valign="top"> <strong><?php _e('Paging Footer', 'wp-polls'); ?></strong><br /><?php _e('Displayed After Paging In The Poll Archive', 'wp-polls'); ?><br /><br /> <?php _e('Allowed Variables:', 'wp-polls'); ?><br /> <p style="margin: 2px 0">- <?php _e('N/A', 'wp-polls'); ?></p><br /> <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-polls'); ?>" onclick="poll_default_templates('pollarchivepagingfooter');" class="button" /> </td> <td valign="top"><textarea cols="80" rows="15" id="poll_template_pollarchivepagingfooter" name="poll_template_pollarchivepagingfooter"><?php echo esc_textarea( removeslashes( get_option( 'poll_template_pollarchivepagingfooter' ) ) ); ?></textarea></td> </tr> </table> <!-- Poll Misc Templates --> <h3><?php _e('Poll Misc Templates', 'wp-polls'); ?></h3> <table class="form-table"> <tr> <td width="30%" valign="top"> <strong><?php _e('Poll Disabled', 'wp-polls'); ?></strong><br /><?php _e('Displayed When The Poll Is Disabled', 'wp-polls'); ?><br /><br /> <?php _e('Allowed Variables:', 'wp-polls'); ?><br /> <p style="margin: 2px 0">- <?php _e('N/A', 'wp-polls'); ?></p><br /> <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-polls'); ?>" onclick="poll_default_templates('disable');" class="button" /> </td> <td valign="top"><textarea cols="80" rows="15" id="poll_template_disable" name="poll_template_disable"><?php echo esc_textarea( removeslashes( get_option( 'poll_template_disable' ) ) ); ?></textarea></td> </tr> <tr> <td width="30%" valign="top"> <strong><?php _e('Poll Error', 'wp-polls'); ?></strong><br /><?php _e('Displayed When An Error Has Occured While Processing The Poll', 'wp-polls'); ?><br /><br /> <?php _e('Allowed Variables:', 'wp-polls'); ?><br /> <p style="margin: 2px 0">- <?php _e('N/A', 'wp-polls'); ?><br /><br /> <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-polls'); ?>" onclick="poll_default_templates('error');" class="button" /> </td> <td valign="top"><textarea cols="80" rows="15" id="poll_template_error" name="poll_template_error"><?php echo esc_textarea( removeslashes( get_option( 'poll_template_error' ) ) ); ?></textarea></td> </tr> </table> <p class="submit"> <input type="submit" name="Submit" class="button-primary" value="<?php _e('Save Changes', 'wp-polls'); ?>" /> </p> </div> </form>