phpBMS

Changeset 169 for trunk/phpbms/help

Show
Ignore:
Timestamp:
10/24/06 16:56:58 (6 years ago)
Author:
brieb
Message:

updated CSS and XHTML compliance for help, info, requirements pages.
Implemented new help screens.

Location:
trunk/phpbms/help
Files:
1 removed
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/phpbms/help/index.php

    r150 r169  
    3737 +-------------------------------------------------------------------------+ 
    3838*/ 
     39        require("../include/session.php");       
     40         
     41        $querystatement="SELECT displayname,version from modules ORDER BY id"; 
     42        $queryresult=mysql_query($querystatement,$dblink); 
    3943 
    40         $loginNoKick=true; 
    41         $loginNoDisplayError=true; 
    42         require("../include/session.php");       
    43 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
    44 <html xmlns="http://www.w3.org/1999/xhtml"> 
    45 <head> 
    46 <title>phpBMS Resources</title> 
    47 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 
    48 <?php require("head.php")?> 
    49 </head> 
    50  
    51 <body> 
    52 <div class="bodyline" style="width:700px;"> 
    53         <h1>phpBMS Resources</h1> 
    54         <ul> 
    55                 <li><a href="http://phpbms.org/wiki/PhpbmsGuide"><strong>PhpbmsGuide</strong></a> (at phpbms.org) 
    56                         <div class=small>User and Administrator Guide.</div> 
    57                 </li> 
    58                 <li> 
    59                         <a href="http://www.kreotek.com/products/phpbms/tutorials"><strong>Tutorials</strong></a> <em>(at kreotek.com)</em> 
    60                         <div class=small>Step by step examples on how to perform common tasks inside phpBMS.</div> 
    61                 </li> 
    62                 <li> 
    63                         <strong><a href="http://phpbms.org/wiki/PhpbmsFaq">PhpbmsFaq</a></strong> <em>(at phpbms.org)</em> 
    64                         <div class=small>Frequently Asked Questions </div> 
    65                 </li> 
    66                 <li> 
    67                         <a href="shortcuts.php"><strong>Keyboard Shortcuts</strong></a> 
    68                         <div class=small>List of keyboard shortcuts for use in common areas in phpBMS.</div> 
    69                 </li> 
    70                 <li> 
    71                         <a href="<?php echo $_SESSION["app_path"]?>info.php"><strong>About phpBMS</strong></a> 
    72                         <div class=small>Basic Program &amp; technology information.</div> 
    73                 </li> 
    74         </ul> 
     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">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.  On windows, in INternet Explorer and Firefox, hold 
     83                                down the Alt key followed by the shortcut.  On opera hold down shift-esc then 
     84                                the shortut.  On macs, in both firefox and safari use the ctrl key. 
     85                        </p> 
     86                        <h4>Search/List Screens</h4> 
     87                        <div class="fauxP"> 
     88                        <table border="0" cellpadding="0" cellspacing="0" class="querytable" width="300"> 
     89                                <TR> 
     90                                        <th valign="bottom" class="queryheader" align="right" width="100%">Command</th> 
     91                                        <th valign="bottom" class="queryheader" align="center">Key</th> 
     92                                </TR> 
     93                                <TR class="qr1" > 
     94                                        <TD align="right">New Record</TD> 
     95                                        <td align="center">N</td> 
     96                                </TR> 
     97                                <TR class="qr2" > 
     98                                        <TD align="right">Edit Record</TD> 
     99                                        <td align="center">E</td> 
     100                                </TR> 
     101                                <TR class="qr1" > 
     102                                        <TD align="right">Print</TD> 
     103                                        <td align="center">P</td> 
     104                                </TR> 
     105                                <TR class="qr2" > 
     106                                        <TD align="right">Delete (where applicable)</TD> 
     107                                        <td align="center">D</td> 
     108                                </TR> 
     109                                <TR class="qr1" > 
     110                                        <TD align="right">Select All</TD> 
     111                                        <td align="center">A</td> 
     112                                </TR> 
     113                                <TR class="qr2" > 
     114                                        <TD align="right">Select None</TD> 
     115                                        <td align="center">X</td> 
     116                                </TR> 
     117                                <TR class="qr1" > 
     118                                        <TD align="right">Keep Highlighted</TD> 
     119                                        <td align="center">K</td> 
     120                                </TR> 
     121                                <TR class="qr2"> 
     122                                        <TD align="right">Omit Highlighted</TD> 
     123                                        <td align="center">O</td> 
     124                                </TR> 
     125                                <tr class="queryfooter"> 
     126                                        <td>&nbsp;</td> 
     127                                        <td>&nbsp;</td> 
     128                                </tr> 
     129                                </table> 
     130                        </div> 
     131                        <h4>Add/Edit Screens</h4> 
     132                        <div class="fauxP"> 
     133                        <table border="0" cellpadding="0" cellspacing="0" class="querytable" width="300"> 
     134                                <TR> 
     135                                        <th valign="bottom" class="queryheader" align="right" width="100">Command</th> 
     136                                        <th valign="bottom" class="queryheader" align="center">Key</th> 
     137                                </TR> 
     138                                <TR class="qr1"> 
     139                                        <TD align="right">Save Record</TD> 
     140                                        <td align="center">S</td> 
     141                                </TR> 
     142                                <TR class="qr2"> 
     143                                        <TD align="right">Cancel</TD> 
     144                                        <td align="center">X</td> 
     145                                </TR> 
     146                                <tr class="queryfooter"> 
     147                                        <td>&nbsp;</td> 
     148                                        <td>&nbsp;</td> 
     149                                </tr> 
     150                        </table> 
     151                        </div> 
     152                </div> 
     153        </div> 
     154        <h3 class="helpLinks">Community Support at www.phpbms.org</h3> 
     155        <div class="helpDivs"> 
     156                <div class="helpSectionDivs"> 
     157                <ul> 
     158                        <li><p><a href="http://www.phpbms.org">phpBMS project Web Site</a> - Main site for phpBMS development, documentation, and user support.</p></li> 
     159                        <li><p><a href="http://phpbms.org/wiki/PhpbmsFaq">phpBMS FAQ</a> - Frequently asked questions </p></li> 
     160                        <li><p><a href="http://www.phpbms.org/Forum">phpBMS User Support forum</a> - A place for user and developer discussions.</p></li> 
     161                        <li><p><a href="http://phpbms.org/wiki/PhpbmsGuide">phpBMS Wiki Documentation </a> - Wiki driven user documentation starting point.</p></li> 
     162                </ul> 
     163                </div> 
     164        </div> 
     165        <h3 class="helpLinks">Customization and Paid Support Options</h3> 
     166        <div class="helpDivs"> 
     167                <div class="helpSectionDivs"> 
     168                <h4>Paid Technical, Development and Installation Support</h4> 
     169                <p> 
     170                        Know that your mission critical business software is backed by 
     171                        toll-free phone and e-mail support provided by the very people 
     172                        who created the software.  Choose a paid support contract 
     173                        provided by Kreotek that suits your need and budget. 
     174                </p> 
     175                <p> 
     176                        Visit <a href="http://www.kreotek.com" target="_blank">http://www.kreotek.com</a> or call 
     177                        <strong>1-800-731-8026</strong> for more information. 
     178                </p> 
     179                <h4>Customizing phpBMS</h4> 
     180                <p> 
     181                        No two businesses are run the exact same way. Every individual buiness has uniques needs. Don't conform 
     182                        your business processes to your software, make your software work the way your business does. 
     183                </p> 
     184                <p> 
     185                        Kreotek can provide for all of  your comapny's customization needs.  From custom reports, importing, adding fields, 
     186                        or integrating with legacy systems, le the people who created the software tailor phpBMS to work within your 
     187                        specific business processes. 
     188                </p> 
     189                <p> 
     190                        Visit <a href="http://www.kreotek.com" target="_blank">http://www.kreotek.com</a> or call 
     191                        <strong>1-800-731-8026</strong> for more information. 
     192                </p> 
     193                </div> 
     194        </div> 
    75195</div> 
    76 </body> 
    77 </html> 
     196<p align="right"><button type="button" class="Buttons" onclick="closeModal()"><span> done </span></button></p> 
phpBMS vulnerability assesment provided by Orvant Inc. Copyright © 2010 Kreotek, LLC. All Rights reserved.