Poll.template.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?php
  2. /**
  3. * Simple Machines Forum (SMF)
  4. *
  5. * @package SMF
  6. * @author Simple Machines
  7. * @copyright 2014 Simple Machines and individual contributors
  8. * @license http://www.simplemachines.org/about/smf/license.php BSD
  9. *
  10. * @version 2.1 Alpha 1
  11. */
  12. function template_main()
  13. {
  14. global $context, $txt, $scripturl;
  15. // Some javascript for adding more options.
  16. echo '
  17. <script><!-- // --><![CDATA[
  18. var pollOptionNum = 0;
  19. var pollOptionId = ', $context['last_choice_id'], ';
  20. function addPollOption()
  21. {
  22. if (pollOptionNum == 0)
  23. {
  24. for (var i = 0; i < document.forms.postmodify.elements.length; i++)
  25. if (document.forms.postmodify.elements[i].id.substr(0, 8) == "options-")
  26. pollOptionNum++;
  27. }
  28. pollOptionNum++
  29. pollOptionId++
  30. setOuterHTML(document.getElementById("pollMoreOptions"), \'<li><label for="options-\' + pollOptionId + \'" ', (isset($context['poll_error']['no_question']) ? ' class="error"' : ''), '>', $txt['option'], ' \' + pollOptionNum + \'</label>: <input type="text" name="options[\' + (pollOptionId) + \']" id="options-\' + (pollOptionId) + \'" value="" size="80" maxlength="255" class="input_text"></li><li id="pollMoreOptions"></li\');
  31. }
  32. // ]]></script>';
  33. // Start the main poll form.
  34. echo '
  35. <div id="edit_poll">
  36. <form action="' . $scripturl . '?action=editpoll2', $context['is_edit'] ? '' : ';add', ';topic=' . $context['current_topic'] . '.' . $context['start'] . '" method="post" accept-charset="', $context['character_set'], '" onsubmit="submitonce(this); smc_saveEntities(\'postmodify\', [\'question\'], \'options-\');" name="postmodify" id="postmodify">
  37. <div class="cat_bar">
  38. <h3 class="catbg">', $context['page_title'], '</h3>
  39. </div>';
  40. if (!empty($context['poll_error']['messages']))
  41. echo '
  42. <div class="errorbox">
  43. <dl class="poll_error">
  44. <dt>
  45. ', $context['is_edit'] ? $txt['error_while_editing_poll'] : $txt['error_while_adding_poll'], ':
  46. </dt>
  47. <dt>
  48. ', empty($context['poll_error']['messages']) ? '' : implode('<br>', $context['poll_error']['messages']), '
  49. </dt>
  50. </dl>
  51. </div>';
  52. echo '
  53. <div>
  54. <div class="roundframe">
  55. <input type="hidden" name="poll" value="', $context['poll']['id'], '">
  56. <fieldset id="poll_main">
  57. <legend><span ', (isset($context['poll_error']['no_question']) ? ' class="error"' : ''), '>', $txt['poll_question'], ':</span></legend>
  58. <input type="text" name="question" size="80" value="', $context['poll']['question'], '" class="input_text">
  59. <ul class="poll_main">';
  60. foreach ($context['choices'] as $choice)
  61. {
  62. echo '
  63. <li>
  64. <label for="options-', $choice['id'], '" ', (isset($context['poll_error']['poll_few']) ? ' class="error"' : ''), '>', $txt['option'], ' ', $choice['number'], '</label>:
  65. <input type="text" name="options[', $choice['id'], ']" id="options-', $choice['id'], '" value="', $choice['label'], '" class="input_text" size="80" maxlength="255">';
  66. // Does this option have a vote count yet, or is it new?
  67. if ($choice['votes'] != -1)
  68. echo ' (', $choice['votes'], ' ', $txt['votes'], ')';
  69. echo '
  70. </li>';
  71. }
  72. echo '
  73. <li id="pollMoreOptions"></li>
  74. </ul>
  75. <strong><a href="javascript:addPollOption(); void(0);">(', $txt['poll_add_option'], ')</a></strong>
  76. </fieldset>
  77. <fieldset id="poll_options">
  78. <legend>', $txt['poll_options'], ':</legend>
  79. <dl class="settings poll_options">';
  80. if ($context['can_moderate_poll'])
  81. {
  82. echo '
  83. <dt>
  84. <label for="poll_max_votes">', $txt['poll_max_votes'], ':</label>
  85. </dt>
  86. <dd>
  87. <input type="text" name="poll_max_votes" id="poll_max_votes" size="2" value="', $context['poll']['max_votes'], '" class="input_text">
  88. </dd>
  89. <dt>
  90. <label for="poll_expire">', $txt['poll_run'], ':</label><br>
  91. <em class="smalltext">', $txt['poll_run_limit'], '</em>
  92. </dt>
  93. <dd>
  94. <input type="text" name="poll_expire" id="poll_expire" size="2" value="', $context['poll']['expiration'], '" onchange="this.form.poll_hide[2].disabled = isEmptyText(this) || this.value == 0; if (this.form.poll_hide[2].checked) this.form.poll_hide[1].checked = true;" maxlength="4" class="input_text"> ', $txt['days_word'], '
  95. </dd>
  96. <dt>
  97. <label for="poll_change_vote">', $txt['poll_do_change_vote'], ':</label>
  98. </dt>
  99. <dd>
  100. <input type="checkbox" id="poll_change_vote" name="poll_change_vote"', !empty($context['poll']['change_vote']) ? ' checked' : '', ' class="input_check">
  101. </dd>';
  102. if ($context['poll']['guest_vote_allowed'])
  103. echo '
  104. <dt>
  105. <label for="poll_guest_vote">', $txt['poll_guest_vote'], ':</label>
  106. </dt>
  107. <dd>
  108. <input type="checkbox" id="poll_guest_vote" name="poll_guest_vote"', !empty($context['poll']['guest_vote']) ? ' checked' : '', ' class="input_check">
  109. </dd>';
  110. }
  111. echo '
  112. <dt>
  113. ', $txt['poll_results_visibility'], ':
  114. </dt>
  115. <dd>
  116. <input type="radio" name="poll_hide" id="poll_results_anyone" value="0"', $context['poll']['hide_results'] == 0 ? ' checked' : '', ' class="input_radio"> <label for="poll_results_anyone">', $txt['poll_results_anyone'], '</label><br>
  117. <input type="radio" name="poll_hide" id="poll_results_voted" value="1"', $context['poll']['hide_results'] == 1 ? ' checked' : '', ' class="input_radio"> <label for="poll_results_voted">', $txt['poll_results_voted'], '</label><br>
  118. <input type="radio" name="poll_hide" id="poll_results_expire" value="2"', $context['poll']['hide_results'] == 2 ? ' checked' : '', empty($context['poll']['expiration']) ? ' disabled' : '', ' class="input_radio"> <label for="poll_results_expire">', $txt['poll_results_after'], '</label>
  119. </dd>
  120. </dl>
  121. </fieldset>';
  122. // If this is an edit, we can allow them to reset the vote counts.
  123. if ($context['is_edit'])
  124. echo '
  125. <fieldset id="poll_reset">
  126. <legend>', $txt['reset_votes'], '</legend>
  127. <input type="checkbox" name="resetVoteCount" value="on" class="input_check"> ' . $txt['reset_votes_check'] . '
  128. </fieldset>';
  129. echo '
  130. <div class="padding flow_auto">
  131. <input type="submit" name="post" value="', $txt['save'], '" onclick="return submitThisOnce(this);" accesskey="s" class="button_submit">
  132. </div>
  133. </div>
  134. </div>
  135. <input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '">
  136. <input type="hidden" name="' . $context['session_var'] . '" value="' . $context['session_id'] . '">
  137. </form>
  138. </div>
  139. ';
  140. }
  141. ?>