1
|
|
|
<?php |
2
|
|
|
// $Id: listing.php,v 1.1.0 2007/11/03 17:46:00 wtravel |
3
|
|
|
// ------------------------------------------------------------------------ // |
4
|
|
|
// EFQ Directory // |
5
|
|
|
// Copyright (c) 2006 EFQ Consultancy // |
6
|
|
|
// <http://www.efqdirectory.com/> // |
7
|
|
|
// ------------------------------------------------------------------------ // |
8
|
|
|
// This program is free software; you can redistribute it and/or modify // |
9
|
|
|
// it under the terms of the GNU General Public License as published by // |
10
|
|
|
// the Free Software Foundation; either version 2 of the License, or // |
11
|
|
|
// (at your option) any later version. // |
12
|
|
|
// // |
13
|
|
|
// You may not change or alter any portion of this comment or credits // |
14
|
|
|
// of supporting developers from this source code or any supporting // |
15
|
|
|
// source code which is considered copyrighted (c) material of the // |
16
|
|
|
// original comment or credit authors. // |
17
|
|
|
// // |
18
|
|
|
// This program is distributed in the hope that it will be useful, // |
19
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of // |
20
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // |
21
|
|
|
// GNU General Public License for more details. // |
22
|
|
|
// // |
23
|
|
|
// You should have received a copy of the GNU General Public License // |
24
|
|
|
// along with this program; if not, write to the Free Software // |
25
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // |
26
|
|
|
// ------------------------------------------------------------------------ // |
27
|
|
|
// Part of the efqDirectory module provided by: wtravel // |
28
|
|
|
// e-mail: [email protected] // |
29
|
|
|
// Purpose: Create a business directory for xoops. // |
30
|
|
|
// Based upon the mylinks and the mxDirectory modules // |
31
|
|
|
// ------------------------------------------------------------------------- // |
32
|
|
|
|
33
|
|
|
/** |
34
|
|
|
* Class efqDataField |
35
|
|
|
* Manages operations for datafields |
36
|
|
|
* |
37
|
|
|
* @package efqDirectory |
38
|
|
|
* @author EFQ Consultancy <[email protected]> |
39
|
|
|
* @copyright EFQ Consultancy (c) 2007 |
40
|
|
|
* @version 1.1.0 |
41
|
|
|
*/ |
42
|
|
|
class efqDataField extends XoopsObject |
|
|
|
|
43
|
|
|
{ |
44
|
|
|
|
45
|
|
|
/** |
46
|
|
|
* Constructor |
47
|
|
|
*/ |
48
|
|
|
public function efqDataField() |
49
|
|
|
{ |
50
|
|
|
// class constructor; |
51
|
|
|
} |
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
/** |
55
|
|
|
* Class efqDataFieldHandler |
56
|
|
|
* Manages database operations for data fields |
57
|
|
|
* |
58
|
|
|
* @package efqDirectory |
59
|
|
|
* @author EFQ Consultancy <[email protected]> |
60
|
|
|
* @copyright EFQ Consultancy (c) 2007 |
61
|
|
|
* @version 1.1.0 |
62
|
|
|
*/ |
63
|
|
|
class efqDataFieldHandler extends XoopsObjectHandler |
|
|
|
|
64
|
|
|
{ |
65
|
|
|
public $errorhandler; |
66
|
|
|
|
67
|
|
|
public function efqDataFieldHandler() |
68
|
|
|
{ |
69
|
|
|
//Instantiate class |
70
|
|
|
global $eh; |
71
|
|
|
$this->db = XoopsDatabaseFactory::getDatabaseConnection(); |
|
|
|
|
72
|
|
|
$this->errorhandler = $eh; |
73
|
|
|
} |
74
|
|
|
|
75
|
|
|
public function getDataFields($itemid, $show = 10, $min = 0) |
76
|
|
|
{ |
77
|
|
|
$sql = "SELECT DISTINCT t.dtypeid, t.title, t.section, t.icon, f.typeid, f.fieldtype, f.ext, t.options, d.itemid, d.value, d.customtitle, t.custom "; |
78
|
|
|
$sql .= "FROM " . $this->db->prefix("efqdiralpha1_item_x_cat") . " ic, " . $this->db->prefix("efqdiralpha1_dtypes_x_cat") . " xc, " . $this->db->prefix("efqdiralpha1_fieldtypes") . " f, " . $this->db->prefix("efqdiralpha1_dtypes") . " t "; |
79
|
|
|
$sql .= "LEFT JOIN " . $this->db->prefix("efqdiralpha1_data") . " d ON (t.dtypeid=d.dtypeid AND d.itemid=" . $itemid . ") "; |
80
|
|
|
$sql .= "WHERE ic.cid=xc.cid AND ic.active='1' AND xc.dtypeid=t.dtypeid AND t.fieldtypeid=f.typeid AND t.activeyn='1' AND ic.itemid=" . $itemid . ""; |
81
|
|
|
$data_result = $this->db->query($sql) or $this->errorhandler->show("0013"); |
82
|
|
|
//$numrows = $this->db->getRowsNum($data_result); |
|
|
|
|
83
|
|
|
$arr = array(); |
84
|
|
View Code Duplication |
while (list($dtypeid, $title, $section, $icon, $ftypeid, $fieldtype, $ext, $options, $itemid, $value, $customtitle, $custom) = $this->db->fetchRow($data_result)) { |
|
|
|
|
85
|
|
|
$fieldvalue = $this->getFieldValue($fieldtype, $options, $value); |
86
|
|
|
if ($icon != '') { |
87
|
|
|
$iconurl = "<img src=\"uploads/$icon\" />"; |
88
|
|
|
} else { |
89
|
|
|
$iconurl = ""; |
90
|
|
|
} |
91
|
|
|
if ($custom != '0' && $customtitle != "") { |
92
|
|
|
$title = $customtitle; |
93
|
|
|
} |
94
|
|
|
$arr[] = array( |
95
|
|
|
'dtypeid' => $dtypeid, |
96
|
|
|
'title' => $title, |
97
|
|
|
'section' => $section, |
98
|
|
|
'icon' => $iconurl, |
99
|
|
|
'ftypeid' => $ftypeid, |
100
|
|
|
'fieldtype' => $fieldtype, |
101
|
|
|
'ext' => $ext, |
102
|
|
|
'options' => $options, |
103
|
|
|
'custom' => $custom, |
104
|
|
|
'itemid' => $itemid, |
105
|
|
|
'value' => $fieldvalue, |
106
|
|
|
'customtitle' => $customtitle |
107
|
|
|
); |
108
|
|
|
} |
109
|
|
|
|
110
|
|
|
return $arr; |
111
|
|
|
} |
112
|
|
|
|
113
|
|
|
public function getFieldValue($fieldtype = "", $options = "", $value = 0) |
114
|
|
|
{ |
115
|
|
|
global $myts, $moddir; |
116
|
|
|
switch ($fieldtype) { |
117
|
|
|
case "dhtml": |
118
|
|
|
return $myts->displayTarea($value); |
119
|
|
|
break; |
|
|
|
|
120
|
|
|
//case "gmap": |
121
|
|
|
// $gmapHandler = new efqGmapHandler(); |
|
|
|
|
122
|
|
|
// $gmap = new efqGmap(); |
|
|
|
|
123
|
|
|
// $gmap->setPointsJS($gmapHandler->getPointsJS($gmap)); |
|
|
|
|
124
|
|
|
// $gmap->generateMap(); |
|
|
|
|
125
|
|
|
// $ret = $gmap->showMap(); |
|
|
|
|
126
|
|
|
// unset($gmap); |
|
|
|
|
127
|
|
|
// unset($gmapHandler); |
|
|
|
|
128
|
|
|
//return $myts->makeTboxData4Show($value); |
|
|
|
|
129
|
|
|
//break; |
130
|
|
|
case "radio": |
131
|
|
|
return $myts->makeTboxData4Show($value); |
132
|
|
|
break; |
133
|
|
View Code Duplication |
case "rating": |
|
|
|
|
134
|
|
|
$xoops_url = XOOPS_URL; |
|
|
|
|
135
|
|
|
switch ($value) { |
136
|
|
|
case 1: |
137
|
|
|
$src = "$xoops_url/modules/$moddir/assets/images/rating_1.gif"; |
138
|
|
|
break; |
139
|
|
|
case 2: |
140
|
|
|
$src = "$xoops_url/modules/$moddir/assets/images/rating_2.gif"; |
141
|
|
|
break; |
142
|
|
|
case 3: |
143
|
|
|
$src = "$xoops_url/modules/$moddir/assets/images/rating_3.gif"; |
144
|
|
|
break; |
145
|
|
|
case 4: |
146
|
|
|
$src = "$xoops_url/modules/$moddir/assets/images/rating_4.gif"; |
147
|
|
|
break; |
148
|
|
|
case 5: |
149
|
|
|
$src = "$xoops_url/modules/$moddir/assets/images/rating_5.gif"; |
150
|
|
|
break; |
151
|
|
|
case 6: |
152
|
|
|
$src = "$xoops_url/modules/$moddir/assets/images/rating_6.gif"; |
153
|
|
|
break; |
154
|
|
|
case 7: |
155
|
|
|
$src = "$xoops_url/modules/$moddir/assets/images/rating_7.gif"; |
156
|
|
|
break; |
157
|
|
|
case 8: |
158
|
|
|
$src = "$xoops_url/modules/$moddir/assets/images/rating_8.gif"; |
159
|
|
|
break; |
160
|
|
|
case 9: |
161
|
|
|
$src = "$xoops_url/modules/$moddir/assets/images/rating_9.gif"; |
162
|
|
|
break; |
163
|
|
|
case 10: |
164
|
|
|
$src = "$xoops_url/modules/$moddir/assets/images/rating_10.gif"; |
165
|
|
|
break; |
166
|
|
|
default: |
167
|
|
|
$src = ""; |
168
|
|
|
} |
169
|
|
|
$rating = "<img src=\"$src\" />"; |
170
|
|
|
|
171
|
|
|
return $rating; |
172
|
|
|
break; |
173
|
|
|
case "select": |
174
|
|
|
return $myts->makeTboxData4Show($value); |
175
|
|
|
break; |
176
|
|
|
case "textbox": |
177
|
|
|
return $myts->makeTboxData4Show($value); |
178
|
|
|
break; |
179
|
|
|
case "url": |
180
|
|
|
$link = explode('|', $value); |
181
|
|
|
|
182
|
|
|
return '<a href="' . $myts->makeTboxData4Show($link[0]) . '" title="' . $myts->makeTboxData4Show($link[1]) . '">' . $myts->makeTboxData4Show($link[0]) . '</a>'; |
183
|
|
|
break; |
184
|
|
|
case "yesno": |
185
|
|
|
if ($value == '1') { |
186
|
|
|
return _YES; |
|
|
|
|
187
|
|
|
} else { |
188
|
|
|
return _NO; |
|
|
|
|
189
|
|
|
} |
190
|
|
|
break; |
191
|
|
|
default: |
192
|
|
|
return $myts->makeTboxData4Show($value); |
193
|
|
|
break; |
194
|
|
|
} |
195
|
|
|
} |
196
|
|
|
} |
197
|
|
|
|
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths