| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 |
|
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 |
|
|---|
| 38 |
|
|---|
| 39 |
$loginNoKick=true; |
|---|
| 40 |
$loginNoDisplayError=true; |
|---|
| 41 |
|
|---|
| 42 |
require_once("include/session.php"); |
|---|
| 43 |
|
|---|
| 44 |
|
|---|
| 45 |
function displayVersions($db){ |
|---|
| 46 |
$querystatement="SELECT displayname,version from modules ORDER BY id"; |
|---|
| 47 |
$queryresult=$db->query($querystatement); |
|---|
| 48 |
|
|---|
| 49 |
if($queryresult){ |
|---|
| 50 |
while($therecord=$db->fetchArray($queryresult)){ |
|---|
| 51 |
if($therecord["displayname"]!="Base"){ |
|---|
| 52 |
echo $therecord["displayname"].": "; |
|---|
| 53 |
echo "v".$therecord["version"]."<br />"; |
|---|
| 54 |
} else |
|---|
| 55 |
echo "<span class=\"important\">v".$therecord["version"]."</span><br /><br />"; |
|---|
| 56 |
} |
|---|
| 57 |
} |
|---|
| 58 |
} |
|---|
| 59 |
|
|---|
| 60 |
$pageTitle="phpBMS Information"; |
|---|
| 61 |
$phpbms->cssIncludes[] = "pages/info.css"; |
|---|
| 62 |
|
|---|
| 63 |
$phpbms->showMenu = false; |
|---|
| 64 |
$phpbms->showFooter = false; |
|---|
| 65 |
|
|---|
| 66 |
include("header.php"); |
|---|
| 67 |
|
|---|
| 68 |
?><div class="bodyline" id="container"> |
|---|
| 69 |
<h1>About phpBMS</h1> |
|---|
| 70 |
<p>phpBMS is commercial open source, web-based, business management software.</p> |
|---|
| 71 |
|
|---|
| 72 |
<div id="phpBMSLogo" class="box small"> |
|---|
| 73 |
<?php if(isset($db)) displayVersions($db)?> |
|---|
| 74 |
</div> |
|---|
| 75 |
|
|---|
| 76 |
<div id="companyInfo"> |
|---|
| 77 |
<p class="small"> |
|---|
| 78 |
Copyright © 2004 -2007 Kreotek, llc. All Rights Reserved. |
|---|
| 79 |
phpBMS, and the phpBMS logo are trademarks of Kreotek, llc. |
|---|
| 80 |
Software is licensed under a <a href="license.txt">modified BSD license</a>. |
|---|
| 81 |
</p> |
|---|
| 82 |
|
|---|
| 83 |
<h3>Kreotek, LLC</h3> |
|---|
| 84 |
<p class="small"> |
|---|
| 85 |
610 Quantum<br /> |
|---|
| 86 |
Rio Rancho, NM 87124 |
|---|
| 87 |
</p> |
|---|
| 88 |
<p> |
|---|
| 89 |
web: <a href="http://www.kreotek.com">http://www.kreotek.com</a><br /> |
|---|
| 90 |
sales: <a href="mailto:sales@kreotek.com">sales@kreotek.com</a><br /> |
|---|
| 91 |
support: <a href="mailtosupport@kreotek.com">support@kreotek.com</a><br /> |
|---|
| 92 |
phone: <strong>1-800-731-8026</strong> |
|---|
| 93 |
</p> |
|---|
| 94 |
<h3>phpBMS Open Source Project</h3> |
|---|
| 95 |
<p> |
|---|
| 96 |
project web site: <a href="http://www.kreotek.com">http://www.phpbms.org</a><br /> |
|---|
| 97 |
project forums: <a href="mailto:sales@kreotek.com">sales@kreotek.com</a><br /> |
|---|
| 98 |
</p> |
|---|
| 99 |
</div> |
|---|
| 100 |
|
|---|
| 101 |
<h2>Source Code</h2> |
|---|
| 102 |
<ul> |
|---|
| 103 |
<li><strong>phpBMS</strong> - Commercial Open Source Business Management Web Appllication (<a href="http://www.kreotek.com">www.phpbms.org</a>)</li> |
|---|
| 104 |
<li><strong>fpdf</strong> - A PHP class which allows to generate PDF files with pure PHP (<a href="http://www.fpdf.org">www.fpdf.org</a>)</li> |
|---|
| 105 |
<li><strong>moo.fx</strong> - Super lightweight JavaScript effects library (<a href="http://moofx.mad4milk.net/">moofx.mad4milk.net</a>) </li> |
|---|
| 106 |
<li><strong>mochikit</strong> - A lightweight JavaScript library (<a href="http://mochichit.com/">mochikit.com</a>) - phpBMS utilizes modified parts mochikit code and it's programming structure.</li> |
|---|
| 107 |
<li><strong>parseCSV</strong> - An easy to use PHP class to read and write CSV data properly.(<a href="http://code.google.com/p/parsecsv-for-php/" >code.google.com/p/parsecsv-for-php/</a>)</li> |
|---|
| 108 |
</ul> |
|---|
| 109 |
<h2>Technologies</h2> |
|---|
| 110 |
<ul> |
|---|
| 111 |
<li><strong>php</strong> - A widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. (<a href="http://www.php.net">www.php.net</a>)</li> |
|---|
| 112 |
<li><strong>MySQL</strong> - An open source relational database management system (RDBMS) that uses Structured Query Language (SQL) (<a href="http://www.mysql.org">www.mysql.org</a>)</li> |
|---|
| 113 |
<li><strong>AJAX</strong> - Asynchronous Javascript And XML is a group of technologies that help browser based applications behave more like applications you run from your desktop.</li> |
|---|
| 114 |
</ul> |
|---|
| 115 |
|
|---|
| 116 |
<p align="right"> |
|---|
| 117 |
<input type="button" value="Back" class="Buttons" onclick="document.location='<?php echo APP_PATH; if(isset($_SESSION["userinfo"])) echo DEFAULT_LOAD_PAGE?>'" id="loginButton"/> |
|---|
| 118 |
</p> |
|---|
| 119 |
</div><?php include("footer.php") ?> |
|---|