123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417 |
- <?php
- /**
- * Simple Machines Forum (SMF)
- *
- * @package SMF
- * @author Simple Machines
- * @copyright 2013 Simple Machines and individual contributors
- * @license http://www.simplemachines.org/about/smf/license.php BSD
- *
- * @version 2.1 Alpha 1
- */
- function template_sendbody()
- {
- global $context, $settings, $options, $txt;
- echo '<', '?xml version="1.0" encoding="', $context['character_set'], '"?', '>
- <smf>
- <message view="', $context['view'], '">', cleanXml($context['message']), '</message>
- </smf>';
- }
- function template_quotefast()
- {
- global $context, $settings, $options, $txt;
- echo '<', '?xml version="1.0" encoding="', $context['character_set'], '"?', '>
- <smf>
- <quote>', cleanXml($context['quote']['xml']), '</quote>
- </smf>';
- }
- function template_modifyfast()
- {
- global $context, $settings, $options, $txt;
- echo '<', '?xml version="1.0" encoding="', $context['character_set'], '"?', '>
- <smf>
- <subject><![CDATA[', cleanXml($context['message']['subject']), ']]></subject>
- <message id="msg_', $context['message']['id'], '"><![CDATA[', cleanXml($context['message']['body']), ']]></message>
- </smf>';
- }
- function template_modifydone()
- {
- global $context, $settings, $options, $txt;
- echo '<', '?xml version="1.0" encoding="', $context['character_set'], '"?', '>
- <smf>
- <message id="msg_', $context['message']['id'], '">';
- if (empty($context['message']['errors']))
- {
- echo '
- <modified><![CDATA[', empty($context['message']['modified']['time']) ? '' : cleanXml('« <em>' . sprintf($txt['last_edit_by'], $context['message']['modified']['time'], $context['message']['modified']['name']) . '</em> »'), ']]></modified>
- <subject is_first="', $context['message']['first_in_topic'] ? '1' : '0', '"><![CDATA[', cleanXml($context['message']['subject']), ']]></subject>
- <body><![CDATA[', $context['message']['body'], ']]></body>';
- }
- else
- echo '
- <error in_subject="', $context['message']['error_in_subject'] ? '1' : '0', '" in_body="', cleanXml($context['message']['error_in_body']) ? '1' : '0', '"><![CDATA[', implode('<br />', $context['message']['errors']), ']]></error>';
- echo '
- </message>
- </smf>';
- }
- function template_modifytopicdone()
- {
- global $context, $settings, $options, $txt;
- echo '<', '?xml version="1.0" encoding="', $context['character_set'], '"?', '>
- <smf>
- <message id="msg_', $context['message']['id'], '">';
- if (empty($context['message']['errors']))
- {
- echo '
- <modified><![CDATA[', empty($context['message']['modified']['time']) ? '' : cleanXml('« <em>' . sprintf($txt['last_edit_by'], $context['message']['modified']['time'], $context['message']['modified']['name']) . '</em> »'), ']]></modified>';
- if (!empty($context['message']['subject']))
- echo '
- <subject><![CDATA[', cleanXml($context['message']['subject']), ']]></subject>';
- }
- else
- echo '
- <error in_subject="', $context['message']['error_in_subject'] ? '1' : '0', '"><![CDATA[', cleanXml(implode('<br />', $context['message']['errors'])), ']]></error>';
- echo '
- </message>
- </smf>';
- }
- function template_post()
- {
- global $context, $settings, $options, $txt;
- echo '<', '?xml version="1.0" encoding="', $context['character_set'], '"?', '>
- <smf>
- <preview>
- <subject><![CDATA[', $context['preview_subject'], ']]></subject>
- <body><![CDATA[', $context['preview_message'], ']]></body>
- </preview>
- <errors serious="', empty($context['error_type']) || $context['error_type'] != 'serious' ? '0' : '1', '" topic_locked="', $context['locked'] ? '1' : '0', '">';
- if (!empty($context['post_error']))
- foreach ($context['post_error'] as $message)
- echo '
- <error><![CDATA[', cleanXml($message), ']]></error>';
- echo '
- <caption name="guestname" class="', isset($context['post_error']['long_name']) || isset($context['post_error']['no_name']) || isset($context['post_error']['bad_name']) ? 'error' : '', '" />
- <caption name="email" class="', isset($context['post_error']['no_email']) || isset($context['post_error']['bad_email']) ? 'error' : '', '" />
- <caption name="evtitle" class="', isset($context['post_error']['no_event']) ? 'error' : '', '" />
- <caption name="subject" class="', isset($context['post_error']['no_subject']) ? 'error' : '', '" />
- <caption name="question" class="', isset($context['post_error']['no_question']) ? 'error' : '', '" />', isset($context['post_error']['no_message']) || isset($context['post_error']['long_message']) ? '
- <post_error />' : '', '
- </errors>
- <last_msg>', isset($context['topic_last_message']) ? $context['topic_last_message'] : '0', '</last_msg>';
- if (!empty($context['previous_posts']))
- {
- echo '
- <new_posts>';
- foreach ($context['previous_posts'] as $post)
- echo '
- <post id="', $post['id'], '">
- <time><![CDATA[', $post['time'], ']]></time>
- <poster><![CDATA[', cleanXml($post['poster']), ']]></poster>
- <message><![CDATA[', cleanXml($post['message']), ']]></message>
- <is_ignored>', $post['is_ignored'] ? '1' : '0', '</is_ignored>
- </post>';
- echo '
- </new_posts>';
- }
- echo '
- </smf>';
- }
- function template_pm()
- {
- global $context, $settings, $options, $txt;
- // @todo something could be removed...otherwise it can be merged again with template_post
- echo '<', '?xml version="1.0" encoding="', $context['character_set'], '"?', '>
- <smf>
- <preview>
- <subject><![CDATA[', $context['preview_subject'], ']]></subject>
- <body><![CDATA[', $context['preview_message'], ']]></body>
- </preview>
- <errors serious="', empty($context['error_type']) || $context['error_type'] != 'serious' ? '0' : '1', '">';
- if (!empty($context['post_error']['messages']))
- foreach ($context['post_error']['messages'] as $message)
- echo '
- <error><![CDATA[', cleanXml($message), ']]></error>';
- echo '
- <caption name="to" class="', isset($context['post_error']['no_to']) ? 'error' : '', '" />
- <caption name="bbc" class="', isset($context['post_error']['no_bbc']) ? 'error' : '', '" />
- <caption name="subject" class="', isset($context['post_error']['no_subject']) ? 'error' : '', '" />
- <caption name="question" class="', isset($context['post_error']['no_question']) ? 'error' : '', '" />', isset($context['post_error']['no_message']) || isset($context['post_error']['long_message']) ? '
- <post_error />' : '', '
- </errors>';
- echo '
- </smf>';
- }
- function template_stats()
- {
- global $context, $settings, $options, $txt, $modSettings;
- echo '<', '?xml version="1.0" encoding="', $context['character_set'], '"?', '>
- <smf>';
- foreach ($context['yearly'] as $year)
- foreach ($year['months'] as $month)
- {
- echo '
- <month id="', $month['date']['year'], $month['date']['month'], '">';
- foreach ($month['days'] as $day)
- echo '
- <day date="', $day['year'], '-', $day['month'], '-', $day['day'], '" new_topics="', $day['new_topics'], '" new_posts="', $day['new_posts'], '" new_members="', $day['new_members'], '" most_members_online="', $day['most_members_online'], '"', empty($modSettings['hitStats']) ? '' : ' hits="' . $day['hits'] . '"', ' />';
- echo '
- </month>';
- }
- echo '
- </smf>';
- }
- function template_split()
- {
- global $context, $settings, $options;
- echo '<', '?xml version="1.0" encoding="', $context['character_set'], '"?', '>
- <smf>
- <pageIndex section="not_selected" startFrom="', $context['not_selected']['start'], '"><![CDATA[', $context['not_selected']['page_index'], ']]></pageIndex>
- <pageIndex section="selected" startFrom="', $context['selected']['start'], '"><![CDATA[', $context['selected']['page_index'], ']]></pageIndex>';
- foreach ($context['changes'] as $change)
- {
- if ($change['type'] == 'remove')
- echo '
- <change id="', $change['id'], '" curAction="remove" section="', $change['section'], '" />';
- else
- echo '
- <change id="', $change['id'], '" curAction="insert" section="', $change['section'], '">
- <subject><![CDATA[', cleanXml($change['insert_value']['subject']), ']]></subject>
- <time><![CDATA[', cleanXml($change['insert_value']['time']), ']]></time>
- <body><![CDATA[', cleanXml($change['insert_value']['body']), ']]></body>
- <poster><![CDATA[', cleanXml($change['insert_value']['poster']), ']]></poster>
- </change>';
- }
- echo '
- </smf>';
- }
- // This is just to hold off some errors if people are stupid.
- if (!function_exists('template_button_strip'))
- {
- function template_button_strip($button_strip, $direction = 'top', $strip_options = array())
- {
- }
- function template_menu()
- {
- }
- function theme_linktree()
- {
- }
- }
- function template_results()
- {
- global $context, $settings, $options, $txt;
- echo '<', '?xml version="1.0" encoding="', $context['character_set'], '"?', '>
- <smf>';
- if (empty($context['topics']))
- echo '
- <noresults>', $txt['search_no_results'], '</noresults>';
- else
- {
- echo '
- <results>';
- while ($topic = $context['get_topics']())
- {
- echo '
- <result>
- <id>', $topic['id'], '</id>
- <relevance>', $topic['relevance'], '</relevance>
- <board>
- <id>', $topic['board']['id'], '</id>
- <name>', cleanXml($topic['board']['name']), '</name>
- <href>', $topic['board']['href'], '</href>
- </board>
- <category>
- <id>', $topic['category']['id'], '</id>
- <name>', cleanXml($topic['category']['name']), '</name>
- <href>', $topic['category']['href'], '</href>
- </category>
- <messages>';
- foreach ($topic['matches'] as $message)
- {
- echo '
- <message>
- <id>', $message['id'], '</id>
- <subject><![CDATA[', cleanXml($message['subject_highlighted'] != '' ? $message['subject_highlighted'] : $message['subject']), ']]></subject>
- <body><![CDATA[', cleanXml($message['body_highlighted'] != '' ? $message['body_highlighted'] : $message['body']), ']]></body>
- <time>', $message['time'], '</time>
- <timestamp>', $message['timestamp'], '</timestamp>
- <start>', $message['start'], '</start>
- <author>
- <id>', $message['member']['id'], '</id>
- <name>', cleanXml($message['member']['name']), '</name>
- <href>', $message['member']['href'], '</href>
- </author>
- </message>';
- }
- echo '
- </messages>
- </result>';
- }
- echo '
- </results>';
- }
- echo '
- </smf>';
- }
- function template_jump_to()
- {
- global $context, $settings, $options;
- echo '<', '?xml version="1.0" encoding="', $context['character_set'], '"?', '>
- <smf>';
- foreach ($context['jump_to'] as $category)
- {
- echo '
- <item type="category" id="', $category['id'], '"><![CDATA[', cleanXml($category['name']), ']]></item>';
- foreach ($category['boards'] as $board)
- echo '
- <item type="board" id="', $board['id'], '" childlevel="', $board['child_level'], '"><![CDATA[', cleanXml($board['name']), ']]></item>';
- }
- echo '
- </smf>';
- }
- function template_message_icons()
- {
- global $context, $settings, $options;
- echo '<', '?xml version="1.0" encoding="', $context['character_set'], '"?', '>
- <smf>';
- foreach ($context['icons'] as $icon)
- echo '
- <icon value="', $icon['value'], '" url="', $icon['url'], '"><![CDATA[', cleanXml($icon['name']), ']]></icon>';
- echo '
- </smf>';
- }
- function template_check_username()
- {
- global $context, $settings, $options, $txt;
- echo '<', '?xml version="1.0" encoding="', $context['character_set'], '"?', '>
- <smf>
- <username valid="', $context['valid_username'] ? 1 : 0, '">', cleanXml($context['checked_username']), '</username>
- </smf>';
- }
- // This prints XML in it's most generic form.
- function template_generic_xml()
- {
- global $context, $settings, $options, $txt;
- echo '<', '?xml version="1.0" encoding="', $context['character_set'], '"?', '>';
- // Show the data.
- template_generic_xml_recursive($context['xml_data'], 'smf', '', -1);
- }
- // Recursive function for displaying generic XML data.
- function template_generic_xml_recursive($xml_data, $parent_ident, $child_ident, $level)
- {
- // This is simply for neat indentation.
- $level++;
- echo "\n" . str_repeat("\t", $level), '<', $parent_ident, '>';
- foreach ($xml_data as $key => $data)
- {
- // A group?
- if (is_array($data) && isset($data['identifier']))
- template_generic_xml_recursive($data['children'], $key, $data['identifier'], $level);
- // An item...
- elseif (is_array($data) && isset($data['value']))
- {
- echo "\n", str_repeat("\t", $level), '<', $child_ident;
- if (!empty($data['attributes']))
- foreach ($data['attributes'] as $k => $v)
- echo ' ' . $k . '="' . $v . '"';
- echo '><![CDATA[', cleanXml($data['value']), ']]></', $child_ident, '>';
- }
- }
- echo "\n", str_repeat("\t", $level), '</', $parent_ident, '>';
- }
- function template_webslice_header_above()
- {
- global $settings;
- echo '
- <link rel="stylesheet" href="', $settings['default_theme_url'], '/css/wireless.css" type="text/css" />';
- }
- function template_webslice_header_below()
- {
- }
- // This shows a webslice of the recent posts.
- function template_webslice_recent_posts()
- {
- global $context, $scripturl, $txt;
- echo '
- <div style="width: 100%; height: 100%; border: 1px solid black; padding: 0; margin: 0 0 0 0; font: 100.01%/100% Verdana, Helvetica, sans-serif;">
- <div style="background-color: #080436; color: #ffffff; padding: 4px;">
- ', cleanXml($txt['recent_posts']), '
- </div>';
- $alternate = 0;
- foreach ($context['recent_posts_data'] as $item)
- {
- echo '
- <div style="background-color: ', $alternate ? '#ECEDF3' : '#F6F6F6', '; font-size: 90%; padding: 2px;">
- <strong><a href="', $item['link'], '">', cleanXml($item['subject']), '</a></strong> ', cleanXml($txt['by']), ' ', cleanXml(!empty($item['poster']['link']) ? '<a href="' . $item['poster']['link'] . '">' . $item['poster']['name'] . '</a>' : $item['poster']['name']), '
- </div>';
- $alternate = !$alternate;
- }
- echo '
- </div>
- <div style="width: 100%; height: 100%; border: 0; padding: 0; margin: 0 0 0 0; font: 100.01%/100% Verdana, Helvetica, sans-serif;">
- <div style="font-size: xx-small;" class="righttext">';
- if ($context['user']['is_guest'])
- echo '
- <a href="', $scripturl, '?action=login">', $txt['login'], '</a>';
- else
- echo '
- ', cleanXml($context['user']['name']), cleanXml(!empty($context['can_pm_read']) ? ', ' . (empty($context['user']['messages']) ? $txt['msg_alert_no_messages'] : (($context['user']['messages'] == 1 ? sprintf($txt['msg_alert_one_message'], $scripturl . '?action=pm') : sprintf($txt['msg_alert_many_message'], $scripturl . '?action=pm', $context['user']['messages'])) . ', ' . ($context['user']['unread_messages'] == 1 ? $txt['msg_alert_one_new'] : sprintf($txt['msg_alert_many_new'], $context['user']['unread_messages'])))) : '');
- echo '
- </div>
- </div>';
- }
- ?>
|