Menu

[r1]: / app / utility / functions.php  Maximize  Restore  History

Download this file

443 lines (382 with data), 9.1 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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
<?php
/**
* List of utility functions used through out the software.
*
* @author Dana Murad
* @file functions.php
*
* @todo
*/
function debug_pre($var) //this function is used for debugging
{
echo "<pre>";
print_r($var);
echo "</pre>";
}
if(!function_exists('str_split'))
{
function str_split
(
$string,
$split_length=1
)
{
$count = strlen($string);
if($split_length < 1)
{
return false;
}
else if ($split_length > $count)
{
return array($string);
}
else
{
$num = (int)ceil($count/$split_length);
$ret = array();
for($i=0;$i<$num;$i++)
{
$ret[] = substr($string,$i*$split_length,$split_length);
}
return $ret;
}
}
}
function checkLogin
(
$loginPage = "index.php"
)
{
if(isset($_SESSION[LogInCT::LOGGED_IN_FLAG]))
{
return TRUE;
}
else
{
header("Location: " . BASE_URL . $loginPage);
exit();
}
}
/**
* @desc Checks to see if the user has selected a city or state in the past to grab the appropriate values. takes no param, returns none.
*/
function requireStateCity()
{
if(isset($_SESSION['cityStatePair']))
{
setcookie("cityStatePair",$_SESSION['cityStatePair'],time() + 5184000); // expire in 60 days
return;
}
if(isset($_COOKIE['cityStatePair']))
{
$_SESSION['cityStatePair'] = $_COOKIE['cityStatePair'];
return;
}
else
{
redirect("selectCity.php");
}
}
/**
* @desc Just gets a userID from the session, saves code and validation times.
*/
function getUserID
(
)
{
$userID = isset($_SESSION['userID']) ? $_SESSION['userID'] : "";
return $userID;
}
function report_error($file,$class,$function,$line,$message) //emails an error to the administrator
{
$error_date = date("h:i A F dS, Y");
$to = ADMIN_EMAIL;
$body = "$error_date \n $file -> class: $class -> function: $function -> line: $line \n";
$body .= "Message: $message \n";
mail($to, "Page Error", $body, "From: Errors@Mindshare.com"); #email error
echo "An error has occurred and an administrator been notified";
exit;
}
/**
* @desc Changes location of the header to another URL.
* @param string $url
*/
function redirect($url)
{
header("Location: $url");
exit;
}
function reverse_direction($dir="")
{
if($dir == "DESC")
{
return "ASC";
}
elseif($dir == "ASC")
{
return "DESC";
}
else //default to desc if no order
{
return "DESC";
}
}
function debug_enter($file,$class,$function,$line)
{
if (DEBUG)
{
echo "<!-- Entering ".$file.": ".$class."->".$function.": ".$line." -->\n";
}
}
function debug_exit($file,$class,$function,$line)
{
if(DEBUG)
{
echo "<!-- Exiting ".$file.": ".$class."->".$function.": ".$line." -->\n";
}
}
function trimSpaces($arr)
{
for($i = 0; isset($arr[$i]); $i++)
{
$arr[$i] = trim($arr[$i]);
}
return $arr;
}
// strips dollars sign or any other invalid charactes from the number
function stripToNum($value)
{
$value = preg_replace("/[^0-9]+/","",$value); // nothing but number allowed
return $value;
}
function stripToInt($value)
{
$value = preg_replace("/[^\-?0-9]+/","",$value); // negative sign allowed
return $value;
}
function stripToFloat($value)
{
$value = preg_replace("/[^\-0-9.]+/","",$value); // negative sign and decimal allowed.
return $value;
}
function stripNumbers($value)
{
$value = preg_replace("/[0-9]+/","",$value); // removes all number digits. t3st_123 => tst_
return $value;
}
function getRandomString($length)
{
if(is_numeric($length))
{
$chars = "ABCDEFGHIJKLMNOPQRSTOVWXYZabcdefghijkmnopqrstuvwxyz023456789";
srand((double)microtime()*1000000);
$i = 0;
$pass = '';
while ($i < $length)
{
$num = rand() % strlen($chars);
$tmp = substr($chars, $num, 1);
$pass .= $tmp;
$i++;
}
return $pass;
}
}
// format to currency $999999.00
function convertToCurrency
(
$val
)
{
if(is_numeric($val) && $val != "") // treat the parameter as a value and return it.
{
$num = floatval($val);
$prefix = "$";
$suffix = "";
$temp = round( $num * 100.0 ); // convert to pennies!
// if its pennies, return appropriate value:
if ( $temp < 10 && $temp > -10)
{
$result = $prefix . "0.0" . $temp . $suffix;
}
else if ( $temp < 100 && $temp > -100 )
{
$result = $prefix . "0." . $temp . $suffix;
}
else
{
// if not pennies
$temp = $prefix . $temp;
$result = substr($temp,0,strlen($temp)-2) . "." . substr($temp,strlen($temp)-2) . $suffix; // insert decimal and add suffix
}
return $result;
}
}
function checkEmailAddress
(
$email
)
{
return preg_match("/\b[a-zA-Z0-9._%-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}\b/",$email);
}
function formatPhone
(
$phone
)
{
$phone = stripToNum($phone); //remove other chars.
if(!empty($phone))
{
return "(" . substr($phone,0,3) . ") " . substr($phone,3,3) . "-" . substr($phone,6,4);
}
}
// this function is to by pass the default PHP behavior of empty() (in which this: "empty(trim($foo))" always results in FALSE)
function isEmpty($value)
{
return empty($value);
}
function getStates($requestedState = "")
{
$stateArr = array();
$stateArr["AL"] = "Alabama";
$stateArr["AK"] = "Alaska";
$stateArr["AZ"] = "Arizona";
$stateArr["AR"] = "Arkansas";
$stateArr["CA"] = "California";
$stateArr["CO"] = "Colorado";
$stateArr["CT"] = "Connecticut";
$stateArr["DE"] = "Delaware";
$stateArr["FL"] = "Florida";
$stateArr["GA"] = "Georgia";
$stateArr["HI"] = "Hawaii";
$stateArr["ID"] = "Idaho";
$stateArr["IL"] = "Illinois";
$stateArr["IN"] = "Indiana";
$stateArr["IA"] = "Iowa";
$stateArr["KS"] = "Kansas";
$stateArr["KY"] = "Kentucky";
$stateArr["LA"] = "Louisiana";
$stateArr["ME"] = "Maine";
$stateArr["MD"] = "Maryland";
$stateArr["MA"] = "Massachusetts";
$stateArr["MI"] = "Michigan";
$stateArr["MN"] = "Minnesota";
$stateArr["MS"] = "Mississippi";
$stateArr["MO"] = "Missouri";
$stateArr["MT"] = "Montana";
$stateArr["NE"] = "Nebraska";
$stateArr["NV"] = "Nevada";
$stateArr["NH"] = "New Hampshire";
$stateArr["NJ"] = "New Jersey";
$stateArr["NM"] = "New Mexico";
$stateArr["NY"] = "New York";
$stateArr["NC"] = "North Carolina";
$stateArr["ND"] = "North Dakota";
$stateArr["OH"] = "Ohio";
$stateArr["OK"] = "Oklahoma";
$stateArr["OR"] = "Oregon";
$stateArr["PA"] = "Pennsylvania";
$stateArr["RI"] = "Rhode Island";
$stateArr["SC"] = "South Carolina";
$stateArr["SD"] = "South Dakota";
$stateArr["TN"] = "Tennessee";
$stateArr["TX"] = "Texas";
$stateArr["UT"] = "Utah";
$stateArr["VT"] = "Vermont";
$stateArr["VA"] = "Virginia";
$stateArr["WA"] = "Washington";
$stateArr["WV"] = "West Virginia";
$stateArr["WI"] = "Wisconsin";
$stateArr["WY"] = "Wyoming";
if($requestedState != "")
{
if(isset($stateArr[$requestedState]))
{
return $stateArr[$requestedState];
}
if(($key = array_search($requestedState,$stateArr)) !== FALSE)
{
return $stateArr[$key];
}
}
return $stateArr;
}
function getMonths()
{
$stateArr = array();
$stateArr["01"] = "January";
$stateArr["02"] = "February";
$stateArr["03"] = "March";
$stateArr["04"] = "April";
$stateArr["05"] = "May";
$stateArr["06"] = "June";
$stateArr["07"] = "July";
$stateArr["08"] = "August";
$stateArr["09"] = "September";
$stateArr["10"] = "October";
$stateArr["11"] = "November";
$stateArr["12"] = "December";
return $stateArr;
}
function getCreditCardTypes()
{
$stateArr = array();
$stateArr["Visa"] = "Visa";
$stateArr["MasterCard"] = "MasterCard";
$stateArr["Discover"] = "Discover";
$stateArr["AmEx"] = "American Express";
return $stateArr;
}
/**
* @desc Reverse Sort between ASC and DESC
*/
function reverseSort($sort)
{
if ($sort == "ASC")
{
return "DESC";
}
else
{
return "ASC";
}
}
/**
* @desc Switch to HTTPS, SSL
*/
function SSLon()
{
/*if(empty($_SERVER['HTTPS']))
{
$url = "https://".BASE_URL.$_SERVER['REQUEST_URI'];
header("Location: $url");
} */
}
/**
* @desc Switch to HTTP, NO SSL
*/
function SSLoff()
{
/*if(!empty($_SERVER['HTTPS']))
{
$url = "http://".BASE_URL.$_SERVER['REQUEST_URI'];
header("Location: $url");
}*/
}
/**
* @desc Pads a string with 80 dots to emulate command prompt progress
*/
function pad($string)
{
if(is_string($string))
{
return str_pad($string,80,".");
}
}
/**
* @desc encrypts password with encryptiong specified
*/
function encryptPassword($pass)
{
return SHA1($pass);
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.