phpBMS

root/trunk/phpbms/help/index.php @ 205

Revision 205, 8.5 kB (checked in by brieb, 3 years ago)

Updated XHTML compliance

  • Property svn:keywords set to LastChangedBy LastChangedDate LastChangedRevision
Line 
1<?php 
2/*
3 $Rev$ | $LastChangedBy$
4 $LastChangedDate$
5 +-------------------------------------------------------------------------+
6 | Copyright (c) 2004 - 2007, Kreotek LLC                                  |
7 | All rights reserved.                                                    |
8 +-------------------------------------------------------------------------+
9 |                                                                         |
10 | Redistribution and use in source and binary forms, with or without      |
11 | modification, are permitted provided that the following conditions are  |
12 | met:                                                                    |
13 |                                                                         |
14 | - Redistributions of source code must retain the above copyright        |
15 |   notice, this list of conditions and the following disclaimer.         |
16 |                                                                         |
17 | - Redistributions in binary form must reproduce the above copyright     |
18 |   notice, this list of conditions and the following disclaimer in the   |
19 |   documentation and/or other materials provided with the distribution.  |
20 |                                                                         |
21 | - Neither the name of Kreotek LLC nor the names of its contributore may |
22 |   be used to endorse or promote products derived from this software     |
23 |   without specific prior written permission.                            |
24 |                                                                         |
25 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS     |
26 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT       |
27 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
28 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT      |
29 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,   |
30 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT        |
31 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,   |
32 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY   |
33 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT     |
34 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE   |
35 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.    |
36 |                                                                         |
37 +-------------------------------------------------------------------------+
38*/
39        require("../include/session.php");     
40       
41        $querystatement="SELECT displayname,version from modules ORDER BY id";
42        $queryresult=mysql_query($querystatement,$dblink);
43
44        function displayVersions($queryresult){
45                if($queryresult){
46                        while($therecord=mysql_fetch_array($queryresult)){
47                                if($therecord["displayname"]!="Base"){
48                                        echo $therecord["displayname"].": ";
49                                        echo "v".$therecord["version"]."<br />";
50                                } else
51                                        echo "<span class=\"important\">phpBMS version: ".$therecord["version"]."</span><br />";
52                        }
53                }
54        }
55               
56?>
57<div class="box">
58        <h3 class="helpLinks">About This Program</h3>
59        <div class="helpDivs">
60                <div class="helpSectionDivs">
61                        <p align="right" style="float:right;"><img src="<?php echo $_SESSION["app_path"]?>common/image/logo.png" alt="phpBMS Logo" width="85" height="22"/></p>
62                        <h3>phpBMS - Commercial Open Source Business Management Web Application</h3>
63                        <p class="small">v<?php displayVersions($queryresult)?></p>
64                        <p>Copyright &reg; 2004-2007 Kreotek, LLC. All Rights Reserved. phpBMS, and the phpBMS logo are trademarks of Kreotek, LLC.</p>
65                        <p>
66                                <strong>Kreotek, LLC</strong><br />
67                                610 Quantum<br />
68                                Rio Rancho, NM 87124<br />
69                                <a href="http://www.kreotek.com" target="_blank">http://www.kreotek.com</a><br />
70                                1-800-731-8026<br />
71                        </p>
72                </div>
73        </div>
74        <h3 class="helpLinks">Keyboard Shortcuts</h3>
75        <div class="helpDivs">
76                <div class="helpSectionDivs">
77                        <p>&nbsp;</p>
78                        <p>
79                                phpBMS takes advanage of HTML's accesskey property to allow
80                                you to use your keyboard to navigate pages.  Some browsers and OS's
81                                might have different modifier keys, so check your
82                                browser documentation.  In windows, when using Internet Explorer and Firefox &lt 2.0, hold
83                                down the Alt key followed by the shortcut.  When using Firefox &gt 2.0 in windows hold down Alt-Shift buttons
84                                followed by the shortcut. In opera hold down Shift-Esc then
85                                the shortut.  On a Mac, use the ctrl key in both Firefox &lt; 2.0 and Safari.
86                        </p>
87                        <h4>Search/List Screens</h4>
88                        <div class="fauxP">
89                        <table border="0" cellpadding="0" cellspacing="0" class="querytable" width="300">
90                                <TR>
91                                        <th valign="bottom" class="queryheader" align="right" width="100%">Command</th>
92                                        <th valign="bottom" class="queryheader" align="center">Key</th>
93                                </TR>
94                                <TR class="qr1" >
95                                        <TD align="right">New Record</TD>
96                                        <td align="center">N</td>
97                                </TR>
98                                <TR class="qr2" >
99                                        <TD align="right">Edit Record</TD>
100                                        <td align="center">E</td>
101                                </TR>
102                                <TR class="qr1" >
103                                        <TD align="right">Print</TD>
104                                        <td align="center">P</td>
105                                </TR>
106                                <TR class="qr2" >
107                                        <TD align="right">Delete (where applicable)</TD>
108                                        <td align="center">D</td>
109                                </TR>
110                                <TR class="qr1" >
111                                        <TD align="right">Select All</TD>
112                                        <td align="center">A</td>
113                                </TR>
114                                <TR class="qr2" >
115                                        <TD align="right">Select None</TD>
116                                        <td align="center">X</td>
117                                </TR>
118                                <TR class="qr1" >
119                                        <TD align="right">Keep Highlighted</TD>
120                                        <td align="center">K</td>
121                                </TR>
122                                <TR class="qr2">
123                                        <TD align="right">Omit Highlighted</TD>
124                                        <td align="center">O</td>
125                                </TR>
126                                <tr class="queryfooter">
127                                        <td>&nbsp;</td>
128                                        <td>&nbsp;</td>
129                                </tr>
130                                </table>
131                        </div>
132                        <h4>Add/Edit Screens</h4>
133                        <div class="fauxP">
134                        <table border="0" cellpadding="0" cellspacing="0" class="querytable" width="300">
135                                <TR>
136                                        <th valign="bottom" class="queryheader" align="right" width="100">Command</th>
137                                        <th valign="bottom" class="queryheader" align="center">Key</th>
138                                </TR>
139                                <TR class="qr1">
140                                        <TD align="right">Save Record</TD>
141                                        <td align="center">S</td>
142                                </TR>
143                                <TR class="qr2">
144                                        <TD align="right">Cancel</TD>
145                                        <td align="center">X</td>
146                                </TR>
147                                <tr class="queryfooter">
148                                        <td>&nbsp;</td>
149                                        <td>&nbsp;</td>
150                                </tr>
151                        </table>
152                        </div>
153                </div>
154        </div>
155        <h3 class="helpLinks">Community Support at www.phpbms.org</h3>
156        <div class="helpDivs">
157                <div class="helpSectionDivs">
158                <ul>
159                        <li><p><a href="http://www.phpbms.org" target="_blank">phpBMS project Web Site</a> - Main site for phpBMS development, documentation, and user support.</p></li>
160                        <li><p><a href="http://phpbms.org/wiki/PhpbmsFaq" target="_blank">phpBMS FAQ</a> - Frequently asked questions </p></li>
161                        <li><p><a href="http://www.phpbms.org/forum" target="_blank">phpBMS User Support forum</a> - A place for user and developer discussions.</p></li>
162                        <li><p><a href="http://phpbms.org/wiki/PhpbmsGuide" target="_blank">phpBMS Wiki Documentation </a> - Wiki driven user documentation starting point.</p></li>
163                </ul>
164                </div>
165        </div>
166        <h3 class="helpLinks">Customization and Paid Support Options</h3>
167        <div class="helpDivs">
168                <div class="helpSectionDivs">
169                <h4>Paid Technical, Development and Installation Support</h4>
170                <p>
171                        Know that your mission critical business software is backed by
172                        toll-free phone and e-mail support provided by the very people
173                        who created the software.  Choose a paid support contract
174                        provided by Kreotek that suits your need and budget.
175                </p>
176                <p>
177                        Visit <a href="http://www.kreotek.com" target="_blank">http://www.kreotek.com</a> or call
178                        <strong>1-800-731-8026</strong> for more information.
179                </p>
180                <h4>Customizing phpBMS</h4>
181                <p>
182                        No two businesses are run the exact same way. Every individual buiness has uniques needs. Don't conform
183                        your business processes to your software, make your software work the way your business does.
184                </p>
185                <p>
186                        Kreotek can provide for all of  your company's customization needs.  From custom reports, importing, adding fields,
187                        or integrating with legacy systems, let the people who created the software tailor phpBMS to work within your
188                        specific business processes.
189                </p>
190                <p>
191                        Visit <a href="http://www.kreotek.com" target="_blank">http://www.kreotek.com</a> or call
192                        <strong>1-800-731-8026</strong> for more information.
193                </p>
194                </div>
195        </div>
196</div>
197<p align="right"><button type="button" class="Buttons" onclick="closeModal()"><span> done </span></button></p>
Note: See TracBrowser for help on using the browser.
Copyright © 2010 Kreotek, LLC. All Rights reserved.