| Server IP : 172.67.201.108 / Your IP : 216.73.216.11 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/mitzvahm/planner/mod/ |
Upload File : |
<?php include('_mod_security.php'); ?>
<?php
$ar_help_sections = array(
events => array(section => 'Bar/Bat Mitzvah Events'),
event_form_event => array(section => 'Event Page Information Tabs'),
event_form_temple => array(section => 'Event Page Activity Tabs'),
account_form_general => array(section => 'My Account - General Information Tab'),
account_form_password => array(section => 'My Account - Change Password Tab'),
account_form_payments => array(section => 'My Account - Payment History Tab'),
guest_quick_entry_general => array(section => 'Guest Quick Entry'),
guest_form_general => array(section => 'Guest Full Entry - General Information Tab'),
guest_form_tables => array(section => 'Guest Full Entry - Table Assignment Tab'),
guest_form_gifts => array(section => 'Guest Full Entry - Gifts Tab'),
invitation_inserts => array(section => 'Invitation Insert List'),
invitation_insert_form_general => array(section => 'Invitation Insert Entry'),
invitations => array(section => 'Invitation Worksheet'),
rsvp => array(section => 'RSVP Worksheet'),
hotel => array(section => 'Hotel Worksheet'),
bus => array(section => 'Bus Worksheet'),
gifts => array(section => 'Gift Received Worksheet'),
data_import => array(section => 'Import Guests from Excel<sup>®</sup>'),
vendors => array(section => 'Vendor List'),
vendor_form_general => array(section => 'Vendor Entry - General Information Tab'),
vendor_form_proposals => array(section => 'Vendor Entry - Proposals Tab'),
vendor_form_references => array(section => 'Vendor Entry - References Tab'),
vendor_form_documents => array(section => 'Vendor Entry - Documents Tab'),
budget => array(section => 'Budget'),
budget_form_general => array(section => 'Budget Category Entry'),
tables => array(section => 'Table List'),
table_form_general => array(section => 'Table Entry - General Information Tab'),
table_form_assignment => array(section => 'Table Entry - Guest Assignment Tab'),
table_assign => array(section => 'Table Seating Assignment / Room Layout Worksheet'),
placecards => array(section => 'Place Cards Worksheet'),
food => array(section => 'Food Selection Worksheet'),
candles => array(section => 'Candle Lighting Worksheet'),
songs => array(section => 'Song List Worksheet'),
favors => array(section => 'Favor Definition List'),
favors_form_general => array(section => 'Favor Definition Entry'),
favorlist => array(section => 'Favor List Worksheet'),
honors => array(section => 'Ceremony Honors Worksheet'),
reports => array(section => 'Reports'),
labels => array(section => 'Labels'),
envelopes => array(section => 'Envelopes'),
notes => array(section => 'Notes'),
);
?>
<script>
var active_tab = '';
$(document).ready(function()
{
$("#tab_content_general").show();
}
)
</script>
<h1>Help</h1>
<div class="cleardiv">
</div>
<div class="form_strip" style="border:none;">
<form>
<input type="button" value="Print" onclick="printSection('tab_content_general');" />
<?php
if ($_SESSION['logged_in'] == true) :
?>
<input type="button" value="PDF" onclick="pdfSection('tab_content_general', 0);" />
<?php
endif;
?>
</form>
</div>
<div class="tab_content" id="tab_content_general" style="max-height:600px; overflow:auto; margin-top:0px;">
<a name="Top"></a>
<h3>Table of Contents</h3>
<ul>
<?php
foreach ($ar_help_sections as $key => $value) :
echo '<li><a href="#anchor_'.$key.'">'.$value['section'].'</a></li>';
endforeach;
?>
</ul>
<?php
foreach ($ar_help_sections as $key => $value) :
echo '<a name="anchor_'.$key.'"></a>';
echo '<h3>'.$value['section'].'</h3>';
echo get_text('help_'.$key);
echo '<a href="#Top">Back to top...</a>';
endforeach;
?>
</div>