| 44 | | function displayVersions($db,$queryresult){ |
| 45 | | if($queryresult){ |
| 46 | | while($therecord=$db->fetchArray($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 | | |
| | 41 | class versions{ |
| | 42 | |
| | 43 | var $db; |
| | 44 | var $queryresult; |
| | 45 | |
| | 46 | function versions($db){ |
| | 47 | |
| | 48 | $this->db = $db; |
| | 49 | |
| | 50 | }//end function init |
| | 51 | |
| | 52 | function get(){ |
| | 53 | |
| | 54 | $querystatement = " |
| | 55 | SELECT |
| | 56 | `name`, |
| | 57 | `displayname`, |
| | 58 | `version` |
| | 59 | FROM |
| | 60 | `modules` |
| | 61 | ORDER BY |
| | 62 | `id`"; |
| | 63 | |
| | 64 | $this->queryresult = $this->db->query($querystatement); |
| | 65 | |
| | 66 | }//end function get |
| | 67 | |
| | 68 | |
| | 69 | function show(){ |
| | 70 | |
| | 71 | if(!$this->queryresult) |
| | 72 | return false; |
| | 73 | |
| | 74 | while($therecord = $this->db->fetchArray($this->queryresult)){ |
| | 75 | |
| | 76 | if($therecord["name"] != "base") |
| | 77 | echo formatVariable($therecord["displayname"]).": v".$therecord["version"]."<br />"; |
| | 78 | else |
| | 79 | echo '<strong>v'.$therecord["version"].'</strong><br /><br />'; |
| | 80 | |
| | 81 | }//endwhile |
| | 82 | |
| | 83 | return true; |
| | 84 | |
| | 85 | }//end function show |
| | 86 | |
| | 87 | }//end class |
| | 88 | |
| | 89 | $versions = new versions($db); |
| | 90 | $versions->get(); |
| | 91 | |
| 59 | | <h1>About This Program</h3> |
| 60 | | <blockquote> |
| 61 | | <p align="right" style="float:right;"><img src="<?php echo APP_PATH?>common/image/logo.png" alt="phpBMS Logo" width="85" height="22"/></p> |
| 62 | | |
| 63 | | <h3>phpBMS - Commercial Open Source Business Management Web Application</h3> |
| 64 | | |
| 65 | | <p class="small"><?php displayVersions($db,$queryresult)?></p> |
| 66 | | |
| 67 | | <p>Copyright ® 2004-2007 Kreotek, LLC. All Rights Reserved. phpBMS, and the phpBMS logo are trademarks of Kreotek, LLC.</p> |
| 68 | | |
| 69 | | <p> |
| 70 | | <strong>Kreotek, LLC</strong><br /> |
| 71 | | 610 Quantum<br /> |
| 72 | | Rio Rancho, NM 87124<br /> |
| 73 | | <a href="http://www.kreotek.com" target="_blank">http://www.kreotek.com</a><br /> |
| 74 | | 1-800-731-8026<br /> |
| 75 | | </p> |
| 76 | | </blockquote> |
| | 95 | <p align="right" style="float:right; text-align:right; padding-left: 10px;" class="small"> |
| | 96 | <img src="<?php echo APP_PATH?>common/image/logo.png" alt="phpBMS Logo" width="85" height="22"/><br /> |
| | 97 | <?php $versions->show()?> |
| | 98 | </p> |
| 78 | | <h1>Keyboard Shortcuts</h1> |
| 79 | | <blockquote> |
| 80 | | <p> |
| 81 | | phpBMS takes advanage of HTML's accesskey property to allow |
| 82 | | you to use your keyboard to navigate pages. Some browsers and OS's |
| 83 | | might have different modifier keys, so check your |
| 84 | | browser documentation. In windows, when using Internet Explorer and Firefox < 2.0, hold |
| 85 | | down the Alt key followed by the shortcut. When using Firefox > 2.0 in windows hold down Alt-Shift buttons |
| 86 | | followed by the shortcut. In opera hold down Shift-Esc then |
| 87 | | the shortut. On a Mac, use the ctrl key in both Firefox < 2.0 and Safari. |
| 88 | | </p> |
| 89 | | |
| 90 | | <h2>Search/List Screens</h2> |
| 91 | | <div class="fauxP"> |
| 92 | | <table border="0" cellpadding="0" cellspacing="0" class="querytable" width="300"> |
| 93 | | <tr> |
| 94 | | <th valign="bottom" class="queryheader" align="right" width="100%">Command</th> |
| 95 | | <th valign="bottom" class="queryheader" align="center">Key</th> |
| 96 | | </tr> |
| 97 | | <tr class="qr1" > |
| 98 | | <td align="right">New Record</td> |
| 99 | | <td align="center">N</td> |
| 100 | | </tr> |
| 101 | | <tr class="qr2" > |
| 102 | | <td align="right">Edit Record</td> |
| 103 | | <td align="center">E</td> |
| 104 | | </tr> |
| 105 | | <tr class="qr1" > |
| 106 | | <td align="right">Print</td> |
| 107 | | <td align="center">P</td> |
| 108 | | </tr> |
| 109 | | <tr class="qr2" > |
| 110 | | <td align="right">Delete (where applicable)</td> |
| 111 | | <td align="center">D</td> |
| 112 | | </tr> |
| 113 | | <tr class="qr1" > |
| 114 | | <td align="right">Select All</td> |
| 115 | | <td align="center">A</td> |
| 116 | | </tr> |
| 117 | | <tr class="qr2" > |
| 118 | | <td align="right">Select None</td> |
| 119 | | <td align="center">X</td> |
| 120 | | </tr> |
| 121 | | <tr class="qr1" > |
| 122 | | <td align="right">Keep Highlighted</td> |
| 123 | | <td align="center">K</td> |
| 124 | | </tr> |
| 125 | | <tr class="qr2"> |
| 126 | | <td align="right">Omit Highlighted</td> |
| 127 | | <td align="center">O</td> |
| 128 | | </tr> |
| 129 | | <tr class="queryfooter"> |
| 130 | | <td> </td> |
| 131 | | <td> </td> |
| 132 | | </tr> |
| 133 | | </table> |
| 134 | | </div> |
| 135 | | |
| 136 | | <h2>Add/Edit Screens</h2> |
| 137 | | <div class="fauxP"> |
| 138 | | <table border="0" cellpadding="0" cellspacing="0" class="querytable" width="300"> |
| 139 | | <tr> |
| 140 | | <th valign="bottom" class="queryheader" align="right" width="100%">Command</th> |
| 141 | | <th valign="bottom" class="queryheader" align="center">Key</th> |
| 142 | | </tr> |
| 143 | | <tr class="qr1"> |
| 144 | | <td align="right">Save Record</td> |
| 145 | | <td align="center">S</td> |
| 146 | | </tr> |
| 147 | | <tr class="qr2"> |
| 148 | | <td align="right">Cancel</td> |
| 149 | | <td align="center">X</td> |
| 150 | | </tr> |
| 151 | | <tr class="queryfooter"> |
| 152 | | <td> </td> |
| 153 | | <td> </td> |
| 154 | | </tr> |
| 155 | | </table> |
| 156 | | </div> |
| 157 | | </blockquote> |
| | 100 | <h3 style="margin-top:0">phpBMS</h3> |
| | 101 | <p><strong>Commercial Open Source Business Management Web Application</strong> |
| | 102 | |
| | 103 | <p class="tiny">Copyright ® <?php echo date("Y") ?> Kreotek, LLC. All Rights Reserved. phpBMS, and the phpBMS logo are trademarks of Kreotek, LLC.</p> |
| 160 | | <h1>Community Support at www.phpbms.org</h1> |
| 161 | | |
| 162 | | <blockquote> |
| 163 | | <ul> |
| 164 | | <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> |
| 165 | | <li><p><a href="http://phpbms.org/wiki/PhpbmsFaq" target="_blank">phpBMS FAQ</a> - Frequently asked questions </p></li> |
| 166 | | <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> |
| 167 | | <li><p><a href="http://phpbms.org/wiki/PhpbmsGuide" target="_blank">phpBMS Wiki Documentation </a> - Wiki driven user documentation starting point.</p></li> |
| 168 | | </ul> |
| 169 | | </blockquote> |
| | 106 | <p class="tiny" style="clear: right;float: right;"><a href="http://www.kreotek.com" target="_blank">http://www.kreotek.com</a></p> |
| 173 | | <blockquote> |
| 174 | | <h2>Paid Technical, Development and Installation Support</h2> |
| 175 | | |
| 176 | | <p> |
| 177 | | Know that your mission critical business software is backed by |
| 178 | | toll-free phone and e-mail support provided by the very people |
| 179 | | who created the software. Choose a paid support contract |
| 180 | | provided by Kreotek that suits your need and budget. |
| 181 | | </p> |
| 182 | | <p> |
| 183 | | Visit <a href="http://www.kreotek.com" target="_blank">http://www.kreotek.com</a> or call |
| 184 | | <strong>1-800-731-8026</strong> for more information. |
| 185 | | </p> |
| 186 | | <h2>Customizing phpBMS</h2> |
| 187 | | <p> |
| 188 | | No two businesses are run the exact same way. Every individual buiness has uniques needs. Don't conform |
| 189 | | your business processes to your software, make your software work the way your business does. |
| 190 | | </p> |
| 191 | | <p> |
| 192 | | Kreotek can provide for all of your company's customization needs. From custom reports, importing, adding fields, |
| 193 | | or integrating with legacy systems, let the people who created the software tailor phpBMS to work within your |
| 194 | | specific business processes. |
| 195 | | </p> |
| 196 | | <p> |
| 197 | | Visit <a href="http://www.kreotek.com" target="_blank">http://www.kreotek.com</a> or call |
| 198 | | <strong>1-800-731-8026</strong> for more information. |
| 199 | | </p> |
| 200 | | </blockquote> |
| | 109 | <p class="small"> |
| | 110 | <strong>Kreotek, LLC</strong><br /> |
| | 111 | 610 Quantum<br /> |
| | 112 | Rio Rancho, NM 87124 USA |
| | 113 | </p> |
| | 114 | |
| | 115 | |
| | 116 | <p class="tiny"> |
| | 117 | U.S. and Canada Toll Free<br /> |
| | 118 | 1-800-731-8026 |
| | 119 | </p> |
| | 120 | |
| | 121 | <p class="tiny"> |
| | 122 | Outside US and Canada<br /> |
| | 123 | +1-505-994-6388 |
| | 124 | </p> |
| | 125 | |
| | 126 | <h3>Community Support</h3> |
| | 127 | <ul> |
| | 128 | <li class="small"><a href="http://www.phpbms.org" target="_blank">phpBMS project Web Site</a></li> |
| | 129 | <li class="small"><a href="http://www.phpbms.org/forum" target="_blank">phpBMS Community Support forum</a></li> |
| | 130 | <li class="small"> <a href="http://phpbms.org/wiki/PhpbmsGuide" target="_blank">phpBMS Wiki Documentation </a></li> |
| | 131 | </ul> |
| | 132 | |
| | 133 | <h3>Paid Support and Customization</h3> |
| | 134 | <p class="small"> |
| | 135 | Receive paid support directly from the creators of phpBMS, Kreotek. |
| | 136 | We have multiple tiers of support contracts available and can customize |
| | 137 | phpBMS to suit your specific needs. |
| | 138 | </p> |
| | 139 | |