ManageSearch.template.php 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  1. <?php
  2. /**
  3. * Simple Machines Forum (SMF)
  4. *
  5. * @package SMF
  6. * @author Simple Machines
  7. * @copyright 2012 Simple Machines
  8. * @license http://www.simplemachines.org/about/smf/license.php BSD
  9. *
  10. * @version 2.1 Alpha 1
  11. */
  12. function template_modify_weights()
  13. {
  14. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  15. echo '
  16. <div id="admincenter">
  17. <form action="', $scripturl, '?action=admin;area=managesearch;sa=weights" method="post" accept-charset="', $context['character_set'], '">
  18. <div class="cat_bar">
  19. <h3 class="catbg">', $txt['search_weights'], '</h3>
  20. </div>
  21. <div class="windowbg">
  22. <div class="content">
  23. <dl class="settings">
  24. <dt class="large_caption">
  25. <a href="', $scripturl, '?action=helpadmin;help=search_weight_frequency" onclick="return reqOverlayDiv(this.href);" class="help"><img src="', $settings['images_url'], '/helptopics.png" alt="', $txt['help'], '" /></a><label for="weight1_val">
  26. ', $txt['search_weight_frequency'], ':</label>
  27. </dt>
  28. <dd class="large_caption">
  29. <span class="search_weight"><input type="text" name="search_weight_frequency" id="weight1_val" value="', empty($modSettings['search_weight_frequency']) ? '0' : $modSettings['search_weight_frequency'], '" onchange="calculateNewValues()" size="3" class="input_text" /></span>
  30. <span id="weight1" class="search_weight">', $context['relative_weights']['search_weight_frequency'], '%</span>
  31. </dd>
  32. <dt class="large_caption">
  33. <a href="', $scripturl, '?action=helpadmin;help=search_weight_age" onclick="return reqOverlayDiv(this.href);" class="help"><img src="', $settings['images_url'], '/helptopics.png" alt="', $txt['help'], '" /></a><label for="weight2_val">
  34. ', $txt['search_weight_age'], ':</label>
  35. </dt>
  36. <dd class="large_caption">
  37. <span class="search_weight"><input type="text" name="search_weight_age" id="weight2_val" value="', empty($modSettings['search_weight_age']) ? '0' : $modSettings['search_weight_age'], '" onchange="calculateNewValues()" size="3" class="input_text" /></span>
  38. <span id="weight2" class="search_weight">', $context['relative_weights']['search_weight_age'], '%</span>
  39. </dd>
  40. <dt class="large_caption">
  41. <a href="', $scripturl, '?action=helpadmin;help=search_weight_length" onclick="return reqOverlayDiv(this.href);" class="help"><img src="', $settings['images_url'], '/helptopics.png" alt="', $txt['help'], '" /></a><label for="weight3_val">
  42. ', $txt['search_weight_length'], ':</label>
  43. </dt>
  44. <dd class="large_caption">
  45. <span class="search_weight"><input type="text" name="search_weight_length" id="weight3_val" value="', empty($modSettings['search_weight_length']) ? '0' : $modSettings['search_weight_length'], '" onchange="calculateNewValues()" size="3" class="input_text" /></span>
  46. <span id="weight3" class="search_weight">', $context['relative_weights']['search_weight_length'], '%</span>
  47. </dd>
  48. <dt class="large_caption">
  49. <a href="', $scripturl, '?action=helpadmin;help=search_weight_subject" onclick="return reqOverlayDiv(this.href);" class="help"><img src="', $settings['images_url'], '/helptopics.png" alt="', $txt['help'], '" /></a><label for="weight4_val">
  50. ', $txt['search_weight_subject'], ':</label>
  51. </dt>
  52. <dd class="large_caption">
  53. <span class="search_weight"><input type="text" name="search_weight_subject" id="weight4_val" value="', empty($modSettings['search_weight_subject']) ? '0' : $modSettings['search_weight_subject'], '" onchange="calculateNewValues()" size="3" class="input_text" /></span>
  54. <span id="weight4" class="search_weight">', $context['relative_weights']['search_weight_subject'], '%</span>
  55. </dd>
  56. <dt class="large_caption">
  57. <a href="', $scripturl, '?action=helpadmin;help=search_weight_first_message" onclick="return reqOverlayDiv(this.href);" class="help"><img src="', $settings['images_url'], '/helptopics.png" alt="', $txt['help'], '" /></a><label for="weight5_val">
  58. ', $txt['search_weight_first_message'], ':</label>
  59. </dt>
  60. <dd class="large_caption">
  61. <span class="search_weight"><input type="text" name="search_weight_first_message" id="weight5_val" value="', empty($modSettings['search_weight_first_message']) ? '0' : $modSettings['search_weight_first_message'], '" onchange="calculateNewValues()" size="3" class="input_text" /></span>
  62. <span id="weight5" class="search_weight">', $context['relative_weights']['search_weight_first_message'], '%</span>
  63. </dd>
  64. <dt class="large_caption">
  65. <a href="', $scripturl, '?action=helpadmin;help=search_weight_frequency" onclick="return reqOverlayDiv(this.href);" class="help"><img src="', $settings['images_url'], '/helptopics.png" alt="', $txt['help'], '" align="top" /></a><label for="weight6_val">
  66. ', $txt['search_weight_sticky'], ':</label>
  67. </dt>
  68. <dd class="large_caption">
  69. <span class="search_weight"><input type="text" name="search_weight_sticky" id="weight6_val" value="', empty($modSettings['search_weight_sticky']) ? '0' : $modSettings['search_weight_sticky'], '" onchange="calculateNewValues()" size="3" class="input_text" /></span>
  70. <span id="weight6" class="search_weight">', $context['relative_weights']['search_weight_sticky'], '%</span>
  71. </dd>
  72. <dt class="large_caption">
  73. <strong>', $txt['search_weights_total'], '</strong>
  74. </dt>
  75. <dd class="large_caption">
  76. <span id="weighttotal" class="search_weight"><strong>', $context['relative_weights']['total'], '</strong></span>
  77. <span class="search_weight"><strong>100%</strong></span>
  78. </dd>
  79. </dl>
  80. <hr class="hrcolor" />
  81. <input type="submit" name="save" value="', $txt['search_weights_save'], '" class="button_submit" />
  82. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  83. <input type="hidden" name="', $context['admin-msw_token_var'], '" value="', $context['admin-msw_token'], '" />
  84. </div>
  85. </div>
  86. </form>
  87. </div>';
  88. }
  89. function template_select_search_method()
  90. {
  91. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  92. echo '
  93. <div id="admincenter">
  94. <form action="', $scripturl, '?action=admin;area=managesearch;sa=method" method="post" accept-charset="', $context['character_set'], '">
  95. <div class="cat_bar">
  96. <h3 class="catbg">', $txt['search_method'], '</h3>
  97. </div>
  98. <div class="information">
  99. <div class="smalltext" style="font-weight: normal;"><a href="', $scripturl, '?action=helpadmin;help=search_why_use_index" onclick="return reqOverlayDiv(this.href);">', $txt['search_create_index_why'], '</a></div>
  100. </div>
  101. <div class="windowbg">
  102. <div class="content">
  103. <dl class="settings">
  104. ';
  105. if (!empty($context['table_info']))
  106. echo '
  107. <dt>
  108. <strong>', $txt['search_method_messages_table_space'], ':</strong>
  109. </dt>
  110. <dd>
  111. ', $context['table_info']['data_length'], '
  112. </dd>
  113. <dt>
  114. <strong>', $txt['search_method_messages_index_space'], ':</strong>
  115. </dt>
  116. <dd>
  117. ', $context['table_info']['index_length'], '
  118. </dd>';
  119. echo '
  120. </dl>
  121. ', $context['double_index'] ? '<div class="noticebox">
  122. ' . $txt['search_double_index'] . '</div>' : '', '
  123. <fieldset class="search_settings floatleft">
  124. <legend>', $txt['search_index'], '</legend>
  125. <dl>
  126. <dt><input type="radio" name="search_index" value=""', empty($modSettings['search_index']) ? ' checked="checked"' : '', ' class="input_radio" />
  127. ', $txt['search_index_none'], '
  128. </dt>';
  129. if ($context['supports_fulltext'])
  130. {
  131. echo '
  132. <dt>
  133. <input type="radio" name="search_index" value="fulltext"', !empty($modSettings['search_index']) && $modSettings['search_index'] == 'fulltext' ? ' checked="checked"' : '', empty($context['fulltext_index']) ? ' onclick="alert(\'' . $txt['search_method_fulltext_warning'] . '\'); selectRadioByName(this.form.search_index, \'fulltext\');"': '', ' class="input_radio" />
  134. ', $txt['search_method_fulltext_index'], '
  135. </dt>
  136. <dd>
  137. <span class="smalltext">';
  138. if (empty($context['fulltext_index']) && empty($context['cannot_create_fulltext']))
  139. echo '
  140. <strong>', $txt['search_index_label'], ':</strong> ', $txt['search_method_no_index_exists'], ' [<a href="', $scripturl, '?action=admin;area=managesearch;sa=createfulltext;', $context['session_var'], '=', $context['session_id'], ';', $context['admin-msm_token_var'], '=', $context['admin-msm_token'], '">', $txt['search_method_fulltext_create'], '</a>]';
  141. elseif (empty($context['fulltext_index']) && !empty($context['cannot_create_fulltext']))
  142. echo '
  143. <strong>', $txt['search_index_label'], ':</strong> ', $txt['search_method_fulltext_cannot_create'];
  144. else
  145. echo '
  146. <strong>', $txt['search_index_label'], ':</strong> ', $txt['search_method_index_already_exists'], ' [<a href="', $scripturl, '?action=admin;area=managesearch;sa=removefulltext;', $context['session_var'], '=', $context['session_id'], ';', $context['admin-msm_token_var'], '=', $context['admin-msm_token'], '">', $txt['search_method_fulltext_remove'], '</a>]<br />
  147. <strong>', $txt['search_index_size'], ':</strong> ', $context['table_info']['fulltext_length'];
  148. echo '
  149. </span>
  150. </dd>';
  151. }
  152. echo '
  153. <dt>
  154. <input type="radio" name="search_index" value="custom"', !empty($modSettings['search_index']) && $modSettings['search_index'] == 'custom' ? ' checked="checked"' : '', $context['custom_index'] ? '' : ' onclick="alert(\'' . $txt['search_index_custom_warning'] . '\'); selectRadioByName(this.form.search_method, \'1\');"', ' class="input_radio" />
  155. ', $txt['search_index_custom'], '
  156. </dt>
  157. <dd>
  158. <span class="smalltext">';
  159. if ($context['custom_index'])
  160. echo '
  161. <strong>', $txt['search_index_label'], ':</strong> ', $txt['search_method_index_already_exists'], ' [<a href="', $scripturl, '?action=admin;area=managesearch;sa=removecustom;', $context['session_var'], '=', $context['session_id'], ';', $context['admin-msm_token_var'], '=', $context['admin-msm_token'], '">', $txt['search_index_custom_remove'], '</a>]<br />
  162. <strong>', $txt['search_index_size'], ':</strong> ', $context['table_info']['custom_index_length'];
  163. elseif ($context['partial_custom_index'])
  164. echo '
  165. <strong>', $txt['search_index_label'], ':</strong> ', $txt['search_method_index_partial'], ' [<a href="', $scripturl, '?action=admin;area=managesearch;sa=removecustom;', $context['session_var'], '=', $context['session_id'], ';', $context['admin-msm_token_var'], '=', $context['admin-msm_token'], '">', $txt['search_index_custom_remove'], '</a>] [<a href="', $scripturl, '?action=admin;area=managesearch;sa=createmsgindex;resume;', $context['session_var'], '=', $context['session_id'], ';', $context['admin-msm_token_var'], '=', $context['admin-msm_token'], '">', $txt['search_index_custom_resume'], '</a>]<br />
  166. <strong>', $txt['search_index_size'], ':</strong> ', $context['table_info']['custom_index_length'];
  167. else
  168. echo '
  169. <strong>', $txt['search_index_label'], ':</strong> ', $txt['search_method_no_index_exists'], ' [<a href="', $scripturl, '?action=admin;area=managesearch;sa=createmsgindex">', $txt['search_index_create_custom'], '</a>]';
  170. echo '
  171. </span>
  172. </dd>';
  173. foreach ($context['search_apis'] as $api)
  174. {
  175. if (empty($api['label']) || $api['has_template'])
  176. continue;
  177. echo '
  178. <dt>
  179. <input type="radio" name="search_index" value="', $api['setting_index'], '"', !empty($modSettings['search_index']) && $modSettings['search_index'] == $api['setting_index'] ? ' checked="checked"' : '', ' class="input_radio" />
  180. ', $api['label'] ,'
  181. </dt>';
  182. if ($api['desc'])
  183. echo '
  184. <dd>
  185. <span class="smalltext">', $api['desc'], '</span>
  186. </dd>';
  187. }
  188. echo '
  189. </dl>
  190. </fieldset>
  191. <fieldset class="search_settings floatright">
  192. <legend>', $txt['search_method'], '</legend>
  193. <input type="checkbox" name="search_force_index" id="search_force_index_check" value="1"', empty($modSettings['search_force_index']) ? '' : ' checked="checked"', ' class="input_check" /><label for="search_force_index_check">', $txt['search_force_index'], '</label><br />
  194. <input type="checkbox" name="search_match_words" id="search_match_words_check" value="1"', empty($modSettings['search_match_words']) ? '' : ' checked="checked"', ' class="input_check" /><label for="search_match_words_check">', $txt['search_match_words'], '</label>
  195. </fieldset>
  196. <hr class="hrcolor clear" />
  197. <input type="submit" name="save" value="', $txt['search_method_save'], '" class="button_submit" />
  198. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  199. <input type="hidden" name="', $context['admin-msmpost_token_var'], '" value="', $context['admin-msmpost_token'], '" />
  200. </div>
  201. </div>
  202. </form>
  203. </div>';
  204. }
  205. function template_create_index()
  206. {
  207. global $context, $settings, $options, $scripturl, $txt;
  208. echo '
  209. <div id="admincenter">
  210. <form action="', $scripturl, '?action=admin;area=managesearch;sa=createmsgindex;step=1" method="post" accept-charset="', $context['character_set'], '" name="create_index">
  211. <div class="cat_bar">
  212. <h3 class="catbg">', $txt['search_create_index'], '</h3>
  213. </div>
  214. <div class="windowbg">
  215. <div class="content">
  216. <dl class="settings">
  217. <dt>
  218. <label for="predefine_select">', $txt['search_predefined'], ':</label>
  219. </dt>
  220. <dd>
  221. <select name="bytes_per_word" id="predefine_select">
  222. <option value="2">', $txt['search_predefined_small'], '</option>
  223. <option value="4" selected="selected">', $txt['search_predefined_moderate'], '</option>
  224. <option value="5">', $txt['search_predefined_large'], '</option>
  225. </select>
  226. </dd>
  227. </dl>
  228. <hr class="hrcolor" />
  229. <input type="submit" name="save" value="', $txt['search_create_index_start'], '" class="button_submit" />
  230. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  231. </div>
  232. </div>
  233. </form>
  234. </div>';
  235. }
  236. function template_create_index_progress()
  237. {
  238. global $context, $settings, $options, $scripturl, $txt;
  239. echo '
  240. <div id="admincenter">
  241. <form action="', $scripturl, '?action=admin;area=managesearch;sa=createmsgindex;step=1" name="autoSubmit" method="post" accept-charset="', $context['character_set'], '">
  242. <div class="cat_bar">
  243. <h3 class="catbg">', $txt['search_create_index'], '</h3>
  244. </div>
  245. <div class="windowbg">
  246. <div class="content">
  247. <div><p>',
  248. $txt['search_create_index_not_ready'], '</p>
  249. <div class="progress_bar">
  250. <div class="full_bar">', $context['percentage'], '%</div>
  251. <div class="green_percent" style="width: ', $context['percentage'], '%;">&nbsp;</div>
  252. </div>
  253. </div>
  254. <hr class="hrcolor" />
  255. <input type="submit" name="b" value="', $txt['search_create_index_continue'], '" class="button_submit" />
  256. </div>
  257. </div>
  258. <input type="hidden" name="step" value="', $context['step'], '" />
  259. <input type="hidden" name="start" value="', $context['start'], '" />
  260. <input type="hidden" name="bytes_per_word" value="', $context['index_settings']['bytes_per_word'], '" />
  261. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  262. </form>
  263. </div>
  264. <script type="text/javascript"><!-- // --><![CDATA[
  265. var countdown = 10;
  266. doAutoSubmit();
  267. function doAutoSubmit()
  268. {
  269. if (countdown == 0)
  270. document.forms.autoSubmit.submit();
  271. else if (countdown == -1)
  272. return;
  273. document.forms.autoSubmit.b.value = "', $txt['search_create_index_continue'], ' (" + countdown + ")";
  274. countdown--;
  275. setTimeout("doAutoSubmit();", 1000);
  276. }
  277. // ]]></script>';
  278. }
  279. function template_create_index_done()
  280. {
  281. global $context, $settings, $options, $scripturl, $txt;
  282. echo '
  283. <div id="admincenter">
  284. <div class="cat_bar">
  285. <h3 class="catbg">', $txt['search_create_index'], '</h3>
  286. </div>
  287. <div class="windowbg">
  288. <div class="content">
  289. <p>', $txt['search_create_index_done'], '</p>
  290. <p>
  291. <strong><a href="', $scripturl, '?action=admin;area=managesearch;sa=method">', $txt['search_create_index_done_link'], '</a></strong>
  292. </p>
  293. </div>
  294. </div>
  295. </div>';
  296. }
  297. // Add or edit a search engine spider.
  298. function template_spider_edit()
  299. {
  300. global $context, $settings, $options, $scripturl, $txt;
  301. echo '
  302. <div id="admincenter">
  303. <form action="', $scripturl, '?action=admin;area=sengines;sa=editspiders;sid=', $context['spider']['id'], '" method="post" accept-charset="', $context['character_set'], '">
  304. <div class="cat_bar">
  305. <h3 class="catbg">', $context['page_title'], '</h3>
  306. </div>
  307. <div class="information">
  308. ', $txt['add_spider_desc'], '
  309. </div>
  310. <div class="windowbg">
  311. <div class="content">
  312. <dl class="settings">
  313. <dt>
  314. <strong><label for="spider_name">', $txt['spider_name'], ':</label></strong><br />
  315. <span class="smalltext">', $txt['spider_name_desc'], '</span>
  316. </dt>
  317. <dd>
  318. <input type="text" name="spider_name" id="spider_name" value="', $context['spider']['name'], '" class="input_text" />
  319. </dd>
  320. <dt>
  321. <strong><label for="spider_agent">', $txt['spider_agent'], ':</label></strong><br />
  322. <span class="smalltext">', $txt['spider_agent_desc'], '</span>
  323. </dt>
  324. <dd>
  325. <input type="text" name="spider_agent" id="spider_agent" value="', $context['spider']['agent'], '" class="input_text" />
  326. </dd>
  327. <dt>
  328. <strong><label for="spider_ip">', $txt['spider_ip_info'], ':</label></strong><br />
  329. <span class="smalltext">', $txt['spider_ip_info_desc'], '</span>
  330. </dt>
  331. <dd>
  332. <textarea name="spider_ip" id="spider_ip" rows="4" cols="20">', $context['spider']['ip_info'], '</textarea>
  333. </dd>
  334. </dl>
  335. <hr class="hrcolor" />
  336. <input type="submit" name="save" value="', $context['page_title'], '" class="button_submit" />
  337. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  338. <input type="hidden" name="', $context['admin-ses_token_var'], '" value="', $context['admin-ses_token'], '" />
  339. </div>
  340. </div>
  341. </form>
  342. </div>';
  343. }
  344. // Show... spider... logs...
  345. function template_show_spider_logs()
  346. {
  347. global $context, $txt, $settings, $scripturl;
  348. echo '
  349. <div id="admincenter">';
  350. // Standard fields.
  351. template_show_list('spider_logs');
  352. echo '
  353. <br class="clear" />
  354. <form id="admin_form_wrapper" action="', $scripturl, '?action=admin;area=sengines;sa=logs" method="post" accept-charset="', $context['character_set'], '">
  355. <div class="cat_bar">
  356. <h3 class="catbg">', $txt['spider_logs_delete'], '</h3>
  357. </div>
  358. <div class="windowbg">
  359. <div class="content">
  360. <p>
  361. ', $txt['spider_logs_delete_older'], '
  362. <input type="text" name="older" id="older" value="7" size="3" class="input_text" />
  363. ', $txt['spider_logs_delete_day'], '
  364. </p>
  365. <input type="submit" name="delete_entries" value="', $txt['spider_logs_delete_submit'], '" onclick="if (document.getElementById(\'older\').value &lt; 1 &amp;&amp; !confirm(\'' . addcslashes($txt['spider_logs_delete_confirm'], "'") . '\')) return false; return true;" class="button_submit" />
  366. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  367. <input type="hidden" name="', $context['admin-sl_token_var'], '" value="', $context['admin-sl_token'], '" />
  368. </div>
  369. </div>
  370. </form>
  371. </div>';
  372. }
  373. // Show... spider... stats...
  374. function template_show_spider_stats()
  375. {
  376. global $context, $txt, $settings, $scripturl;
  377. echo '
  378. <div id="admincenter">';
  379. // Standard fields.
  380. template_show_list('spider_stat_list');
  381. echo '
  382. <br />
  383. <div class="cat_bar">
  384. <h3 class="catbg">', $txt['spider_logs_delete'], '</h3>
  385. </div>
  386. <form action="', $scripturl, '?action=admin;area=sengines;sa=stats" method="post" accept-charset="', $context['character_set'], '">
  387. <div class="windowbg">
  388. <div class="content">
  389. <p>
  390. ', sprintf($txt['spider_stats_delete_older'], '<input type="text" name="older" id="older" value="90" size="3" class="input_text" />'), '
  391. </p>
  392. <hr class="hrcolor" />
  393. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  394. <input type="hidden" name="', $context['admin-ss_token_var'], '" value="', $context['admin-ss_token'], '" />
  395. <input type="submit" name="delete_entries" value="', $txt['spider_logs_delete_submit'], '" onclick="if (document.getElementById(\'older\').value &lt; 1 &amp;&amp; !confirm(\'' . addcslashes($txt['spider_logs_delete_confirm'], "'") . '\')) return false; return true;" class="button_submit" />
  396. <br />
  397. </div>
  398. </div>
  399. </form>
  400. </div>';
  401. }
  402. ?>