-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontroller.php
More file actions
executable file
·228 lines (167 loc) · 5.33 KB
/
Copy pathcontroller.php
File metadata and controls
executable file
·228 lines (167 loc) · 5.33 KB
1
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
<?php
/**
* @package PortalAdv
* @copyright Copyright (C) 2008 Vail Pro Media. All rights reserved.
* @license Commercial
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die( 'Restricted access' );
jimport('joomla.application.component.controller');
/**
* The Portal Advantage Controller
*
* @package PortalAdv
*/
class PortalAdvController extends JController
{
/**
* Method to show the search view
*
* @access public
* @since 1.5
*/
function display() {
// If the task was not set, use start
//$uri =& JURI::getInstance();
//if (!$uri->_vars['task']) {
// $redirect = $uri->_uri . '&task=' . $uri->_vars['view'];
// $this->setRedirect($redirect);
//}
parent::display();
}
function search() {
// set Itemid id for links
//$menu = &JSite::getMenu();
//$items = $menu->getItems('link', 'index.php?option=com_portaladv&view=advancedsearch');
//if(isset($items[0])) {
//$post['Itemid'] = $items[0]->id;
//}
//unset($post['task']);
//unset($post['submit']);
//$uri = JURI::getInstance();
//$uri->setQuery($post);
//$uri->setVar('option', 'com_portaladv');
//$uri->setVar('view', 'searchresults');
// Create the view
$view = & $this->getView('search', 'html');
// Get/Create the model
if ($_GET['task'] == 'search') {
$model = &$this->getModel('search');
}
//Record the search
//-- records the search criteria and user info to the database
//$model->recordSearch();
// Push the model into the view (as default)
$view->setModel($model, true);
// Set the layout
$view->setLayout('default');
// Display the view
$view->display();
}
function mapsearch() {
// Set default task
if (!JRequest::getVar('task')) {
$_GET['task'] = 'mapsearch';
}
// Get the view
$view = & $this->getView('mapsearch', 'html');
// Get the model
$model = &$this->getModel('search');
//Record the search
//-- records the search criteria and user info to the database
//$model->recordSearch();
// Push the model into the view (as default)
$view->setModel($model, true);
// Set the layout
$view->setLayout('default');
// Display the view
$view->display();
}
function printlisting() {
// Create the view
$view =& $this->getView('details', 'html');
// Get/Create the model
$model =& $this->getModel('details');
// Push the model into the view (as default)
$view->setModel($model, true);
// Set the layout
$view->setLayout('print');
// Display the view
$view->display();
}
function interactivemap() {
// Create the view
$view =& $this->getView('interactivemap', 'html');
// Get/Create the model
$model =& $this->getModel('interactivemap');
// Push the model into the view (as default)
$view->setModel($model, true);
// Set the layout
$view->setLayout('default');
// Display the view
$view->display();
}
function buildingdetails() {
// Create the view
$view =& $this->getView('buildingdetails', 'html');
// Get/Create the model
$model =& $this->getModel('buildingdetails');
// Push the model into the view (as default)
$view->setModel($model, true);
// Set the layout
$view->setLayout('default');
// Display the view
$view->display();
}
function contact() {
// Create the view
$view =& $this->getView('contact', 'html');
// Get/Create the model
$model =& $this->getModel('contact');
// Push the model into the view (as default)
$view->setModel($model, true);
// Set the layout
$view->setLayout('default');
// Display the view
$view->display();
}
function getrecentsales() {
// Create the view
$view =& $this->getView('contact', 'html');
// Get/Create the model
$model =& $this->getModel('contact');
// Push the model into the view (as default)
$view->setModel($model, true);
// Set the layout
$view->setLayout('default');
// Display the view
$view->display();
}
function ajax() {
// Get/Create the model
$model =& $this->getModel('search');
$listings = $model->getListings();
//$listings = $model->getFullQueryText();
$return = $listings;
$return = "var listings = new Array;";
//prepare as javascript array
foreach($listings as $listing) {
$return .= "var listing = new Array;\n";
$return .= "listing['latitude'] = " . $listing->latitude . "\n";
$return .= "listing['longitude'] = " . $listing->longitude . "\n";
$return .= "listing['listing_num'] = " . $listing->listing_num . "\n";
$return .= "listing['address'] = '" . str_replace("'","'",ucwords(strtolower($listing->address_num . ' ' . $listing->street_name . ' ' . $listing->street_type))) . "'\n";
$return .= "listing['price'] = '$" . number_format($listing->price) . "'\n";
$return .= "listing['city'] = '" . $listing->city . "'\n";
$return .= "listing['state'] = 'CO'\n";
$return .= "listing['zip'] = '" . $listing->zip_code . "'\n";
$return .= "listing['bedrooms_total'] = '" . $listing->bedrooms_total . "'\n";
$return .= "listing['baths_total'] = '" . $listing->baths_total . "'\n";
$return .= "listing['total_square_feet'] = '" . $listing->total_square_feet . "'\n";
$return .= "listing['office_name'] = '" . str_replace("'","'",ucwords(strtolower($listing->office_name))) . "'\n";
$return .= "listings.push(listing);\n";
}
//echo 'alert("test");';
echo $return;
}
}