Updated jquery-ui to 1.8.25
[mailer.git] / js / core-common.js
1 /**
2  * JavaScript for core functions
3  * --------------------------------------------------------------------
4  * $Revision::                                                        $
5  * $Date::                                                            $
6  * $Tag:: 0.2.1-FINAL                                                 $
7  * $Author::                                                          $
8  * --------------------------------------------------------------------
9  * Copyright (c) 2003 - 2009 by Roland Haeder
10  * Copyright (c) 2009 - 2012 by Mailer Developer Team
11  * For more information visit: http://mxchange.org
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
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., 51 Franklin St, Fifth Floor, Boston,
26  * MA  02110-1301  USA
27  */
28
29 // Function similar to PHP's function, except it checks only numeric indexes
30 function in_array (needle, heystack) {
31         // By default it is not found
32         var isInArray = false;
33
34         // Check all elements
35         for (var i = 0; i < heystack.length; i++) {
36                 // Is the element found?
37                 if (heystack[i] == needle) {
38                         // Found it and abort
39                         isInArray = true;
40                         break;
41                 } // END - if
42         } // END - if
43
44         // Return status
45         return isInArray;
46 }
47
48 // Function similar to PHP's urldecode() function
49 function decodeUrlEncoding (content) {
50         // Replace plus signs with spaces
51         var removedPlus = (content + '').replace(/\+/g, '%20');
52
53         // Decode it
54         var decoded = decodeURIComponent(removedPlus);
55
56         // Return it
57         return decoded;
58 }