]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Releases/Release.php
Release 6.5.0
[Github/sugarcrm.git] / modules / Releases / Release.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38 /*********************************************************************************
39
40  * Description:
41  ********************************************************************************/
42
43
44
45
46
47
48
49 class Release extends SugarBean {
50         // Stored fields
51         var $id;
52         var $deleted;
53         var $date_entered;
54         var $date_modified;
55         var $modified_user_id;
56         var $created_by;
57         var $created_by_name;
58         var $modified_by_name;
59         var $name;
60         var $status;
61
62         var $table_name = "releases";
63
64         var $object_name = "Release";
65         var $module_dir = 'Releases';
66         var $new_schema = true;
67
68         // This is used to retrieve related fields from form posts.
69         var $additional_column_fields = Array();
70
71         function Release() {
72                 parent::SugarBean();
73         }
74
75         function get_summary_text()
76         {
77                 return "$this->name";
78         }
79
80         function get_releases($add_blank=false,$status='Active',$where='')
81         {
82                 if($where!='') {
83                         $query = "SELECT id, name FROM $this->table_name where ". $where ." and deleted=0 ";
84                 }
85                 else {
86                         $query = "SELECT id, name FROM $this->table_name where deleted=0 ";
87                 }
88                 if ($status=='Active') {
89                         $query .= " and status='Active' ";
90                 }
91                 elseif ($status=='Hidden') {
92                         $query .= " and status='Hidden' ";
93                 }
94                 elseif ($status=='All') {
95                 }
96                 $query .= " order by list_order asc";
97                 $result = $this->db->query($query, false);
98                 $GLOBALS['log']->debug("get_releases: result is ".var_export($result, true));
99
100                 $list = array();
101                 if ($add_blank) {
102                         $list['']='';
103                 }
104                 //if($this->db->getRowCount($result) > 0){
105                         // We have some data.
106                         while (($row = $this->db->fetchByAssoc($result)) != null) {
107                         //while ($row = $this->db->fetchByAssoc($result)) {
108                                 $list[$row['id']] = $row['name'];
109                                 $GLOBALS['log']->debug("row id is:".$row['id']);
110                                 $GLOBALS['log']->debug("row name is:".$row['name']);
111                         }
112                 //}
113                 return $list;
114         }
115
116         function fill_in_additional_list_fields()
117         {
118                 $this->fill_in_additional_detail_fields();
119         }
120
121         function fill_in_additional_detail_fields() {
122
123         }
124
125         function get_list_view_data(){
126                 global $app_list_strings;
127                 $temp_array = $this->get_list_view_array();
128         $temp_array["ENCODED_NAME"]=$this->name;
129         $temp_array['ENCODED_STATUS'] = $app_list_strings['release_status_dom'][$this->status];
130 //      $temp_array["ENCODED_NAME"]=htmlspecialchars($this->name, ENT_QUOTES);
131         return $temp_array;
132
133         }
134         /**
135                 builds a generic search based on the query string using or
136                 do not include any $this-> because this is called on without having the class instantiated
137         */
138         function build_generic_where_clause ($the_query_string) {
139         $where_clauses = Array();
140         $the_query_string = $GLOBALS['db']->quote($the_query_string);
141         array_push($where_clauses, "name like '$the_query_string%'");
142
143         $the_where = "";
144         foreach($where_clauses as $clause)
145         {
146                 if($the_where != "") $the_where .= " or ";
147                 $the_where .= $clause;
148         }
149
150
151         return $the_where;
152 }
153
154
155 }
156
157 ?>