PATH:
home
/
sudairsocs
/
www
/
forum
/
Themes
/
default
<?php /** * Simple Machines Forum (SMF) * * @package SMF * @author Simple Machines https://www.simplemachines.org * @copyright 2022 Simple Machines and individual contributors * @license https://www.simplemachines.org/about/smf/license.php BSD * * @version 2.1.0 */ /** * The template for adding or editing a subscription. */ function template_modify_subscription() { global $context, $scripturl, $txt, $modSettings; echo ' <form action="', $scripturl, '?action=admin;area=paidsubscribe;sa=modify;sid=', $context['sub_id'], '" method="post">'; if (!empty($context['disable_groups'])) echo ' <div class="noticebox">', $txt['paid_mod_edit_note'], '</div>'; echo ' <div class="cat_bar"> <h3 class="catbg">', $txt['paid_' . $context['action_type'] . '_subscription'], '</h3> </div> <div class="windowbg"> <dl class="settings"> <dt> ', $txt['paid_mod_name'], ': </dt> <dd> <input type="text" name="name" value="', $context['sub']['name'], '" size="30"> </dd> <dt> ', $txt['paid_mod_desc'], ': </dt> <dd> <textarea name="desc" rows="3" cols="40">', $context['sub']['desc'], '</textarea> </dd> <dt> <label for="repeatable_check">', $txt['paid_mod_repeatable'], '</label>: </dt> <dd> <input type="checkbox" name="repeatable" id="repeatable_check"', empty($context['sub']['repeatable']) ? '' : ' checked', '> </dd> <dt> <label for="activated_check">', $txt['paid_mod_active'], '</label>:<br><span class="smalltext">', $txt['paid_mod_active_desc'], '</span> </dt> <dd> <input type="checkbox" name="active" id="activated_check"', empty($context['sub']['active']) ? '' : ' checked', '> </dd> </dl> <hr> <dl class="settings"> <dt> ', $txt['paid_mod_prim_group'], ':<br> <span class="smalltext">', $txt['paid_mod_prim_group_desc'], '</span> </dt> <dd> <select name="prim_group"', !empty($context['disable_groups']) ? ' disabled' : '', '> <option value="0"', $context['sub']['prim_group'] == 0 ? ' selected' : '', '>', $txt['paid_mod_no_group'], '</option>'; // Put each group into the box. foreach ($context['groups'] as $id => $name) echo ' <option value="', $id, '"', $context['sub']['prim_group'] == $id ? ' selected' : '', '>', $name, '</option>'; echo ' </select> </dd> <dt> ', $txt['paid_mod_add_groups'], ':<br> <span class="smalltext">', $txt['paid_mod_add_groups_desc'], '</span> </dt> <dd>'; // Put a checkbox in for each group foreach ($context['groups'] as $id => $name) echo ' <label for="addgroup_', $id, '"> <input type="checkbox" id="addgroup_', $id, '" name="addgroup[', $id, ']"', in_array($id, $context['sub']['add_groups']) ? ' checked' : '', !empty($context['disable_groups']) ? ' disabled' : '', '> <span class="smalltext">', $name, '</span> </label><br>'; echo ' </dd> <dt> ', $txt['paid_mod_reminder'], ':<br> <span class="smalltext">', $txt['paid_mod_reminder_desc'], ' ', $txt['zero_to_disable'], '</span> </dt> <dd> <input type="number" name="reminder" value="', $context['sub']['reminder'], '" size="6"> </dd> <dt> ', $txt['paid_mod_email'], ':<br> <span class="smalltext">', $txt['paid_mod_email_desc'], '</span> </dt> <dd> <textarea name="emailcomplete" rows="6" cols="40">', $context['sub']['email_complete'], '</textarea> </dd> </dl> <hr> <input type="radio" name="duration_type" id="duration_type_fixed" value="fixed"', empty($context['sub']['duration']) || $context['sub']['duration'] == 'fixed' ? ' checked' : '', ' onclick="toggleDuration(\'fixed\');"> <strong><label for="duration_type_fixed">', $txt['paid_mod_fixed_price'], '</label></strong> <br> <div id="fixed_area" ', empty($context['sub']['duration']) || $context['sub']['duration'] == 'fixed' ? '' : 'style="display: none;"', '> <fieldset> <dl class="settings"> <dt> ', $txt['paid_cost'], ' (', str_replace('%1.2f', '', $modSettings['paid_currency_symbol']), '): </dt> <dd> <input type="number" step="0.01" name="cost" value="', empty($context['sub']['cost']['fixed']) ? '' : $context['sub']['cost']['fixed'], '" placeholder="0.00" size="4"> </dd> <dt> ', $txt['paid_mod_span'], ': </dt> <dd> <input type="number" name="span_value" value="', $context['sub']['span']['value'], '" size="4"> <select name="span_unit"> <option value="D"', $context['sub']['span']['unit'] == 'D' ? ' selected' : '', '>', $txt['paid_mod_span_days'], '</option> <option value="W"', $context['sub']['span']['unit'] == 'W' ? ' selected' : '', '>', $txt['paid_mod_span_weeks'], '</option> <option value="M"', $context['sub']['span']['unit'] == 'M' ? ' selected' : '', '>', $txt['paid_mod_span_months'], '</option> <option value="Y"', $context['sub']['span']['unit'] == 'Y' ? ' selected' : '', '>', $txt['paid_mod_span_years'], '</option> </select> </dd> </dl> </fieldset> </div><!-- #fixed_area --> <input type="radio" name="duration_type" id="duration_type_flexible" value="flexible"', !empty($context['sub']['duration']) && $context['sub']['duration'] == 'flexible' ? ' checked' : '', ' onclick="toggleDuration(\'flexible\');"> <strong><label for="duration_type_flexible">', $txt['paid_mod_flexible_price'], '</label></strong> <br> <div id="flexible_area" ', !empty($context['sub']['duration']) && $context['sub']['duration'] == 'flexible' ? '' : 'style="display: none;"', '> <fieldset>'; echo ' <div class="information"> <strong>', $txt['paid_mod_price_breakdown'], '</strong><br> ', $txt['paid_mod_price_breakdown_desc'], ' </div> <dl class="settings"> <dt> <strong>', $txt['paid_duration'], '</strong> </dt> <dd> <strong>', $txt['paid_cost'], ' (', preg_replace('~%[df\.\d]+~', '', $modSettings['paid_currency_symbol']), ')</strong> </dd> <dt> ', $txt['paid_per_day'], ': </dt> <dd> <input type="number" step="0.01" name="cost_day" value="', empty($context['sub']['cost']['day']) ? '0' : $context['sub']['cost']['day'], '" size="5"> </dd> <dt> ', $txt['paid_per_week'], ': </dt> <dd> <input type="number" step="0.01" name="cost_week" value="', empty($context['sub']['cost']['week']) ? '0' : $context['sub']['cost']['week'], '" size="5"> </dd> <dt> ', $txt['paid_per_month'], ': </dt> <dd> <input type="number" step="0.01" name="cost_month" value="', empty($context['sub']['cost']['month']) ? '0' : $context['sub']['cost']['month'], '" size="5"> </dd> <dt> ', $txt['paid_per_year'], ': </dt> <dd> <input type="number" step="0.01" name="cost_year" value="', empty($context['sub']['cost']['year']) ? '0' : $context['sub']['cost']['year'], '" size="5"> </dd> </dl> </fieldset> </div><!-- #flexible_area --> <input type="submit" name="save" value="', $txt['paid_settings_save'], '" class="button"> <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> <input type="hidden" name="', $context['admin-pms_token_var'], '" value="', $context['admin-pms_token'], '"> </div><!-- .windowbg --> </form>'; } /** * The page for deleting a subscription. */ function template_delete_subscription() { global $context, $scripturl, $txt; echo ' <form action="', $scripturl, '?action=admin;area=paidsubscribe;sa=modify;sid=', $context['sub_id'], ';delete" method="post"> <div class="cat_bar"> <h3 class="catbg">', $txt['paid_delete_subscription'], '</h3> </div> <div class="windowbg"> <p>', $txt['paid_mod_delete_warning'], '</p> <input type="submit" name="delete_confirm" value="', $txt['paid_delete_subscription'], '" class="button"> <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> <input type="hidden" name="', $context['admin-pmsd_token_var'], '" value="', $context['admin-pmsd_token'], '"> </div> </form>'; } /** * Add or edit an existing subscriber. */ function template_modify_user_subscription() { global $context, $scripturl, $txt; // Some quickly stolen javascript from Post, could do with being more efficient :) echo ' <script> var monthLength = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; </script>'; echo ' <form action="', $scripturl, '?action=admin;area=paidsubscribe;sa=modifyuser;sid=', $context['sub_id'], ';lid=', $context['log_id'], '" method="post"> <div class="cat_bar"> <h3 class="catbg"> ', $txt['paid_' . $context['action_type'] . '_subscription'], ' - ', $context['current_subscription']['name'], ' ', empty($context['sub']['username']) ? '' : ' (' . $txt['user'] . ': ' . $context['sub']['username'] . ')', ' </h3> </div> <div class="windowbg"> <dl class="settings">'; // Do we need a username? if ($context['action_type'] == 'add') echo ' <dt> <strong>', $txt['paid_username'], ':</strong><br> <span class="smalltext">', $txt['one_username'], '</span> </dt> <dd> <input type="text" name="name" id="name_control" value="', $context['sub']['username'], '" size="30"> </dd>'; echo ' <dt> <strong>', $txt['paid_status'], ':</strong> </dt> <dd> <select name="status"> <option value="0"', $context['sub']['status'] == 0 ? ' selected' : '', '>', $txt['paid_finished'], '</option> <option value="1"', $context['sub']['status'] == 1 ? ' selected' : '', '>', $txt['paid_active'], '</option> </select> </dd> </dl> <fieldset> <legend>', $txt['start_date_and_time'], '</legend> <select name="year" id="year" onchange="generateDays();">'; // Show a list of all the years we allow... for ($year = 2005; $year <= 2030; $year++) echo ' <option value="', $year, '"', $year == $context['sub']['start']['year'] ? ' selected' : '', '>', $year, '</option>'; echo ' </select> ', (isset($txt['calendar_month']) ? $txt['calendar_month'] : $txt['calendar_month']), ' <select name="month" id="month" onchange="generateDays();">'; // There are 12 months per year - ensure that they all get listed. for ($month = 1; $month <= 12; $month++) echo ' <option value="', $month, '"', $month == $context['sub']['start']['month'] ? ' selected' : '', '>', $txt['months'][$month], '</option>'; echo ' </select> ', (isset($txt['calendar_day']) ? $txt['calendar_day'] : $txt['calendar_day']), ' <select name="day" id="day">'; // This prints out all the days in the current month - this changes dynamically as we switch months. for ($day = 1; $day <= $context['sub']['start']['last_day']; $day++) echo ' <option value="', $day, '"', $day == $context['sub']['start']['day'] ? ' selected' : '', '>', $day, '</option>'; echo ' </select> ', $txt['hour'], ': <input type="text" name="hour" value="', $context['sub']['start']['hour'], '" size="2"> ', $txt['minute'], ': <input type="text" name="minute" value="', $context['sub']['start']['min'], '" size="2"> </fieldset> <fieldset> <legend>', $txt['end_date_and_time'], '</legend> <select name="yearend" id="yearend" onchange="generateDays(\'end\');">'; // Show a list of all the years we allow... for ($year = 2005; $year <= 2030; $year++) echo ' <option value="', $year, '"', $year == $context['sub']['end']['year'] ? ' selected' : '', '>', $year, '</option>'; echo ' </select> ', (isset($txt['calendar_month']) ? $txt['calendar_month'] : $txt['calendar_month']), ' <select name="monthend" id="monthend" onchange="generateDays(\'end\');">'; // There are 12 months per year - ensure that they all get listed. for ($month = 1; $month <= 12; $month++) echo ' <option value="', $month, '"', $month == $context['sub']['end']['month'] ? ' selected' : '', '>', $txt['months'][$month], '</option>'; echo ' </select> ', (isset($txt['calendar_day']) ? $txt['calendar_day'] : $txt['calendar_day']), ' <select name="dayend" id="dayend">'; // This prints out all the days in the current month - this changes dynamically as we switch months. for ($day = 1; $day <= $context['sub']['end']['last_day']; $day++) echo ' <option value="', $day, '"', $day == $context['sub']['end']['day'] ? ' selected' : '', '>', $day, '</option>'; echo ' </select> ', $txt['hour'], ': <input type="number" name="hourend" value="', $context['sub']['end']['hour'], '" size="2"> ', $txt['minute'], ': <input type="number" name="minuteend" value="', $context['sub']['end']['min'], '" size="2"> </fieldset> <input type="submit" name="save_sub" value="', $txt['paid_settings_save'], '" class="button"> </div><!-- .windowbg --> <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> </form> <script> var oAddMemberSuggest = new smc_AutoSuggest({ sSelf: \'oAddMemberSuggest\', sSessionId: smf_session_id, sSessionVar: smf_session_var, sSuggestId: \'name_subscriber\', sControlId: \'name_control\', sSearchType: \'member\', sTextDeleteItem: \'', $txt['autosuggest_delete_item'], '\', bItemList: false }); </script>'; if (!empty($context['pending_payments'])) { echo ' <div class="cat_bar"> <h3 class="catbg">', $txt['pending_payments'], '</h3> </div> <div class="information"> ', $txt['pending_payments_desc'], ' </div> <div class="cat_bar"> <h3 class="catbg">', $txt['pending_payments_value'], '</h3> </div> <div class="windowbg"> <ul>'; foreach ($context['pending_payments'] as $id => $payment) echo ' <li> ', $payment['desc'], ' <span class="floatleft"> <a href="', $scripturl, '?action=admin;area=paidsubscribe;sa=modifyuser;lid=', $context['log_id'], ';pending=', $id, ';accept">', $txt['pending_payments_accept'], '</a> </span> <span class="floatright"> <a href="', $scripturl, '?action=admin;area=paidsubscribe;sa=modifyuser;lid=', $context['log_id'], ';pending=', $id, ';remove">', $txt['pending_payments_remove'], '</a> </span> </li>'; echo ' </ul>'; } echo ' </div>'; } /** * Template for a user to edit/pick their subscriptions. */ function template_user_subscription() { global $context, $txt, $scripturl, $modSettings; echo ' <div id="paid_subscription"> <form action="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=subscriptions;confirm" method="post"> <div class="cat_bar"> <h3 class="catbg">', $txt['subscriptions'], '</h3> </div>'; if (empty($context['subscriptions'])) echo ' <div class="information"> ', $txt['paid_subs_none'], ' </div>'; else { echo ' <div class="information"> ', $txt['paid_subs_desc'], ' </div>'; // Print out all the subscriptions. foreach ($context['subscriptions'] as $id => $subscription) { // Ignore the inactive ones... if (empty($subscription['active'])) continue; echo ' <div class="cat_bar"> <h3 class="catbg">', $subscription['name'], '</h3> </div> <div class="windowbg"> <p><strong>', $subscription['name'], '</strong></p> <p class="smalltext">', $subscription['desc'], '</p>'; if (!$subscription['flexible']) echo ' <div><strong>', $txt['paid_duration'], ':</strong> ', $subscription['length'], '</div>'; if ($context['user']['is_owner']) { echo ' <strong>', $txt['paid_cost'], ':</strong>'; if ($subscription['flexible']) { echo ' <select name="cur[', $subscription['id'], ']">'; // Print out the costs for this one. foreach ($subscription['costs'] as $duration => $value) echo ' <option value="', $duration, '">', sprintf($modSettings['paid_currency_symbol'], $value), '/', $txt[$duration], '</option>'; echo ' </select>'; } else echo ' ', sprintf($modSettings['paid_currency_symbol'], $subscription['costs']['fixed']); echo ' <hr> <input type="submit" name="sub_id[', $subscription['id'], ']" value="', $txt['paid_order'], '" class="button">'; } else echo ' <a href="', $scripturl, '?action=admin;area=paidsubscribe;sa=modifyuser;sid=', $subscription['id'], ';uid=', $context['member']['id'], (empty($context['current'][$subscription['id']]) ? '' : ';lid=' . $context['current'][$subscription['id']]['id']), '">', empty($context['current'][$subscription['id']]) ? $txt['paid_admin_add'] : $txt['paid_edit_subscription'], '</a>'; echo ' </div><!-- .windowbg -->'; } } echo ' </form> <br class="clear"> <div class="cat_bar"> <h3 class="catbg">', $txt['paid_current'], '</h3> </div> <div class="information"> ', $txt['paid_current_desc'], ' </div> <table class="table_grid"> <thead> <tr class="title_bar"> <th style="width: 30%">', $txt['paid_name'], '</th> <th>', $txt['paid_status'], '</th> <th>', $txt['start_date'], '</th> <th>', $txt['end_date'], '</th> </tr> </thead> <tbody>'; if (empty($context['current'])) echo ' <tr class="windowbg"> <td colspan="4"> ', $txt['paid_none_yet'], ' </td> </tr>'; foreach ($context['current'] as $sub) { if (!$sub['hide']) echo ' <tr class="windowbg"> <td> ', ($context['user']['is_admin'] ? '<a href="' . $scripturl . '?action=admin;area=paidsubscribe;sa=modifyuser;lid=' . $sub['id'] . '">' . $sub['name'] . '</a>' : $sub['name']), ' </td> <td> <span style="color: ', ($sub['status'] == 2 ? 'green' : ($sub['status'] == 1 ? 'red' : 'orange')), '"><strong>', $sub['status_text'], '</strong></span> </td> <td>', $sub['start'], '</td> <td>', $sub['end'], '</td> </tr>'; } echo ' </tbody> </table> </div><!-- #paid_subscription -->'; } /** * The "choose payment" dialog. */ function template_choose_payment() { global $context, $txt; echo ' <div id="paid_subscription"> <div class="cat_bar"> <h3 class="catbg">', $txt['paid_confirm_payment'], '</h3> </div> <div class="information"> ', $txt['paid_confirm_desc'], ' </div> <div class="windowbg"> <dl class="settings"> <dt> <strong>', $txt['subscription'], ':</strong> </dt> <dd> ', $context['sub']['name'], ' </dd> <dt> <strong>', $txt['paid_cost'], ':</strong> </dt> <dd> ', $context['cost'], ' </dd> </dl> </div>'; // Do all the gateway options. foreach ($context['gateways'] as $gateway) { echo ' <div class="cat_bar"> <h3 class="catbg">', $gateway['title'], '</h3> </div> <div class="windowbg"> ', $gateway['desc'], '<br> <form action="', $gateway['form'], '" method="post">'; if (!empty($gateway['javascript'])) echo ' <script> ', $gateway['javascript'], ' </script>'; foreach ($gateway['hidden'] as $name => $value) echo ' <input type="hidden" id="', $gateway['id'], '_', $name, '" name="', $name, '" value="', $value, '">'; echo ' <br> <input type="submit" value="', $gateway['submit'], '" class="button"> </form> </div>'; } echo ' </div><!-- #paid_subscription --> <br class="clear">'; } /** * The "thank you" bit... */ function template_paid_done() { global $context, $txt, $scripturl; echo ' <div id="paid_subscription"> <div class="cat_bar"> <h3 class="catbg">', $txt['paid_done'], '</h3> </div> <div class="windowbg"> <p>', $txt['paid_done_desc'], '</p> <br> <a href="', $scripturl, '?action=profile;u=', $context['member']['id'], ';area=subscriptions">', $txt['paid_sub_return'], '</a> </div> </div>'; } ?>
[+]
..
[-] index.template.php~
[edit]
[-] license.txt
[edit]
[+]
languages
[-] index.template.php
[edit]
[-] SplitTopics.template.php
[edit]
[-] Register.template.php~
[edit]
[-] index.php
[edit]
[+]
images
[-] ManageNews.template.php
[edit]
[+]
fonts
[-] BoardIndex.template.php
[edit]
[-] ManageMail.template.php
[edit]
[-] PersonalMessage.template.php~
[edit]
[-] Calendar.template.php
[edit]
[-] Who.template.php
[edit]
[-] Reports.template.php
[edit]
[-] Printpage.template.php
[edit]
[-] Memberlist.template.php~
[edit]
[-] Display.template.php~
[edit]
[-] ManageScheduledTasks.template.php
[edit]
[-] ManageLanguages.template.php
[edit]
[-] SendTopic.template.php
[edit]
[-] Likes.template.php
[edit]
[-] Xml.template.php~
[edit]
[-] ReportedContent.template.php
[edit]
[-] Notify.template.php
[edit]
[-] Memberlist.template.php
[edit]
[-] ManagePaid.template.php
[edit]
[-] ModerationCenter.template.php
[edit]
[-] Recent.template.php
[edit]
[-] ManageMembergroups.template.php
[edit]
[-] ManageCalendar.template.php
[edit]
[-] Errors.template.php
[edit]
[-] Themes.template.php
[edit]
[-] Post.template.php
[edit]
[-] GenericList.template.php
[edit]
[-] Poll.template.php
[edit]
[-] ManageMembers.template.php
[edit]
[-] Admin.template.php
[edit]
[+]
scripts
[-] Login.template.php~
[edit]
[-] GenericControls.template.php
[edit]
[-] PersonalMessage.template.php
[edit]
[-] Admin.template.php~
[edit]
[-] Settings.template.php
[edit]
[-] Display.template.php
[edit]
[-] ReportToMod.template.php
[edit]
[-] Wireless.template.php
[edit]
[-] MessageIndex.template.php
[edit]
[-] Login.template.php
[edit]
[-] Reminder.template.php
[edit]
[-] ManageNews.template.php~
[edit]
[-] Search.template.php
[edit]
[-] ManageAttachments.template.php
[edit]
[-] Search.template.php~
[edit]
[-] Packages.template.php
[edit]
[-] Profile.template.php
[edit]
[-] ManageMaintenance.template.php
[edit]
[-] GenericMenu.template.php
[edit]
[-] Wireless.template.php~
[edit]
[-] ManageSearch.template.php
[edit]
[-] Notify.template.php~
[edit]
[-] MoveTopic.template.php
[edit]
[-] GenericControls.template.php~
[edit]
[-] Profile.template.php~
[edit]
[+]
css
[-] ManageSmileys.template.php
[edit]
[-] Compat.template.php
[edit]
[-] ManageBoards.template.php
[edit]
[-] Xml.template.php
[edit]
[-] ManageBans.template.php
[edit]
[-] Agreement.template.php
[edit]
[-] Register.template.php
[edit]
[-] Stats.template.php
[edit]
[-] ManagePermissions.template.php
[edit]
[-] Help.template.php
[edit]