phpBMS

root/trunk/phpbms/help/index.php

Revision 741, 5.0 KB (checked in by brieb, 2 years ago)
  • updated Kreotek Contact information
  • fixed new install menu access for new users with no role rights
  • removed double creation of recurring invoice menu item
  • TURNED OFF DEGUB MODE in preparation for tagging and relase
  • Property svn:keywords set to LastChangedBy LastChangedDate LastChangedRevision
Line 
1<?php
2/*
3 $Rev$ | $LastChangedBy$
4 $LastChangedDate$
5 +-------------------------------------------------------------------------+
6 | Copyright (c) 2004 - 2010, 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        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
92?>
93<div class="box" id="helpBox">
94
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>
99
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 &reg; <?php echo date("Y") ?> Kreotek, LLC. All Rights Reserved. phpBMS, and the phpBMS logo are trademarks of Kreotek, LLC.</p>
104
105
106        <p class="tiny" style="clear: right;float: right;"><a href="http://www.kreotek.com" target="_blank">http://www.kreotek.com</a></p>
107
108
109        <p class="small">
110                <strong>Kreotek, LLC</strong><br />
111                610 Quantum Rd. NE<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.349.0437
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
140</div>
141<p align="right"><button id="helpClose" type="button" class="Buttons" onclick="closeModal()"><span>close</span></button></p>
Note: See TracBrowser for help on using the browser.
Scanned by Orvant Copyright © 2010 Kreotek, LLC. All Rights reserved.