Passed
Pull Request — master (#228)
by Viruthagiri
10:20
created
tests/test-Test_Dummy_Data.php 2 patches
Indentation   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -1,50 +1,50 @@
 block discarded – undo
1 1
 <?php
2 2
 class TestDummyData extends WP_UnitTestCase
3 3
 {
4
-    public function setUp()
5
-    {
6
-        parent::setUp();
7
-        wp_set_current_user(1);
8
-        geodir_delete_dummy_posts();
9
-    }
4
+	public function setUp()
5
+	{
6
+		parent::setUp();
7
+		wp_set_current_user(1);
8
+		geodir_delete_dummy_posts();
9
+	}
10 10
 
11
-    public function testCreatePlaces()
12
-    {
13
-        global $dummy_post_index, $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2;
11
+	public function testCreatePlaces()
12
+	{
13
+		global $dummy_post_index, $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2;
14 14
 
15
-        global $geodir_post_custom_fields_cache;
16
-        $geodir_post_custom_fields_cache = array();
15
+		global $geodir_post_custom_fields_cache;
16
+		$geodir_post_custom_fields_cache = array();
17 17
 
18
-        $city_bound_lat1 = 40.4960439;
19
-        $city_bound_lng1 = -74.2557349;
20
-        $city_bound_lat2 = 40.91525559999999;
21
-        $city_bound_lng2 = -73.7002721;
18
+		$city_bound_lat1 = 40.4960439;
19
+		$city_bound_lng1 = -74.2557349;
20
+		$city_bound_lat2 = 40.91525559999999;
21
+		$city_bound_lng2 = -73.7002721;
22 22
 
23 23
 
24
-        $dummy_post_index = 10;
25
-        test_create_dummy_posts(10);
24
+		$dummy_post_index = 10;
25
+		test_create_dummy_posts(10);
26 26
 
27
-        $query_args = array(
28
-            'post_status' => 'publish',
29
-            'post_type' => 'gd_place'
30
-        );
27
+		$query_args = array(
28
+			'post_status' => 'publish',
29
+			'post_type' => 'gd_place'
30
+		);
31 31
 
32
-        $all_posts = new WP_Query( $query_args );
32
+		$all_posts = new WP_Query( $query_args );
33 33
 
34
-        $total_posts = $all_posts->found_posts;
34
+		$total_posts = $all_posts->found_posts;
35 35
 
36
-        $this->assertTrue((int) $total_posts > 0);
36
+		$this->assertTrue((int) $total_posts > 0);
37 37
 
38
-    }
38
+	}
39 39
 
40
-    public function testDeletePlaces()
41
-    {
42
-        geodir_delete_dummy_posts();
43
-    }
40
+	public function testDeletePlaces()
41
+	{
42
+		geodir_delete_dummy_posts();
43
+	}
44 44
 
45
-    public function tearDown()
46
-    {
47
-        parent::tearDown();
48
-    }
45
+	public function tearDown()
46
+	{
47
+		parent::tearDown();
48
+	}
49 49
 }
50 50
 ?>
51 51
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
             'post_type' => 'gd_place'
30 30
         );
31 31
 
32
-        $all_posts = new WP_Query( $query_args );
32
+        $all_posts = new WP_Query($query_args);
33 33
 
34 34
         $total_posts = $all_posts->found_posts;
35 35
 
Please login to merge, or discard this patch.
tests/test-Import_Export.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,19 +1,19 @@
 block discarded – undo
1 1
 <?php
2 2
 class ImportExport extends WP_UnitTestCase
3 3
 {
4
-    public function setUp()
5
-    {
6
-        parent::setUp();
7
-    }
4
+	public function setUp()
5
+	{
6
+		parent::setUp();
7
+	}
8 8
 
9
-    public function testImportExport()
10
-    {
9
+	public function testImportExport()
10
+	{
11 11
 
12
-    }
12
+	}
13 13
 
14
-    public function tearDown()
15
-    {
16
-        parent::tearDown();
17
-    }
14
+	public function tearDown()
15
+	{
16
+		parent::tearDown();
17
+	}
18 18
 }
19 19
 ?>
20 20
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-templates/geodir-signup.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,20 +1,20 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Template for the GD register/signup page
4
- *
5
- * You can make most changes via hooks or see the link below for info on how to replace the template in your theme.
6
- *
7
- * @link http://docs.wpgeodirectory.com/customizing-geodirectory-templates/
8
- * @since 1.0.0
9
- * @package GeoDirectory
10
- */
3
+				 * Template for the GD register/signup page
4
+				 *
5
+				 * You can make most changes via hooks or see the link below for info on how to replace the template in your theme.
6
+				 *
7
+				 * @link http://docs.wpgeodirectory.com/customizing-geodirectory-templates/
8
+				 * @since 1.0.0
9
+				 * @package GeoDirectory
10
+				 */
11 11
 
12 12
 /*
13 13
  * If user is not signed in, redirect home.
14 14
  */
15 15
 if (get_current_user_id()) {
16
-    wp_redirect(home_url(), 302);
17
-    exit;
16
+	wp_redirect(home_url(), 302);
17
+	exit;
18 18
 }
19 19
 
20 20
 // call header
Please login to merge, or discard this patch.
geodirectory-functions/user_functions.php 3 patches
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -11,12 +11,12 @@  discard block
 block discarded – undo
11 11
  * @global string $plugin_prefix Geodirectory plugin table prefix.
12 12
  * @return array User listing count for each post type.
13 13
  */
14
-function geodir_user_favourite_listing_count($user_id=false)
14
+function geodir_user_favourite_listing_count($user_id = false)
15 15
 {
16 16
     global $wpdb, $plugin_prefix, $current_user;
17 17
 
18
-    if(!$user_id){$user_id = $current_user->ID;}
19
-    if(!$user_id){return array();}
18
+    if (!$user_id) {$user_id = $current_user->ID; }
19
+    if (!$user_id) {return array(); }
20 20
 
21 21
     $user_favorites = get_user_meta($user_id, 'gd_user_favourite_post', true);
22 22
     $all_posts = get_option('geodir_favorite_link_user_dashboard');
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
  * @package GeoDirectory
47 47
  */
48 48
 
49
-function geodir_user_show_favourites($user_id='',$output_type='select'){
49
+function geodir_user_show_favourites($user_id = '', $output_type = 'select') {
50 50
     // My Favourites in Dashboard
51 51
     $show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard');
52 52
     $user_favourite = geodir_user_favourite_listing_count($user_id);
@@ -78,9 +78,9 @@  discard block
 block discarded – undo
78 78
                  */
79 79
                 $post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $user_id);
80 80
 
81
-                if($output_type=='select'){
81
+                if ($output_type == 'select') {
82 82
                     $favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __(ucfirst($name), 'geodirectory') . '</option>';
83
-                }elseif($output_type=='link'){
83
+                }elseif ($output_type == 'link') {
84 84
                     $favourite_links[] = '<a href="' . $post_type_link . '">' . __(ucfirst($name), 'geodirectory') . '</a>';
85 85
                 }
86 86
 
@@ -89,8 +89,8 @@  discard block
 block discarded – undo
89 89
         }
90 90
 
91 91
         if ($favourite_links != '') {
92
-            $user = get_user_by( 'ID', $user_id );
93
-            if($output_type=='select') {
92
+            $user = get_user_by('ID', $user_id);
93
+            if ($output_type == 'select') {
94 94
                 ?>
95 95
                 <li>
96 96
                     <select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value"
@@ -102,9 +102,9 @@  discard block
 block discarded – undo
102 102
                     </select>
103 103
                 </li>
104 104
             <?php
105
-            }elseif($output_type=='link'){
106
-                if(!empty($favourite_links)){
107
-                    echo implode(" | ",$favourite_links);
105
+            }elseif ($output_type == 'link') {
106
+                if (!empty($favourite_links)) {
107
+                    echo implode(" | ", $favourite_links);
108 108
                 }
109 109
 
110 110
             }
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 
115 115
 
116 116
 
117
-function geodir_user_show_listings($user_id='',$output_type='select'){
117
+function geodir_user_show_listings($user_id = '', $output_type = 'select') {
118 118
 
119 119
     $show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard');
120 120
     $user_listing = geodir_user_post_listing_count();
@@ -146,17 +146,17 @@  discard block
 block discarded – undo
146 146
                  * @param int $current_user->ID Current user ID.
147 147
                  */
148 148
                 $listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $user_id);
149
-                if($output_type=='select') {
149
+                if ($output_type == 'select') {
150 150
                     $listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __(ucfirst($name), 'geodirectory') . '</option>';
151
-                }elseif($output_type=='link'){
152
-                    $listing_links [] = '<a href="' .$listing_link . '">' . __(ucfirst($name), 'geodirectory') . '</a>';
151
+                }elseif ($output_type == 'link') {
152
+                    $listing_links [] = '<a href="' . $listing_link . '">' . __(ucfirst($name), 'geodirectory') . '</a>';
153 153
                 }
154 154
             }
155 155
         }
156 156
 
157 157
         if ($listing_links != '') {
158
-            $user = get_user_by( 'ID', $user_id );
159
-            if($output_type=='select') {
158
+            $user = get_user_by('ID', $user_id);
159
+            if ($output_type == 'select') {
160 160
                 ?>
161 161
                 <li>
162 162
                     <select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value"
@@ -168,9 +168,9 @@  discard block
 block discarded – undo
168 168
                     </select>
169 169
                 </li>
170 170
             <?php
171
-            }elseif($output_type=='link'){
172
-                if(!empty($listing_links )){
173
-                    echo implode(" | ",$listing_links );
171
+            }elseif ($output_type == 'link') {
172
+                if (!empty($listing_links)) {
173
+                    echo implode(" | ", $listing_links);
174 174
                 }
175 175
 
176 176
             }
Please login to merge, or discard this patch.
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 
81 81
                 if($output_type=='select'){
82 82
                     $favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __(ucfirst($name), 'geodirectory') . '</option>';
83
-                }elseif($output_type=='link'){
83
+                } elseif($output_type=='link'){
84 84
                     $favourite_links[] = '<a href="' . $post_type_link . '">' . __(ucfirst($name), 'geodirectory') . '</a>';
85 85
                 }
86 86
 
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
                     </select>
103 103
                 </li>
104 104
             <?php
105
-            }elseif($output_type=='link'){
105
+            } elseif($output_type=='link'){
106 106
                 if(!empty($favourite_links)){
107 107
                     echo implode(" | ",$favourite_links);
108 108
                 }
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
                 $listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $user_id);
149 149
                 if($output_type=='select') {
150 150
                     $listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __(ucfirst($name), 'geodirectory') . '</option>';
151
-                }elseif($output_type=='link'){
151
+                } elseif($output_type=='link'){
152 152
                     $listing_links [] = '<a href="' .$listing_link . '">' . __(ucfirst($name), 'geodirectory') . '</a>';
153 153
                 }
154 154
             }
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
                     </select>
169 169
                 </li>
170 170
             <?php
171
-            }elseif($output_type=='link'){
171
+            } elseif($output_type=='link'){
172 172
                 if(!empty($listing_links )){
173 173
                     echo implode(" | ",$listing_links );
174 174
                 }
Please login to merge, or discard this patch.
Indentation   +119 added lines, -119 removed lines patch added patch discarded remove patch
@@ -13,28 +13,28 @@  discard block
 block discarded – undo
13 13
  */
14 14
 function geodir_user_favourite_listing_count($user_id=false)
15 15
 {
16
-    global $wpdb, $plugin_prefix, $current_user;
16
+	global $wpdb, $plugin_prefix, $current_user;
17 17
 
18
-    if(!$user_id){$user_id = $current_user->ID;}
19
-    if(!$user_id){return array();}
18
+	if(!$user_id){$user_id = $current_user->ID;}
19
+	if(!$user_id){return array();}
20 20
 
21
-    $user_favorites = get_user_meta($user_id, 'gd_user_favourite_post', true);
22
-    $all_posts = get_option('geodir_favorite_link_user_dashboard');
21
+	$user_favorites = get_user_meta($user_id, 'gd_user_favourite_post', true);
22
+	$all_posts = get_option('geodir_favorite_link_user_dashboard');
23 23
 
24
-    $user_listing = array();
25
-    if (is_array($all_posts) && !empty($all_posts) && is_array($user_favorites) && !empty($user_favorites)) {
26
-        $user_favorites = "'" . implode("','", $user_favorites) . "'";
24
+	$user_listing = array();
25
+	if (is_array($all_posts) && !empty($all_posts) && is_array($user_favorites) && !empty($user_favorites)) {
26
+		$user_favorites = "'" . implode("','", $user_favorites) . "'";
27 27
 
28
-        foreach ($all_posts as $ptype) {
29
-            $total_posts = $wpdb->get_var("SELECT count( ID ) FROM " . $wpdb->prefix . "posts WHERE  post_type='" . $ptype . "' AND post_status = 'publish' AND ID IN (" . $user_favorites . ")");
28
+		foreach ($all_posts as $ptype) {
29
+			$total_posts = $wpdb->get_var("SELECT count( ID ) FROM " . $wpdb->prefix . "posts WHERE  post_type='" . $ptype . "' AND post_status = 'publish' AND ID IN (" . $user_favorites . ")");
30 30
 
31
-            if ($total_posts > 0) {
32
-                $user_listing[$ptype] = $total_posts;
33
-            }
34
-        }
35
-    }
31
+			if ($total_posts > 0) {
32
+				$user_listing[$ptype] = $total_posts;
33
+			}
34
+		}
35
+	}
36 36
 
37
-    return $user_listing;
37
+	return $user_listing;
38 38
 }
39 39
 
40 40
 
@@ -47,51 +47,51 @@  discard block
 block discarded – undo
47 47
  */
48 48
 
49 49
 function geodir_user_show_favourites($user_id='',$output_type='select'){
50
-    // My Favourites in Dashboard
51
-    $show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard');
52
-    $user_favourite = geodir_user_favourite_listing_count($user_id);
53
-
54
-    if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) {
55
-        $favourite_links = '';
56
-        $post_types = geodir_get_posttypes('object');
57
-
58
-        $author_link = get_author_posts_url($user_id);
59
-        $author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
60
-
61
-        foreach ($post_types as $key => $postobj) {
62
-            if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) {
63
-                $name = $postobj->labels->name;
64
-                $post_type_link = geodir_getlink($author_link, array('stype' => $key, 'list' => 'favourite'), false);
65
-
66
-                $selected = '';
67
-
68
-                if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) {
69
-                    $selected = 'selected="selected"';
70
-                }
71
-                /**
72
-                 * Filter favorite listing link.
73
-                 *
74
-                 * @since 1.0.0
75
-                 * @param string $post_type_link Favorite listing link.
76
-                 * @param string $key Favorite listing array key.
77
-                 * @param int $current_user->ID Current user ID.
78
-                 */
79
-                $post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $user_id);
80
-
81
-                if($output_type=='select'){
82
-                    $favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __(ucfirst($name), 'geodirectory') . '</option>';
83
-                }elseif($output_type=='link'){
84
-                    $favourite_links[] = '<a href="' . $post_type_link . '">' . __(ucfirst($name), 'geodirectory') . '</a>';
85
-                }
86
-
87
-
88
-            }
89
-        }
90
-
91
-        if ($favourite_links != '') {
92
-            $user = get_user_by( 'ID', $user_id );
93
-            if($output_type=='select') {
94
-                ?>
50
+	// My Favourites in Dashboard
51
+	$show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard');
52
+	$user_favourite = geodir_user_favourite_listing_count($user_id);
53
+
54
+	if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) {
55
+		$favourite_links = '';
56
+		$post_types = geodir_get_posttypes('object');
57
+
58
+		$author_link = get_author_posts_url($user_id);
59
+		$author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
60
+
61
+		foreach ($post_types as $key => $postobj) {
62
+			if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) {
63
+				$name = $postobj->labels->name;
64
+				$post_type_link = geodir_getlink($author_link, array('stype' => $key, 'list' => 'favourite'), false);
65
+
66
+				$selected = '';
67
+
68
+				if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) {
69
+					$selected = 'selected="selected"';
70
+				}
71
+				/**
72
+				 * Filter favorite listing link.
73
+				 *
74
+				 * @since 1.0.0
75
+				 * @param string $post_type_link Favorite listing link.
76
+				 * @param string $key Favorite listing array key.
77
+				 * @param int $current_user->ID Current user ID.
78
+				 */
79
+				$post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $user_id);
80
+
81
+				if($output_type=='select'){
82
+					$favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __(ucfirst($name), 'geodirectory') . '</option>';
83
+				}elseif($output_type=='link'){
84
+					$favourite_links[] = '<a href="' . $post_type_link . '">' . __(ucfirst($name), 'geodirectory') . '</a>';
85
+				}
86
+
87
+
88
+			}
89
+		}
90
+
91
+		if ($favourite_links != '') {
92
+			$user = get_user_by( 'ID', $user_id );
93
+			if($output_type=='select') {
94
+				?>
95 95
                 <li>
96 96
                     <select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value"
97 97
                             option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false"
@@ -102,62 +102,62 @@  discard block
 block discarded – undo
102 102
                     </select>
103 103
                 </li>
104 104
             <?php
105
-            }elseif($output_type=='link'){
106
-                if(!empty($favourite_links)){
107
-                    echo implode(" | ",$favourite_links);
108
-                }
109
-
110
-            }
111
-        }
112
-    }
105
+			}elseif($output_type=='link'){
106
+				if(!empty($favourite_links)){
107
+					echo implode(" | ",$favourite_links);
108
+				}
109
+
110
+			}
111
+		}
112
+	}
113 113
 }
114 114
 
115 115
 
116 116
 
117 117
 function geodir_user_show_listings($user_id='',$output_type='select'){
118 118
 
119
-    $show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard');
120
-    $user_listing = geodir_user_post_listing_count($user_id);
121
-
122
-    if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) {
123
-        $listing_links = '';
124
-
125
-        $post_types = geodir_get_posttypes('object');
126
-
127
-        $author_link = get_author_posts_url($user_id);
128
-        $author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
129
-
130
-        foreach ($post_types as $key => $postobj) {
131
-            if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) {
132
-                $name = $postobj->labels->name;
133
-                $listing_link = geodir_getlink($author_link, array('stype' => $key), false);
134
-
135
-                $selected = '';
136
-                if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) {
137
-                    $selected = 'selected="selected"';
138
-                }
139
-
140
-                /**
141
-                 * Filter my listing link.
142
-                 *
143
-                 * @since 1.0.0
144
-                 * @param string $listing_link My listing link.
145
-                 * @param string $key My listing array key.
146
-                 * @param int $current_user->ID Current user ID.
147
-                 */
148
-                $listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $user_id);
149
-                if($output_type=='select') {
150
-                    $listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __(ucfirst($name), 'geodirectory') . '</option>';
151
-                }elseif($output_type=='link'){
152
-                    $listing_links [] = '<a href="' .$listing_link . '">' . __(ucfirst($name), 'geodirectory') . '</a>';
153
-                }
154
-            }
155
-        }
156
-
157
-        if ($listing_links != '') {
158
-            $user = get_user_by( 'ID', $user_id );
159
-            if($output_type=='select') {
160
-                ?>
119
+	$show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard');
120
+	$user_listing = geodir_user_post_listing_count($user_id);
121
+
122
+	if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) {
123
+		$listing_links = '';
124
+
125
+		$post_types = geodir_get_posttypes('object');
126
+
127
+		$author_link = get_author_posts_url($user_id);
128
+		$author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
129
+
130
+		foreach ($post_types as $key => $postobj) {
131
+			if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) {
132
+				$name = $postobj->labels->name;
133
+				$listing_link = geodir_getlink($author_link, array('stype' => $key), false);
134
+
135
+				$selected = '';
136
+				if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) {
137
+					$selected = 'selected="selected"';
138
+				}
139
+
140
+				/**
141
+				 * Filter my listing link.
142
+				 *
143
+				 * @since 1.0.0
144
+				 * @param string $listing_link My listing link.
145
+				 * @param string $key My listing array key.
146
+				 * @param int $current_user->ID Current user ID.
147
+				 */
148
+				$listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $user_id);
149
+				if($output_type=='select') {
150
+					$listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __(ucfirst($name), 'geodirectory') . '</option>';
151
+				}elseif($output_type=='link'){
152
+					$listing_links [] = '<a href="' .$listing_link . '">' . __(ucfirst($name), 'geodirectory') . '</a>';
153
+				}
154
+			}
155
+		}
156
+
157
+		if ($listing_links != '') {
158
+			$user = get_user_by( 'ID', $user_id );
159
+			if($output_type=='select') {
160
+				?>
161 161
                 <li>
162 162
                     <select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value"
163 163
                             option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false"
@@ -168,13 +168,13 @@  discard block
 block discarded – undo
168 168
                     </select>
169 169
                 </li>
170 170
             <?php
171
-            }elseif($output_type=='link'){
172
-                if(!empty($listing_links )){
173
-                    echo implode(" | ",$listing_links );
174
-                }
175
-
176
-            }
177
-        }
178
-    }
171
+			}elseif($output_type=='link'){
172
+				if(!empty($listing_links )){
173
+					echo implode(" | ",$listing_links );
174
+				}
175
+
176
+			}
177
+		}
178
+	}
179 179
 
180 180
 }
Please login to merge, or discard this patch.
geodirectory_hooks_actions.php 4 patches
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2187,7 +2187,7 @@  discard block
 block discarded – undo
2187 2187
  * @global object $wpdb WordPress Database object.
2188 2188
  * @global string $plugin_prefix Geodirectory plugin table prefix.
2189 2189
  * @param int $attachment_id Attachment ID.
2190
- * @return bool|void Returns false on failure.
2190
+ * @return false|null Returns false on failure.
2191 2191
  */
2192 2192
 function geodirectory_before_featured_image_delete($attachment_id)
2193 2193
 {
@@ -2360,6 +2360,7 @@  discard block
 block discarded – undo
2360 2360
  * @global object $wpdb WordPress Database object.
2361 2361
  * @global object $current_user Current user object.
2362 2362
  * @global string $plugin_prefix Geodirectory plugin table prefix.
2363
+ * @param string $user_id
2363 2364
  * @return array User listing count for each post type.
2364 2365
  */
2365 2366
 function geodir_user_post_listing_count($user_id=null)
Please login to merge, or discard this patch.
Indentation   +1479 added lines, -1479 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
  */
20 20
 function geodir_get_ajax_url()
21 21
 {
22
-    return admin_url('admin-ajax.php?action=geodir_ajax_action');
22
+	return admin_url('admin-ajax.php?action=geodir_ajax_action');
23 23
 }
24 24
 
25 25
 /////////////////////
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 add_filter('query_vars', 'geodir_add_geodir_page_var');
88 88
 add_action('wp', 'geodir_add_page_id_in_query_var'); // problem fix in wordpress 3.8
89 89
 if (get_option('permalink_structure') != '')
90
-    add_filter('parse_request', 'geodir_set_location_var_in_session_in_core');
90
+	add_filter('parse_request', 'geodir_set_location_var_in_session_in_core');
91 91
 
92 92
 add_filter('parse_query', 'geodir_modified_query');
93 93
 
@@ -154,14 +154,14 @@  discard block
 block discarded – undo
154 154
 /* POST AND LOOP ACTIONS */
155 155
 ////////////////////////
156 156
 if (!is_admin()) {
157
-    add_action('pre_get_posts', 'geodir_exclude_page', 100); /// Will help to exclude virtural page from everywhere
158
-    add_filter('wp_list_pages_excludes', 'exclude_from_wp_list_pages', 100);
159
-    /** Exclude Virtual Pages From Pages List **/
160
-    add_action('pre_get_posts', 'set_listing_request', 0);
161
-    add_action('pre_get_posts', 'geodir_listing_loop_filter', 1);
162
-    add_filter('excerpt_more', 'geodir_excerpt_more', 1000);
163
-    add_filter('excerpt_length', 'geodir_excerpt_length', 1000);
164
-    add_action('the_post', 'create_marker_jason_of_posts'); // Add marker in json array, Map related filter
157
+	add_action('pre_get_posts', 'geodir_exclude_page', 100); /// Will help to exclude virtural page from everywhere
158
+	add_filter('wp_list_pages_excludes', 'exclude_from_wp_list_pages', 100);
159
+	/** Exclude Virtual Pages From Pages List **/
160
+	add_action('pre_get_posts', 'set_listing_request', 0);
161
+	add_action('pre_get_posts', 'geodir_listing_loop_filter', 1);
162
+	add_filter('excerpt_more', 'geodir_excerpt_more', 1000);
163
+	add_filter('excerpt_length', 'geodir_excerpt_length', 1000);
164
+	add_action('the_post', 'create_marker_jason_of_posts'); // Add marker in json array, Map related filter
165 165
 }
166 166
 
167 167
 
@@ -221,12 +221,12 @@  discard block
 block discarded – undo
221 221
  */
222 222
 function geodir_unset_prev_theme_nav_location($newname)
223 223
 {
224
-    $geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
225
-    if ($geodir_theme_location) {
226
-        update_option('geodir_theme_location_nav', $geodir_theme_location);
227
-    } else {
228
-        update_option('geodir_theme_location_nav', '');
229
-    }
224
+	$geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
225
+	if ($geodir_theme_location) {
226
+		update_option('geodir_theme_location_nav', $geodir_theme_location);
227
+	} else {
228
+		update_option('geodir_theme_location_nav', '');
229
+	}
230 230
 }
231 231
 
232 232
 /// add action for theme switch to blank previous theme navigation location setting
@@ -247,32 +247,32 @@  discard block
 block discarded – undo
247 247
  */
248 248
 function geodir_add_post_filters()
249 249
 {
250
-    /**
251
-     * Contains all function for filtering listing.
252
-     *
253
-     * @since 1.0.0
254
-     * @package GeoDirectory
255
-     */
256
-    include_once('geodirectory-functions/listing_filters.php');
250
+	/**
251
+	 * Contains all function for filtering listing.
252
+	 *
253
+	 * @since 1.0.0
254
+	 * @package GeoDirectory
255
+	 */
256
+	include_once('geodirectory-functions/listing_filters.php');
257 257
 }
258 258
 
259 259
 
260 260
 if (!function_exists('geodir_init_defaults')) {
261
-    /**
262
-     * Calls the function to register the GeoDirectory default CPT and taxonomies.
263
-     *
264
-     * @since 1.0.0
265
-     * @package GeoDirectory
266
-     */
267
-    function geodir_init_defaults()
268
-    {
269
-        if (function_exists('geodir_register_defaults')) {
261
+	/**
262
+	 * Calls the function to register the GeoDirectory default CPT and taxonomies.
263
+	 *
264
+	 * @since 1.0.0
265
+	 * @package GeoDirectory
266
+	 */
267
+	function geodir_init_defaults()
268
+	{
269
+		if (function_exists('geodir_register_defaults')) {
270 270
 
271
-            geodir_register_defaults();
271
+			geodir_register_defaults();
272 272
 
273
-        }
273
+		}
274 274
 
275
-    }
275
+	}
276 276
 }
277 277
 
278 278
 
@@ -294,26 +294,26 @@  discard block
 block discarded – undo
294 294
 // CALLED ON 'sidebars_widgets' FILTER
295 295
 
296 296
 if (!function_exists('geodir_restrict_widget')) {
297
-    /**
298
-     * Sets global values to be able to tell if the current page is a GeoDirectory listing page or a GeoDirectory details page.
299
-     *
300
-     * @global bool $is_listing Sets the global value to true if on a GD category page. False if not.
301
-     * @global bool $is_single_place Sets the global value to true if on a GD details (post) page. False if not.
302
-     * @since 1.0.0
303
-     * @package GeoDirectory
304
-     */
305
-    function geodir_restrict_widget()
306
-    {
307
-        global $is_listing, $is_single_place;
297
+	/**
298
+	 * Sets global values to be able to tell if the current page is a GeoDirectory listing page or a GeoDirectory details page.
299
+	 *
300
+	 * @global bool $is_listing Sets the global value to true if on a GD category page. False if not.
301
+	 * @global bool $is_single_place Sets the global value to true if on a GD details (post) page. False if not.
302
+	 * @since 1.0.0
303
+	 * @package GeoDirectory
304
+	 */
305
+	function geodir_restrict_widget()
306
+	{
307
+		global $is_listing, $is_single_place;
308 308
 
309
-        // set is listing	
310
-        (geodir_is_page('listing')) ? $is_listing = true : $is_listing = false;
309
+		// set is listing	
310
+		(geodir_is_page('listing')) ? $is_listing = true : $is_listing = false;
311 311
 
312
-        // set is single place
313
-        (geodir_is_page('place')) ? $is_single_place = true : $is_single_place = false;
312
+		// set is single place
313
+		(geodir_is_page('place')) ? $is_single_place = true : $is_single_place = false;
314 314
 
315 315
 
316
-    }
316
+	}
317 317
 }
318 318
 
319 319
 
@@ -334,32 +334,32 @@  discard block
 block discarded – undo
334 334
  */
335 335
 function geodir_detail_page_sidebar_content_sorting()
336 336
 {
337
-    $arr_detail_page_sidebar_content =
338
-        /**
339
-         * An array of functions to be called to be displayed on the details (post) page sidebar.
340
-         *
341
-         * This filter can be used to remove sections of the details page sidebar,
342
-         * add new sections or rearrange the order of the sections.
343
-         *
344
-         * @param array array('geodir_social_sharing_buttons','geodir_share_this_button','geodir_detail_page_google_analytics','geodir_edit_post_link','geodir_detail_page_review_rating','geodir_detail_page_more_info') The array of functions that will be called.
345
-         * @since 1.0.0
346
-         */
347
-        apply_filters('geodir_detail_page_sidebar_content',
348
-            array('geodir_social_sharing_buttons',
349
-                'geodir_share_this_button',
350
-                'geodir_detail_page_google_analytics',
351
-                'geodir_edit_post_link',
352
-                'geodir_detail_page_review_rating',
353
-                'geodir_detail_page_more_info'
354
-            ) // end of array 
355
-        ); // end of apply filter
356
-    if (!empty($arr_detail_page_sidebar_content)) {
357
-        foreach ($arr_detail_page_sidebar_content as $content_function) {
358
-            if (function_exists($content_function)) {
359
-                add_action('geodir_detail_page_sidebar', $content_function);
360
-            }
361
-        }
362
-    }
337
+	$arr_detail_page_sidebar_content =
338
+		/**
339
+		 * An array of functions to be called to be displayed on the details (post) page sidebar.
340
+		 *
341
+		 * This filter can be used to remove sections of the details page sidebar,
342
+		 * add new sections or rearrange the order of the sections.
343
+		 *
344
+		 * @param array array('geodir_social_sharing_buttons','geodir_share_this_button','geodir_detail_page_google_analytics','geodir_edit_post_link','geodir_detail_page_review_rating','geodir_detail_page_more_info') The array of functions that will be called.
345
+		 * @since 1.0.0
346
+		 */
347
+		apply_filters('geodir_detail_page_sidebar_content',
348
+			array('geodir_social_sharing_buttons',
349
+				'geodir_share_this_button',
350
+				'geodir_detail_page_google_analytics',
351
+				'geodir_edit_post_link',
352
+				'geodir_detail_page_review_rating',
353
+				'geodir_detail_page_more_info'
354
+			) // end of array 
355
+		); // end of apply filter
356
+	if (!empty($arr_detail_page_sidebar_content)) {
357
+		foreach ($arr_detail_page_sidebar_content as $content_function) {
358
+			if (function_exists($content_function)) {
359
+				add_action('geodir_detail_page_sidebar', $content_function);
360
+			}
361
+		}
362
+	}
363 363
 }
364 364
 
365 365
 add_action('geodir_after_edit_post_link', 'geodir_add_to_favourite_link', 1);
@@ -374,14 +374,14 @@  discard block
 block discarded – undo
374 374
  */
375 375
 function geodir_add_to_favourite_link()
376 376
 {
377
-    global $post, $preview;
378
-    if (!$preview && geodir_is_page('detail')) {
379
-        ?>
377
+	global $post, $preview;
378
+	if (!$preview && geodir_is_page('detail')) {
379
+		?>
380 380
         <p class="edit_link">
381 381
             <?php geodir_favourite_html($post->post_author, $post->ID); ?>
382 382
         </p>
383 383
     <?php
384
-    }
384
+	}
385 385
 }
386 386
 
387 387
 /**
@@ -395,41 +395,41 @@  discard block
 block discarded – undo
395 395
  */
396 396
 function geodir_social_sharing_buttons()
397 397
 {
398
-    global $preview;
399
-    ob_start(); // Start  buffering;
400
-    /**
401
-     * This action is called before the social buttons twitter,facebook and google plus are output in a containing div.
402
-     *
403
-     * @since 1.0.0
404
-     */
405
-    do_action('geodir_before_social_sharing_buttons');
406
-    if (!$preview) {
407
-        ?>
398
+	global $preview;
399
+	ob_start(); // Start  buffering;
400
+	/**
401
+	 * This action is called before the social buttons twitter,facebook and google plus are output in a containing div.
402
+	 *
403
+	 * @since 1.0.0
404
+	 */
405
+	do_action('geodir_before_social_sharing_buttons');
406
+	if (!$preview) {
407
+		?>
408 408
         <div class="likethis">
409 409
             <?php geodir_twitter_tweet_button(); ?>
410 410
             <?php geodir_fb_like_button(); ?>
411 411
             <?php geodir_google_plus_button(); ?>
412 412
         </div>
413 413
     <?php
414
-    }// end of if, if its a preview or not
415
-
416
-    /**
417
-     * This action is called after the social buttons twitter,facebook and google plus are output in a containing div.
418
-     *
419
-     * @since 1.0.0
420
-     */
421
-    do_action('geodir_after_social_sharing_buttons');
422
-    $content_html = ob_get_clean();
423
-    if (trim($content_html) != '')
424
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>';
425
-    if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
426
-        /**
427
-         * Filter the geodir_social_sharing_buttons() function content.
428
-         *
429
-         * @param string $content_html The output html of the geodir_social_sharing_buttons() function.
430
-         */
431
-        echo $content_html = apply_filters('geodir_social_sharing_buttons_html', $content_html);
432
-    }
414
+	}// end of if, if its a preview or not
415
+
416
+	/**
417
+	 * This action is called after the social buttons twitter,facebook and google plus are output in a containing div.
418
+	 *
419
+	 * @since 1.0.0
420
+	 */
421
+	do_action('geodir_after_social_sharing_buttons');
422
+	$content_html = ob_get_clean();
423
+	if (trim($content_html) != '')
424
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>';
425
+	if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
426
+		/**
427
+		 * Filter the geodir_social_sharing_buttons() function content.
428
+		 *
429
+		 * @param string $content_html The output html of the geodir_social_sharing_buttons() function.
430
+		 */
431
+		echo $content_html = apply_filters('geodir_social_sharing_buttons_html', $content_html);
432
+	}
433 433
 
434 434
 
435 435
 }
@@ -445,39 +445,39 @@  discard block
 block discarded – undo
445 445
  */
446 446
 function geodir_share_this_button()
447 447
 {
448
-    global $preview;
449
-    ob_start(); // Start buffering;
450
-    /**
451
-     * This is called before the share this html in the function geodir_share_this_button()
452
-     *
453
-     * @since 1.0.0
454
-     */
455
-    do_action('geodir_before_share_this_button');
456
-    if (!$preview) {
457
-        ?>
448
+	global $preview;
449
+	ob_start(); // Start buffering;
450
+	/**
451
+	 * This is called before the share this html in the function geodir_share_this_button()
452
+	 *
453
+	 * @since 1.0.0
454
+	 */
455
+	do_action('geodir_before_share_this_button');
456
+	if (!$preview) {
457
+		?>
458 458
         <div class="share clearfix">
459 459
             <?php geodir_share_this_button_code(); ?>
460 460
         </div>
461 461
     <?php
462
-    }// end of if, if its a preview or not
463
-    /**
464
-     * This is called after the share this html in the function geodir_share_this_button()
465
-     *
466
-     * @since 1.0.0
467
-     */
468
-    do_action('geodir_after_share_this_button');
469
-    $content_html = ob_get_clean();
470
-    if (trim($content_html) != '')
471
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-sharethis">' . $content_html . '</div>';
472
-    if ((int)get_option('geodir_disable_sharethis_button_section') != 1) {
473
-        /**
474
-         * Filter the geodir_share_this_button() function content.
475
-         *
476
-         * @param string $content_html The output html of the geodir_share_this_button() function.
477
-         * @since 1.0.0
478
-         */
479
-        echo $content_html = apply_filters('geodir_share_this_button_html', $content_html);
480
-    }
462
+	}// end of if, if its a preview or not
463
+	/**
464
+	 * This is called after the share this html in the function geodir_share_this_button()
465
+	 *
466
+	 * @since 1.0.0
467
+	 */
468
+	do_action('geodir_after_share_this_button');
469
+	$content_html = ob_get_clean();
470
+	if (trim($content_html) != '')
471
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-sharethis">' . $content_html . '</div>';
472
+	if ((int)get_option('geodir_disable_sharethis_button_section') != 1) {
473
+		/**
474
+		 * Filter the geodir_share_this_button() function content.
475
+		 *
476
+		 * @param string $content_html The output html of the geodir_share_this_button() function.
477
+		 * @since 1.0.0
478
+		 */
479
+		echo $content_html = apply_filters('geodir_share_this_button_html', $content_html);
480
+	}
481 481
 
482 482
 }
483 483
 
@@ -493,46 +493,46 @@  discard block
 block discarded – undo
493 493
  */
494 494
 function geodir_edit_post_link()
495 495
 {
496
-    global $post, $preview;
497
-    ob_start(); // Start buffering;
498
-    /**
499
-     * This is called before the edit post link html in the function geodir_edit_post_link()
500
-     *
501
-     * @since 1.0.0
502
-     */
503
-    do_action('geodir_before_edit_post_link');
504
-    if (!$preview) {
505
-        $is_current_user_owner = geodir_listing_belong_to_current_user();
496
+	global $post, $preview;
497
+	ob_start(); // Start buffering;
498
+	/**
499
+	 * This is called before the edit post link html in the function geodir_edit_post_link()
500
+	 *
501
+	 * @since 1.0.0
502
+	 */
503
+	do_action('geodir_before_edit_post_link');
504
+	if (!$preview) {
505
+		$is_current_user_owner = geodir_listing_belong_to_current_user();
506 506
         
507
-        if ($is_current_user_owner) {
508
-            $post_id = $post->ID;
507
+		if ($is_current_user_owner) {
508
+			$post_id = $post->ID;
509 509
             
510
-            if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
511
-                $post_id = (int)$_REQUEST['pid'];
512
-            }
510
+			if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
511
+				$post_id = (int)$_REQUEST['pid'];
512
+			}
513 513
 
514
-            $postlink = get_permalink(geodir_add_listing_page_id());
515
-            $editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
516
-            echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
517
-        }
518
-    }// end of if, if its a preview or not
519
-    /**
520
-     * This is called after the edit post link html in the function geodir_edit_post_link()
521
-     *
522
-     * @since 1.0.0
523
-     */
524
-    do_action('geodir_after_edit_post_link');
525
-    $content_html = ob_get_clean();
526
-    if (trim($content_html) != '')
527
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>';
528
-    if ((int)get_option('geodir_disable_user_links_section') != 1) {
529
-        /**
530
-         * Filter the geodir_edit_post_link() function content.
531
-         *
532
-         * @param string $content_html The output html of the geodir_edit_post_link() function.
533
-         */
534
-        echo $content_html = apply_filters('geodir_edit_post_link_html', $content_html);
535
-    }
514
+			$postlink = get_permalink(geodir_add_listing_page_id());
515
+			$editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
516
+			echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
517
+		}
518
+	}// end of if, if its a preview or not
519
+	/**
520
+	 * This is called after the edit post link html in the function geodir_edit_post_link()
521
+	 *
522
+	 * @since 1.0.0
523
+	 */
524
+	do_action('geodir_after_edit_post_link');
525
+	$content_html = ob_get_clean();
526
+	if (trim($content_html) != '')
527
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>';
528
+	if ((int)get_option('geodir_disable_user_links_section') != 1) {
529
+		/**
530
+		 * Filter the geodir_edit_post_link() function content.
531
+		 *
532
+		 * @param string $content_html The output html of the geodir_edit_post_link() function.
533
+		 */
534
+		echo $content_html = apply_filters('geodir_edit_post_link_html', $content_html);
535
+	}
536 536
 }
537 537
 
538 538
 /**
@@ -546,41 +546,41 @@  discard block
 block discarded – undo
546 546
  */
547 547
 function geodir_detail_page_google_analytics()
548 548
 {
549
-    global $post;
550
-    $package_info = array();
551
-    $package_info = geodir_post_package_info($package_info, $post);
549
+	global $post;
550
+	$package_info = array();
551
+	$package_info = geodir_post_package_info($package_info, $post);
552 552
 
553
-    $id = trim(get_option('geodir_ga_id'));
553
+	$id = trim(get_option('geodir_ga_id'));
554 554
 
555
-    if (!$id) {
556
-        return; //if no Google Analytics ID then bail.
557
-    }
555
+	if (!$id) {
556
+		return; //if no Google Analytics ID then bail.
557
+	}
558 558
 
559
-    ob_start(); // Start buffering;
560
-    /**
561
-     * This is called before the edit post link html in the function geodir_detail_page_google_analytics()
562
-     *
563
-     * @since 1.0.0
564
-     */
565
-    do_action('geodir_before_google_analytics');
559
+	ob_start(); // Start buffering;
560
+	/**
561
+	 * This is called before the edit post link html in the function geodir_detail_page_google_analytics()
562
+	 *
563
+	 * @since 1.0.0
564
+	 */
565
+	do_action('geodir_before_google_analytics');
566 566
     
567
-    $refresh_time = get_option('geodir_ga_refresh_time', 5);
568
-    /**
569
-     * Filter the time interval to check & refresh new users results.
570
-     *
571
-     * @since 1.5.9
572
-     *
573
-     * @param int $refresh_time Time interval to check & refresh new users results.
574
-     */
575
-    $refresh_time = apply_filters('geodir_google_analytics_refresh_time', $refresh_time);
576
-    $refresh_time = absint($refresh_time * 1000);
567
+	$refresh_time = get_option('geodir_ga_refresh_time', 5);
568
+	/**
569
+	 * Filter the time interval to check & refresh new users results.
570
+	 *
571
+	 * @since 1.5.9
572
+	 *
573
+	 * @param int $refresh_time Time interval to check & refresh new users results.
574
+	 */
575
+	$refresh_time = apply_filters('geodir_google_analytics_refresh_time', $refresh_time);
576
+	$refresh_time = absint($refresh_time * 1000);
577 577
     
578
-    $hide_refresh = get_option('geodir_ga_auto_refresh');
578
+	$hide_refresh = get_option('geodir_ga_auto_refresh');
579 579
     
580
-    $auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0;
581
-    if (get_option('geodir_ga_stats') && is_user_logged_in() &&  (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id()==$post->post_author || current_user_can( 'manage_options' )) ) {
582
-        $page_url = urlencode($_SERVER['REQUEST_URI']);
583
-        ?>
580
+	$auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0;
581
+	if (get_option('geodir_ga_stats') && is_user_logged_in() &&  (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id()==$post->post_author || current_user_can( 'manage_options' )) ) {
582
+		$page_url = urlencode($_SERVER['REQUEST_URI']);
583
+		?>
584 584
         <script type="text/javascript">
585 585
             var gd_gaTimeOut;
586 586
             var gd_gaTime = parseInt('<?php echo $refresh_time;?>');
@@ -832,15 +832,15 @@  discard block
 block discarded – undo
832 832
                     var labels = results[1].rows.map(function(row) { return +row[0]; });
833 833
 
834 834
                     <?php
835
-                    // Here we list the shorthand days of the week so it can be used in translation.
836
-                    __("Mon",'geodirectory');
837
-                    __("Tue",'geodirectory');
838
-                    __("Wed",'geodirectory');
839
-                    __("Thu",'geodirectory');
840
-                    __("Fri",'geodirectory');
841
-                    __("Sat",'geodirectory');
842
-                    __("Sun",'geodirectory');
843
-                    ?>
835
+					// Here we list the shorthand days of the week so it can be used in translation.
836
+					__("Mon",'geodirectory');
837
+					__("Tue",'geodirectory');
838
+					__("Wed",'geodirectory');
839
+					__("Thu",'geodirectory');
840
+					__("Fri",'geodirectory');
841
+					__("Sat",'geodirectory');
842
+					__("Sun",'geodirectory');
843
+					?>
844 844
 
845 845
                     labels = [
846 846
                         "<?php _e(date('D', strtotime("+1 day")),'geodirectory'); ?>",
@@ -1089,24 +1089,24 @@  discard block
 block discarded – undo
1089 1089
         </span>
1090 1090
 
1091 1091
     <?php
1092
-    }
1093
-    /**
1094
-     * This is called after the edit post link html in the function geodir_detail_page_google_analytics()
1095
-     *
1096
-     * @since 1.0.0
1097
-     */
1098
-    do_action('geodir_after_google_analytics');
1099
-    $content_html = ob_get_clean();
1100
-    if (trim($content_html) != '')
1101
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>';
1102
-    if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
1103
-        /**
1104
-         * Filter the geodir_edit_post_link() function content.
1105
-         *
1106
-         * @param string $content_html The output html of the geodir_edit_post_link() function.
1107
-         */
1108
-        echo $content_html = apply_filters('geodir_google_analytic_html', $content_html);
1109
-    }
1092
+	}
1093
+	/**
1094
+	 * This is called after the edit post link html in the function geodir_detail_page_google_analytics()
1095
+	 *
1096
+	 * @since 1.0.0
1097
+	 */
1098
+	do_action('geodir_after_google_analytics');
1099
+	$content_html = ob_get_clean();
1100
+	if (trim($content_html) != '')
1101
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>';
1102
+	if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
1103
+		/**
1104
+		 * Filter the geodir_edit_post_link() function content.
1105
+		 *
1106
+		 * @param string $content_html The output html of the geodir_edit_post_link() function.
1107
+		 */
1108
+		echo $content_html = apply_filters('geodir_google_analytic_html', $content_html);
1109
+	}
1110 1110
 }
1111 1111
 
1112 1112
 /**
@@ -1120,90 +1120,90 @@  discard block
 block discarded – undo
1120 1120
  */
1121 1121
 function geodir_detail_page_review_rating()
1122 1122
 {
1123
-    global $post, $preview, $post_images;
1124
-    ob_start(); // Start  buffering;
1125
-    /**
1126
-     * This is called before the rating html in the function geodir_detail_page_review_rating().
1127
-     *
1128
-     * This is called outside the check for an actual rating and the check for preview page.
1129
-     *
1130
-     * @since 1.0.0
1131
-     */
1132
-    do_action('geodir_before_detail_page_review_rating');
1133
-
1134
-    $comment_count = geodir_get_review_count_total($post->ID);
1135
-    $post_avgratings = geodir_get_post_rating($post->ID);
1136
-
1137
-    if ($post_avgratings != 0 && !$preview) {
1138
-        /**
1139
-         * This is called before the rating html in the function geodir_detail_page_review_rating().
1140
-         *
1141
-         * This is called inside the check for an actual rating and the check for preview page.
1142
-         *
1143
-         * @since 1.0.0
1144
-         * @param float $post_avgratings Average rating for the surrent post.
1145
-         * @param int $post->ID Current post ID.
1146
-         */
1147
-        do_action('geodir_before_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1148
-
1149
-        $html = '<p style=" float:left;">';
1150
-        $html .= geodir_get_rating_stars($post_avgratings, $post->ID);
1151
-        $html .= '<div class="average-review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">';
1152
-        $post_avgratings = (is_float($post_avgratings) || (strpos($post_avgratings, ".", 1) == 1 && strlen($post_avgratings) > 3)) ? number_format($post_avgratings, 1, '.', '') : $post_avgratings;
1123
+	global $post, $preview, $post_images;
1124
+	ob_start(); // Start  buffering;
1125
+	/**
1126
+	 * This is called before the rating html in the function geodir_detail_page_review_rating().
1127
+	 *
1128
+	 * This is called outside the check for an actual rating and the check for preview page.
1129
+	 *
1130
+	 * @since 1.0.0
1131
+	 */
1132
+	do_action('geodir_before_detail_page_review_rating');
1133
+
1134
+	$comment_count = geodir_get_review_count_total($post->ID);
1135
+	$post_avgratings = geodir_get_post_rating($post->ID);
1136
+
1137
+	if ($post_avgratings != 0 && !$preview) {
1138
+		/**
1139
+		 * This is called before the rating html in the function geodir_detail_page_review_rating().
1140
+		 *
1141
+		 * This is called inside the check for an actual rating and the check for preview page.
1142
+		 *
1143
+		 * @since 1.0.0
1144
+		 * @param float $post_avgratings Average rating for the surrent post.
1145
+		 * @param int $post->ID Current post ID.
1146
+		 */
1147
+		do_action('geodir_before_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1148
+
1149
+		$html = '<p style=" float:left;">';
1150
+		$html .= geodir_get_rating_stars($post_avgratings, $post->ID);
1151
+		$html .= '<div class="average-review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">';
1152
+		$post_avgratings = (is_float($post_avgratings) || (strpos($post_avgratings, ".", 1) == 1 && strlen($post_avgratings) > 3)) ? number_format($post_avgratings, 1, '.', '') : $post_avgratings;
1153 1153
        
1154 1154
 	   $reviews_text = $comment_count > 1 ? __("reviews", 'geodirectory') : __("review", 'geodirectory');
1155 1155
 	   
1156 1156
 	   $html .= '<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating"><span class="rating" itemprop="average" content="' . $post_avgratings . '">' . $post_avgratings . '</span> / <span itemprop="best" content="5">5</span> ' . __("based on", 'geodirectory') . ' </span><span class="count" itemprop="count" content="' . $comment_count . '">' . $comment_count . ' ' . $reviews_text . '</span><br />';
1157 1157
 
1158
-        $html .= '<span class="item">';
1159
-        $html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>';
1158
+		$html .= '<span class="item">';
1159
+		$html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>';
1160 1160
 
1161
-        if ($post_images) {
1162
-            foreach ($post_images as $img) {
1163
-                $post_img = $img->src;
1164
-                break;
1165
-            }
1166
-        }
1167
-
1168
-        if (isset($post_img) && $post_img) {
1169
-            $html .= '<br /><img src="' . $post_img . '" class="photo hreview-img" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo hreview-img" />';
1170
-        }
1171
-
1172
-        $html .= '</span>';
1173
-
1174
-        echo $html .= '</div>';
1175
-        /**
1176
-         * This is called after the rating html in the function geodir_detail_page_review_rating().
1177
-         *
1178
-         * This is called inside the check for an actual rating and the check for preview page.
1179
-         *
1180
-         * @since 1.0.0
1181
-         * @param float $post_avgratings Average rating for the surrent post.
1182
-         * @param int $post->ID Current post ID.
1183
-         */
1184
-        do_action('geodir_after_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1185
-    }
1186
-    /**
1187
-     * This is called before the rating html in the function geodir_detail_page_review_rating().
1188
-     *
1189
-     * This is called outside the check for an actual rating and the check for preview page.
1190
-     *
1191
-     * @since 1.0.0
1192
-     */
1193
-    do_action('geodir_after_detail_page_review_rating');
1194
-    $content_html = ob_get_clean();
1195
-    if (trim($content_html) != '') {
1196
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>';
1197
-    }
1198
-    if ((int)get_option('geodir_disable_rating_info_section') != 1) {
1199
-        /**
1200
-         * Filter the geodir_detail_page_review_rating() function content.
1201
-         *
1202
-         * @since 1.0.0
1203
-         * @param string $content_html The output html of the geodir_detail_page_review_rating() function.
1204
-         */
1205
-        echo $content_html = apply_filters('geodir_detail_page_review_rating_html', $content_html);
1206
-    }
1161
+		if ($post_images) {
1162
+			foreach ($post_images as $img) {
1163
+				$post_img = $img->src;
1164
+				break;
1165
+			}
1166
+		}
1167
+
1168
+		if (isset($post_img) && $post_img) {
1169
+			$html .= '<br /><img src="' . $post_img . '" class="photo hreview-img" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo hreview-img" />';
1170
+		}
1171
+
1172
+		$html .= '</span>';
1173
+
1174
+		echo $html .= '</div>';
1175
+		/**
1176
+		 * This is called after the rating html in the function geodir_detail_page_review_rating().
1177
+		 *
1178
+		 * This is called inside the check for an actual rating and the check for preview page.
1179
+		 *
1180
+		 * @since 1.0.0
1181
+		 * @param float $post_avgratings Average rating for the surrent post.
1182
+		 * @param int $post->ID Current post ID.
1183
+		 */
1184
+		do_action('geodir_after_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1185
+	}
1186
+	/**
1187
+	 * This is called before the rating html in the function geodir_detail_page_review_rating().
1188
+	 *
1189
+	 * This is called outside the check for an actual rating and the check for preview page.
1190
+	 *
1191
+	 * @since 1.0.0
1192
+	 */
1193
+	do_action('geodir_after_detail_page_review_rating');
1194
+	$content_html = ob_get_clean();
1195
+	if (trim($content_html) != '') {
1196
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>';
1197
+	}
1198
+	if ((int)get_option('geodir_disable_rating_info_section') != 1) {
1199
+		/**
1200
+		 * Filter the geodir_detail_page_review_rating() function content.
1201
+		 *
1202
+		 * @since 1.0.0
1203
+		 * @param string $content_html The output html of the geodir_detail_page_review_rating() function.
1204
+		 */
1205
+		echo $content_html = apply_filters('geodir_detail_page_review_rating_html', $content_html);
1206
+	}
1207 1207
 }
1208 1208
 
1209 1209
 /**
@@ -1215,35 +1215,35 @@  discard block
 block discarded – undo
1215 1215
  */
1216 1216
 function geodir_detail_page_more_info()
1217 1217
 {
1218
-    ob_start(); // Start  buffering;
1219
-    /**
1220
-     * This is called before the info section html.
1221
-     *
1222
-     * @since 1.0.0
1223
-     */
1224
-    do_action('geodir_before_detail_page_more_info');
1225
-    if ($geodir_post_detail_fields = geodir_show_listing_info()) {
1226
-        echo $geodir_post_detail_fields;
1227
-    }
1228
-    /**
1229
-     * This is called after the info section html.
1230
-     *
1231
-     * @since 1.0.0
1232
-     */
1233
-    do_action('geodir_after_detail_page_more_info');
1234
-
1235
-    $content_html = ob_get_clean();
1236
-    if (trim($content_html) != '')
1237
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>';
1238
-    if ((int)get_option('geodir_disable_listing_info_section') != 1) {
1239
-        /**
1240
-         * Filter the output html for function geodir_detail_page_more_info().
1241
-         *
1242
-         * @since 1.0.0
1243
-         * @param string $content_html The output html of the geodir_detail_page_more_info() function.
1244
-         */
1245
-        echo $content_html = apply_filters('geodir_detail_page_more_info_html', $content_html);
1246
-    }
1218
+	ob_start(); // Start  buffering;
1219
+	/**
1220
+	 * This is called before the info section html.
1221
+	 *
1222
+	 * @since 1.0.0
1223
+	 */
1224
+	do_action('geodir_before_detail_page_more_info');
1225
+	if ($geodir_post_detail_fields = geodir_show_listing_info()) {
1226
+		echo $geodir_post_detail_fields;
1227
+	}
1228
+	/**
1229
+	 * This is called after the info section html.
1230
+	 *
1231
+	 * @since 1.0.0
1232
+	 */
1233
+	do_action('geodir_after_detail_page_more_info');
1234
+
1235
+	$content_html = ob_get_clean();
1236
+	if (trim($content_html) != '')
1237
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>';
1238
+	if ((int)get_option('geodir_disable_listing_info_section') != 1) {
1239
+		/**
1240
+		 * Filter the output html for function geodir_detail_page_more_info().
1241
+		 *
1242
+		 * @since 1.0.0
1243
+		 * @param string $content_html The output html of the geodir_detail_page_more_info() function.
1244
+		 */
1245
+		echo $content_html = apply_filters('geodir_detail_page_more_info_html', $content_html);
1246
+	}
1247 1247
 }
1248 1248
 
1249 1249
 
@@ -1257,15 +1257,15 @@  discard block
 block discarded – undo
1257 1257
  */
1258 1258
 function geodir_localize_all_js_msg()
1259 1259
 {// check_ajax_referer function is used to make sure no files are uplaoded remotly but it will fail if used between https and non https so we do the check below of the urls
1260
-    if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1261
-        $ajax_url = admin_url('admin-ajax.php');
1262
-    } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1263
-        $ajax_url = admin_url('admin-ajax.php');
1264
-    } elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1265
-        $ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
1266
-    } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1267
-        $ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
1268
-    }
1260
+	if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1261
+		$ajax_url = admin_url('admin-ajax.php');
1262
+	} elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1263
+		$ajax_url = admin_url('admin-ajax.php');
1264
+	} elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1265
+		$ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
1266
+	} elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1267
+		$ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
1268
+	}
1269 1269
 	
1270 1270
 	/**
1271 1271
 	 * Filter the allowed image type extensions for post images.
@@ -1275,52 +1275,52 @@  discard block
 block discarded – undo
1275 1275
 	 */
1276 1276
 	$allowed_img_types = apply_filters('geodir_allowed_post_image_exts', array('jpg', 'jpeg', 'jpe', 'gif', 'png'));
1277 1277
 	
1278
-    $arr_alert_msg = array(
1279
-        'geodir_plugin_url' => geodir_plugin_url(),
1280
-        'geodir_admin_ajax_url' => $ajax_url,
1281
-        'custom_field_not_blank_var' => __('HTML Variable Name must not be blank', 'geodirectory'),
1282
-        'custom_field_not_special_char' => __('Please do not use special character and spaces in HTML Variable Name.', 'geodirectory'),
1283
-        'custom_field_unique_name' => __('HTML Variable Name should be a unique name.', 'geodirectory'),
1284
-        'custom_field_delete' => __('Are you wish to delete this field?', 'geodirectory'),
1285
-        //start not show alert msg
1286
-        'tax_meta_class_succ_del_msg' => __('File has been successfully deleted.', 'geodirectory'),
1287
-        'tax_meta_class_not_permission_to_del_msg' => __('You do NOT have permission to delete this file.', 'geodirectory'),
1288
-        'tax_meta_class_order_save_msg' => __('Order saved!', 'geodirectory'),
1289
-        'tax_meta_class_not_permission_record_img_msg' => __('You do not have permission to reorder images.', 'geodirectory'),
1290
-        'address_not_found_on_map_msg' => __('Address not found for:', 'geodirectory'),
1291
-        // end not show alert msg
1292
-        'my_place_listing_del' => __('Are you wish to delete this listing?', 'geodirectory'),
1293
-        //start not show alert msg
1294
-        'rating_error_msg' => __('Error : please retry', 'geodirectory'),
1295
-        'listing_url_prefix_msg' => __('Please enter listing url prefix', 'geodirectory'),
1296
-        'invalid_listing_prefix_msg' => __('Invalid character in listing url prefix', 'geodirectory'),
1297
-        'location_url_prefix_msg' => __('Please enter location url prefix', 'geodirectory'),
1298
-        'invalid_location_prefix_msg' => __('Invalid character in location url prefix', 'geodirectory'),
1299
-        'location_and_cat_url_separator_msg' => __('Please enter location and category url separator', 'geodirectory'),
1300
-        'invalid_char_and_cat_url_separator_msg' => __('Invalid character in location and category url separator', 'geodirectory'),
1301
-        'listing_det_url_separator_msg' => __('Please enter listing detail url separator', 'geodirectory'),
1302
-        'invalid_char_listing_det_url_separator_msg' => __('Invalid character in listing detail url separator', 'geodirectory'),
1303
-        'loading_listing_error_favorite' => __('Error loading listing.', 'geodirectory'),
1304
-        'geodir_field_id_required' => __('This field is required.', 'geodirectory'),
1305
-        'geodir_valid_email_address_msg' => __('Please enter valid email address.', 'geodirectory'),
1306
-        'geodir_default_marker_icon' => get_option('geodir_default_marker_icon'),
1307
-        'geodir_latitude_error_msg' => GEODIR_LATITUDE_ERROR_MSG,
1308
-        'geodir_longgitude_error_msg' => GEODIR_LOGNGITUDE_ERROR_MSG,
1309
-        'geodir_default_rating_star_icon' => get_option('geodir_default_rating_star_icon'),
1310
-        'gd_cmt_btn_post_reply' => __('Post Reply', 'geodirectory'),
1311
-        'gd_cmt_btn_reply_text' => __('Reply text', 'geodirectory'),
1312
-        'gd_cmt_btn_post_review' => __('Post Review', 'geodirectory'),
1313
-        'gd_cmt_btn_review_text' => __('Review text', 'geodirectory'),
1314
-        'gd_cmt_err_no_rating' => __("Please select star rating, you can't leave a review without stars.", 'geodirectory'),
1315
-        /* on/off dragging for phone devices */
1316
-        'geodir_onoff_dragging' => get_option('geodir_map_onoff_dragging') ? true : false,
1317
-        'geodir_is_mobile' => wp_is_mobile() ? true : false,
1318
-        'geodir_on_dragging_text' => __('Enable Dragging', 'geodirectory'),
1319
-        'geodir_off_dragging_text' => __('Disable Dragging', 'geodirectory'),
1320
-        'geodir_err_max_file_size' => __('File size error : You tried to upload a file over %s', 'geodirectory'),
1321
-        'geodir_err_file_upload_limit' => __('You have reached your upload limit of %s files.', 'geodirectory'),
1322
-        'geodir_err_pkg_upload_limit' => __('You may only upload %s files with this package, please try again.', 'geodirectory'),
1323
-        'geodir_action_remove' => __('Remove', 'geodirectory'),
1278
+	$arr_alert_msg = array(
1279
+		'geodir_plugin_url' => geodir_plugin_url(),
1280
+		'geodir_admin_ajax_url' => $ajax_url,
1281
+		'custom_field_not_blank_var' => __('HTML Variable Name must not be blank', 'geodirectory'),
1282
+		'custom_field_not_special_char' => __('Please do not use special character and spaces in HTML Variable Name.', 'geodirectory'),
1283
+		'custom_field_unique_name' => __('HTML Variable Name should be a unique name.', 'geodirectory'),
1284
+		'custom_field_delete' => __('Are you wish to delete this field?', 'geodirectory'),
1285
+		//start not show alert msg
1286
+		'tax_meta_class_succ_del_msg' => __('File has been successfully deleted.', 'geodirectory'),
1287
+		'tax_meta_class_not_permission_to_del_msg' => __('You do NOT have permission to delete this file.', 'geodirectory'),
1288
+		'tax_meta_class_order_save_msg' => __('Order saved!', 'geodirectory'),
1289
+		'tax_meta_class_not_permission_record_img_msg' => __('You do not have permission to reorder images.', 'geodirectory'),
1290
+		'address_not_found_on_map_msg' => __('Address not found for:', 'geodirectory'),
1291
+		// end not show alert msg
1292
+		'my_place_listing_del' => __('Are you wish to delete this listing?', 'geodirectory'),
1293
+		//start not show alert msg
1294
+		'rating_error_msg' => __('Error : please retry', 'geodirectory'),
1295
+		'listing_url_prefix_msg' => __('Please enter listing url prefix', 'geodirectory'),
1296
+		'invalid_listing_prefix_msg' => __('Invalid character in listing url prefix', 'geodirectory'),
1297
+		'location_url_prefix_msg' => __('Please enter location url prefix', 'geodirectory'),
1298
+		'invalid_location_prefix_msg' => __('Invalid character in location url prefix', 'geodirectory'),
1299
+		'location_and_cat_url_separator_msg' => __('Please enter location and category url separator', 'geodirectory'),
1300
+		'invalid_char_and_cat_url_separator_msg' => __('Invalid character in location and category url separator', 'geodirectory'),
1301
+		'listing_det_url_separator_msg' => __('Please enter listing detail url separator', 'geodirectory'),
1302
+		'invalid_char_listing_det_url_separator_msg' => __('Invalid character in listing detail url separator', 'geodirectory'),
1303
+		'loading_listing_error_favorite' => __('Error loading listing.', 'geodirectory'),
1304
+		'geodir_field_id_required' => __('This field is required.', 'geodirectory'),
1305
+		'geodir_valid_email_address_msg' => __('Please enter valid email address.', 'geodirectory'),
1306
+		'geodir_default_marker_icon' => get_option('geodir_default_marker_icon'),
1307
+		'geodir_latitude_error_msg' => GEODIR_LATITUDE_ERROR_MSG,
1308
+		'geodir_longgitude_error_msg' => GEODIR_LOGNGITUDE_ERROR_MSG,
1309
+		'geodir_default_rating_star_icon' => get_option('geodir_default_rating_star_icon'),
1310
+		'gd_cmt_btn_post_reply' => __('Post Reply', 'geodirectory'),
1311
+		'gd_cmt_btn_reply_text' => __('Reply text', 'geodirectory'),
1312
+		'gd_cmt_btn_post_review' => __('Post Review', 'geodirectory'),
1313
+		'gd_cmt_btn_review_text' => __('Review text', 'geodirectory'),
1314
+		'gd_cmt_err_no_rating' => __("Please select star rating, you can't leave a review without stars.", 'geodirectory'),
1315
+		/* on/off dragging for phone devices */
1316
+		'geodir_onoff_dragging' => get_option('geodir_map_onoff_dragging') ? true : false,
1317
+		'geodir_is_mobile' => wp_is_mobile() ? true : false,
1318
+		'geodir_on_dragging_text' => __('Enable Dragging', 'geodirectory'),
1319
+		'geodir_off_dragging_text' => __('Disable Dragging', 'geodirectory'),
1320
+		'geodir_err_max_file_size' => __('File size error : You tried to upload a file over %s', 'geodirectory'),
1321
+		'geodir_err_file_upload_limit' => __('You have reached your upload limit of %s files.', 'geodirectory'),
1322
+		'geodir_err_pkg_upload_limit' => __('You may only upload %s files with this package, please try again.', 'geodirectory'),
1323
+		'geodir_action_remove' => __('Remove', 'geodirectory'),
1324 1324
 		'geodir_txt_all_files' => __('Allowed files', 'geodirectory'),
1325 1325
 		'geodir_err_file_type' => __('File type error. Allowed file types: %s', 'geodirectory'),
1326 1326
 		'gd_allowed_img_types' => !empty($allowed_img_types) ? implode(',', $allowed_img_types) : '',
@@ -1328,28 +1328,28 @@  discard block
 block discarded – undo
1328 1328
 		'geodir_txt_form_searching' => __('Searching...', 'geodirectory'),
1329 1329
 		'fa_rating' => (int)get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
1330 1330
 		'reviewrating' => defined('GEODIRREVIEWRATING_VERSION') ? 1 : '',
1331
-    );
1332
-
1333
-    /**
1334
-     * Filters the translated JS strings from function geodir_localize_all_js_msg().
1335
-     *
1336
-     * With this filter you can add, remove or change translated JS strings.
1337
-     * You should add your own translations to this if you are building an addon rather than adding another script block.
1338
-     *
1339
-     * @since 1.0.0
1340
-     */
1341
-    $arr_alert_msg = apply_filters('geodir_all_js_msg', $arr_alert_msg);
1342
-
1343
-    foreach ($arr_alert_msg as $key => $value) {
1344
-        if (!is_scalar($value))
1345
-            continue;
1346
-        $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8');
1347
-    }
1331
+	);
1332
+
1333
+	/**
1334
+	 * Filters the translated JS strings from function geodir_localize_all_js_msg().
1335
+	 *
1336
+	 * With this filter you can add, remove or change translated JS strings.
1337
+	 * You should add your own translations to this if you are building an addon rather than adding another script block.
1338
+	 *
1339
+	 * @since 1.0.0
1340
+	 */
1341
+	$arr_alert_msg = apply_filters('geodir_all_js_msg', $arr_alert_msg);
1342
+
1343
+	foreach ($arr_alert_msg as $key => $value) {
1344
+		if (!is_scalar($value))
1345
+			continue;
1346
+		$arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8');
1347
+	}
1348 1348
 
1349
-    $script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';';
1350
-    echo '<script>';
1351
-    echo $script;
1352
-    echo '</script>';
1349
+	$script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';';
1350
+	echo '<script>';
1351
+	echo $script;
1352
+	echo '</script>';
1353 1353
 }
1354 1354
 
1355 1355
 add_action('admin_bar_menu', 'geodir_admin_bar_site_menu', 31);
@@ -1365,9 +1365,9 @@  discard block
 block discarded – undo
1365 1365
  */
1366 1366
 function geodir_admin_bar_site_menu($wp_admin_bar)
1367 1367
 {
1368
-    if (get_option("geodir_installed")) {
1369
-        $wp_admin_bar->add_menu(array('parent' => 'appearance', 'id' => 'geodirectory', 'title' => __('GeoDirectory', 'geodirectory'), 'href' => admin_url('?page=geodirectory')));
1370
-    }
1368
+	if (get_option("geodir_installed")) {
1369
+		$wp_admin_bar->add_menu(array('parent' => 'appearance', 'id' => 'geodirectory', 'title' => __('GeoDirectory', 'geodirectory'), 'href' => admin_url('?page=geodirectory')));
1370
+	}
1371 1371
 }
1372 1372
 
1373 1373
 add_action('geodir_before_listing', 'geodir_display_sort_options'); /*function in custom_functions.php*/
@@ -1393,25 +1393,25 @@  discard block
 block discarded – undo
1393 1393
  */
1394 1394
 function geodir_store_sidebars()
1395 1395
 {
1396
-    global $geodir_sidebars;
1397
-    global $sidebars_widgets;
1398
-
1399
-    if (!is_array($sidebars_widgets))
1400
-        $sidebars_widgets = wp_get_sidebars_widgets();
1401
-    $geodir_old_sidebars = array();
1402
-
1403
-    if (is_array($geodir_sidebars)) {
1404
-        foreach ($geodir_sidebars as $val) {
1405
-            if (is_array($sidebars_widgets)) {
1406
-                if (array_key_exists($val, $sidebars_widgets))
1407
-                    $geodir_old_sidebars[$val] = $sidebars_widgets[$val];
1408
-                else
1409
-                    $geodir_old_sidebars[$val] = array();
1410
-            }
1411
-        }
1412
-    }
1413
-    update_option('geodir_sidebars', $geodir_old_sidebars);
1414
-    geodir_option_version_backup('geodir_sidebars');
1396
+	global $geodir_sidebars;
1397
+	global $sidebars_widgets;
1398
+
1399
+	if (!is_array($sidebars_widgets))
1400
+		$sidebars_widgets = wp_get_sidebars_widgets();
1401
+	$geodir_old_sidebars = array();
1402
+
1403
+	if (is_array($geodir_sidebars)) {
1404
+		foreach ($geodir_sidebars as $val) {
1405
+			if (is_array($sidebars_widgets)) {
1406
+				if (array_key_exists($val, $sidebars_widgets))
1407
+					$geodir_old_sidebars[$val] = $sidebars_widgets[$val];
1408
+				else
1409
+					$geodir_old_sidebars[$val] = array();
1410
+			}
1411
+		}
1412
+	}
1413
+	update_option('geodir_sidebars', $geodir_old_sidebars);
1414
+	geodir_option_version_backup('geodir_sidebars');
1415 1415
 
1416 1416
 }
1417 1417
 
@@ -1425,34 +1425,34 @@  discard block
 block discarded – undo
1425 1425
  */
1426 1426
 function geodir_restore_sidebars()
1427 1427
 {
1428
-    global $sidebars_widgets;
1429
-
1430
-    if (!is_array($sidebars_widgets))
1431
-        $sidebars_widgets = wp_get_sidebars_widgets();
1432
-
1433
-    if (is_array($sidebars_widgets)) {
1434
-        $geodir_old_sidebars = get_option('geodir_sidebars');
1435
-        if (is_array($geodir_old_sidebars)) {
1436
-            foreach ($geodir_old_sidebars as $key => $val) {
1437
-                //if(array_key_exists($key, $sidebars_widgets))
1438
-                {
1439
-                    $sidebars_widgets[$key] = $geodir_old_sidebars[$key];
1440
-                }
1428
+	global $sidebars_widgets;
1441 1429
 
1430
+	if (!is_array($sidebars_widgets))
1431
+		$sidebars_widgets = wp_get_sidebars_widgets();
1442 1432
 
1443
-            }
1444
-        }
1433
+	if (is_array($sidebars_widgets)) {
1434
+		$geodir_old_sidebars = get_option('geodir_sidebars');
1435
+		if (is_array($geodir_old_sidebars)) {
1436
+			foreach ($geodir_old_sidebars as $key => $val) {
1437
+				//if(array_key_exists($key, $sidebars_widgets))
1438
+				{
1439
+					$sidebars_widgets[$key] = $geodir_old_sidebars[$key];
1440
+				}
1445 1441
 
1446
-        // now clear all non geodiretory sidebars 
1447
-        foreach ($sidebars_widgets as $key => $val) {
1448
-            if (!array_key_exists($key, $geodir_old_sidebars)) {
1449
-                $sidebars_widgets[$key] = array();
1450
-            }
1451
-        }
1452
-    }
1453 1442
 
1454
-    update_option('sidebars_widgets', $sidebars_widgets);
1455
-    update_option('geodir_sidebars', '');
1443
+			}
1444
+		}
1445
+
1446
+		// now clear all non geodiretory sidebars 
1447
+		foreach ($sidebars_widgets as $key => $val) {
1448
+			if (!array_key_exists($key, $geodir_old_sidebars)) {
1449
+				$sidebars_widgets[$key] = array();
1450
+			}
1451
+		}
1452
+	}
1453
+
1454
+	update_option('sidebars_widgets', $sidebars_widgets);
1455
+	update_option('geodir_sidebars', '');
1456 1456
 }
1457 1457
 
1458 1458
 add_action('geodir_after_listing_post_gridview', 'geodir_after_listing_post_gridview');
@@ -1465,9 +1465,9 @@  discard block
 block discarded – undo
1465 1465
  */
1466 1466
 function geodir_after_listing_post_gridview()
1467 1467
 {
1468
-    global $gridview_columns;
1468
+	global $gridview_columns;
1469 1469
 
1470
-    $gridview_columns = '';
1470
+	$gridview_columns = '';
1471 1471
 
1472 1472
 }
1473 1473
 
@@ -1495,11 +1495,11 @@  discard block
 block discarded – undo
1495 1495
  */
1496 1496
 function so_handle_038($url, $original_url, $_context)
1497 1497
 {
1498
-    if (strstr($url, "maps.google.com/maps/api/js") !== false) {
1499
-        $url = str_replace("&#038;", "&amp;", $url); // or $url = $original_url
1500
-    }
1498
+	if (strstr($url, "maps.google.com/maps/api/js") !== false) {
1499
+		$url = str_replace("&#038;", "&amp;", $url); // or $url = $original_url
1500
+	}
1501 1501
 
1502
-    return $url;
1502
+	return $url;
1503 1503
 }
1504 1504
 
1505 1505
 
@@ -1515,34 +1515,34 @@  discard block
 block discarded – undo
1515 1515
 function geodir_after_main_form_fields() {
1516 1516
 	global $gd_session;
1517 1517
 	
1518
-    if (get_option('geodir_accept_term_condition')) {
1519
-        global $post;
1520
-        $term_condition = '';
1521
-        if (isset($_REQUEST['backandedit'])) {
1522
-            $post = (object)$gd_session->get('listing');
1523
-            $term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : '';
1524
-        }
1525
-
1526
-        ?>
1518
+	if (get_option('geodir_accept_term_condition')) {
1519
+		global $post;
1520
+		$term_condition = '';
1521
+		if (isset($_REQUEST['backandedit'])) {
1522
+			$post = (object)$gd_session->get('listing');
1523
+			$term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : '';
1524
+		}
1525
+
1526
+		?>
1527 1527
         <div id="geodir_accept_term_condition_row" class="required_field geodir_form_row clearfix">
1528 1528
             <label>&nbsp;</label>
1529 1529
 
1530 1530
             <div class="geodir_taxonomy_field" style="float:left; width:70%;">
1531 1531
 				<span style="display:block"> 
1532 1532
 				<input class="main_list_selecter" type="checkbox" <?php if ($term_condition == '1') {
1533
-                    echo 'checked="checked"';
1534
-                } ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition"
1533
+					echo 'checked="checked"';
1534
+				} ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition"
1535 1535
                        class="geodir_textfield" value="1"
1536 1536
                        style="display:inline-block"/><a href="<?php $terms_page = get_option('geodir_term_condition_page'); if($terms_page){ echo get_permalink($terms_page);}?>" target="_blank"><?php _e('Please accept our terms and conditions', 'geodirectory'); ?></a>
1537 1537
 				</span>
1538 1538
             </div>
1539 1539
             <span class="geodir_message_error"><?php if (isset($required_msg)) {
1540
-                    _e($required_msg, 'geodirectory');
1541
-                } ?></span>
1540
+					_e($required_msg, 'geodirectory');
1541
+				} ?></span>
1542 1542
         </div>
1543 1543
     <?php
1544 1544
 
1545
-    }
1545
+	}
1546 1546
 }
1547 1547
 
1548 1548
 
@@ -1567,42 +1567,42 @@  discard block
 block discarded – undo
1567 1567
  */
1568 1568
 function geodir_detail_page_tab_is_display($is_display, $tab)
1569 1569
 {
1570
-    global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields;
1570
+	global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields;
1571 1571
 
1572
-    if ($tab == 'post_profile') {
1573
-        /** This action is documented in geodirectory_template_actions.php */
1574
-        $desc_limit = apply_filters('geodir_description_field_desc_limit', '');
1572
+	if ($tab == 'post_profile') {
1573
+		/** This action is documented in geodirectory_template_actions.php */
1574
+		$desc_limit = apply_filters('geodir_description_field_desc_limit', '');
1575 1575
         
1576
-        if (!($desc_limit === '' || (int)$desc_limit > 0)) {
1577
-            $is_display = false;
1578
-        }
1579
-    }
1576
+		if (!($desc_limit === '' || (int)$desc_limit > 0)) {
1577
+			$is_display = false;
1578
+		}
1579
+	}
1580 1580
     
1581
-    if ($tab == 'post_info')
1582
-        $is_display = (!empty($geodir_post_detail_fields)) ? true : false;
1581
+	if ($tab == 'post_info')
1582
+		$is_display = (!empty($geodir_post_detail_fields)) ? true : false;
1583 1583
 
1584
-    if ($tab == 'post_images')
1585
-        $is_display = (!empty($post_images)) ? true : false;
1584
+	if ($tab == 'post_images')
1585
+		$is_display = (!empty($post_images)) ? true : false;
1586 1586
 
1587
-    if ($tab == 'post_video')
1588
-        $is_display = (!empty($video)) ? true : false;
1587
+	if ($tab == 'post_video')
1588
+		$is_display = (!empty($video)) ? true : false;
1589 1589
 
1590
-    if ($tab == 'special_offers')
1591
-        $is_display = (!empty($special_offers)) ? true : false;
1590
+	if ($tab == 'special_offers')
1591
+		$is_display = (!empty($special_offers)) ? true : false;
1592 1592
 
1593
-    if ($tab == 'reviews')
1594
-        $is_display = (geodir_is_page('detail')) ? true : false;
1593
+	if ($tab == 'reviews')
1594
+		$is_display = (geodir_is_page('detail')) ? true : false;
1595 1595
 
1596
-    if ($tab == 'related_listing') {
1597
-       $message = __('No listings found which match your selection.', 'geodirectory');
1596
+	if ($tab == 'related_listing') {
1597
+	   $message = __('No listings found which match your selection.', 'geodirectory');
1598 1598
        
1599
-       /** This action is documented in geodirectory-functions/template_functions.php */
1600
-       $message = apply_filters('geodir_message_listing_not_found', $message, 'listing-listview', false);
1599
+	   /** This action is documented in geodirectory-functions/template_functions.php */
1600
+	   $message = apply_filters('geodir_message_listing_not_found', $message, 'listing-listview', false);
1601 1601
        
1602
-       $is_display = ((strpos($related_listing, $message) !== false || $related_listing == '' || !geodir_is_page('detail'))) ? false : true;
1603
-    }
1602
+	   $is_display = ((strpos($related_listing, $message) !== false || $related_listing == '' || !geodir_is_page('detail'))) ? false : true;
1603
+	}
1604 1604
 
1605
-    return $is_display;
1605
+	return $is_display;
1606 1606
 }
1607 1607
 
1608 1608
 
@@ -1618,69 +1618,69 @@  discard block
 block discarded – undo
1618 1618
  * @global string $plugin_prefix Geodirectory plugin table prefix.
1619 1619
  */
1620 1620
 function geodir_changes_in_custom_fields_table() {
1621
-    global $wpdb, $plugin_prefix;
1621
+	global $wpdb, $plugin_prefix;
1622 1622
 	
1623 1623
 	// Remove unused virtual page
1624 1624
 	$listings_page_id = (int)get_option('geodir_listing_page');
1625 1625
 	if ($listings_page_id) {
1626 1626
 		$wpdb->query($wpdb->prepare("DELETE FROM " . $wpdb->posts . " WHERE ID=%d AND post_name = %s AND post_type=%s", array($listings_page_id, 'listings', 'page')));
1627
-        delete_option('geodir_listing_page');
1627
+		delete_option('geodir_listing_page');
1628 1628
 	}
1629 1629
 
1630
-    if (!get_option('geodir_changes_in_custom_fields_table')) {
1631
-        $wpdb->query(
1632
-            $wpdb->prepare(
1633
-                "UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s",
1634
-                array('1', '1', 'admin')
1635
-            )
1636
-        );
1630
+	if (!get_option('geodir_changes_in_custom_fields_table')) {
1631
+		$wpdb->query(
1632
+			$wpdb->prepare(
1633
+				"UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s",
1634
+				array('1', '1', 'admin')
1635
+			)
1636
+		);
1637 1637
 
1638 1638
 
1639
-        /* --- terms meta value set --- */
1639
+		/* --- terms meta value set --- */
1640 1640
 
1641
-        update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
1641
+		update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
1642 1642
 
1643
-        $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
1643
+		$options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
1644 1644
 
1645
-        if (!empty($options_data)) {
1645
+		if (!empty($options_data)) {
1646 1646
 
1647
-            foreach ($options_data as $optobj) {
1647
+			foreach ($options_data as $optobj) {
1648 1648
 
1649
-                $option_val = str_replace('tax_meta_', '', $optobj->option_name);
1649
+				$option_val = str_replace('tax_meta_', '', $optobj->option_name);
1650 1650
 
1651
-                $taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM " . $wpdb->prefix . "term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
1651
+				$taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM " . $wpdb->prefix . "term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
1652 1652
 
1653
-                if (!empty($taxonomies_data)) {
1653
+				if (!empty($taxonomies_data)) {
1654 1654
 
1655
-                    foreach ($taxonomies_data as $taxobj) {
1655
+					foreach ($taxonomies_data as $taxobj) {
1656 1656
 
1657
-                        $taxObject = get_taxonomy($taxobj->taxonomy);
1658
-                        $post_type = $taxObject->object_type[0];
1657
+						$taxObject = get_taxonomy($taxobj->taxonomy);
1658
+						$post_type = $taxObject->object_type[0];
1659 1659
 
1660
-                        $opt_value = 'tax_meta_' . $post_type . '_' . $option_val;
1660
+						$opt_value = 'tax_meta_' . $post_type . '_' . $option_val;
1661 1661
 
1662
-                        $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
1662
+						$duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
1663 1663
 
1664
-                        if ($duplicate_data) {
1664
+						if ($duplicate_data) {
1665 1665
 
1666
-                            $wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET	option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
1666
+							$wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET	option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
1667 1667
 
1668
-                        } else {
1668
+						} else {
1669 1669
 
1670
-                            $wpdb->query($wpdb->prepare("INSERT INTO " . $wpdb->prefix . "options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
1670
+							$wpdb->query($wpdb->prepare("INSERT INTO " . $wpdb->prefix . "options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
1671 1671
 
1672
-                        }
1672
+						}
1673 1673
 
1674
-                    }
1674
+					}
1675 1675
 
1676
-                }
1676
+				}
1677 1677
 
1678
-            }
1679
-        }
1678
+			}
1679
+		}
1680 1680
 
1681
-        update_option('geodir_changes_in_custom_fields_table', '1');
1681
+		update_option('geodir_changes_in_custom_fields_table', '1');
1682 1682
 
1683
-    }
1683
+	}
1684 1684
 
1685 1685
 }
1686 1686
 
@@ -1699,24 +1699,24 @@  discard block
 block discarded – undo
1699 1699
 function geodir_location_slug_check($slug)
1700 1700
 {
1701 1701
 
1702
-    global $wpdb, $table_prefix;
1702
+	global $wpdb, $table_prefix;
1703 1703
 
1704
-    $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
1704
+	$slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
1705 1705
 
1706
-    if ($slug_exists) {
1706
+	if ($slug_exists) {
1707 1707
 
1708
-        $suffix = 1;
1709
-        do {
1710
-            $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1711
-            $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
1712
-            $suffix++;
1713
-        } while ($location_slug_check && $suffix < 100);
1708
+		$suffix = 1;
1709
+		do {
1710
+			$alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1711
+			$location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
1712
+			$suffix++;
1713
+		} while ($location_slug_check && $suffix < 100);
1714 1714
 
1715
-        $slug = $alt_location_name;
1715
+		$slug = $alt_location_name;
1716 1716
 
1717
-    }
1717
+	}
1718 1718
 
1719
-    return $slug;
1719
+	return $slug;
1720 1720
 
1721 1721
 }
1722 1722
 
@@ -1741,42 +1741,42 @@  discard block
 block discarded – undo
1741 1741
 function geodir_update_term_slug($term_id, $tt_id, $taxonomy)
1742 1742
 {
1743 1743
 
1744
-    global $wpdb, $plugin_prefix, $table_prefix;
1744
+	global $wpdb, $plugin_prefix, $table_prefix;
1745 1745
 
1746
-    $tern_data = get_term_by('id', $term_id, $taxonomy);
1746
+	$tern_data = get_term_by('id', $term_id, $taxonomy);
1747 1747
 
1748
-    $slug = $tern_data->slug;
1748
+	$slug = $tern_data->slug;
1749 1749
 
1750
-    /**
1751
-     * Filter if a term slug exists.
1752
-     *
1753
-     * @since 1.0.0
1754
-     * @package GeoDirectory
1755
-     * @param bool $bool Default: false.
1756
-     * @param string $slug The term slug.
1757
-     * @param int $term_id The term ID.
1758
-     */
1759
-    $slug_exists = apply_filters('geodir_term_slug_is_exists', false, $slug, $term_id);
1750
+	/**
1751
+	 * Filter if a term slug exists.
1752
+	 *
1753
+	 * @since 1.0.0
1754
+	 * @package GeoDirectory
1755
+	 * @param bool $bool Default: false.
1756
+	 * @param string $slug The term slug.
1757
+	 * @param int $term_id The term ID.
1758
+	 */
1759
+	$slug_exists = apply_filters('geodir_term_slug_is_exists', false, $slug, $term_id);
1760 1760
 
1761
-    if ($slug_exists) {
1761
+	if ($slug_exists) {
1762 1762
 
1763
-        $suffix = 1;
1764
-        do {
1765
-            $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1763
+		$suffix = 1;
1764
+		do {
1765
+			$new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1766 1766
 
1767
-            /** This action is documented in geodirectory_hooks_actions.php */
1768
-            $term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
1767
+			/** This action is documented in geodirectory_hooks_actions.php */
1768
+			$term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
1769 1769
 
1770
-            $suffix++;
1771
-        } while ($term_slug_check && $suffix < 100);
1770
+			$suffix++;
1771
+		} while ($term_slug_check && $suffix < 100);
1772 1772
 
1773
-        $slug = $new_slug;
1773
+		$slug = $new_slug;
1774 1774
 
1775
-        //wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
1775
+		//wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
1776 1776
 
1777
-        $wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
1777
+		$wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
1778 1778
 
1779
-    }
1779
+	}
1780 1780
 	
1781 1781
 	// Update tag in detail table.
1782 1782
 	$taxonomy_obj = get_taxonomy($taxonomy);
@@ -1817,21 +1817,21 @@  discard block
 block discarded – undo
1817 1817
 function geodir_term_slug_is_exists($slug_exists, $slug, $term_id)
1818 1818
 {
1819 1819
 
1820
-    global $wpdb, $table_prefix;
1820
+	global $wpdb, $table_prefix;
1821 1821
 
1822
-    $default_location = geodir_get_default_location();
1822
+	$default_location = geodir_get_default_location();
1823 1823
 
1824
-    $country_slug = $default_location->country_slug;
1825
-    $region_slug = $default_location->region_slug;
1826
-    $city_slug = $default_location->city_slug;
1824
+	$country_slug = $default_location->country_slug;
1825
+	$region_slug = $default_location->region_slug;
1826
+	$city_slug = $default_location->city_slug;
1827 1827
 
1828
-    if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug)
1829
-        return $slug_exists = true;
1828
+	if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug)
1829
+		return $slug_exists = true;
1830 1830
 
1831
-    if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
1832
-        return $slug_exists = true;
1831
+	if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
1832
+		return $slug_exists = true;
1833 1833
 
1834
-    return $slug_exists;
1834
+	return $slug_exists;
1835 1835
 }
1836 1836
 
1837 1837
 
@@ -1850,75 +1850,75 @@  discard block
 block discarded – undo
1850 1850
  */
1851 1851
 function geodir_custom_page_title($title = '', $sep = '')
1852 1852
 {
1853
-    global $wp;
1854
-    if (class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) {
1855
-        return $title;
1856
-    }
1853
+	global $wp;
1854
+	if (class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) {
1855
+		return $title;
1856
+	}
1857 1857
 
1858
-    if ($sep == '') {
1859
-        /**
1860
-         * Filter the page title separator.
1861
-         *
1862
-         * @since 1.0.0
1863
-         * @package GeoDirectory
1864
-         * @param string $sep The separator, default: `|`.
1865
-         */
1866
-        $sep = apply_filters('geodir_page_title_separator', '|');
1867
-    }
1858
+	if ($sep == '') {
1859
+		/**
1860
+		 * Filter the page title separator.
1861
+		 *
1862
+		 * @since 1.0.0
1863
+		 * @package GeoDirectory
1864
+		 * @param string $sep The separator, default: `|`.
1865
+		 */
1866
+		$sep = apply_filters('geodir_page_title_separator', '|');
1867
+	}
1868 1868
 
1869 1869
 
1870
-    $gd_page = '';
1871
-    if(geodir_is_page('home')){
1872
-        $gd_page = 'home';
1873
-        $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
1874
-    }
1875
-    elseif(geodir_is_page('detail')){
1876
-        $gd_page = 'detail';
1877
-        $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
1878
-    }
1879
-    elseif(geodir_is_page('pt')){
1880
-        $gd_page = 'pt';
1881
-        $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
1882
-    }
1883
-    elseif(geodir_is_page('listing')){
1884
-        $gd_page = 'listing';
1885
-        $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
1886
-    }
1887
-    elseif(geodir_is_page('location')){
1888
-        $gd_page = 'location';
1889
-        $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
1890
-    }
1891
-    elseif(geodir_is_page('search')){
1892
-        $gd_page = 'search';
1893
-        $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
1894
-    }
1895
-    elseif(geodir_is_page('add-listing')){
1896
-        $gd_page = 'add-listing';
1897
-        $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
1898
-    }
1899
-    elseif(geodir_is_page('author')){
1900
-        $gd_page = 'author';
1901
-        $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
1902
-    }
1903
-    elseif(geodir_is_page('login')){
1904
-        $gd_page = 'login';
1905
-        $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
1906
-    }
1907
-    elseif(geodir_is_page('listing-success')){
1908
-        $gd_page = 'listing-success';
1909
-        $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
1910
-    }
1870
+	$gd_page = '';
1871
+	if(geodir_is_page('home')){
1872
+		$gd_page = 'home';
1873
+		$title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
1874
+	}
1875
+	elseif(geodir_is_page('detail')){
1876
+		$gd_page = 'detail';
1877
+		$title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
1878
+	}
1879
+	elseif(geodir_is_page('pt')){
1880
+		$gd_page = 'pt';
1881
+		$title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
1882
+	}
1883
+	elseif(geodir_is_page('listing')){
1884
+		$gd_page = 'listing';
1885
+		$title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
1886
+	}
1887
+	elseif(geodir_is_page('location')){
1888
+		$gd_page = 'location';
1889
+		$title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
1890
+	}
1891
+	elseif(geodir_is_page('search')){
1892
+		$gd_page = 'search';
1893
+		$title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
1894
+	}
1895
+	elseif(geodir_is_page('add-listing')){
1896
+		$gd_page = 'add-listing';
1897
+		$title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
1898
+	}
1899
+	elseif(geodir_is_page('author')){
1900
+		$gd_page = 'author';
1901
+		$title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
1902
+	}
1903
+	elseif(geodir_is_page('login')){
1904
+		$gd_page = 'login';
1905
+		$title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
1906
+	}
1907
+	elseif(geodir_is_page('listing-success')){
1908
+		$gd_page = 'listing-success';
1909
+		$title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
1910
+	}
1911 1911
 
1912 1912
 
1913
-    /**
1914
-     * Filter page meta title to replace variables.
1915
-     *
1916
-     * @since 1.5.4
1917
-     * @param string $title The page title including variables.
1918
-     * @param string $gd_page The GeoDirectory page type if any.
1919
-     * @param string $sep The title separator symbol.
1920
-     */
1921
-    return apply_filters('geodir_seo_meta_title', __($title, 'geodirectory'), $gd_page, $sep);
1913
+	/**
1914
+	 * Filter page meta title to replace variables.
1915
+	 *
1916
+	 * @since 1.5.4
1917
+	 * @param string $title The page title including variables.
1918
+	 * @param string $gd_page The GeoDirectory page type if any.
1919
+	 * @param string $sep The title separator symbol.
1920
+	 */
1921
+	return apply_filters('geodir_seo_meta_title', __($title, 'geodirectory'), $gd_page, $sep);
1922 1922
 
1923 1923
 }
1924 1924
 
@@ -1934,33 +1934,33 @@  discard block
 block discarded – undo
1934 1934
 function geodir_set_post_attachment()
1935 1935
 {
1936 1936
 
1937
-    if (!get_option('geodir_set_post_attachments')) {
1937
+	if (!get_option('geodir_set_post_attachments')) {
1938 1938
 
1939
-        require_once(ABSPATH . 'wp-admin/includes/image.php');
1940
-        require_once(ABSPATH . 'wp-admin/includes/file.php');
1939
+		require_once(ABSPATH . 'wp-admin/includes/image.php');
1940
+		require_once(ABSPATH . 'wp-admin/includes/file.php');
1941 1941
 
1942
-        $all_postypes = geodir_get_posttypes();
1942
+		$all_postypes = geodir_get_posttypes();
1943 1943
 
1944
-        $args = array(
1945
-            'posts_per_page' => -1,
1946
-            'post_type' => $all_postypes,
1947
-            'post_status' => 'publish');
1944
+		$args = array(
1945
+			'posts_per_page' => -1,
1946
+			'post_type' => $all_postypes,
1947
+			'post_status' => 'publish');
1948 1948
 
1949
-        $posts_array = get_posts($args);
1949
+		$posts_array = get_posts($args);
1950 1950
 
1951
-        if (!empty($posts_array)) {
1951
+		if (!empty($posts_array)) {
1952 1952
 
1953
-            foreach ($posts_array as $post) {
1953
+			foreach ($posts_array as $post) {
1954 1954
 
1955
-                geodir_set_wp_featured_image($post->ID);
1955
+				geodir_set_wp_featured_image($post->ID);
1956 1956
 
1957
-            }
1957
+			}
1958 1958
 
1959
-        }
1959
+		}
1960 1960
 
1961
-        update_option('geodir_set_post_attachments', '1');
1961
+		update_option('geodir_set_post_attachments', '1');
1962 1962
 
1963
-    }
1963
+	}
1964 1964
 
1965 1965
 }
1966 1966
 
@@ -1977,19 +1977,19 @@  discard block
 block discarded – undo
1977 1977
 function geodir_remove_url_seperator()
1978 1978
 {
1979 1979
 
1980
-    if (!get_option('geodir_remove_url_seperator')) {
1980
+	if (!get_option('geodir_remove_url_seperator')) {
1981 1981
 
1982
-        if (get_option('geodir_listingurl_separator'))
1983
-            delete_option('geodir_listingurl_separator');
1982
+		if (get_option('geodir_listingurl_separator'))
1983
+			delete_option('geodir_listingurl_separator');
1984 1984
 
1985
-        if (get_option('geodir_detailurl_separator'))
1986
-            delete_option('geodir_detailurl_separator');
1985
+		if (get_option('geodir_detailurl_separator'))
1986
+			delete_option('geodir_detailurl_separator');
1987 1987
 
1988
-        flush_rewrite_rules(false);
1988
+		flush_rewrite_rules(false);
1989 1989
 
1990
-        update_option('geodir_remove_url_seperator', '1');
1990
+		update_option('geodir_remove_url_seperator', '1');
1991 1991
 
1992
-    }
1992
+	}
1993 1993
 
1994 1994
 }
1995 1995
 
@@ -2005,38 +2005,38 @@  discard block
 block discarded – undo
2005 2005
  */
2006 2006
 function geodir_remove_url_seperator_form_permalink_settings($permalink_arr)
2007 2007
 {
2008
-    foreach ($permalink_arr as $key => $value) {
2008
+	foreach ($permalink_arr as $key => $value) {
2009 2009
 
2010
-        if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator')
2011
-            unset($permalink_arr[$key]);
2010
+		if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator')
2011
+			unset($permalink_arr[$key]);
2012 2012
 
2013
-    }
2013
+	}
2014 2014
 
2015
-    return $permalink_arr;
2015
+	return $permalink_arr;
2016 2016
 
2017 2017
 }
2018 2018
 
2019 2019
 if (!is_admin()) {
2020
-    add_filter('posts_results', 'geodir_set_status_draft_to_publish_for_own_post');
2020
+	add_filter('posts_results', 'geodir_set_status_draft_to_publish_for_own_post');
2021 2021
 }
2022 2022
 /**
2023
- * Set status from draft to publish.
2024
- *
2025
- * @since 1.0.0
2026
- * @package GeoDirectory
2027
- * @global object $wp WordPress object.
2028
- * @param object $post Post object.
2029
- * @return object Modified post object.
2030
- */
2023
+	 * Set status from draft to publish.
2024
+	 *
2025
+	 * @since 1.0.0
2026
+	 * @package GeoDirectory
2027
+	 * @global object $wp WordPress object.
2028
+	 * @param object $post Post object.
2029
+	 * @return object Modified post object.
2030
+	 */
2031 2031
 function geodir_set_status_draft_to_publish_for_own_post($post)
2032 2032
 {
2033
-    global $wp;
2034
-    $user_id = get_current_user_id();
2033
+	global $wp;
2034
+	$user_id = get_current_user_id();
2035 2035
 
2036
-    if (!empty($post) && $post[0]->post_author == $user_id) {
2037
-        $post[0]->post_status = 'publish';
2038
-    }
2039
-    return $post;
2036
+	if (!empty($post) && $post[0]->post_author == $user_id) {
2037
+		$post[0]->post_status = 'publish';
2038
+	}
2039
+	return $post;
2040 2040
 }
2041 2041
 
2042 2042
 
@@ -2128,33 +2128,33 @@  discard block
 block discarded – undo
2128 2128
  */
2129 2129
 function geodir_detail_page_tab_headings_change($tabs_arr)
2130 2130
 {
2131
-    global $wpdb;
2131
+	global $wpdb;
2132 2132
 
2133
-    $post_type = geodir_get_current_posttype();
2133
+	$post_type = geodir_get_current_posttype();
2134 2134
 
2135
-    $all_postypes = geodir_get_posttypes();
2135
+	$all_postypes = geodir_get_posttypes();
2136 2136
 
2137
-    if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes)) {
2137
+	if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes)) {
2138 2138
 
2139
-        if (array_key_exists('post_video', $tabs_arr)) {
2139
+		if (array_key_exists('post_video', $tabs_arr)) {
2140 2140
 
2141
-            $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
2141
+			$field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
2142 2142
 
2143
-            if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '')
2144
-                $tabs_arr['post_video']['heading_text'] = $field_title;
2145
-        }
2143
+			if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '')
2144
+				$tabs_arr['post_video']['heading_text'] = $field_title;
2145
+		}
2146 2146
 
2147
-        if (array_key_exists('special_offers', $tabs_arr)) {
2147
+		if (array_key_exists('special_offers', $tabs_arr)) {
2148 2148
 
2149
-            $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
2149
+			$field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
2150 2150
 
2151
-            if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '')
2152
-                $tabs_arr['special_offers']['heading_text'] = $field_title;
2153
-        }
2151
+			if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '')
2152
+				$tabs_arr['special_offers']['heading_text'] = $field_title;
2153
+		}
2154 2154
 
2155
-    }
2155
+	}
2156 2156
 
2157
-    return $tabs_arr;
2157
+	return $tabs_arr;
2158 2158
 
2159 2159
 }
2160 2160
 
@@ -2167,10 +2167,10 @@  discard block
 block discarded – undo
2167 2167
  */
2168 2168
 function geodir_remove_template_redirect_actions()
2169 2169
 {
2170
-    if (geodir_is_page('login')){
2171
-        remove_all_actions('template_redirect');
2172
-        remove_action('init', 'avia_modify_front', 10);
2173
-    }
2170
+	if (geodir_is_page('login')){
2171
+		remove_all_actions('template_redirect');
2172
+		remove_action('init', 'avia_modify_front', 10);
2173
+	}
2174 2174
 }
2175 2175
 
2176 2176
 
@@ -2192,51 +2192,51 @@  discard block
 block discarded – undo
2192 2192
 function geodirectory_before_featured_image_delete($attachment_id)
2193 2193
 {
2194 2194
 
2195
-    global $wpdb, $plugin_prefix;
2195
+	global $wpdb, $plugin_prefix;
2196 2196
 
2197
-    $post_id = get_post_field('post_parent', $attachment_id);
2197
+	$post_id = get_post_field('post_parent', $attachment_id);
2198 2198
 
2199
-    $attachment_url = wp_get_attachment_url($attachment_id);
2199
+	$attachment_url = wp_get_attachment_url($attachment_id);
2200 2200
 
2201
-    if ($post_id > 0 && (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete')) {
2201
+	if ($post_id > 0 && (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete')) {
2202 2202
 
2203
-        $post_type = get_post_type($post_id);
2203
+		$post_type = get_post_type($post_id);
2204 2204
 
2205
-        $all_postypes = geodir_get_posttypes();
2205
+		$all_postypes = geodir_get_posttypes();
2206 2206
 
2207
-        if (!in_array($post_type, $all_postypes) || !is_admin())
2208
-            return false;
2207
+		if (!in_array($post_type, $all_postypes) || !is_admin())
2208
+			return false;
2209 2209
 
2210
-        $uploads = wp_upload_dir();
2210
+		$uploads = wp_upload_dir();
2211 2211
 
2212
-        $split_img_path = explode($uploads['baseurl'], $attachment_url);
2212
+		$split_img_path = explode($uploads['baseurl'], $attachment_url);
2213 2213
 
2214
-        $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
2214
+		$split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
2215 2215
 
2216
-        $wpdb->query(
2217
-            $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
2218
-                array($post_id, $split_img_file_path)
2219
-            )
2220
-        );
2216
+		$wpdb->query(
2217
+			$wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
2218
+				array($post_id, $split_img_file_path)
2219
+			)
2220
+		);
2221 2221
 
2222
-        $attachment_data = $wpdb->get_row(
2223
-            $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
2224
-                array($post_id)
2225
-            )
2226
-        );
2222
+		$attachment_data = $wpdb->get_row(
2223
+			$wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
2224
+				array($post_id)
2225
+			)
2226
+		);
2227 2227
 
2228
-        if (!empty($attachment_data)) {
2229
-            $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2230
-        }
2228
+		if (!empty($attachment_data)) {
2229
+			$wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2230
+		}
2231 2231
 
2232 2232
 
2233
-        $table_name = $plugin_prefix . $post_type . '_detail';
2233
+		$table_name = $plugin_prefix . $post_type . '_detail';
2234 2234
 
2235
-        $wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
2235
+		$wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
2236 2236
 
2237
-        geodir_set_wp_featured_image($post_id);
2237
+		geodir_set_wp_featured_image($post_id);
2238 2238
 
2239
-    }
2239
+	}
2240 2240
 
2241 2241
 }
2242 2242
 
@@ -2254,79 +2254,79 @@  discard block
 block discarded – undo
2254 2254
 function geodir_temp_set_post_attachment()
2255 2255
 {
2256 2256
 
2257
-    global $wpdb, $plugin_prefix;
2257
+	global $wpdb, $plugin_prefix;
2258 2258
 
2259
-    $all_postypes = geodir_get_posttypes();
2259
+	$all_postypes = geodir_get_posttypes();
2260 2260
 
2261
-    foreach ($all_postypes as $posttype) {
2261
+	foreach ($all_postypes as $posttype) {
2262 2262
 
2263
-        $tablename = $plugin_prefix . $posttype . '_detail';
2263
+		$tablename = $plugin_prefix . $posttype . '_detail';
2264 2264
 
2265
-        $get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
2265
+		$get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
2266 2266
 
2267
-        if (!empty($get_post_data)) {
2267
+		if (!empty($get_post_data)) {
2268 2268
 
2269
-            foreach ($get_post_data as $data) {
2269
+			foreach ($get_post_data as $data) {
2270 2270
 
2271
-                $post_id = $data->post_id;
2271
+				$post_id = $data->post_id;
2272 2272
 
2273
-                $attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
2273
+				$attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
2274 2274
 
2275
-                if (!empty($attachment_data)) {
2275
+				if (!empty($attachment_data)) {
2276 2276
 
2277
-                    foreach ($attachment_data as $attach) {
2277
+					foreach ($attachment_data as $attach) {
2278 2278
 
2279
-                        $file_info = pathinfo($attach->file);
2279
+						$file_info = pathinfo($attach->file);
2280 2280
 
2281
-                        $sub_dir = '';
2282
-                        if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
2283
-                            $sub_dir = stripslashes_deep($file_info['dirname']);
2281
+						$sub_dir = '';
2282
+						if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
2283
+							$sub_dir = stripslashes_deep($file_info['dirname']);
2284 2284
 
2285
-                        $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
2286
-                        $uploads_path = $uploads['basedir'];
2285
+						$uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
2286
+						$uploads_path = $uploads['basedir'];
2287 2287
 
2288
-                        $file_name = $file_info['basename'];
2288
+						$file_name = $file_info['basename'];
2289 2289
 
2290
-                        $img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name;
2290
+						$img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name;
2291 2291
 
2292
-                        if (!file_exists($img_arr['path'])) {
2292
+						if (!file_exists($img_arr['path'])) {
2293 2293
 
2294
-                            $wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
2294
+							$wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
2295 2295
 
2296
-                        }
2296
+						}
2297 2297
 
2298
-                    }
2298
+					}
2299 2299
 
2300
-                    $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
2300
+					$attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
2301 2301
 
2302
-                    if (!empty($attachment_data)) {
2302
+					if (!empty($attachment_data)) {
2303 2303
 
2304
-                        if ($attachment_data->ID)
2305
-                            $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2304
+						if ($attachment_data->ID)
2305
+							$wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2306 2306
 
2307
-                    } else {
2307
+					} else {
2308 2308
 
2309
-                        if (has_post_thumbnail($post_id)) {
2309
+						if (has_post_thumbnail($post_id)) {
2310 2310
 
2311
-                            $post_thumbnail_id = get_post_thumbnail_id($post_id);
2311
+							$post_thumbnail_id = get_post_thumbnail_id($post_id);
2312 2312
 
2313
-                            wp_delete_attachment($post_thumbnail_id);
2313
+							wp_delete_attachment($post_thumbnail_id);
2314 2314
 
2315
-                        }
2315
+						}
2316 2316
 
2317
-                    }
2317
+					}
2318 2318
 
2319
-                    $wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
2319
+					$wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
2320 2320
 
2321
-                    geodir_set_wp_featured_image($post_id);
2321
+					geodir_set_wp_featured_image($post_id);
2322 2322
 
2323
-                }
2323
+				}
2324 2324
 
2325
-            }
2325
+			}
2326 2326
 
2327
-        }
2327
+		}
2328 2328
 
2329
-    }
2329
+	}
2330 2330
 
2331 2331
 }
2332 2332
 
@@ -2344,9 +2344,9 @@  discard block
 block discarded – undo
2344 2344
 function geodir_default_rating_star_icon()
2345 2345
 {
2346 2346
 
2347
-    if (!get_option('geodir_default_rating_star_icon')) {
2348
-        update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
2349
-    }
2347
+	if (!get_option('geodir_default_rating_star_icon')) {
2348
+		update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
2349
+	}
2350 2350
 
2351 2351
 }
2352 2352
 
@@ -2364,27 +2364,27 @@  discard block
 block discarded – undo
2364 2364
  */
2365 2365
 function geodir_user_post_listing_count($user_id=null)
2366 2366
 {
2367
-    global $wpdb, $plugin_prefix, $current_user;
2368
-    if(!$user_id){
2369
-        $user_id = $current_user->ID;
2370
-    }
2367
+	global $wpdb, $plugin_prefix, $current_user;
2368
+	if(!$user_id){
2369
+		$user_id = $current_user->ID;
2370
+	}
2371 2371
 
2372
-    $user_id = $current_user->ID;
2373
-    $all_postypes = geodir_get_posttypes();
2374
-    $all_posts = get_option('geodir_listing_link_user_dashboard');
2372
+	$user_id = $current_user->ID;
2373
+	$all_postypes = geodir_get_posttypes();
2374
+	$all_posts = get_option('geodir_listing_link_user_dashboard');
2375 2375
 
2376
-    $user_listing = array();
2377
-    if (is_array($all_posts) && !empty($all_posts)) {
2378
-        foreach ($all_posts as $ptype) {
2379
-            $total_posts = $wpdb->get_var("SELECT count( ID ) FROM " . $wpdb->prefix . "posts WHERE post_author=" . $user_id . " AND post_type='" . $ptype . "' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
2376
+	$user_listing = array();
2377
+	if (is_array($all_posts) && !empty($all_posts)) {
2378
+		foreach ($all_posts as $ptype) {
2379
+			$total_posts = $wpdb->get_var("SELECT count( ID ) FROM " . $wpdb->prefix . "posts WHERE post_author=" . $user_id . " AND post_type='" . $ptype . "' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
2380 2380
 
2381
-            if ($total_posts > 0) {
2382
-                $user_listing[$ptype] = $total_posts;
2383
-            }
2384
-        }
2385
-    }
2381
+			if ($total_posts > 0) {
2382
+				$user_listing[$ptype] = $total_posts;
2383
+			}
2384
+		}
2385
+	}
2386 2386
 
2387
-    return $user_listing;
2387
+	return $user_listing;
2388 2388
 }
2389 2389
 
2390 2390
 
@@ -2404,579 +2404,579 @@  discard block
 block discarded – undo
2404 2404
  */
2405 2405
 function geodir_detail_page_custom_field_tab($tabs_arr)
2406 2406
 {
2407
-    global $post;
2408
-
2409
-    $post_type = geodir_get_current_posttype();
2410
-    $all_postypes = geodir_get_posttypes();
2411
-
2412
-    if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes) && (geodir_is_page('detail') || geodir_is_page('preview'))) {
2413
-        $package_info = array();
2414
-        $package_info = geodir_post_package_info($package_info, $post);
2415
-        $post_package_id = $package_info->pid;
2416
-        $fields_location = 'detail';
2417
-
2418
-        $custom_fields = geodir_post_custom_fields($post_package_id, 'default', $post_type, $fields_location);
2419
-        if (!empty($custom_fields)) {
2420
-            $parse_custom_fields = array();
2421
-            foreach ($custom_fields as $field) {
2422
-                $field = stripslashes_deep($field); // strip slashes
2407
+	global $post;
2408
+
2409
+	$post_type = geodir_get_current_posttype();
2410
+	$all_postypes = geodir_get_posttypes();
2411
+
2412
+	if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes) && (geodir_is_page('detail') || geodir_is_page('preview'))) {
2413
+		$package_info = array();
2414
+		$package_info = geodir_post_package_info($package_info, $post);
2415
+		$post_package_id = $package_info->pid;
2416
+		$fields_location = 'detail';
2417
+
2418
+		$custom_fields = geodir_post_custom_fields($post_package_id, 'default', $post_type, $fields_location);
2419
+		if (!empty($custom_fields)) {
2420
+			$parse_custom_fields = array();
2421
+			foreach ($custom_fields as $field) {
2422
+				$field = stripslashes_deep($field); // strip slashes
2423 2423
                 
2424
-                $type = $field;
2425
-                $field_name = $field['htmlvar_name'];
2426
-                if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2427
-                    $post->{$field_name} = $_REQUEST[$field_name];
2428
-                }
2429
-
2430
-                if (isset($field['show_as_tab']) && $field['show_as_tab'] == 1 && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file'))) {
2431
-                    if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2432
-                        continue;
2433
-                    }
2434
-
2435
-                    $parse_custom_fields[] = $field;
2436
-                }
2437
-            }
2438
-            $custom_fields = $parse_custom_fields;
2439
-        }
2440
-
2441
-        if (!empty($custom_fields)) {
2442
-            $field_set_start = 0;
2443
-            $fieldset_count = 0;
2444
-            $fieldset = '';
2445
-            $total_fields = count($custom_fields);
2446
-            $count_field = 0;
2447
-            $fieldset_arr = array();
2448
-            $i = 0;
2449
-            $geodir_post_info = isset($post->ID) && !empty($post->ID) ? geodir_get_post_info($post->ID) : NULL;
2450
-
2451
-            foreach ($custom_fields as $field) {
2452
-                $count_field++;
2453
-                $field_name = $field['htmlvar_name'];
2454
-                if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2455
-                    $post->{$field_name} = $_REQUEST[$field_name];
2456
-                }
2457
-
2458
-                if (isset($field['show_as_tab']) && $field['show_as_tab'] == 1 && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file'))) {
2459
-                    $label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title'];
2460
-                    $site_title = trim($field['site_title']);
2461
-                    $type = $field;
2462
-                    $html = '';
2463
-                    $html_var = $field_name;
2464
-                    $field_icon = '';
2465
-                    $variables_array = array();
2466
-
2467
-                    if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2468
-                        continue;
2469
-                    }
2470
-
2471
-                    if ($type['type'] != 'fieldset') {
2472
-                        $i++;
2473
-                        $variables_array['post_id'] = $post->ID;
2474
-                        $variables_array['label'] = __($type['site_title'], 'geodirectory');
2475
-                        $variables_array['value'] = '';
2476
-                        $variables_array['value'] = $post->{$type['htmlvar_name']};
2477
-                    }
2478
-
2479
-                    if (strpos($type['field_icon'], 'http') !== false) {
2480
-                        $field_icon = ' background: url(' . $type['field_icon'] . ') no-repeat left center;background-size:18px 18px;padding-left: 21px;';
2481
-                    } elseif (strpos($type['field_icon'], 'fa fa-') !== false) {
2482
-                        $field_icon = '<i class="' . $type['field_icon'] . '"></i>';
2483
-                    }
2424
+				$type = $field;
2425
+				$field_name = $field['htmlvar_name'];
2426
+				if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2427
+					$post->{$field_name} = $_REQUEST[$field_name];
2428
+				}
2429
+
2430
+				if (isset($field['show_as_tab']) && $field['show_as_tab'] == 1 && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file'))) {
2431
+					if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2432
+						continue;
2433
+					}
2434
+
2435
+					$parse_custom_fields[] = $field;
2436
+				}
2437
+			}
2438
+			$custom_fields = $parse_custom_fields;
2439
+		}
2484 2440
 
2485
-                    switch ($type['type']) {
2486
-                        case 'fieldset': {
2487
-                            $i = 0;
2488
-                            $fieldset_count++;
2489
-                            $field_set_start = 1;
2490
-                            $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count;
2491
-                            $fieldset_arr[$fieldset_count]['label'] = $label;
2492
-                        }
2493
-                            break;
2494
-                        case 'url': {
2495
-                            if (strpos($field_icon, 'http') !== false) {
2496
-                                $field_icon_af = '';
2497
-                            } elseif ($field_icon == '') {
2498
-
2499
-                                if ($type['name'] == 'geodir_facebook') {
2500
-                                    $field_icon_af = '<i class="fa fa-facebook-square"></i>';
2501
-                                } elseif ($type['name'] == 'geodir_twitter') {
2502
-                                    $field_icon_af = '<i class="fa fa-twitter-square"></i>';
2503
-                                } else {
2504
-                                    $field_icon_af = '<i class="fa fa-link"></i>';
2505
-                                }
2506
-
2507
-                            } else {
2508
-                                $field_icon_af = $field_icon;
2509
-                                $field_icon = '';
2510
-                            }
2441
+		if (!empty($custom_fields)) {
2442
+			$field_set_start = 0;
2443
+			$fieldset_count = 0;
2444
+			$fieldset = '';
2445
+			$total_fields = count($custom_fields);
2446
+			$count_field = 0;
2447
+			$fieldset_arr = array();
2448
+			$i = 0;
2449
+			$geodir_post_info = isset($post->ID) && !empty($post->ID) ? geodir_get_post_info($post->ID) : NULL;
2450
+
2451
+			foreach ($custom_fields as $field) {
2452
+				$count_field++;
2453
+				$field_name = $field['htmlvar_name'];
2454
+				if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2455
+					$post->{$field_name} = $_REQUEST[$field_name];
2456
+				}
2457
+
2458
+				if (isset($field['show_as_tab']) && $field['show_as_tab'] == 1 && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file'))) {
2459
+					$label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title'];
2460
+					$site_title = trim($field['site_title']);
2461
+					$type = $field;
2462
+					$html = '';
2463
+					$html_var = $field_name;
2464
+					$field_icon = '';
2465
+					$variables_array = array();
2466
+
2467
+					if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2468
+						continue;
2469
+					}
2470
+
2471
+					if ($type['type'] != 'fieldset') {
2472
+						$i++;
2473
+						$variables_array['post_id'] = $post->ID;
2474
+						$variables_array['label'] = __($type['site_title'], 'geodirectory');
2475
+						$variables_array['value'] = '';
2476
+						$variables_array['value'] = $post->{$type['htmlvar_name']};
2477
+					}
2478
+
2479
+					if (strpos($type['field_icon'], 'http') !== false) {
2480
+						$field_icon = ' background: url(' . $type['field_icon'] . ') no-repeat left center;background-size:18px 18px;padding-left: 21px;';
2481
+					} elseif (strpos($type['field_icon'], 'fa fa-') !== false) {
2482
+						$field_icon = '<i class="' . $type['field_icon'] . '"></i>';
2483
+					}
2484
+
2485
+					switch ($type['type']) {
2486
+						case 'fieldset': {
2487
+							$i = 0;
2488
+							$fieldset_count++;
2489
+							$field_set_start = 1;
2490
+							$fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count;
2491
+							$fieldset_arr[$fieldset_count]['label'] = $label;
2492
+						}
2493
+							break;
2494
+						case 'url': {
2495
+							if (strpos($field_icon, 'http') !== false) {
2496
+								$field_icon_af = '';
2497
+							} elseif ($field_icon == '') {
2498
+
2499
+								if ($type['name'] == 'geodir_facebook') {
2500
+									$field_icon_af = '<i class="fa fa-facebook-square"></i>';
2501
+								} elseif ($type['name'] == 'geodir_twitter') {
2502
+									$field_icon_af = '<i class="fa fa-twitter-square"></i>';
2503
+								} else {
2504
+									$field_icon_af = '<i class="fa fa-link"></i>';
2505
+								}
2506
+
2507
+							} else {
2508
+								$field_icon_af = $field_icon;
2509
+								$field_icon = '';
2510
+							}
2511 2511
                             
2512
-                            $a_url = geodir_parse_custom_field_url($post->{$type['htmlvar_name']});
2513
-
2514
-                            $website = !empty($a_url['url']) ? $a_url['url'] : '';
2515
-                            $title = !empty($a_url['label']) ? $a_url['label'] : $type['site_title'];
2516
-                            $title = $title != '' ? __(stripslashes($title), 'geodirectory') : '';
2517
-
2518
-                            $geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2519
-
2520
-                            // all search engines that use the nofollow value exclude links that use it from their ranking calculation
2521
-                            $rel = strpos($website, get_site_url()) !== false ? '' : 'rel="nofollow"';
2522
-
2523
-                            $html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '"><span class="geodir-i-website" style="' . $field_icon . '">' . $field_icon_af . ' <a href="' . $website . '" target="_blank" ' . $rel . ' ><strong>' .
2524
-                                /**
2525
-                                 * Filer the custom field website name.
2526
-                                 *
2527
-                                 * @since 1.0.0
2528
-                                 * @param string $title The field name default: "Website".
2529
-                                 * @param string $website The website address.
2530
-                                 * @param int $post->ID The post ID.
2531
-                                 */
2532
-                                apply_filters('geodir_custom_field_website_name', $title, $website, $post->ID) . '</strong></a></span></div>';
2533
-                        }
2534
-                            break;
2535
-                        case 'phone': {
2536
-                            if (strpos($field_icon, 'http') !== false) {
2537
-                                $field_icon_af = '';
2538
-                            } elseif ($field_icon == '') {
2539
-                                $field_icon_af = '<i class="fa fa-phone"></i>';
2540
-                            } else {
2541
-                                $field_icon_af = $field_icon;
2542
-                                $field_icon = '';
2543
-                            }
2544
-
2545
-                            $geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2546
-
2547
-                            $html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-contact" style="' . $field_icon . '">' . $field_icon_af;
2548
-                            if ($field_set_start == 1 && $site_title != '') {
2549
-                                $html .= ' ' . __($site_title, 'geodirectory') . ': ';
2550
-                            }
2551
-                            $html .= ' </span>' . stripslashes($post->{$type['htmlvar_name']}) . '</div>';
2552
-                        }
2553
-                            break;
2554
-                        case 'time': {
2555
-                            $value = '';
2556
-                            if ($post->{$type['htmlvar_name']} != '')
2557
-                                $value = date_i18n(get_option('time_format'), strtotime($post->{$type['htmlvar_name']}));
2558
-
2559
-                            if (strpos($field_icon, 'http') !== false) {
2560
-                                $field_icon_af = '';
2561
-                            } elseif ($field_icon == '') {
2562
-                                $field_icon_af = '<i class="fa fa-clock-o"></i>';
2563
-                            } else {
2564
-                                $field_icon_af = $field_icon;
2565
-                                $field_icon = '';
2566
-                            }
2567
-
2568
-                            $geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2569
-
2570
-                            $html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-time" style="' . $field_icon . '">' . $field_icon_af;
2571
-                            if ($field_set_start == 1 && $site_title != '') {
2572
-                                $html .= ' ' . __($site_title, 'geodirectory') . ': ';
2573
-                            }
2574
-                            $html .= ' </span>' . stripslashes($value) . '</div>';
2575
-                        }
2576
-                            break;
2577
-                        case 'datepicker': {
2578
-                            $date_format = geodir_default_date_format();
2579
-                            if ($type['extra_fields'] != '') {
2580
-                                $date_format = unserialize($type['extra_fields']);
2581
-                                $date_format = $date_format['date_format'];
2582
-                            }
2583
-
2584
-                            $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
2585
-                            $replace = array('d','j','l','m','n','F','Y');//PHP date format
2586
-
2587
-                            $date_format = str_replace($search, $replace, $date_format);
2588
-
2589
-                            $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $post->{$type['htmlvar_name']}) : $post->{$type['htmlvar_name']}; // PHP doesn't work well with dd/mm/yyyy format
2590
-
2591
-                            $value = '';
2592
-                            if ($post->{$type['htmlvar_name']} != '')
2593
-                                $value = date($date_format, strtotime($post_htmlvar_value));
2594
-
2595
-                            if (strpos($field_icon, 'http') !== false) {
2596
-                                $field_icon_af = '';
2597
-                            } elseif ($field_icon == '') {
2598
-                                $field_icon_af = '<i class="fa fa-calendar"></i>';
2599
-                            } else {
2600
-                                $field_icon_af = $field_icon;
2601
-                                $field_icon = '';
2602
-                            }
2603
-
2604
-                            $geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2605
-
2606
-                            $html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-datepicker" style="' . $field_icon . '">' . $field_icon_af;
2607
-                            if ($field_set_start == 1 && $site_title != '') {
2608
-                                $html .= ' ' . __($site_title, 'geodirectory') . ': ';
2609
-                            }
2610
-                            $html .= ' </span>' . $value . '</div>';
2611
-                        }
2612
-                            break;
2613
-                        case 'text': {
2614
-                            if (strpos($field_icon, 'http') !== false) {
2615
-                                $field_icon_af = '';
2616
-                            } elseif ($field_icon == '') {
2617
-                                $field_icon_af = '';
2618
-                            } else {
2619
-                                $field_icon_af = $field_icon;
2620
-                                $field_icon = '';
2621
-                            }
2622
-
2623
-                            $geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2624
-
2625
-                            $html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af;
2626
-                            if ($field_set_start == 1 && $site_title != '') {
2627
-                                $html .= ' ' . __($site_title, 'geodirectory') . ': ';
2628
-                            }
2629
-                            $html .= ' </span>' . stripslashes($post->{$type['htmlvar_name']}) . '</div>';
2630
-                        }
2631
-                            break;
2632
-                        case 'radio': {
2633
-
2634
-                            if ($post->{$type['htmlvar_name']} != '') {
2635
-                                if ($post->{$type['htmlvar_name']} == 'f' || $post->{$type['htmlvar_name']} == '0') {
2636
-                                    $html_val = __('No', 'geodirectory');
2637
-                                } else if ($post->{$type['htmlvar_name']} == 't' || $post->{$type['htmlvar_name']} == '1') {
2638
-                                    $html_val = __('Yes', 'geodirectory');
2639
-                                } else {
2640
-                                    $html_val = __($post->{$type['htmlvar_name']}, 'geodirectory');
2512
+							$a_url = geodir_parse_custom_field_url($post->{$type['htmlvar_name']});
2513
+
2514
+							$website = !empty($a_url['url']) ? $a_url['url'] : '';
2515
+							$title = !empty($a_url['label']) ? $a_url['label'] : $type['site_title'];
2516
+							$title = $title != '' ? __(stripslashes($title), 'geodirectory') : '';
2517
+
2518
+							$geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2519
+
2520
+							// all search engines that use the nofollow value exclude links that use it from their ranking calculation
2521
+							$rel = strpos($website, get_site_url()) !== false ? '' : 'rel="nofollow"';
2522
+
2523
+							$html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '"><span class="geodir-i-website" style="' . $field_icon . '">' . $field_icon_af . ' <a href="' . $website . '" target="_blank" ' . $rel . ' ><strong>' .
2524
+								/**
2525
+								 * Filer the custom field website name.
2526
+								 *
2527
+								 * @since 1.0.0
2528
+								 * @param string $title The field name default: "Website".
2529
+								 * @param string $website The website address.
2530
+								 * @param int $post->ID The post ID.
2531
+								 */
2532
+								apply_filters('geodir_custom_field_website_name', $title, $website, $post->ID) . '</strong></a></span></div>';
2533
+						}
2534
+							break;
2535
+						case 'phone': {
2536
+							if (strpos($field_icon, 'http') !== false) {
2537
+								$field_icon_af = '';
2538
+							} elseif ($field_icon == '') {
2539
+								$field_icon_af = '<i class="fa fa-phone"></i>';
2540
+							} else {
2541
+								$field_icon_af = $field_icon;
2542
+								$field_icon = '';
2543
+							}
2544
+
2545
+							$geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2546
+
2547
+							$html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-contact" style="' . $field_icon . '">' . $field_icon_af;
2548
+							if ($field_set_start == 1 && $site_title != '') {
2549
+								$html .= ' ' . __($site_title, 'geodirectory') . ': ';
2550
+							}
2551
+							$html .= ' </span>' . stripslashes($post->{$type['htmlvar_name']}) . '</div>';
2552
+						}
2553
+							break;
2554
+						case 'time': {
2555
+							$value = '';
2556
+							if ($post->{$type['htmlvar_name']} != '')
2557
+								$value = date_i18n(get_option('time_format'), strtotime($post->{$type['htmlvar_name']}));
2558
+
2559
+							if (strpos($field_icon, 'http') !== false) {
2560
+								$field_icon_af = '';
2561
+							} elseif ($field_icon == '') {
2562
+								$field_icon_af = '<i class="fa fa-clock-o"></i>';
2563
+							} else {
2564
+								$field_icon_af = $field_icon;
2565
+								$field_icon = '';
2566
+							}
2567
+
2568
+							$geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2569
+
2570
+							$html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-time" style="' . $field_icon . '">' . $field_icon_af;
2571
+							if ($field_set_start == 1 && $site_title != '') {
2572
+								$html .= ' ' . __($site_title, 'geodirectory') . ': ';
2573
+							}
2574
+							$html .= ' </span>' . stripslashes($value) . '</div>';
2575
+						}
2576
+							break;
2577
+						case 'datepicker': {
2578
+							$date_format = geodir_default_date_format();
2579
+							if ($type['extra_fields'] != '') {
2580
+								$date_format = unserialize($type['extra_fields']);
2581
+								$date_format = $date_format['date_format'];
2582
+							}
2583
+
2584
+							$search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
2585
+							$replace = array('d','j','l','m','n','F','Y');//PHP date format
2586
+
2587
+							$date_format = str_replace($search, $replace, $date_format);
2588
+
2589
+							$post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $post->{$type['htmlvar_name']}) : $post->{$type['htmlvar_name']}; // PHP doesn't work well with dd/mm/yyyy format
2590
+
2591
+							$value = '';
2592
+							if ($post->{$type['htmlvar_name']} != '')
2593
+								$value = date($date_format, strtotime($post_htmlvar_value));
2594
+
2595
+							if (strpos($field_icon, 'http') !== false) {
2596
+								$field_icon_af = '';
2597
+							} elseif ($field_icon == '') {
2598
+								$field_icon_af = '<i class="fa fa-calendar"></i>';
2599
+							} else {
2600
+								$field_icon_af = $field_icon;
2601
+								$field_icon = '';
2602
+							}
2603
+
2604
+							$geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2605
+
2606
+							$html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-datepicker" style="' . $field_icon . '">' . $field_icon_af;
2607
+							if ($field_set_start == 1 && $site_title != '') {
2608
+								$html .= ' ' . __($site_title, 'geodirectory') . ': ';
2609
+							}
2610
+							$html .= ' </span>' . $value . '</div>';
2611
+						}
2612
+							break;
2613
+						case 'text': {
2614
+							if (strpos($field_icon, 'http') !== false) {
2615
+								$field_icon_af = '';
2616
+							} elseif ($field_icon == '') {
2617
+								$field_icon_af = '';
2618
+							} else {
2619
+								$field_icon_af = $field_icon;
2620
+								$field_icon = '';
2621
+							}
2622
+
2623
+							$geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2624
+
2625
+							$html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af;
2626
+							if ($field_set_start == 1 && $site_title != '') {
2627
+								$html .= ' ' . __($site_title, 'geodirectory') . ': ';
2628
+							}
2629
+							$html .= ' </span>' . stripslashes($post->{$type['htmlvar_name']}) . '</div>';
2630
+						}
2631
+							break;
2632
+						case 'radio': {
2633
+
2634
+							if ($post->{$type['htmlvar_name']} != '') {
2635
+								if ($post->{$type['htmlvar_name']} == 'f' || $post->{$type['htmlvar_name']} == '0') {
2636
+									$html_val = __('No', 'geodirectory');
2637
+								} else if ($post->{$type['htmlvar_name']} == 't' || $post->{$type['htmlvar_name']} == '1') {
2638
+									$html_val = __('Yes', 'geodirectory');
2639
+								} else {
2640
+									$html_val = __($post->{$type['htmlvar_name']}, 'geodirectory');
2641 2641
                                     
2642
-                                    if (!empty($type['option_values'])) {
2643
-                                        $cf_option_values = geodir_string_values_to_options(stripslashes_deep($type['option_values']), true);
2642
+									if (!empty($type['option_values'])) {
2643
+										$cf_option_values = geodir_string_values_to_options(stripslashes_deep($type['option_values']), true);
2644 2644
                                         
2645
-                                        if (!empty($cf_option_values)) {
2646
-                                            foreach ($cf_option_values as $cf_option_value) {
2647
-                                                if (isset($cf_option_value['value']) && $cf_option_value['value'] == $post->{$type['htmlvar_name']}) {
2648
-                                                    $html_val = $cf_option_value['label'];
2649
-                                                }
2650
-                                            }
2651
-                                        }
2652
-                                    }
2653
-                                }
2654
-
2655
-                                if (strpos($field_icon, 'http') !== false) {
2656
-                                    $field_icon_af = '';
2657
-                                } else if ($field_icon == '') {
2658
-                                    $field_icon_af = '';
2659
-                                } else {
2660
-                                    $field_icon_af = $field_icon;
2661
-                                    $field_icon = '';
2662
-                                }
2663
-
2664
-                                $geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2665
-
2666
-                                $html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-radio" style="' . $field_icon . '">' . $field_icon_af;
2667
-
2668
-                                if ($field_set_start == 1 && $site_title != '') {
2669
-                                    $html .= ' ' . __($site_title, 'geodirectory') . ': ';
2670
-                                }
2671
-
2672
-                                $html .= ' </span>' . $html_val . '</div>';
2673
-                            }
2674
-                        }
2675
-                            break;
2676
-                        case 'checkbox': {
2677
-                            $html_var = $type['htmlvar_name'];
2678
-                            $html_val = $type['htmlvar_name'];
2679
-
2680
-                            if ((int)$post->{$html_var} == 1) {
2681
-
2682
-                                if ($post->{$type['htmlvar_name']} == '1') {
2683
-                                    $html_val = __('Yes', 'geodirectory');
2684
-                                } else {
2685
-                                    $html_val = __('No', 'geodirectory');
2686
-                                }
2687
-
2688
-                                if (strpos($field_icon, 'http') !== false) {
2689
-                                    $field_icon_af = '';
2690
-                                } else if ($field_icon == '') {
2691
-                                    $field_icon_af = '';
2692
-                                } else {
2693
-                                    $field_icon_af = $field_icon;
2694
-                                    $field_icon = '';
2695
-                                }
2696
-
2697
-                                $geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2698
-
2699
-                                $html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-checkbox" style="' . $field_icon . '">' . $field_icon_af;
2700
-
2701
-                                if ($field_set_start == 1 && $site_title != '') {
2702
-                                    $html .= ' ' . __($site_title, 'geodirectory') . ': ';
2703
-                                }
2704
-
2705
-                                $html .= ' </span>' . $html_val . '</div>';
2706
-                            }
2707
-                        }
2708
-                            break;
2709
-                        case 'select': {
2710
-                            if (strpos($field_icon, 'http') !== false) {
2711
-                                $field_icon_af = '';
2712
-                            } elseif ($field_icon == '') {
2713
-                                $field_icon_af = '';
2714
-                            } else {
2715
-                                $field_icon_af = $field_icon;
2716
-                                $field_icon = '';
2717
-                            }
2645
+										if (!empty($cf_option_values)) {
2646
+											foreach ($cf_option_values as $cf_option_value) {
2647
+												if (isset($cf_option_value['value']) && $cf_option_value['value'] == $post->{$type['htmlvar_name']}) {
2648
+													$html_val = $cf_option_value['label'];
2649
+												}
2650
+											}
2651
+										}
2652
+									}
2653
+								}
2654
+
2655
+								if (strpos($field_icon, 'http') !== false) {
2656
+									$field_icon_af = '';
2657
+								} else if ($field_icon == '') {
2658
+									$field_icon_af = '';
2659
+								} else {
2660
+									$field_icon_af = $field_icon;
2661
+									$field_icon = '';
2662
+								}
2663
+
2664
+								$geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2665
+
2666
+								$html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-radio" style="' . $field_icon . '">' . $field_icon_af;
2667
+
2668
+								if ($field_set_start == 1 && $site_title != '') {
2669
+									$html .= ' ' . __($site_title, 'geodirectory') . ': ';
2670
+								}
2671
+
2672
+								$html .= ' </span>' . $html_val . '</div>';
2673
+							}
2674
+						}
2675
+							break;
2676
+						case 'checkbox': {
2677
+							$html_var = $type['htmlvar_name'];
2678
+							$html_val = $type['htmlvar_name'];
2679
+
2680
+							if ((int)$post->{$html_var} == 1) {
2681
+
2682
+								if ($post->{$type['htmlvar_name']} == '1') {
2683
+									$html_val = __('Yes', 'geodirectory');
2684
+								} else {
2685
+									$html_val = __('No', 'geodirectory');
2686
+								}
2687
+
2688
+								if (strpos($field_icon, 'http') !== false) {
2689
+									$field_icon_af = '';
2690
+								} else if ($field_icon == '') {
2691
+									$field_icon_af = '';
2692
+								} else {
2693
+									$field_icon_af = $field_icon;
2694
+									$field_icon = '';
2695
+								}
2696
+
2697
+								$geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2698
+
2699
+								$html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-checkbox" style="' . $field_icon . '">' . $field_icon_af;
2700
+
2701
+								if ($field_set_start == 1 && $site_title != '') {
2702
+									$html .= ' ' . __($site_title, 'geodirectory') . ': ';
2703
+								}
2704
+
2705
+								$html .= ' </span>' . $html_val . '</div>';
2706
+							}
2707
+						}
2708
+							break;
2709
+						case 'select': {
2710
+							if (strpos($field_icon, 'http') !== false) {
2711
+								$field_icon_af = '';
2712
+							} elseif ($field_icon == '') {
2713
+								$field_icon_af = '';
2714
+							} else {
2715
+								$field_icon_af = $field_icon;
2716
+								$field_icon = '';
2717
+							}
2718 2718
                             
2719
-                            $field_value = __($post->{$type['htmlvar_name']}, 'geodirectory');
2719
+							$field_value = __($post->{$type['htmlvar_name']}, 'geodirectory');
2720 2720
                             
2721
-                            if (!empty($type['option_values'])) {
2722
-                                $cf_option_values = geodir_string_values_to_options(stripslashes_deep($type['option_values']), true);
2721
+							if (!empty($type['option_values'])) {
2722
+								$cf_option_values = geodir_string_values_to_options(stripslashes_deep($type['option_values']), true);
2723 2723
                                 
2724
-                                if (!empty($cf_option_values)) {
2725
-                                    foreach ($cf_option_values as $cf_option_value) {
2726
-                                        if (isset($cf_option_value['value']) && $cf_option_value['value'] == $post->{$type['htmlvar_name']}) {
2727
-                                            $field_value = $cf_option_value['label'];
2728
-                                        }
2729
-                                    }
2730
-                                }
2731
-                            }
2732
-
2733
-                            $geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2734
-
2735
-                            $html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af;
2736
-                            if ($field_set_start == 1 && $site_title != '') {
2737
-                                $html .= ' ' . __($site_title, 'geodirectory') . ': ';
2738
-                            }
2739
-                            $html .= ' </span>' . $field_value . '</div>';
2740
-                        }
2741
-                            break;
2742
-                        case 'multiselect': {
2743
-                            if (is_array($post->{$type['htmlvar_name']})) {
2744
-                                $post->{$type['htmlvar_name']} = implode(', ', $post->{$type['htmlvar_name']});
2745
-                            }
2746
-
2747
-                            if (strpos($field_icon, 'http') !== false) {
2748
-                                $field_icon_af = '';
2749
-                            } elseif ($field_icon == '') {
2750
-                                $field_icon_af = '';
2751
-                            } else {
2752
-                                $field_icon_af = $field_icon;
2753
-                                $field_icon = '';
2754
-                            }
2755
-
2756
-                            $field_values = explode(',', trim($post->{$type['htmlvar_name']}, ","));
2757
-
2758
-                            $option_values = array();
2759
-                            if (!empty($type['option_values'])) {
2760
-                                $cf_option_values = geodir_string_values_to_options(stripslashes_deep($type['option_values']), true);
2724
+								if (!empty($cf_option_values)) {
2725
+									foreach ($cf_option_values as $cf_option_value) {
2726
+										if (isset($cf_option_value['value']) && $cf_option_value['value'] == $post->{$type['htmlvar_name']}) {
2727
+											$field_value = $cf_option_value['label'];
2728
+										}
2729
+									}
2730
+								}
2731
+							}
2732
+
2733
+							$geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2734
+
2735
+							$html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af;
2736
+							if ($field_set_start == 1 && $site_title != '') {
2737
+								$html .= ' ' . __($site_title, 'geodirectory') . ': ';
2738
+							}
2739
+							$html .= ' </span>' . $field_value . '</div>';
2740
+						}
2741
+							break;
2742
+						case 'multiselect': {
2743
+							if (is_array($post->{$type['htmlvar_name']})) {
2744
+								$post->{$type['htmlvar_name']} = implode(', ', $post->{$type['htmlvar_name']});
2745
+							}
2746
+
2747
+							if (strpos($field_icon, 'http') !== false) {
2748
+								$field_icon_af = '';
2749
+							} elseif ($field_icon == '') {
2750
+								$field_icon_af = '';
2751
+							} else {
2752
+								$field_icon_af = $field_icon;
2753
+								$field_icon = '';
2754
+							}
2755
+
2756
+							$field_values = explode(',', trim($post->{$type['htmlvar_name']}, ","));
2757
+
2758
+							$option_values = array();
2759
+							if (!empty($type['option_values'])) {
2760
+								$cf_option_values = geodir_string_values_to_options(stripslashes_deep($type['option_values']), true);
2761 2761
                                 
2762
-                                if (!empty($cf_option_values)) {
2763
-                                    foreach ($cf_option_values as $cf_option_value) {
2764
-                                        if (isset($cf_option_value['value']) && in_array($cf_option_value['value'], $field_values)) {
2765
-                                            $option_values[] = $cf_option_value['label'];
2766
-                                        }
2767
-                                    }
2768
-                                }
2769
-                            }
2770
-
2771
-                            $geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2772
-
2773
-                            $html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af;
2774
-                            if ($field_set_start == 1 && $site_title != '') {
2775
-                                $html .= ' ' . __($site_title, 'geodirectory') . ': ';
2776
-                            }
2777
-                            $html .= ' </span>';
2778
-
2779
-                            if (count($option_values) > 1) {
2780
-                                $html .= '<ul>';
2781
-                                foreach ($option_values as $val) {
2782
-                                    $html .= '<li>' . $val . '</li>';
2783
-                                }
2784
-                                $html .= '</ul>';
2785
-                            } else {
2786
-                                $html .= $post->{$type['htmlvar_name']};
2787
-                            }
2788
-                            $html .= '</div>';
2789
-                        }
2790
-                            break;
2791
-                        case 'email': {
2792
-                            if (strpos($field_icon, 'http') !== false) {
2793
-                                $field_icon_af = '';
2794
-                            } elseif ($field_icon == '') {
2795
-                                $field_icon_af = '<i class="fa fa-envelope"></i>';
2796
-                            } else {
2797
-                                $field_icon_af = $field_icon;
2798
-                                $field_icon = '';
2799
-                            }
2800
-
2801
-                            $geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2802
-
2803
-                            $html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af;
2804
-                            if ($field_set_start == 1 && $site_title != '') {
2805
-                                $html .= ' ' . __($site_title, 'geodirectory') . ': ';
2806
-                            }
2807
-                            $html .= ' </span>' . stripslashes($post->{$type['htmlvar_name']}) . '</div>';
2808
-                        }
2809
-                            break;
2810
-                        case 'textarea': {
2811
-                            if (strpos($field_icon, 'http') !== false) {
2812
-                                $field_icon_af = '';
2813
-                            } elseif ($field_icon == '') {
2814
-                                $field_icon_af = '';
2815
-                            } else {
2816
-                                $field_icon_af = $field_icon;
2817
-                                $field_icon = '';
2818
-                            }
2819
-
2820
-                            $geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2821
-
2822
-                            $html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af;
2823
-                            if ($field_set_start == 1 && $site_title != '') {
2824
-                                $html .= ' ' . __($site_title, 'geodirectory') . ': ';
2825
-                            }
2826
-                            $html .= '</span>' . wpautop(stripslashes($post->{$type['htmlvar_name']})) . '</div>';
2827
-                        }
2828
-                            break;
2829
-                        case 'html': {
2830
-                            if (strpos($field_icon, 'http') !== false) {
2831
-                                $field_icon_af = '';
2832
-                            } elseif ($field_icon == '') {
2833
-                                $field_icon_af = '';
2834
-                            } else {
2835
-                                $field_icon_af = $field_icon;
2836
-                                $field_icon = '';
2837
-                            }
2838
-
2839
-                            $geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2840
-
2841
-                            $html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af;
2842
-                            if ($field_set_start == 1 && $site_title != '') {
2843
-                                $html .= ' ' . __($site_title, 'geodirectory') . ': ';
2844
-                            }
2845
-                            $html .= ' </span>' . wpautop(stripslashes($post->{$type['htmlvar_name']})) . '</div>';
2846
-                        }
2847
-                        break;
2848
-                        case 'file': {
2849
-                            $html_var = $type['htmlvar_name'];
2850
-
2851
-                            if (!empty($post->{$type['htmlvar_name']})) {
2852
-                                $files = explode(",", $post->{$type['htmlvar_name']});
2853
-
2854
-                                if (!empty($files)) {
2855
-                                    $extra_fields = !empty($type['extra_fields']) ? maybe_unserialize($type['extra_fields']) : NULL;
2856
-                                    $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types'] ) ? $extra_fields['gd_file_types'] : '';
2762
+								if (!empty($cf_option_values)) {
2763
+									foreach ($cf_option_values as $cf_option_value) {
2764
+										if (isset($cf_option_value['value']) && in_array($cf_option_value['value'], $field_values)) {
2765
+											$option_values[] = $cf_option_value['label'];
2766
+										}
2767
+									}
2768
+								}
2769
+							}
2770
+
2771
+							$geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2772
+
2773
+							$html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af;
2774
+							if ($field_set_start == 1 && $site_title != '') {
2775
+								$html .= ' ' . __($site_title, 'geodirectory') . ': ';
2776
+							}
2777
+							$html .= ' </span>';
2778
+
2779
+							if (count($option_values) > 1) {
2780
+								$html .= '<ul>';
2781
+								foreach ($option_values as $val) {
2782
+									$html .= '<li>' . $val . '</li>';
2783
+								}
2784
+								$html .= '</ul>';
2785
+							} else {
2786
+								$html .= $post->{$type['htmlvar_name']};
2787
+							}
2788
+							$html .= '</div>';
2789
+						}
2790
+							break;
2791
+						case 'email': {
2792
+							if (strpos($field_icon, 'http') !== false) {
2793
+								$field_icon_af = '';
2794
+							} elseif ($field_icon == '') {
2795
+								$field_icon_af = '<i class="fa fa-envelope"></i>';
2796
+							} else {
2797
+								$field_icon_af = $field_icon;
2798
+								$field_icon = '';
2799
+							}
2800
+
2801
+							$geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2802
+
2803
+							$html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af;
2804
+							if ($field_set_start == 1 && $site_title != '') {
2805
+								$html .= ' ' . __($site_title, 'geodirectory') . ': ';
2806
+							}
2807
+							$html .= ' </span>' . stripslashes($post->{$type['htmlvar_name']}) . '</div>';
2808
+						}
2809
+							break;
2810
+						case 'textarea': {
2811
+							if (strpos($field_icon, 'http') !== false) {
2812
+								$field_icon_af = '';
2813
+							} elseif ($field_icon == '') {
2814
+								$field_icon_af = '';
2815
+							} else {
2816
+								$field_icon_af = $field_icon;
2817
+								$field_icon = '';
2818
+							}
2819
+
2820
+							$geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2821
+
2822
+							$html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af;
2823
+							if ($field_set_start == 1 && $site_title != '') {
2824
+								$html .= ' ' . __($site_title, 'geodirectory') . ': ';
2825
+							}
2826
+							$html .= '</span>' . wpautop(stripslashes($post->{$type['htmlvar_name']})) . '</div>';
2827
+						}
2828
+							break;
2829
+						case 'html': {
2830
+							if (strpos($field_icon, 'http') !== false) {
2831
+								$field_icon_af = '';
2832
+							} elseif ($field_icon == '') {
2833
+								$field_icon_af = '';
2834
+							} else {
2835
+								$field_icon_af = $field_icon;
2836
+								$field_icon = '';
2837
+							}
2838
+
2839
+							$geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2840
+
2841
+							$html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af;
2842
+							if ($field_set_start == 1 && $site_title != '') {
2843
+								$html .= ' ' . __($site_title, 'geodirectory') . ': ';
2844
+							}
2845
+							$html .= ' </span>' . wpautop(stripslashes($post->{$type['htmlvar_name']})) . '</div>';
2846
+						}
2847
+						break;
2848
+						case 'file': {
2849
+							$html_var = $type['htmlvar_name'];
2850
+
2851
+							if (!empty($post->{$type['htmlvar_name']})) {
2852
+								$files = explode(",", $post->{$type['htmlvar_name']});
2853
+
2854
+								if (!empty($files)) {
2855
+									$extra_fields = !empty($type['extra_fields']) ? maybe_unserialize($type['extra_fields']) : NULL;
2856
+									$allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types'] ) ? $extra_fields['gd_file_types'] : '';
2857 2857
                                
2858
-                                    $file_paths = '';
2859
-                                    foreach ($files as $file) {
2860
-                                        if (!empty($file)) {
2861
-                                            $image_name_arr = explode('/', $file);
2862
-                                            $filename = end($image_name_arr);
2863
-
2864
-                                            $arr_file_type = wp_check_filetype($filename);
2865
-                                            if (empty($arr_file_type['ext']) || empty($arr_file_type['type'])) {
2866
-                                                continue;
2867
-                                            }
2868
-                                            $uploaded_file_type = $arr_file_type['type'];
2869
-                                            $uploaded_file_ext = $arr_file_type['ext'];
2858
+									$file_paths = '';
2859
+									foreach ($files as $file) {
2860
+										if (!empty($file)) {
2861
+											$image_name_arr = explode('/', $file);
2862
+											$filename = end($image_name_arr);
2863
+
2864
+											$arr_file_type = wp_check_filetype($filename);
2865
+											if (empty($arr_file_type['ext']) || empty($arr_file_type['type'])) {
2866
+												continue;
2867
+											}
2868
+											$uploaded_file_type = $arr_file_type['type'];
2869
+											$uploaded_file_ext = $arr_file_type['ext'];
2870 2870
                                             
2871
-                                            if (!empty($allowed_file_types) && !in_array($uploaded_file_ext, $allowed_file_types)) {
2872
-                                                continue; // Invalid file type.
2873
-                                            }
2874
-
2875
-                                            $image_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png', 'image/bmp', 'image/x-icon');
2876
-
2877
-                                            // If the uploaded file is image
2878
-                                            if (in_array($uploaded_file_type, $image_file_types)) {
2879
-                                                $file_paths .= '<div class="geodir-custom-post-gallery" class="clearfix">';
2880
-                                                $file_paths .= '<a href="'.$file.'">';
2881
-                                                $file_paths .= geodir_show_image(array('src' => $file), 'thumbnail', false, false);
2882
-                                                $file_paths .= '</a>';
2883
-                                                $file_paths .= '</div>';
2884
-                                            } else {
2885
-                                                $ext_path = '_' . $html_var . '_';
2886
-                                                $filename = explode($ext_path, $filename);
2887
-                                                $file_paths .= '<a href="' . $file . '" target="_blank">' . $filename[count($filename) - 1] . '</a>';
2888
-                                            }
2889
-                                        }
2890
-                                    }
2891
-
2892
-                                    if (strpos($field_icon, 'http') !== false) {
2893
-                                        $field_icon_af = '';
2894
-                                    } else if ($field_icon == '') {
2895
-                                        $field_icon_af = '';
2896
-                                    } else {
2897
-                                        $field_icon_af = $field_icon;
2898
-                                        $field_icon = '';
2899
-                                    }
2900
-
2901
-                                    $geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2902
-
2903
-
2904
-                                    $html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . ' geodir-custom-file-box" style="clear:both;"><span class="geodir-i-file" style="display:inline-block;vertical-align:top;padding-right:14px;' . $field_icon . '">' . $field_icon_af;
2905
-
2906
-                                    if ($field_set_start == 1 && $site_title != '') {
2907
-                                        $html .= ' ' . __($site_title, 'geodirectory') . ': ';
2908
-                                    }
2909
-
2910
-                                    $html .= ' </span>' . $file_paths . '</div>';
2911
-                                }
2912
-                            }
2913
-                        }
2914
-                            break;
2915
-                    }
2916
-
2917
-
2918
-                    /**
2919
-                     * Filter custom field output in tab.
2920
-                     *
2921
-                     * @since 1.5.6
2922
-                     *
2923
-                     * @param string $html_var The HTML variable name for the field.
2924
-                     * @param string $html Custom field unfiltered HTML.
2925
-                     * @param array $variables_array Custom field variables array.
2926
-                     */
2927
-                    $html = apply_filters("geodir_tab_show_{$html_var}", $html, $variables_array);
2928
-
2929
-                    $fieldset_html = '';
2930
-                    if ($field_set_start == 1) {
2931
-                        $add_html = false;
2932
-                        if ($type['type'] == 'fieldset' && $fieldset_count > 1) {
2933
-                            if ($fieldset != '') {
2934
-                                $add_html = true;
2935
-                                $label = $fieldset_arr[$fieldset_count - 1]['label'];
2936
-                                $htmlvar_name = $fieldset_arr[$fieldset_count - 1]['htmlvar_name'];
2937
-                            }
2938
-                            $fieldset_html = $fieldset;
2939
-                            $fieldset = '';
2940
-                        } else {
2941
-                            $fieldset .= $html;
2942
-                            if ($total_fields == $count_field && $fieldset != '') {
2943
-                                $add_html = true;
2944
-                                $label = $fieldset_arr[$fieldset_count]['label'];
2945
-                                $htmlvar_name = $fieldset_arr[$fieldset_count]['htmlvar_name'];
2946
-                                $fieldset_html = $fieldset;
2947
-                            }
2948
-                        }
2949
-
2950
-                        if ($add_html) {
2951
-                            $tabs_arr[$htmlvar_name] = array(
2952
-                                'heading_text' => __($label, 'geodirectory'),
2953
-                                'is_active_tab' => false,
2954
-                                /**
2955
-                                 * Filter if a custom field should be displayed on the details page tab.
2956
-                                 *
2957
-                                 * @since 1.0.0
2958
-                                 * @param string $htmlvar_name The field HTML var name.
2959
-                                 */
2960
-                                'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
2961
-                                'tab_content' => '<div class="geodir-company_info field-group">' . $fieldset_html . '</html>'
2962
-                            );
2963
-                        }
2964
-                    } else {
2965
-                        if ($html != '') {
2966
-                            $tabs_arr[$field['htmlvar_name']] = array(
2967
-                                'heading_text' => __($label, 'geodirectory'),
2968
-                                'is_active_tab' => false,
2969
-                                /** This action is documented in geodirectory_hooks_actions.php */
2970
-                                'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $field['htmlvar_name']),
2971
-                                'tab_content' => $html
2972
-                            );
2973
-                        }
2974
-                    }
2975
-                }
2976
-            }
2977
-        }
2978
-    }
2979
-    return $tabs_arr;
2871
+											if (!empty($allowed_file_types) && !in_array($uploaded_file_ext, $allowed_file_types)) {
2872
+												continue; // Invalid file type.
2873
+											}
2874
+
2875
+											$image_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png', 'image/bmp', 'image/x-icon');
2876
+
2877
+											// If the uploaded file is image
2878
+											if (in_array($uploaded_file_type, $image_file_types)) {
2879
+												$file_paths .= '<div class="geodir-custom-post-gallery" class="clearfix">';
2880
+												$file_paths .= '<a href="'.$file.'">';
2881
+												$file_paths .= geodir_show_image(array('src' => $file), 'thumbnail', false, false);
2882
+												$file_paths .= '</a>';
2883
+												$file_paths .= '</div>';
2884
+											} else {
2885
+												$ext_path = '_' . $html_var . '_';
2886
+												$filename = explode($ext_path, $filename);
2887
+												$file_paths .= '<a href="' . $file . '" target="_blank">' . $filename[count($filename) - 1] . '</a>';
2888
+											}
2889
+										}
2890
+									}
2891
+
2892
+									if (strpos($field_icon, 'http') !== false) {
2893
+										$field_icon_af = '';
2894
+									} else if ($field_icon == '') {
2895
+										$field_icon_af = '';
2896
+									} else {
2897
+										$field_icon_af = $field_icon;
2898
+										$field_icon = '';
2899
+									}
2900
+
2901
+									$geodir_odd_even = $field_set_start == 1 && $i % 2 == 0 ? 'geodir_more_info_even' : 'geodir_more_info_odd';
2902
+
2903
+
2904
+									$html = '<div class="geodir_more_info ' . $geodir_odd_even . ' ' . $type['css_class'] . ' ' . $type['htmlvar_name'] . ' geodir-custom-file-box" style="clear:both;"><span class="geodir-i-file" style="display:inline-block;vertical-align:top;padding-right:14px;' . $field_icon . '">' . $field_icon_af;
2905
+
2906
+									if ($field_set_start == 1 && $site_title != '') {
2907
+										$html .= ' ' . __($site_title, 'geodirectory') . ': ';
2908
+									}
2909
+
2910
+									$html .= ' </span>' . $file_paths . '</div>';
2911
+								}
2912
+							}
2913
+						}
2914
+							break;
2915
+					}
2916
+
2917
+
2918
+					/**
2919
+					 * Filter custom field output in tab.
2920
+					 *
2921
+					 * @since 1.5.6
2922
+					 *
2923
+					 * @param string $html_var The HTML variable name for the field.
2924
+					 * @param string $html Custom field unfiltered HTML.
2925
+					 * @param array $variables_array Custom field variables array.
2926
+					 */
2927
+					$html = apply_filters("geodir_tab_show_{$html_var}", $html, $variables_array);
2928
+
2929
+					$fieldset_html = '';
2930
+					if ($field_set_start == 1) {
2931
+						$add_html = false;
2932
+						if ($type['type'] == 'fieldset' && $fieldset_count > 1) {
2933
+							if ($fieldset != '') {
2934
+								$add_html = true;
2935
+								$label = $fieldset_arr[$fieldset_count - 1]['label'];
2936
+								$htmlvar_name = $fieldset_arr[$fieldset_count - 1]['htmlvar_name'];
2937
+							}
2938
+							$fieldset_html = $fieldset;
2939
+							$fieldset = '';
2940
+						} else {
2941
+							$fieldset .= $html;
2942
+							if ($total_fields == $count_field && $fieldset != '') {
2943
+								$add_html = true;
2944
+								$label = $fieldset_arr[$fieldset_count]['label'];
2945
+								$htmlvar_name = $fieldset_arr[$fieldset_count]['htmlvar_name'];
2946
+								$fieldset_html = $fieldset;
2947
+							}
2948
+						}
2949
+
2950
+						if ($add_html) {
2951
+							$tabs_arr[$htmlvar_name] = array(
2952
+								'heading_text' => __($label, 'geodirectory'),
2953
+								'is_active_tab' => false,
2954
+								/**
2955
+								 * Filter if a custom field should be displayed on the details page tab.
2956
+								 *
2957
+								 * @since 1.0.0
2958
+								 * @param string $htmlvar_name The field HTML var name.
2959
+								 */
2960
+								'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
2961
+								'tab_content' => '<div class="geodir-company_info field-group">' . $fieldset_html . '</html>'
2962
+							);
2963
+						}
2964
+					} else {
2965
+						if ($html != '') {
2966
+							$tabs_arr[$field['htmlvar_name']] = array(
2967
+								'heading_text' => __($label, 'geodirectory'),
2968
+								'is_active_tab' => false,
2969
+								/** This action is documented in geodirectory_hooks_actions.php */
2970
+								'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $field['htmlvar_name']),
2971
+								'tab_content' => $html
2972
+							);
2973
+						}
2974
+					}
2975
+				}
2976
+			}
2977
+		}
2978
+	}
2979
+	return $tabs_arr;
2980 2980
 }
2981 2981
 
2982 2982
 /* display add listing page for wpml */
@@ -3000,37 +3000,37 @@  discard block
 block discarded – undo
3000 3000
  */
3001 3001
 function geodir_add_post_status_author_page()
3002 3002
 {
3003
-    global $wpdb, $post;
3004
-
3005
-    $html = '';
3006
-    if (get_current_user_id()) {
3007
-        if (geodir_is_page('author') && !empty($post) && isset($post->post_author) && $post->post_author == get_current_user_id()) {
3008
-
3009
-            // we need to query real status direct as we dynamically change the status for author on author page so even non author status can view them.
3010
-            $real_status = $wpdb->get_var("SELECT post_status from $wpdb->posts WHERE ID=$post->ID");
3011
-            $status = "<strong>(";
3012
-            $status_icon = '<i class="fa fa-play"></i>';
3013
-            if ($real_status == 'publish') {
3014
-                $status .= __('Published', 'geodirectory');
3015
-            } else {
3016
-                $status .= __('Not published', 'geodirectory');
3017
-                $status_icon = '<i class="fa fa-pause"></i>';
3018
-            }
3019
-            $status .= ")</strong>";
3003
+	global $wpdb, $post;
3004
+
3005
+	$html = '';
3006
+	if (get_current_user_id()) {
3007
+		if (geodir_is_page('author') && !empty($post) && isset($post->post_author) && $post->post_author == get_current_user_id()) {
3008
+
3009
+			// we need to query real status direct as we dynamically change the status for author on author page so even non author status can view them.
3010
+			$real_status = $wpdb->get_var("SELECT post_status from $wpdb->posts WHERE ID=$post->ID");
3011
+			$status = "<strong>(";
3012
+			$status_icon = '<i class="fa fa-play"></i>';
3013
+			if ($real_status == 'publish') {
3014
+				$status .= __('Published', 'geodirectory');
3015
+			} else {
3016
+				$status .= __('Not published', 'geodirectory');
3017
+				$status_icon = '<i class="fa fa-pause"></i>';
3018
+			}
3019
+			$status .= ")</strong>";
3020 3020
 
3021
-            $html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
3022
-        }
3023
-    }
3021
+			$html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
3022
+		}
3023
+	}
3024 3024
 
3025
-    if ($html != '') {
3026
-        /**
3027
-         * Filter the post status text on the author page.
3028
-         *
3029
-         * @since 1.0.0
3030
-         * @param string $html The HTML of the status.
3031
-         */
3032
-        echo apply_filters('geodir_filter_status_text_on_author_page', $html);
3033
-    }
3025
+	if ($html != '') {
3026
+		/**
3027
+		 * Filter the post status text on the author page.
3028
+		 *
3029
+		 * @since 1.0.0
3030
+		 * @param string $html The HTML of the status.
3031
+		 */
3032
+		echo apply_filters('geodir_filter_status_text_on_author_page', $html);
3033
+	}
3034 3034
 
3035 3035
 
3036 3036
 }
@@ -3044,21 +3044,21 @@  discard block
 block discarded – undo
3044 3044
  */
3045 3045
 function geodir_init_no_rating()
3046 3046
 {
3047
-    if (get_option('geodir_disable_rating')) {
3048
-        remove_action('comment_form_logged_in_after', 'geodir_comment_rating_fields');
3049
-        remove_action('comment_form_before_fields', 'geodir_comment_rating_fields');
3050
-        remove_action('comment_form_logged_in_after', 'geodir_reviewrating_comment_rating_fields');
3051
-        remove_action('comment_form_before_fields', 'geodir_reviewrating_comment_rating_fields');
3052
-        remove_action('add_meta_boxes_comment', 'geodir_comment_add_meta_box');
3053
-        remove_action('add_meta_boxes', 'geodir_reviewrating_comment_metabox', 13);
3054
-        remove_filter('comment_text', 'geodir_wrap_comment_text', 40);
3055
-
3056
-        add_action('comment_form_logged_in_after', 'geodir_no_rating_rating_fields');
3057
-        add_action('comment_form_before_fields', 'geodir_no_rating_rating_fields');
3058
-        add_filter('comment_text', 'geodir_no_rating_comment_text', 100, 2);
3059
-        add_filter('geodir_detail_page_review_rating_html', 'geodir_no_rating_review_rating_html', 100);
3060
-        add_filter('geodir_get_sort_options', 'geodir_no_rating_get_sort_options', 100, 2);
3061
-    }
3047
+	if (get_option('geodir_disable_rating')) {
3048
+		remove_action('comment_form_logged_in_after', 'geodir_comment_rating_fields');
3049
+		remove_action('comment_form_before_fields', 'geodir_comment_rating_fields');
3050
+		remove_action('comment_form_logged_in_after', 'geodir_reviewrating_comment_rating_fields');
3051
+		remove_action('comment_form_before_fields', 'geodir_reviewrating_comment_rating_fields');
3052
+		remove_action('add_meta_boxes_comment', 'geodir_comment_add_meta_box');
3053
+		remove_action('add_meta_boxes', 'geodir_reviewrating_comment_metabox', 13);
3054
+		remove_filter('comment_text', 'geodir_wrap_comment_text', 40);
3055
+
3056
+		add_action('comment_form_logged_in_after', 'geodir_no_rating_rating_fields');
3057
+		add_action('comment_form_before_fields', 'geodir_no_rating_rating_fields');
3058
+		add_filter('comment_text', 'geodir_no_rating_comment_text', 100, 2);
3059
+		add_filter('geodir_detail_page_review_rating_html', 'geodir_no_rating_review_rating_html', 100);
3060
+		add_filter('geodir_get_sort_options', 'geodir_no_rating_get_sort_options', 100, 2);
3061
+	}
3062 3062
 }
3063 3063
 
3064 3064
 /**
@@ -3070,20 +3070,20 @@  discard block
 block discarded – undo
3070 3070
  */
3071 3071
 function geodir_no_rating_rating_fields()
3072 3072
 {
3073
-    global $post;
3073
+	global $post;
3074 3074
 
3075
-    $post_types = geodir_get_posttypes();
3075
+	$post_types = geodir_get_posttypes();
3076 3076
 
3077
-    if (!empty($post) && isset($post->post_type) && in_array($post->post_type, $post_types)) {
3078
-        if (is_plugin_active('geodir_review_rating_manager/geodir_review_rating_manager.php')) {
3079
-            echo '<input type="hidden" value="1" name="geodir_rating[overall]" />';
3080
-            if (get_option('geodir_reviewrating_enable_images')) {
3081
-                geodir_reviewrating_rating_img_html();
3082
-            }
3083
-        } else {
3084
-            echo '<input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="1" />';
3085
-        }
3086
-    }
3077
+	if (!empty($post) && isset($post->post_type) && in_array($post->post_type, $post_types)) {
3078
+		if (is_plugin_active('geodir_review_rating_manager/geodir_review_rating_manager.php')) {
3079
+			echo '<input type="hidden" value="1" name="geodir_rating[overall]" />';
3080
+			if (get_option('geodir_reviewrating_enable_images')) {
3081
+				geodir_reviewrating_rating_img_html();
3082
+			}
3083
+		} else {
3084
+			echo '<input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="1" />';
3085
+		}
3086
+	}
3087 3087
 }
3088 3088
 
3089 3089
 /**
@@ -3097,11 +3097,11 @@  discard block
 block discarded – undo
3097 3097
  */
3098 3098
 function geodir_no_rating_comment_text($content, $comment = '')
3099 3099
 {
3100
-    if (!is_admin()) {
3101
-        return '<div class="description">' . $content . '</div>';
3102
-    } else {
3103
-        return $content;
3104
-    }
3100
+	if (!is_admin()) {
3101
+		return '<div class="description">' . $content . '</div>';
3102
+	} else {
3103
+		return $content;
3104
+	}
3105 3105
 }
3106 3106
 
3107 3107
 /**
@@ -3114,7 +3114,7 @@  discard block
 block discarded – undo
3114 3114
  */
3115 3115
 function geodir_no_rating_review_rating_html($content = '')
3116 3116
 {
3117
-    return NULL;
3117
+	return NULL;
3118 3118
 }
3119 3119
 
3120 3120
 /**
@@ -3128,19 +3128,19 @@  discard block
 block discarded – undo
3128 3128
  */
3129 3129
 function geodir_no_rating_get_sort_options($options, $post_type = '')
3130 3130
 {
3131
-    $new_options = array();
3132
-    if (!empty($options)) {
3133
-        foreach ($options as $option) {
3134
-            if (is_object($option) && isset($option->htmlvar_name) && $option->htmlvar_name == 'overall_rating') {
3135
-                continue;
3136
-            }
3137
-            $new_options[] = $option;
3138
-        }
3131
+	$new_options = array();
3132
+	if (!empty($options)) {
3133
+		foreach ($options as $option) {
3134
+			if (is_object($option) && isset($option->htmlvar_name) && $option->htmlvar_name == 'overall_rating') {
3135
+				continue;
3136
+			}
3137
+			$new_options[] = $option;
3138
+		}
3139 3139
 
3140
-        $options = $new_options;
3141
-    }
3140
+		$options = $new_options;
3141
+	}
3142 3142
 
3143
-    return $options;
3143
+	return $options;
3144 3144
 }
3145 3145
 
3146 3146
 add_filter('geodir_all_js_msg', 'geodir_all_js_msg_no_rating', 100);
@@ -3154,11 +3154,11 @@  discard block
 block discarded – undo
3154 3154
  */
3155 3155
 function geodir_all_js_msg_no_rating($msg = array())
3156 3156
 {
3157
-    if (get_option('geodir_disable_rating')) {
3158
-        $msg['gd_cmt_no_rating'] = true;
3159
-    }
3157
+	if (get_option('geodir_disable_rating')) {
3158
+		$msg['gd_cmt_no_rating'] = true;
3159
+	}
3160 3160
 
3161
-    return $msg;
3161
+	return $msg;
3162 3162
 }
3163 3163
 
3164 3164
 add_filter('body_class', 'geodir_body_class_no_rating', 100);
@@ -3172,11 +3172,11 @@  discard block
 block discarded – undo
3172 3172
  */
3173 3173
 function geodir_body_class_no_rating($classes = array())
3174 3174
 {
3175
-    if (get_option('geodir_disable_rating')) {
3176
-        $classes[] = 'gd-no-rating';
3177
-    }
3175
+	if (get_option('geodir_disable_rating')) {
3176
+		$classes[] = 'gd-no-rating';
3177
+	}
3178 3178
 
3179
-    return $classes;
3179
+	return $classes;
3180 3180
 }
3181 3181
 
3182 3182
 add_filter('admin_body_class', 'geodir_admin_body_class_no_rating', 100);
@@ -3190,11 +3190,11 @@  discard block
 block discarded – undo
3190 3190
  */
3191 3191
 function geodir_admin_body_class_no_rating($class = '')
3192 3192
 {
3193
-    if (get_option('geodir_disable_rating')) {
3194
-        $class .= ' gd-no-rating';
3195
-    }
3193
+	if (get_option('geodir_disable_rating')) {
3194
+		$class .= ' gd-no-rating';
3195
+	}
3196 3196
 
3197
-    return $class;
3197
+	return $class;
3198 3198
 }
3199 3199
 
3200 3200
 add_action('wp_head', 'geodir_wp_head_no_rating');
@@ -3207,10 +3207,10 @@  discard block
 block discarded – undo
3207 3207
  */
3208 3208
 function geodir_wp_head_no_rating()
3209 3209
 {
3210
-    if (get_option('geodir_disable_rating')) {
3211
-        echo '<style>body .geodir-rating, body .geodir-bubble-rating, body .gd_ratings_module_box{display:none!important;}</style>';
3212
-        echo '<script type="text/javascript">jQuery(function(){jQuery(".gd_rating_show").parent(".geodir-rating").remove();});</script>';
3213
-    }
3210
+	if (get_option('geodir_disable_rating')) {
3211
+		echo '<style>body .geodir-rating, body .geodir-bubble-rating, body .gd_ratings_module_box{display:none!important;}</style>';
3212
+		echo '<script type="text/javascript">jQuery(function(){jQuery(".gd_rating_show").parent(".geodir-rating").remove();});</script>';
3213
+	}
3214 3214
 }
3215 3215
 
3216 3216
 add_filter('geodir_load_db_language', 'geodir_load_custom_field_translation');
@@ -3227,36 +3227,36 @@  discard block
 block discarded – undo
3227 3227
  * @return array Translation texts.
3228 3228
  */
3229 3229
 function geodir_load_gd_options_text_translation($translation_texts = array()) {
3230
-    $translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array();
3231
-
3232
-    $gd_options = array('geodir_post_submited_success_email_subject_admin', 'geodir_post_submited_success_email_content_admin', 'geodir_post_submited_success_email_subject', 'geodir_post_submited_success_email_content', 'geodir_forgot_password_subject', 'geodir_forgot_password_content', 'geodir_registration_success_email_subject', 'geodir_registration_success_email_content', 'geodir_post_published_email_subject', 'geodir_post_published_email_content', 'geodir_email_friend_subject', 'geodir_email_friend_content', 'geodir_email_enquiry_subject', 'geodir_email_enquiry_content', 'geodir_post_added_success_msg_content', 'geodir_post_edited_email_subject_admin', 'geodir_post_edited_email_content_admin');
3233
-
3234
-    /**
3235
-     * Filters the geodirectory option names that requires to add for translation.
3236
-     *
3237
-     * @since 1.5.7
3238
-     * @package GeoDirectory
3239
-     *
3240
-     * @param  array $gd_options Array of option names.
3241
-     */
3242
-    $gd_options = apply_filters('geodir_gd_options_for_translation', $gd_options);
3243
-    $gd_options = array_unique($gd_options);
3244
-
3245
-    if (!empty($gd_options)) {
3246
-        foreach ($gd_options as $gd_option) {
3247
-            if ($gd_option != '' && $option_value = get_option($gd_option)) {
3248
-                $option_value = is_string($option_value) ? stripslashes_deep($option_value) : '';
3230
+	$translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array();
3231
+
3232
+	$gd_options = array('geodir_post_submited_success_email_subject_admin', 'geodir_post_submited_success_email_content_admin', 'geodir_post_submited_success_email_subject', 'geodir_post_submited_success_email_content', 'geodir_forgot_password_subject', 'geodir_forgot_password_content', 'geodir_registration_success_email_subject', 'geodir_registration_success_email_content', 'geodir_post_published_email_subject', 'geodir_post_published_email_content', 'geodir_email_friend_subject', 'geodir_email_friend_content', 'geodir_email_enquiry_subject', 'geodir_email_enquiry_content', 'geodir_post_added_success_msg_content', 'geodir_post_edited_email_subject_admin', 'geodir_post_edited_email_content_admin');
3233
+
3234
+	/**
3235
+	 * Filters the geodirectory option names that requires to add for translation.
3236
+	 *
3237
+	 * @since 1.5.7
3238
+	 * @package GeoDirectory
3239
+	 *
3240
+	 * @param  array $gd_options Array of option names.
3241
+	 */
3242
+	$gd_options = apply_filters('geodir_gd_options_for_translation', $gd_options);
3243
+	$gd_options = array_unique($gd_options);
3244
+
3245
+	if (!empty($gd_options)) {
3246
+		foreach ($gd_options as $gd_option) {
3247
+			if ($gd_option != '' && $option_value = get_option($gd_option)) {
3248
+				$option_value = is_string($option_value) ? stripslashes_deep($option_value) : '';
3249 3249
                 
3250
-                if ($option_value != '' && !in_array($option_value, $translation_texts)) {
3251
-                    $translation_texts[] = stripslashes_deep($option_value);
3252
-                }
3253
-            }
3254
-        }
3255
-    }
3250
+				if ($option_value != '' && !in_array($option_value, $translation_texts)) {
3251
+					$translation_texts[] = stripslashes_deep($option_value);
3252
+				}
3253
+			}
3254
+		}
3255
+	}
3256 3256
 
3257
-    $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
3257
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
3258 3258
 
3259
-    return $translation_texts;
3259
+	return $translation_texts;
3260 3260
 }
3261 3261
 
3262 3262
 add_filter('geodir_load_db_language', 'geodir_load_gd_options_text_translation');
Please login to merge, or discard this patch.
Spacing   +83 added lines, -83 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 /* ON TEMPLATE INCLUDE */
137 137
 /////////////////////////
138 138
 
139
-add_filter('template_include', 'geodir_template_loader',9);
139
+add_filter('template_include', 'geodir_template_loader', 9);
140 140
 
141 141
 /////////////////////////
142 142
 /* CATEGORY / TAXONOMY / CUSTOM POST ACTIONS */
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
 ////////////////////////
178 178
 
179 179
 add_action('geodir_update_postrating', 'geodir_term_review_count_force_update', 100);
180
-add_action('transition_post_status', 'geodir_term_review_count_force_update', 100,3);
180
+add_action('transition_post_status', 'geodir_term_review_count_force_update', 100, 3);
181 181
 add_action('created_term', 'geodir_term_review_count_force_update', 100);
182 182
 add_action('edited_term', 'geodir_term_review_count_force_update', 100);
183 183
 add_action('delete_term', 'geodir_term_review_count_force_update', 100);
@@ -319,8 +319,8 @@  discard block
 block discarded – undo
319 319
 
320 320
 /////// GEO DIRECOTORY CUSTOM HOOKS ///
321 321
 
322
-add_action('geodir_before_tab_content', 'geodir_before_tab_content');// this function is in custom_functions.php and it is used to wrap detail page tab content 
323
-add_action('geodir_after_tab_content', 'geodir_after_tab_content');// this function is in custom_functions.php and it is used to wrap detail page tab content
322
+add_action('geodir_before_tab_content', 'geodir_before_tab_content'); // this function is in custom_functions.php and it is used to wrap detail page tab content 
323
+add_action('geodir_after_tab_content', 'geodir_after_tab_content'); // this function is in custom_functions.php and it is used to wrap detail page tab content
324 324
 
325 325
 // Detail page sidebar content 
326 326
 add_action('geodir_detail_page_sidebar', 'geodir_detail_page_sidebar_content_sorting', 1);
@@ -422,7 +422,7 @@  discard block
 block discarded – undo
422 422
     $content_html = ob_get_clean();
423 423
     if (trim($content_html) != '')
424 424
         $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>';
425
-    if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
425
+    if ((int) get_option('geodir_disable_tfg_buttons_section') != 1) {
426 426
         /**
427 427
          * Filter the geodir_social_sharing_buttons() function content.
428 428
          *
@@ -469,7 +469,7 @@  discard block
 block discarded – undo
469 469
     $content_html = ob_get_clean();
470 470
     if (trim($content_html) != '')
471 471
         $content_html = '<div class="geodir-company_info geodir-details-sidebar-sharethis">' . $content_html . '</div>';
472
-    if ((int)get_option('geodir_disable_sharethis_button_section') != 1) {
472
+    if ((int) get_option('geodir_disable_sharethis_button_section') != 1) {
473 473
         /**
474 474
          * Filter the geodir_share_this_button() function content.
475 475
          *
@@ -508,7 +508,7 @@  discard block
 block discarded – undo
508 508
             $post_id = $post->ID;
509 509
             
510 510
             if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
511
-                $post_id = (int)$_REQUEST['pid'];
511
+                $post_id = (int) $_REQUEST['pid'];
512 512
             }
513 513
 
514 514
             $postlink = get_permalink(geodir_add_listing_page_id());
@@ -525,7 +525,7 @@  discard block
 block discarded – undo
525 525
     $content_html = ob_get_clean();
526 526
     if (trim($content_html) != '')
527 527
         $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>';
528
-    if ((int)get_option('geodir_disable_user_links_section') != 1) {
528
+    if ((int) get_option('geodir_disable_user_links_section') != 1) {
529 529
         /**
530 530
          * Filter the geodir_edit_post_link() function content.
531 531
          *
@@ -578,14 +578,14 @@  discard block
 block discarded – undo
578 578
     $hide_refresh = get_option('geodir_ga_auto_refresh');
579 579
     
580 580
     $auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0;
581
-    if (get_option('geodir_ga_stats') && is_user_logged_in() &&  (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id()==$post->post_author || current_user_can( 'manage_options' )) ) {
581
+    if (get_option('geodir_ga_stats') && is_user_logged_in() && (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id() == $post->post_author || current_user_can('manage_options'))) {
582 582
         $page_url = urlencode($_SERVER['REQUEST_URI']);
583 583
         ?>
584 584
         <script type="text/javascript">
585 585
             var gd_gaTimeOut;
586
-            var gd_gaTime = parseInt('<?php echo $refresh_time;?>');
587
-            var gd_gaHideRefresh = <?php echo (int)$hide_refresh;?>;
588
-            var gd_gaAutoRefresh = <?php echo $auto_refresh;?>;
586
+            var gd_gaTime = parseInt('<?php echo $refresh_time; ?>');
587
+            var gd_gaHideRefresh = <?php echo (int) $hide_refresh; ?>;
588
+            var gd_gaAutoRefresh = <?php echo $auto_refresh; ?>;
589 589
             ga_data1 = false;
590 590
             ga_data2 = false;
591 591
             ga_data3 = false;
@@ -617,34 +617,34 @@  discard block
 block discarded – undo
617 617
             });
618 618
 
619 619
             function gdga_weekVSweek() {
620
-                jQuery.ajax({url: "<?php echo get_bloginfo('url').'/?ptype=ga&ga_page='.$page_url; ?>&ga_type=thisweek", success: function(result){
620
+                jQuery.ajax({url: "<?php echo get_bloginfo('url') . '/?ptype=ga&ga_page=' . $page_url; ?>&ga_type=thisweek", success: function(result){
621 621
                     ga_data1 = jQuery.parseJSON(result);
622 622
                     if(ga_data1.error){jQuery('#ga_stats').html(result);return;}
623 623
                     gd_renderWeekOverWeekChart();
624 624
                 }});
625 625
 
626
-                jQuery.ajax({url: "<?php echo get_bloginfo('url').'/?ptype=ga&ga_page='.$page_url; ?>&ga_type=lastweek", success: function(result){
626
+                jQuery.ajax({url: "<?php echo get_bloginfo('url') . '/?ptype=ga&ga_page=' . $page_url; ?>&ga_type=lastweek", success: function(result){
627 627
                     ga_data2 = jQuery.parseJSON(result);
628 628
                     gd_renderWeekOverWeekChart();
629 629
                 }});
630 630
             }
631 631
 
632 632
             function gdga_yearVSyear() {
633
-                jQuery.ajax({url: "<?php echo get_bloginfo('url').'/?ptype=ga&ga_page='.$page_url; ?>&ga_type=thisyear", success: function(result){
633
+                jQuery.ajax({url: "<?php echo get_bloginfo('url') . '/?ptype=ga&ga_page=' . $page_url; ?>&ga_type=thisyear", success: function(result){
634 634
                     ga_data3 = jQuery.parseJSON(result);
635 635
                     if(ga_data3.error){jQuery('#ga_stats').html(result);return;}
636 636
 
637 637
                     gd_renderYearOverYearChart()
638 638
                 }});
639 639
 
640
-                jQuery.ajax({url: "<?php echo get_bloginfo('url').'/?ptype=ga&ga_page='.$page_url; ?>&ga_type=lastyear", success: function(result){
640
+                jQuery.ajax({url: "<?php echo get_bloginfo('url') . '/?ptype=ga&ga_page=' . $page_url; ?>&ga_type=lastyear", success: function(result){
641 641
                     ga_data4 = jQuery.parseJSON(result);
642 642
                     gd_renderYearOverYearChart()
643 643
                 }});
644 644
             }
645 645
 
646 646
             function gdga_country() {
647
-                jQuery.ajax({url: "<?php echo get_bloginfo('url').'/?ptype=ga&ga_page='.$page_url; ?>&ga_type=country", success: function(result){
647
+                jQuery.ajax({url: "<?php echo get_bloginfo('url') . '/?ptype=ga&ga_page=' . $page_url; ?>&ga_type=country", success: function(result){
648 648
                     ga_data5 = jQuery.parseJSON(result);
649 649
                     if(ga_data5.error){jQuery('#ga_stats').html(result);return;}
650 650
                     gd_renderTopCountriesChart();
@@ -652,7 +652,7 @@  discard block
 block discarded – undo
652 652
             }
653 653
 
654 654
             function gdga_realtime(dom_ready) {
655
-                jQuery.ajax({url: "<?php echo get_bloginfo('url').'/?ptype=ga&ga_page='.$page_url; ?>&ga_type=realtime", success: function(result) {
655
+                jQuery.ajax({url: "<?php echo get_bloginfo('url') . '/?ptype=ga&ga_page=' . $page_url; ?>&ga_type=realtime", success: function(result) {
656 656
                     ga_data6 = jQuery.parseJSON(result);
657 657
                     if (ga_data6.error) {
658 658
                         jQuery('#ga_stats').html(result);
@@ -726,7 +726,7 @@  discard block
 block discarded – undo
726 726
             }
727 727
 
728 728
             function gdga_noResults() {
729
-                jQuery('#gdga-chart-container').html('<?php _e('No results available','geodirectory');?>');
729
+                jQuery('#gdga-chart-container').html('<?php _e('No results available', 'geodirectory'); ?>');
730 730
                 jQuery('#gdga-legend-container').html('');
731 731
             }
732 732
 
@@ -758,18 +758,18 @@  discard block
 block discarded – undo
758 758
                     var data2 = results[1].rows.map(function(row) { return +row[2]; });
759 759
                     //var labelsN = results[0].rows.map(function(row) { return +row[1]; });
760 760
 
761
-                    var labels = ['<?php _e('Jan', 'geodirectory');?>',
762
-                        '<?php _e('Feb', 'geodirectory');?>',
763
-                        '<?php _e('Mar', 'geodirectory');?>',
764
-                        '<?php _e('Apr', 'geodirectory');?>',
765
-                        '<?php _e('May', 'geodirectory');?>',
766
-                        '<?php _e('Jun', 'geodirectory');?>',
767
-                        '<?php _e('Jul', 'geodirectory');?>',
768
-                        '<?php _e('Aug', 'geodirectory');?>',
769
-                        '<?php _e('Sep', 'geodirectory');?>',
770
-                        '<?php _e('Oct', 'geodirectory');?>',
771
-                        '<?php _e('Nov', 'geodirectory');?>',
772
-                        '<?php _e('Dec', 'geodirectory');?>'];
761
+                    var labels = ['<?php _e('Jan', 'geodirectory'); ?>',
762
+                        '<?php _e('Feb', 'geodirectory'); ?>',
763
+                        '<?php _e('Mar', 'geodirectory'); ?>',
764
+                        '<?php _e('Apr', 'geodirectory'); ?>',
765
+                        '<?php _e('May', 'geodirectory'); ?>',
766
+                        '<?php _e('Jun', 'geodirectory'); ?>',
767
+                        '<?php _e('Jul', 'geodirectory'); ?>',
768
+                        '<?php _e('Aug', 'geodirectory'); ?>',
769
+                        '<?php _e('Sep', 'geodirectory'); ?>',
770
+                        '<?php _e('Oct', 'geodirectory'); ?>',
771
+                        '<?php _e('Nov', 'geodirectory'); ?>',
772
+                        '<?php _e('Dec', 'geodirectory'); ?>'];
773 773
 
774 774
                     // Ensure the data arrays are at least as long as the labels array.
775 775
                     // Chart.js bar charts don't (yet) accept sparse datasets.
@@ -782,13 +782,13 @@  discard block
 block discarded – undo
782 782
                         labels : labels,
783 783
                         datasets : [
784 784
                             {
785
-                                label: '<?php _e('Last Year', 'geodirectory');?>',
785
+                                label: '<?php _e('Last Year', 'geodirectory'); ?>',
786 786
                                 fillColor : "rgba(220,220,220,0.5)",
787 787
                                 strokeColor : "rgba(220,220,220,1)",
788 788
                                 data : data2
789 789
                             },
790 790
                             {
791
-                                label: '<?php _e('This Year', 'geodirectory');?>',
791
+                                label: '<?php _e('This Year', 'geodirectory'); ?>',
792 792
                                 fillColor : "rgba(151,187,205,0.5)",
793 793
                                 strokeColor : "rgba(151,187,205,1)",
794 794
                                 data : data1
@@ -833,30 +833,30 @@  discard block
 block discarded – undo
833 833
 
834 834
                     <?php
835 835
                     // Here we list the shorthand days of the week so it can be used in translation.
836
-                    __("Mon",'geodirectory');
837
-                    __("Tue",'geodirectory');
838
-                    __("Wed",'geodirectory');
839
-                    __("Thu",'geodirectory');
840
-                    __("Fri",'geodirectory');
841
-                    __("Sat",'geodirectory');
842
-                    __("Sun",'geodirectory');
836
+                    __("Mon", 'geodirectory');
837
+                    __("Tue", 'geodirectory');
838
+                    __("Wed", 'geodirectory');
839
+                    __("Thu", 'geodirectory');
840
+                    __("Fri", 'geodirectory');
841
+                    __("Sat", 'geodirectory');
842
+                    __("Sun", 'geodirectory');
843 843
                     ?>
844 844
 
845 845
                     labels = [
846
-                        "<?php _e(date('D', strtotime("+1 day")),'geodirectory'); ?>",
847
-                        "<?php _e(date('D', strtotime("+2 day")),'geodirectory'); ?>",
848
-                        "<?php _e(date('D', strtotime("+3 day")),'geodirectory'); ?>",
849
-                        "<?php _e(date('D', strtotime("+4 day")),'geodirectory'); ?>",
850
-                        "<?php _e(date('D', strtotime("+5 day")),'geodirectory'); ?>",
851
-                        "<?php _e(date('D', strtotime("+6 day")),'geodirectory'); ?>",
852
-                        "<?php _e(date('D', strtotime("+7 day")),'geodirectory'); ?>"
846
+                        "<?php _e(date('D', strtotime("+1 day")), 'geodirectory'); ?>",
847
+                        "<?php _e(date('D', strtotime("+2 day")), 'geodirectory'); ?>",
848
+                        "<?php _e(date('D', strtotime("+3 day")), 'geodirectory'); ?>",
849
+                        "<?php _e(date('D', strtotime("+4 day")), 'geodirectory'); ?>",
850
+                        "<?php _e(date('D', strtotime("+5 day")), 'geodirectory'); ?>",
851
+                        "<?php _e(date('D', strtotime("+6 day")), 'geodirectory'); ?>",
852
+                        "<?php _e(date('D', strtotime("+7 day")), 'geodirectory'); ?>"
853 853
                     ];
854 854
 
855 855
                     var data = {
856 856
                         labels : labels,
857 857
                         datasets : [
858 858
                             {
859
-                                label: '<?php _e('Last Week', 'geodirectory');?>',
859
+                                label: '<?php _e('Last Week', 'geodirectory'); ?>',
860 860
                                 fillColor : "rgba(220,220,220,0.5)",
861 861
                                 strokeColor : "rgba(220,220,220,1)",
862 862
                                 pointColor : "rgba(220,220,220,1)",
@@ -864,7 +864,7 @@  discard block
 block discarded – undo
864 864
                                 data : data2
865 865
                             },
866 866
                             {
867
-                                label: '<?php _e('This Week', 'geodirectory');?>',
867
+                                label: '<?php _e('This Week', 'geodirectory'); ?>',
868 868
                                 fillColor : "rgba(151,187,205,0.5)",
869 869
                                 strokeColor : "rgba(151,187,205,1)",
870 870
                                 pointColor : "rgba(151,187,205,1)",
@@ -1071,18 +1071,18 @@  discard block
 block discarded – undo
1071 1071
         </style>
1072 1072
         <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/1.0.2/Chart.min.js"></script>
1073 1073
         <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.2/moment.min.js"></script>
1074
-        <button type="button" class="gdga-show-analytics"><?php _e('Show Google Analytics', 'geodirectory');?></button>
1074
+        <button type="button" class="gdga-show-analytics"><?php _e('Show Google Analytics', 'geodirectory'); ?></button>
1075 1075
         <span id="ga_stats" class="gdga-analytics-box" style="display:none">
1076
-            <div id="ga-analytics-title"><?php _e("Analytics", 'geodirectory');?></div>
1076
+            <div id="ga-analytics-title"><?php _e("Analytics", 'geodirectory'); ?></div>
1077 1077
             <div id="gd-active-users-container">
1078
-                <div class="gd-ActiveUsers"><i id="gdga-loader-icon" class="fa fa-refresh fa-spin" title="<?php esc_attr_e("Refresh", 'geodirectory');?>"></i><?php _e("Active Users:", 'geodirectory');?>
1078
+                <div class="gd-ActiveUsers"><i id="gdga-loader-icon" class="fa fa-refresh fa-spin" title="<?php esc_attr_e("Refresh", 'geodirectory'); ?>"></i><?php _e("Active Users:", 'geodirectory'); ?>
1079 1079
                     <b class="gd-ActiveUsers-value">0</b>
1080 1080
                 </div>
1081 1081
             </div>
1082 1082
             <select id="gdga-select-analytic" onchange="gdga_select_option();" style="display: none;">
1083
-                <option value="weeks"><?php _e("Last Week vs This Week", 'geodirectory');?></option>
1084
-                <option value="years"><?php _e("This Year vs Last Year", 'geodirectory');?></option>
1085
-                <option value="country"><?php _e("Top Countries", 'geodirectory');?></option>
1083
+                <option value="weeks"><?php _e("Last Week vs This Week", 'geodirectory'); ?></option>
1084
+                <option value="years"><?php _e("This Year vs Last Year", 'geodirectory'); ?></option>
1085
+                <option value="country"><?php _e("Top Countries", 'geodirectory'); ?></option>
1086 1086
             </select>
1087 1087
             <div class="Chartjs-figure" id="gdga-chart-container"></div>
1088 1088
             <ol class="Chartjs-legend" id="gdga-legend-container"></ol>
@@ -1099,7 +1099,7 @@  discard block
 block discarded – undo
1099 1099
     $content_html = ob_get_clean();
1100 1100
     if (trim($content_html) != '')
1101 1101
         $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>';
1102
-    if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
1102
+    if ((int) get_option('geodir_disable_google_analytics_section') != 1) {
1103 1103
         /**
1104 1104
          * Filter the geodir_edit_post_link() function content.
1105 1105
          *
@@ -1195,7 +1195,7 @@  discard block
 block discarded – undo
1195 1195
     if (trim($content_html) != '') {
1196 1196
         $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>';
1197 1197
     }
1198
-    if ((int)get_option('geodir_disable_rating_info_section') != 1) {
1198
+    if ((int) get_option('geodir_disable_rating_info_section') != 1) {
1199 1199
         /**
1200 1200
          * Filter the geodir_detail_page_review_rating() function content.
1201 1201
          *
@@ -1235,7 +1235,7 @@  discard block
 block discarded – undo
1235 1235
     $content_html = ob_get_clean();
1236 1236
     if (trim($content_html) != '')
1237 1237
         $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>';
1238
-    if ((int)get_option('geodir_disable_listing_info_section') != 1) {
1238
+    if ((int) get_option('geodir_disable_listing_info_section') != 1) {
1239 1239
         /**
1240 1240
          * Filter the output html for function geodir_detail_page_more_info().
1241 1241
          *
@@ -1326,7 +1326,7 @@  discard block
 block discarded – undo
1326 1326
 		'gd_allowed_img_types' => !empty($allowed_img_types) ? implode(',', $allowed_img_types) : '',
1327 1327
 		'geodir_txt_form_wait' => __('Wait...', 'geodirectory'),
1328 1328
 		'geodir_txt_form_searching' => __('Searching...', 'geodirectory'),
1329
-		'fa_rating' => (int)get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
1329
+		'fa_rating' => (int) get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
1330 1330
 		'reviewrating' => defined('GEODIRREVIEWRATING_VERSION') ? 1 : '',
1331 1331
     );
1332 1332
 
@@ -1343,7 +1343,7 @@  discard block
 block discarded – undo
1343 1343
     foreach ($arr_alert_msg as $key => $value) {
1344 1344
         if (!is_scalar($value))
1345 1345
             continue;
1346
-        $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8');
1346
+        $arr_alert_msg[$key] = html_entity_decode((string) $value, ENT_QUOTES, 'UTF-8');
1347 1347
     }
1348 1348
 
1349 1349
     $script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';';
@@ -1519,7 +1519,7 @@  discard block
 block discarded – undo
1519 1519
         global $post;
1520 1520
         $term_condition = '';
1521 1521
         if (isset($_REQUEST['backandedit'])) {
1522
-            $post = (object)$gd_session->get('listing');
1522
+            $post = (object) $gd_session->get('listing');
1523 1523
             $term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : '';
1524 1524
         }
1525 1525
 
@@ -1533,7 +1533,7 @@  discard block
 block discarded – undo
1533 1533
                     echo 'checked="checked"';
1534 1534
                 } ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition"
1535 1535
                        class="geodir_textfield" value="1"
1536
-                       style="display:inline-block"/><a href="<?php $terms_page = get_option('geodir_term_condition_page'); if($terms_page){ echo get_permalink($terms_page);}?>" target="_blank"><?php _e('Please accept our terms and conditions', 'geodirectory'); ?></a>
1536
+                       style="display:inline-block"/><a href="<?php $terms_page = get_option('geodir_term_condition_page'); if ($terms_page) { echo get_permalink($terms_page); }?>" target="_blank"><?php _e('Please accept our terms and conditions', 'geodirectory'); ?></a>
1537 1537
 				</span>
1538 1538
             </div>
1539 1539
             <span class="geodir_message_error"><?php if (isset($required_msg)) {
@@ -1573,7 +1573,7 @@  discard block
 block discarded – undo
1573 1573
         /** This action is documented in geodirectory_template_actions.php */
1574 1574
         $desc_limit = apply_filters('geodir_description_field_desc_limit', '');
1575 1575
         
1576
-        if (!($desc_limit === '' || (int)$desc_limit > 0)) {
1576
+        if (!($desc_limit === '' || (int) $desc_limit > 0)) {
1577 1577
             $is_display = false;
1578 1578
         }
1579 1579
     }
@@ -1621,7 +1621,7 @@  discard block
 block discarded – undo
1621 1621
     global $wpdb, $plugin_prefix;
1622 1622
 	
1623 1623
 	// Remove unused virtual page
1624
-	$listings_page_id = (int)get_option('geodir_listing_page');
1624
+	$listings_page_id = (int) get_option('geodir_listing_page');
1625 1625
 	if ($listings_page_id) {
1626 1626
 		$wpdb->query($wpdb->prepare("DELETE FROM " . $wpdb->posts . " WHERE ID=%d AND post_name = %s AND post_type=%s", array($listings_page_id, 'listings', 'page')));
1627 1627
         delete_option('geodir_listing_page');
@@ -1868,43 +1868,43 @@  discard block
 block discarded – undo
1868 1868
 
1869 1869
 
1870 1870
     $gd_page = '';
1871
-    if(geodir_is_page('home')){
1871
+    if (geodir_is_page('home')) {
1872 1872
         $gd_page = 'home';
1873 1873
         $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
1874 1874
     }
1875
-    elseif(geodir_is_page('detail')){
1875
+    elseif (geodir_is_page('detail')) {
1876 1876
         $gd_page = 'detail';
1877 1877
         $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
1878 1878
     }
1879
-    elseif(geodir_is_page('pt')){
1879
+    elseif (geodir_is_page('pt')) {
1880 1880
         $gd_page = 'pt';
1881 1881
         $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
1882 1882
     }
1883
-    elseif(geodir_is_page('listing')){
1883
+    elseif (geodir_is_page('listing')) {
1884 1884
         $gd_page = 'listing';
1885 1885
         $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
1886 1886
     }
1887
-    elseif(geodir_is_page('location')){
1887
+    elseif (geodir_is_page('location')) {
1888 1888
         $gd_page = 'location';
1889 1889
         $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
1890 1890
     }
1891
-    elseif(geodir_is_page('search')){
1891
+    elseif (geodir_is_page('search')) {
1892 1892
         $gd_page = 'search';
1893 1893
         $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
1894 1894
     }
1895
-    elseif(geodir_is_page('add-listing')){
1895
+    elseif (geodir_is_page('add-listing')) {
1896 1896
         $gd_page = 'add-listing';
1897 1897
         $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
1898 1898
     }
1899
-    elseif(geodir_is_page('author')){
1899
+    elseif (geodir_is_page('author')) {
1900 1900
         $gd_page = 'author';
1901 1901
         $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
1902 1902
     }
1903
-    elseif(geodir_is_page('login')){
1903
+    elseif (geodir_is_page('login')) {
1904 1904
         $gd_page = 'login';
1905 1905
         $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
1906 1906
     }
1907
-    elseif(geodir_is_page('listing-success')){
1907
+    elseif (geodir_is_page('listing-success')) {
1908 1908
         $gd_page = 'listing-success';
1909 1909
         $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
1910 1910
     }
@@ -2167,7 +2167,7 @@  discard block
 block discarded – undo
2167 2167
  */
2168 2168
 function geodir_remove_template_redirect_actions()
2169 2169
 {
2170
-    if (geodir_is_page('login')){
2170
+    if (geodir_is_page('login')) {
2171 2171
         remove_all_actions('template_redirect');
2172 2172
         remove_action('init', 'avia_modify_front', 10);
2173 2173
     }
@@ -2362,10 +2362,10 @@  discard block
 block discarded – undo
2362 2362
  * @global string $plugin_prefix Geodirectory plugin table prefix.
2363 2363
  * @return array User listing count for each post type.
2364 2364
  */
2365
-function geodir_user_post_listing_count($user_id=null)
2365
+function geodir_user_post_listing_count($user_id = null)
2366 2366
 {
2367 2367
     global $wpdb, $plugin_prefix, $current_user;
2368
-    if(!$user_id){
2368
+    if (!$user_id) {
2369 2369
         $user_id = $current_user->ID;
2370 2370
     }
2371 2371
 
@@ -2581,8 +2581,8 @@  discard block
 block discarded – undo
2581 2581
                                 $date_format = $date_format['date_format'];
2582 2582
                             }
2583 2583
 
2584
-                            $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
2585
-                            $replace = array('d','j','l','m','n','F','Y');//PHP date format
2584
+                            $search = array('dd', 'd', 'DD', 'mm', 'm', 'MM', 'yy'); //jQuery UI datepicker format
2585
+                            $replace = array('d', 'j', 'l', 'm', 'n', 'F', 'Y'); //PHP date format
2586 2586
 
2587 2587
                             $date_format = str_replace($search, $replace, $date_format);
2588 2588
 
@@ -2677,7 +2677,7 @@  discard block
 block discarded – undo
2677 2677
                             $html_var = $type['htmlvar_name'];
2678 2678
                             $html_val = $type['htmlvar_name'];
2679 2679
 
2680
-                            if ((int)$post->{$html_var} == 1) {
2680
+                            if ((int) $post->{$html_var} == 1) {
2681 2681
 
2682 2682
                                 if ($post->{$type['htmlvar_name']} == '1') {
2683 2683
                                     $html_val = __('Yes', 'geodirectory');
@@ -2853,7 +2853,7 @@  discard block
 block discarded – undo
2853 2853
 
2854 2854
                                 if (!empty($files)) {
2855 2855
                                     $extra_fields = !empty($type['extra_fields']) ? maybe_unserialize($type['extra_fields']) : NULL;
2856
-                                    $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types'] ) ? $extra_fields['gd_file_types'] : '';
2856
+                                    $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types']) ? $extra_fields['gd_file_types'] : '';
2857 2857
                                
2858 2858
                                     $file_paths = '';
2859 2859
                                     foreach ($files as $file) {
@@ -2877,7 +2877,7 @@  discard block
 block discarded – undo
2877 2877
                                             // If the uploaded file is image
2878 2878
                                             if (in_array($uploaded_file_type, $image_file_types)) {
2879 2879
                                                 $file_paths .= '<div class="geodir-custom-post-gallery" class="clearfix">';
2880
-                                                $file_paths .= '<a href="'.$file.'">';
2880
+                                                $file_paths .= '<a href="' . $file . '">';
2881 2881
                                                 $file_paths .= geodir_show_image(array('src' => $file), 'thumbnail', false, false);
2882 2882
                                                 $file_paths .= '</a>';
2883 2883
                                                 $file_paths .= '</div>';
@@ -3227,7 +3227,7 @@  discard block
 block discarded – undo
3227 3227
  * @return array Translation texts.
3228 3228
  */
3229 3229
 function geodir_load_gd_options_text_translation($translation_texts = array()) {
3230
-    $translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array();
3230
+    $translation_texts = !empty($translation_texts) && is_array($translation_texts) ? $translation_texts : array();
3231 3231
 
3232 3232
     $gd_options = array('geodir_post_submited_success_email_subject_admin', 'geodir_post_submited_success_email_content_admin', 'geodir_post_submited_success_email_subject', 'geodir_post_submited_success_email_content', 'geodir_forgot_password_subject', 'geodir_forgot_password_content', 'geodir_registration_success_email_subject', 'geodir_registration_success_email_content', 'geodir_post_published_email_subject', 'geodir_post_published_email_content', 'geodir_email_friend_subject', 'geodir_email_friend_content', 'geodir_email_enquiry_subject', 'geodir_email_enquiry_content', 'geodir_post_added_success_msg_content', 'geodir_post_edited_email_subject_admin', 'geodir_post_edited_email_content_admin');
3233 3233
 
Please login to merge, or discard this patch.
Braces   +92 added lines, -74 removed lines patch added patch discarded remove patch
@@ -86,8 +86,9 @@  discard block
 block discarded – undo
86 86
 add_filter('query_vars', 'geodir_add_location_var');
87 87
 add_filter('query_vars', 'geodir_add_geodir_page_var');
88 88
 add_action('wp', 'geodir_add_page_id_in_query_var'); // problem fix in wordpress 3.8
89
-if (get_option('permalink_structure') != '')
90
-    add_filter('parse_request', 'geodir_set_location_var_in_session_in_core');
89
+if (get_option('permalink_structure') != '') {
90
+    add_filter('parse_request', 'geodir_set_location_var_in_session_in_core');
91
+}
91 92
 
92 93
 add_filter('parse_query', 'geodir_modified_query');
93 94
 
@@ -420,8 +421,9 @@  discard block
 block discarded – undo
420 421
      */
421 422
     do_action('geodir_after_social_sharing_buttons');
422 423
     $content_html = ob_get_clean();
423
-    if (trim($content_html) != '')
424
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>';
424
+    if (trim($content_html) != '') {
425
+            $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>';
426
+    }
425 427
     if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
426 428
         /**
427 429
          * Filter the geodir_social_sharing_buttons() function content.
@@ -467,8 +469,9 @@  discard block
 block discarded – undo
467 469
      */
468 470
     do_action('geodir_after_share_this_button');
469 471
     $content_html = ob_get_clean();
470
-    if (trim($content_html) != '')
471
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-sharethis">' . $content_html . '</div>';
472
+    if (trim($content_html) != '') {
473
+            $content_html = '<div class="geodir-company_info geodir-details-sidebar-sharethis">' . $content_html . '</div>';
474
+    }
472 475
     if ((int)get_option('geodir_disable_sharethis_button_section') != 1) {
473 476
         /**
474 477
          * Filter the geodir_share_this_button() function content.
@@ -523,8 +526,9 @@  discard block
 block discarded – undo
523 526
      */
524 527
     do_action('geodir_after_edit_post_link');
525 528
     $content_html = ob_get_clean();
526
-    if (trim($content_html) != '')
527
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>';
529
+    if (trim($content_html) != '') {
530
+            $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>';
531
+    }
528 532
     if ((int)get_option('geodir_disable_user_links_section') != 1) {
529 533
         /**
530 534
          * Filter the geodir_edit_post_link() function content.
@@ -1097,8 +1101,9 @@  discard block
 block discarded – undo
1097 1101
      */
1098 1102
     do_action('geodir_after_google_analytics');
1099 1103
     $content_html = ob_get_clean();
1100
-    if (trim($content_html) != '')
1101
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>';
1104
+    if (trim($content_html) != '') {
1105
+            $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>';
1106
+    }
1102 1107
     if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
1103 1108
         /**
1104 1109
          * Filter the geodir_edit_post_link() function content.
@@ -1233,8 +1238,9 @@  discard block
 block discarded – undo
1233 1238
     do_action('geodir_after_detail_page_more_info');
1234 1239
 
1235 1240
     $content_html = ob_get_clean();
1236
-    if (trim($content_html) != '')
1237
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>';
1241
+    if (trim($content_html) != '') {
1242
+            $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>';
1243
+    }
1238 1244
     if ((int)get_option('geodir_disable_listing_info_section') != 1) {
1239 1245
         /**
1240 1246
          * Filter the output html for function geodir_detail_page_more_info().
@@ -1341,8 +1347,9 @@  discard block
 block discarded – undo
1341 1347
     $arr_alert_msg = apply_filters('geodir_all_js_msg', $arr_alert_msg);
1342 1348
 
1343 1349
     foreach ($arr_alert_msg as $key => $value) {
1344
-        if (!is_scalar($value))
1345
-            continue;
1350
+        if (!is_scalar($value)) {
1351
+                    continue;
1352
+        }
1346 1353
         $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8');
1347 1354
     }
1348 1355
 
@@ -1396,17 +1403,19 @@  discard block
 block discarded – undo
1396 1403
     global $geodir_sidebars;
1397 1404
     global $sidebars_widgets;
1398 1405
 
1399
-    if (!is_array($sidebars_widgets))
1400
-        $sidebars_widgets = wp_get_sidebars_widgets();
1406
+    if (!is_array($sidebars_widgets)) {
1407
+            $sidebars_widgets = wp_get_sidebars_widgets();
1408
+    }
1401 1409
     $geodir_old_sidebars = array();
1402 1410
 
1403 1411
     if (is_array($geodir_sidebars)) {
1404 1412
         foreach ($geodir_sidebars as $val) {
1405 1413
             if (is_array($sidebars_widgets)) {
1406
-                if (array_key_exists($val, $sidebars_widgets))
1407
-                    $geodir_old_sidebars[$val] = $sidebars_widgets[$val];
1408
-                else
1409
-                    $geodir_old_sidebars[$val] = array();
1414
+                if (array_key_exists($val, $sidebars_widgets)) {
1415
+                                    $geodir_old_sidebars[$val] = $sidebars_widgets[$val];
1416
+                } else {
1417
+                                    $geodir_old_sidebars[$val] = array();
1418
+                }
1410 1419
             }
1411 1420
         }
1412 1421
     }
@@ -1427,8 +1436,9 @@  discard block
 block discarded – undo
1427 1436
 {
1428 1437
     global $sidebars_widgets;
1429 1438
 
1430
-    if (!is_array($sidebars_widgets))
1431
-        $sidebars_widgets = wp_get_sidebars_widgets();
1439
+    if (!is_array($sidebars_widgets)) {
1440
+            $sidebars_widgets = wp_get_sidebars_widgets();
1441
+    }
1432 1442
 
1433 1443
     if (is_array($sidebars_widgets)) {
1434 1444
         $geodir_old_sidebars = get_option('geodir_sidebars');
@@ -1578,20 +1588,25 @@  discard block
 block discarded – undo
1578 1588
         }
1579 1589
     }
1580 1590
     
1581
-    if ($tab == 'post_info')
1582
-        $is_display = (!empty($geodir_post_detail_fields)) ? true : false;
1591
+    if ($tab == 'post_info') {
1592
+            $is_display = (!empty($geodir_post_detail_fields)) ? true : false;
1593
+    }
1583 1594
 
1584
-    if ($tab == 'post_images')
1585
-        $is_display = (!empty($post_images)) ? true : false;
1595
+    if ($tab == 'post_images') {
1596
+            $is_display = (!empty($post_images)) ? true : false;
1597
+    }
1586 1598
 
1587
-    if ($tab == 'post_video')
1588
-        $is_display = (!empty($video)) ? true : false;
1599
+    if ($tab == 'post_video') {
1600
+            $is_display = (!empty($video)) ? true : false;
1601
+    }
1589 1602
 
1590
-    if ($tab == 'special_offers')
1591
-        $is_display = (!empty($special_offers)) ? true : false;
1603
+    if ($tab == 'special_offers') {
1604
+            $is_display = (!empty($special_offers)) ? true : false;
1605
+    }
1592 1606
 
1593
-    if ($tab == 'reviews')
1594
-        $is_display = (geodir_is_page('detail')) ? true : false;
1607
+    if ($tab == 'reviews') {
1608
+            $is_display = (geodir_is_page('detail')) ? true : false;
1609
+    }
1595 1610
 
1596 1611
     if ($tab == 'related_listing') {
1597 1612
        $message = __('No listings found which match your selection.', 'geodirectory');
@@ -1825,11 +1840,13 @@  discard block
 block discarded – undo
1825 1840
     $region_slug = $default_location->region_slug;
1826 1841
     $city_slug = $default_location->city_slug;
1827 1842
 
1828
-    if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug)
1829
-        return $slug_exists = true;
1843
+    if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug) {
1844
+            return $slug_exists = true;
1845
+    }
1830 1846
 
1831
-    if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
1832
-        return $slug_exists = true;
1847
+    if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id)))) {
1848
+            return $slug_exists = true;
1849
+    }
1833 1850
 
1834 1851
     return $slug_exists;
1835 1852
 }
@@ -1871,40 +1888,31 @@  discard block
 block discarded – undo
1871 1888
     if(geodir_is_page('home')){
1872 1889
         $gd_page = 'home';
1873 1890
         $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
1874
-    }
1875
-    elseif(geodir_is_page('detail')){
1891
+    } elseif(geodir_is_page('detail')){
1876 1892
         $gd_page = 'detail';
1877 1893
         $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
1878
-    }
1879
-    elseif(geodir_is_page('pt')){
1894
+    } elseif(geodir_is_page('pt')){
1880 1895
         $gd_page = 'pt';
1881 1896
         $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
1882
-    }
1883
-    elseif(geodir_is_page('listing')){
1897
+    } elseif(geodir_is_page('listing')){
1884 1898
         $gd_page = 'listing';
1885 1899
         $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
1886
-    }
1887
-    elseif(geodir_is_page('location')){
1900
+    } elseif(geodir_is_page('location')){
1888 1901
         $gd_page = 'location';
1889 1902
         $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
1890
-    }
1891
-    elseif(geodir_is_page('search')){
1903
+    } elseif(geodir_is_page('search')){
1892 1904
         $gd_page = 'search';
1893 1905
         $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
1894
-    }
1895
-    elseif(geodir_is_page('add-listing')){
1906
+    } elseif(geodir_is_page('add-listing')){
1896 1907
         $gd_page = 'add-listing';
1897 1908
         $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
1898
-    }
1899
-    elseif(geodir_is_page('author')){
1909
+    } elseif(geodir_is_page('author')){
1900 1910
         $gd_page = 'author';
1901 1911
         $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
1902
-    }
1903
-    elseif(geodir_is_page('login')){
1912
+    } elseif(geodir_is_page('login')){
1904 1913
         $gd_page = 'login';
1905 1914
         $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
1906
-    }
1907
-    elseif(geodir_is_page('listing-success')){
1915
+    } elseif(geodir_is_page('listing-success')){
1908 1916
         $gd_page = 'listing-success';
1909 1917
         $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
1910 1918
     }
@@ -1979,11 +1987,13 @@  discard block
 block discarded – undo
1979 1987
 
1980 1988
     if (!get_option('geodir_remove_url_seperator')) {
1981 1989
 
1982
-        if (get_option('geodir_listingurl_separator'))
1983
-            delete_option('geodir_listingurl_separator');
1990
+        if (get_option('geodir_listingurl_separator')) {
1991
+                    delete_option('geodir_listingurl_separator');
1992
+        }
1984 1993
 
1985
-        if (get_option('geodir_detailurl_separator'))
1986
-            delete_option('geodir_detailurl_separator');
1994
+        if (get_option('geodir_detailurl_separator')) {
1995
+                    delete_option('geodir_detailurl_separator');
1996
+        }
1987 1997
 
1988 1998
         flush_rewrite_rules(false);
1989 1999
 
@@ -2007,8 +2017,9 @@  discard block
 block discarded – undo
2007 2017
 {
2008 2018
     foreach ($permalink_arr as $key => $value) {
2009 2019
 
2010
-        if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator')
2011
-            unset($permalink_arr[$key]);
2020
+        if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator') {
2021
+                    unset($permalink_arr[$key]);
2022
+        }
2012 2023
 
2013 2024
     }
2014 2025
 
@@ -2140,16 +2151,18 @@  discard block
 block discarded – undo
2140 2151
 
2141 2152
             $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
2142 2153
 
2143
-            if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '')
2144
-                $tabs_arr['post_video']['heading_text'] = $field_title;
2154
+            if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '') {
2155
+                            $tabs_arr['post_video']['heading_text'] = $field_title;
2156
+            }
2145 2157
         }
2146 2158
 
2147 2159
         if (array_key_exists('special_offers', $tabs_arr)) {
2148 2160
 
2149 2161
             $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
2150 2162
 
2151
-            if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '')
2152
-                $tabs_arr['special_offers']['heading_text'] = $field_title;
2163
+            if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '') {
2164
+                            $tabs_arr['special_offers']['heading_text'] = $field_title;
2165
+            }
2153 2166
         }
2154 2167
 
2155 2168
     }
@@ -2204,8 +2217,9 @@  discard block
 block discarded – undo
2204 2217
 
2205 2218
         $all_postypes = geodir_get_posttypes();
2206 2219
 
2207
-        if (!in_array($post_type, $all_postypes) || !is_admin())
2208
-            return false;
2220
+        if (!in_array($post_type, $all_postypes) || !is_admin()) {
2221
+                    return false;
2222
+        }
2209 2223
 
2210 2224
         $uploads = wp_upload_dir();
2211 2225
 
@@ -2279,8 +2293,9 @@  discard block
 block discarded – undo
2279 2293
                         $file_info = pathinfo($attach->file);
2280 2294
 
2281 2295
                         $sub_dir = '';
2282
-                        if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
2283
-                            $sub_dir = stripslashes_deep($file_info['dirname']);
2296
+                        if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') {
2297
+                                                    $sub_dir = stripslashes_deep($file_info['dirname']);
2298
+                        }
2284 2299
 
2285 2300
                         $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
2286 2301
                         $uploads_path = $uploads['basedir'];
@@ -2301,8 +2316,9 @@  discard block
 block discarded – undo
2301 2316
 
2302 2317
                     if (!empty($attachment_data)) {
2303 2318
 
2304
-                        if ($attachment_data->ID)
2305
-                            $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2319
+                        if ($attachment_data->ID) {
2320
+                                                    $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2321
+                        }
2306 2322
 
2307 2323
                     } else {
2308 2324
 
@@ -2553,8 +2569,9 @@  discard block
 block discarded – undo
2553 2569
                             break;
2554 2570
                         case 'time': {
2555 2571
                             $value = '';
2556
-                            if ($post->{$type['htmlvar_name']} != '')
2557
-                                $value = date_i18n(get_option('time_format'), strtotime($post->{$type['htmlvar_name']}));
2572
+                            if ($post->{$type['htmlvar_name']} != '') {
2573
+                                                            $value = date_i18n(get_option('time_format'), strtotime($post->{$type['htmlvar_name']}));
2574
+                            }
2558 2575
 
2559 2576
                             if (strpos($field_icon, 'http') !== false) {
2560 2577
                                 $field_icon_af = '';
@@ -2589,8 +2606,9 @@  discard block
 block discarded – undo
2589 2606
                             $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $post->{$type['htmlvar_name']}) : $post->{$type['htmlvar_name']}; // PHP doesn't work well with dd/mm/yyyy format
2590 2607
 
2591 2608
                             $value = '';
2592
-                            if ($post->{$type['htmlvar_name']} != '')
2593
-                                $value = date($date_format, strtotime($post_htmlvar_value));
2609
+                            if ($post->{$type['htmlvar_name']} != '') {
2610
+                                                            $value = date($date_format, strtotime($post_htmlvar_value));
2611
+                            }
2594 2612
 
2595 2613
                             if (strpos($field_icon, 'http') !== false) {
2596 2614
                                 $field_icon_af = '';
Please login to merge, or discard this patch.
tests/selenium/base.php 3 patches
Doc Comments   +22 added lines patch added patch discarded remove patch
@@ -10,6 +10,9 @@  discard block
 block discarded – undo
10 10
         $this->setBrowserUrl(self::GDTEST_BASE_URL);
11 11
     }
12 12
 
13
+    /**
14
+     * @param string $search
15
+     */
13 16
     function isTextPresent($search)
14 17
     {
15 18
         $source = $this->source();
@@ -62,6 +65,9 @@  discard block
 block discarded – undo
62 65
         }
63 66
     }
64 67
 
68
+    /**
69
+     * @param string $redirect
70
+     */
65 71
     function maybeUserLogin($redirect, $force=false) {
66 72
         if ($force) {
67 73
             $this->url(self::GDTEST_BASE_URL.'wp-admin/');
@@ -87,6 +93,9 @@  discard block
 block discarded – undo
87 93
         }
88 94
     }
89 95
 
96
+    /**
97
+     * @param string $redirect
98
+     */
90 99
     function maybeAdminLogin($redirect) {
91 100
         $this->url($redirect);
92 101
         $this->waitForPageLoadAndCheckForErrors();
@@ -121,6 +130,9 @@  discard block
 block discarded – undo
121 130
         return $exists;
122 131
     }
123 132
 
133
+    /**
134
+     * @param string $script
135
+     */
124 136
     function ExecuteScript($script, $args=array()) {
125 137
         $this->execute( array(
126 138
             'script' => $script ,
@@ -133,10 +145,16 @@  discard block
 block discarded – undo
133 145
         $this->ExecuteScript('jQuery("#wpadminbar").hide();');
134 146
     }
135 147
 
148
+    /**
149
+     * @param string $string
150
+     */
136 151
     function logInfo($string) {
137 152
         fwrite(STDOUT, "Info: ".$string . PHP_EOL);
138 153
     }
139 154
 
155
+    /**
156
+     * @param string $string
157
+     */
140 158
     function logError($string) {
141 159
         fwrite(STDOUT, "Error: ".$string . PHP_EOL);
142 160
     }
@@ -157,6 +175,10 @@  discard block
 block discarded – undo
157 175
         return (int) $content;
158 176
     }
159 177
 
178
+    /**
179
+     * @param integer $current
180
+     * @param integer $completed
181
+     */
160 182
     function skipTest($current, $completed) {
161 183
         if ($completed == 0 || $completed == 42 || $current == $completed) {
162 184
             return false;
Please login to merge, or discard this patch.
Indentation   +191 added lines, -191 removed lines patch added patch discarded remove patch
@@ -1,199 +1,199 @@
 block discarded – undo
1 1
 <?php
2 2
 class GD_Test extends PHPUnit_Extensions_Selenium2TestCase {
3 3
 
4
-    const GDTEST_BASE_URL = 'http://www.test.ci/selpress/';
5
-
6
-    public function setUp()
7
-    {
8
-        $this->setSeleniumServerRequestsTimeout(300);
9
-        $this->setBrowser('firefox');
10
-        $this->setBrowserUrl(self::GDTEST_BASE_URL);
11
-    }
12
-
13
-    function isTextPresent($search)
14
-    {
15
-        $source = $this->source();
16
-        if ( strpos((string)$source,$search) !== FALSE) {
17
-            return true;
18
-        } else {
19
-            return false;
20
-        }
21
-    }
22
-
23
-    function randomEmailID()
24
-    {
25
-        return md5(uniqid(rand(), true)).'@gmail.com';
26
-    }
27
-
28
-    function waitForPageLoadAndCheckForErrors($timeout=10000)
29
-    {
30
-        // Wait 10 seconds
31
-        $this->timeouts()->implicitWait($timeout);
32
-        $this->checkForErrors();
33
-        $this->checkForJsErrors();
34
-    }
35
-
36
-    function checkForErrors()
37
-    {
38
-        $elements = $this->elements($this->using('css selector')->value('.xdebug-error'));
39
-        if ($elements) {
40
-            $total = count($elements);
41
-            fwrite(STDOUT, $total.' errors found'. PHP_EOL);
42
-            $count = 0;
43
-            foreach ($elements as $i => $element) {
44
-                $count++;
45
-                if ($errors = $element->attribute('innerHTML')) {
46
-                    fwrite(STDOUT, "========================================================================". PHP_EOL);
47
-                    fwrite(STDOUT, strip_tags($errors). PHP_EOL);
48
-                    if ($count == $total) {
49
-                        fwrite(STDOUT, "========================================================================". PHP_EOL);
50
-                    }
51
-                }
52
-            }
53
-        }
54
-    }
55
-
56
-    function checkForJsErrors() {
57
-        if ($this->isElementExists('sel_js_error')) {
58
-            fwrite(STDOUT, 'Javascript errors found'. PHP_EOL);
59
-            fwrite(STDOUT, "========================================================================". PHP_EOL);
60
-            echo $this->byId('sel_js_error')->attribute('innerHTML');
61
-            fwrite(STDOUT, "========================================================================". PHP_EOL);
62
-        }
63
-    }
64
-
65
-    function maybeUserLogin($redirect, $force=false) {
66
-        if ($force) {
67
-            $this->url(self::GDTEST_BASE_URL.'wp-admin/');
68
-            if ($this->isTextPresent("forgetmenot")) {
69
-                $this->byId('user_login')->value('[email protected]');
70
-                $this->byId('user_pass')->value('1');
4
+	const GDTEST_BASE_URL = 'http://www.test.ci/selpress/';
5
+
6
+	public function setUp()
7
+	{
8
+		$this->setSeleniumServerRequestsTimeout(300);
9
+		$this->setBrowser('firefox');
10
+		$this->setBrowserUrl(self::GDTEST_BASE_URL);
11
+	}
12
+
13
+	function isTextPresent($search)
14
+	{
15
+		$source = $this->source();
16
+		if ( strpos((string)$source,$search) !== FALSE) {
17
+			return true;
18
+		} else {
19
+			return false;
20
+		}
21
+	}
22
+
23
+	function randomEmailID()
24
+	{
25
+		return md5(uniqid(rand(), true)).'@gmail.com';
26
+	}
27
+
28
+	function waitForPageLoadAndCheckForErrors($timeout=10000)
29
+	{
30
+		// Wait 10 seconds
31
+		$this->timeouts()->implicitWait($timeout);
32
+		$this->checkForErrors();
33
+		$this->checkForJsErrors();
34
+	}
35
+
36
+	function checkForErrors()
37
+	{
38
+		$elements = $this->elements($this->using('css selector')->value('.xdebug-error'));
39
+		if ($elements) {
40
+			$total = count($elements);
41
+			fwrite(STDOUT, $total.' errors found'. PHP_EOL);
42
+			$count = 0;
43
+			foreach ($elements as $i => $element) {
44
+				$count++;
45
+				if ($errors = $element->attribute('innerHTML')) {
46
+					fwrite(STDOUT, "========================================================================". PHP_EOL);
47
+					fwrite(STDOUT, strip_tags($errors). PHP_EOL);
48
+					if ($count == $total) {
49
+						fwrite(STDOUT, "========================================================================". PHP_EOL);
50
+					}
51
+				}
52
+			}
53
+		}
54
+	}
55
+
56
+	function checkForJsErrors() {
57
+		if ($this->isElementExists('sel_js_error')) {
58
+			fwrite(STDOUT, 'Javascript errors found'. PHP_EOL);
59
+			fwrite(STDOUT, "========================================================================". PHP_EOL);
60
+			echo $this->byId('sel_js_error')->attribute('innerHTML');
61
+			fwrite(STDOUT, "========================================================================". PHP_EOL);
62
+		}
63
+	}
64
+
65
+	function maybeUserLogin($redirect, $force=false) {
66
+		if ($force) {
67
+			$this->url(self::GDTEST_BASE_URL.'wp-admin/');
68
+			if ($this->isTextPresent("forgetmenot")) {
69
+				$this->byId('user_login')->value('[email protected]');
70
+				$this->byId('user_pass')->value('1');
71 71
 //                $this->byId('rememberme')->click();
72
-                // Submit the form
73
-                $this->byId('wp-submit')->submit();
74
-                $this->waitForPageLoadAndCheckForErrors();
75
-            }
76
-        }
77
-        $this->url($redirect);
78
-        $this->waitForPageLoadAndCheckForErrors();
79
-        if ($this->isTextPresent("Sign In")) {
80
-            $this->byId('user_login')->value('[email protected]');
81
-            $this->byId('user_pass')->value('1');
72
+				// Submit the form
73
+				$this->byId('wp-submit')->submit();
74
+				$this->waitForPageLoadAndCheckForErrors();
75
+			}
76
+		}
77
+		$this->url($redirect);
78
+		$this->waitForPageLoadAndCheckForErrors();
79
+		if ($this->isTextPresent("Sign In")) {
80
+			$this->byId('user_login')->value('[email protected]');
81
+			$this->byId('user_pass')->value('1');
82 82
 //            $this->byId('rememberme')->click();
83
-            // Submit the form
84
-            $this->byId('cus_loginform')->submit();
85
-            $this->waitForPageLoadAndCheckForErrors();
86
-            $this->url($redirect);
87
-        }
88
-    }
89
-
90
-    function maybeAdminLogin($redirect) {
91
-        $this->url($redirect);
92
-        $this->waitForPageLoadAndCheckForErrors();
93
-        if ($this->isTextPresent("forgetmenot")) {
94
-            $this->byId('user_login')->value('admin');
95
-            $this->byId('user_pass')->value('admin');
83
+			// Submit the form
84
+			$this->byId('cus_loginform')->submit();
85
+			$this->waitForPageLoadAndCheckForErrors();
86
+			$this->url($redirect);
87
+		}
88
+	}
89
+
90
+	function maybeAdminLogin($redirect) {
91
+		$this->url($redirect);
92
+		$this->waitForPageLoadAndCheckForErrors();
93
+		if ($this->isTextPresent("forgetmenot")) {
94
+			$this->byId('user_login')->value('admin');
95
+			$this->byId('user_pass')->value('admin');
96 96
 //            $this->byId('rememberme')->click();
97
-            // Submit the form
98
-            $this->byId('wp-submit')->submit();
99
-            $this->waitForPageLoadAndCheckForErrors();
100
-            $this->url($redirect);
101
-        }
102
-    }
103
-
104
-    function isElementExists($id = false, $by = 'id') {
105
-        if (!$id) {
106
-            return false;
107
-        }
108
-        $exists = true;
109
-        try {
110
-            if ($by == 'id') {
111
-                $this->byId($id);
112
-            } elseif ($by == 'xpath') {
113
-                $this->byXPath($id);
114
-            }
115
-
116
-        } catch (PHPUnit_Extensions_Selenium2TestCase_WebDriverException $e) {
117
-            if (PHPUnit_Extensions_Selenium2TestCase_WebDriverException::NoSuchElement == $e->getCode()) {
118
-                $exists = false;
119
-            }
120
-        }
121
-        return $exists;
122
-    }
123
-
124
-    function ExecuteScript($script, $args=array()) {
125
-        $this->execute( array(
126
-            'script' => $script ,
127
-            'args'=>$args
128
-        ) );
129
-    }
130
-
131
-    function hideAdminBar() {
132
-        //admin bar causes problem with scroll. So hide admin bar while testing.
133
-        $this->ExecuteScript('jQuery("#wpadminbar").hide();');
134
-    }
135
-
136
-    function logInfo($string) {
137
-        fwrite(STDOUT, "Info: ".$string . PHP_EOL);
138
-    }
139
-
140
-    function logError($string) {
141
-        fwrite(STDOUT, "Error: ".$string . PHP_EOL);
142
-    }
143
-
144
-    function logWarning($string) {
145
-        fwrite(STDOUT, "Warning: ".$string . PHP_EOL);
146
-    }
147
-
148
-    function getCurrentFileNumber($file) {
149
-        preg_match('/test-([0-9]+)_/', $file, $match);
150
-        return (int) $match[1];
151
-    }
152
-
153
-    function getCompletedFileNumber() {
154
-        $completed = fopen("tests/selenium/completed.txt", "r") or die("Unable to open file!");
155
-        $content = fgets($completed);
156
-        fclose($completed);
157
-        return (int) $content;
158
-    }
159
-
160
-    function skipTest($current, $completed) {
161
-        if ($completed == 0 || $completed == 42 || $current == $completed) {
162
-            return false;
163
-        } elseif ($current < $completed) {
164
-            return true;
165
-        } else {
166
-            return false;
167
-        }
168
-    }
169
-
170
-    function maybeLogout() {
171
-        $this->url(self::GDTEST_BASE_URL);
172
-        $this->byXPath("//*[@id='gd-sidebar-wrapper']//ul[@class='geodir-loginbox-list']//a[@class='signin']")->click();
173
-        $this->waitForPageLoadAndCheckForErrors();
174
-    }
175
-
176
-    function maybeAdminLogout() {
177
-        $this->url(self::GDTEST_BASE_URL.'wp-admin/plugins.php');
178
-        $this->ExecuteScript('jQuery("#wp-admin-bar-my-account").addClass("hover");');
179
-        $this->byXPath("//*[@id='wp-admin-bar-logout']//a")->click();
180
-        $this->waitForPageLoadAndCheckForErrors();
181
-    }
182
-
183
-    function maybeActivatePlugin($id=false, $timeout=10000) {
184
-        if (!$id) {
185
-            return;
186
-        }
187
-        $plugin_name = ucwords(str_replace('-', ' ', $id));
188
-        $this->logInfo('Activating '.$plugin_name.' plugin......');
189
-        $this->url(self::GDTEST_BASE_URL.'wp-admin/plugins.php');
190
-        $this->waitForPageLoadAndCheckForErrors();
191
-        $this->hideAdminBar();
192
-        if (is_int(strpos($this->byId($id)->attribute('class'), 'inactive'))) {
193
-            $this->byXPath("//tr[@id='".$id."']//span[@class='activate']/a")->click();
194
-        }
195
-        $this->waitForPageLoadAndCheckForErrors($timeout);
196
-        $this->logInfo($plugin_name.' activated......');
197
-    }
97
+			// Submit the form
98
+			$this->byId('wp-submit')->submit();
99
+			$this->waitForPageLoadAndCheckForErrors();
100
+			$this->url($redirect);
101
+		}
102
+	}
103
+
104
+	function isElementExists($id = false, $by = 'id') {
105
+		if (!$id) {
106
+			return false;
107
+		}
108
+		$exists = true;
109
+		try {
110
+			if ($by == 'id') {
111
+				$this->byId($id);
112
+			} elseif ($by == 'xpath') {
113
+				$this->byXPath($id);
114
+			}
115
+
116
+		} catch (PHPUnit_Extensions_Selenium2TestCase_WebDriverException $e) {
117
+			if (PHPUnit_Extensions_Selenium2TestCase_WebDriverException::NoSuchElement == $e->getCode()) {
118
+				$exists = false;
119
+			}
120
+		}
121
+		return $exists;
122
+	}
123
+
124
+	function ExecuteScript($script, $args=array()) {
125
+		$this->execute( array(
126
+			'script' => $script ,
127
+			'args'=>$args
128
+		) );
129
+	}
130
+
131
+	function hideAdminBar() {
132
+		//admin bar causes problem with scroll. So hide admin bar while testing.
133
+		$this->ExecuteScript('jQuery("#wpadminbar").hide();');
134
+	}
135
+
136
+	function logInfo($string) {
137
+		fwrite(STDOUT, "Info: ".$string . PHP_EOL);
138
+	}
139
+
140
+	function logError($string) {
141
+		fwrite(STDOUT, "Error: ".$string . PHP_EOL);
142
+	}
143
+
144
+	function logWarning($string) {
145
+		fwrite(STDOUT, "Warning: ".$string . PHP_EOL);
146
+	}
147
+
148
+	function getCurrentFileNumber($file) {
149
+		preg_match('/test-([0-9]+)_/', $file, $match);
150
+		return (int) $match[1];
151
+	}
152
+
153
+	function getCompletedFileNumber() {
154
+		$completed = fopen("tests/selenium/completed.txt", "r") or die("Unable to open file!");
155
+		$content = fgets($completed);
156
+		fclose($completed);
157
+		return (int) $content;
158
+	}
159
+
160
+	function skipTest($current, $completed) {
161
+		if ($completed == 0 || $completed == 42 || $current == $completed) {
162
+			return false;
163
+		} elseif ($current < $completed) {
164
+			return true;
165
+		} else {
166
+			return false;
167
+		}
168
+	}
169
+
170
+	function maybeLogout() {
171
+		$this->url(self::GDTEST_BASE_URL);
172
+		$this->byXPath("//*[@id='gd-sidebar-wrapper']//ul[@class='geodir-loginbox-list']//a[@class='signin']")->click();
173
+		$this->waitForPageLoadAndCheckForErrors();
174
+	}
175
+
176
+	function maybeAdminLogout() {
177
+		$this->url(self::GDTEST_BASE_URL.'wp-admin/plugins.php');
178
+		$this->ExecuteScript('jQuery("#wp-admin-bar-my-account").addClass("hover");');
179
+		$this->byXPath("//*[@id='wp-admin-bar-logout']//a")->click();
180
+		$this->waitForPageLoadAndCheckForErrors();
181
+	}
182
+
183
+	function maybeActivatePlugin($id=false, $timeout=10000) {
184
+		if (!$id) {
185
+			return;
186
+		}
187
+		$plugin_name = ucwords(str_replace('-', ' ', $id));
188
+		$this->logInfo('Activating '.$plugin_name.' plugin......');
189
+		$this->url(self::GDTEST_BASE_URL.'wp-admin/plugins.php');
190
+		$this->waitForPageLoadAndCheckForErrors();
191
+		$this->hideAdminBar();
192
+		if (is_int(strpos($this->byId($id)->attribute('class'), 'inactive'))) {
193
+			$this->byXPath("//tr[@id='".$id."']//span[@class='activate']/a")->click();
194
+		}
195
+		$this->waitForPageLoadAndCheckForErrors($timeout);
196
+		$this->logInfo($plugin_name.' activated......');
197
+	}
198 198
 
199 199
 }
200 200
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
     function isTextPresent($search)
14 14
     {
15 15
         $source = $this->source();
16
-        if ( strpos((string)$source,$search) !== FALSE) {
16
+        if (strpos((string) $source, $search) !== FALSE) {
17 17
             return true;
18 18
         } else {
19 19
             return false;
@@ -22,10 +22,10 @@  discard block
 block discarded – undo
22 22
 
23 23
     function randomEmailID()
24 24
     {
25
-        return md5(uniqid(rand(), true)).'@gmail.com';
25
+        return md5(uniqid(rand(), true)) . '@gmail.com';
26 26
     }
27 27
 
28
-    function waitForPageLoadAndCheckForErrors($timeout=10000)
28
+    function waitForPageLoadAndCheckForErrors($timeout = 10000)
29 29
     {
30 30
         // Wait 10 seconds
31 31
         $this->timeouts()->implicitWait($timeout);
@@ -38,15 +38,15 @@  discard block
 block discarded – undo
38 38
         $elements = $this->elements($this->using('css selector')->value('.xdebug-error'));
39 39
         if ($elements) {
40 40
             $total = count($elements);
41
-            fwrite(STDOUT, $total.' errors found'. PHP_EOL);
41
+            fwrite(STDOUT, $total . ' errors found' . PHP_EOL);
42 42
             $count = 0;
43 43
             foreach ($elements as $i => $element) {
44 44
                 $count++;
45 45
                 if ($errors = $element->attribute('innerHTML')) {
46
-                    fwrite(STDOUT, "========================================================================". PHP_EOL);
47
-                    fwrite(STDOUT, strip_tags($errors). PHP_EOL);
46
+                    fwrite(STDOUT, "========================================================================" . PHP_EOL);
47
+                    fwrite(STDOUT, strip_tags($errors) . PHP_EOL);
48 48
                     if ($count == $total) {
49
-                        fwrite(STDOUT, "========================================================================". PHP_EOL);
49
+                        fwrite(STDOUT, "========================================================================" . PHP_EOL);
50 50
                     }
51 51
                 }
52 52
             }
@@ -55,16 +55,16 @@  discard block
 block discarded – undo
55 55
 
56 56
     function checkForJsErrors() {
57 57
         if ($this->isElementExists('sel_js_error')) {
58
-            fwrite(STDOUT, 'Javascript errors found'. PHP_EOL);
59
-            fwrite(STDOUT, "========================================================================". PHP_EOL);
58
+            fwrite(STDOUT, 'Javascript errors found' . PHP_EOL);
59
+            fwrite(STDOUT, "========================================================================" . PHP_EOL);
60 60
             echo $this->byId('sel_js_error')->attribute('innerHTML');
61
-            fwrite(STDOUT, "========================================================================". PHP_EOL);
61
+            fwrite(STDOUT, "========================================================================" . PHP_EOL);
62 62
         }
63 63
     }
64 64
 
65
-    function maybeUserLogin($redirect, $force=false) {
65
+    function maybeUserLogin($redirect, $force = false) {
66 66
         if ($force) {
67
-            $this->url(self::GDTEST_BASE_URL.'wp-admin/');
67
+            $this->url(self::GDTEST_BASE_URL . 'wp-admin/');
68 68
             if ($this->isTextPresent("forgetmenot")) {
69 69
                 $this->byId('user_login')->value('[email protected]');
70 70
                 $this->byId('user_pass')->value('1');
@@ -121,11 +121,11 @@  discard block
 block discarded – undo
121 121
         return $exists;
122 122
     }
123 123
 
124
-    function ExecuteScript($script, $args=array()) {
125
-        $this->execute( array(
126
-            'script' => $script ,
124
+    function ExecuteScript($script, $args = array()) {
125
+        $this->execute(array(
126
+            'script' => $script,
127 127
             'args'=>$args
128
-        ) );
128
+        ));
129 129
     }
130 130
 
131 131
     function hideAdminBar() {
@@ -134,15 +134,15 @@  discard block
 block discarded – undo
134 134
     }
135 135
 
136 136
     function logInfo($string) {
137
-        fwrite(STDOUT, "Info: ".$string . PHP_EOL);
137
+        fwrite(STDOUT, "Info: " . $string . PHP_EOL);
138 138
     }
139 139
 
140 140
     function logError($string) {
141
-        fwrite(STDOUT, "Error: ".$string . PHP_EOL);
141
+        fwrite(STDOUT, "Error: " . $string . PHP_EOL);
142 142
     }
143 143
 
144 144
     function logWarning($string) {
145
-        fwrite(STDOUT, "Warning: ".$string . PHP_EOL);
145
+        fwrite(STDOUT, "Warning: " . $string . PHP_EOL);
146 146
     }
147 147
 
148 148
     function getCurrentFileNumber($file) {
@@ -174,26 +174,26 @@  discard block
 block discarded – undo
174 174
     }
175 175
 
176 176
     function maybeAdminLogout() {
177
-        $this->url(self::GDTEST_BASE_URL.'wp-admin/plugins.php');
177
+        $this->url(self::GDTEST_BASE_URL . 'wp-admin/plugins.php');
178 178
         $this->ExecuteScript('jQuery("#wp-admin-bar-my-account").addClass("hover");');
179 179
         $this->byXPath("//*[@id='wp-admin-bar-logout']//a")->click();
180 180
         $this->waitForPageLoadAndCheckForErrors();
181 181
     }
182 182
 
183
-    function maybeActivatePlugin($id=false, $timeout=10000) {
183
+    function maybeActivatePlugin($id = false, $timeout = 10000) {
184 184
         if (!$id) {
185 185
             return;
186 186
         }
187 187
         $plugin_name = ucwords(str_replace('-', ' ', $id));
188
-        $this->logInfo('Activating '.$plugin_name.' plugin......');
189
-        $this->url(self::GDTEST_BASE_URL.'wp-admin/plugins.php');
188
+        $this->logInfo('Activating ' . $plugin_name . ' plugin......');
189
+        $this->url(self::GDTEST_BASE_URL . 'wp-admin/plugins.php');
190 190
         $this->waitForPageLoadAndCheckForErrors();
191 191
         $this->hideAdminBar();
192 192
         if (is_int(strpos($this->byId($id)->attribute('class'), 'inactive'))) {
193
-            $this->byXPath("//tr[@id='".$id."']//span[@class='activate']/a")->click();
193
+            $this->byXPath("//tr[@id='" . $id . "']//span[@class='activate']/a")->click();
194 194
         }
195 195
         $this->waitForPageLoadAndCheckForErrors($timeout);
196
-        $this->logInfo($plugin_name.' activated......');
196
+        $this->logInfo($plugin_name . ' activated......');
197 197
     }
198 198
 
199 199
 }
200 200
\ No newline at end of file
Please login to merge, or discard this patch.
tests/selenium/stest-13_Send_Enquiry.php 2 patches
Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -1,42 +1,42 @@
 block discarded – undo
1 1
 <?php
2 2
 class SendEnquiry extends GD_Test
3 3
 {
4
-    public function setUp()
5
-    {
6
-        parent::setUp();
4
+	public function setUp()
5
+	{
6
+		parent::setUp();
7 7
 
8
-        //skip test if already completed.
9
-        if ($this->skipTest($this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME)), $this->getCompletedFileNumber())) {
10
-            $this->markTestSkipped('Skipping '.pathinfo(__FILE__, PATHINFO_FILENAME).' since its already completed......');
11
-            return;
12
-        } else {
13
-            $this->prepareSession()->currentWindow()->maximize();
14
-        }
15
-    }
8
+		//skip test if already completed.
9
+		if ($this->skipTest($this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME)), $this->getCompletedFileNumber())) {
10
+			$this->markTestSkipped('Skipping '.pathinfo(__FILE__, PATHINFO_FILENAME).' since its already completed......');
11
+			return;
12
+		} else {
13
+			$this->prepareSession()->currentWindow()->maximize();
14
+		}
15
+	}
16 16
 
17
-    public function testSendEnquiry()
18
-    {
19
-        $this->logInfo('Send Enquiry......');
20
-        $this->url(self::GDTEST_BASE_URL.'places/united-states/new-york/new-york/attractions/test-listing/');
21
-        $this->waitForPageLoadAndCheckForErrors();
22
-        $this->byClassName('b_send_inquiry')->click();
23
-        $this->waitForPageLoadAndCheckForErrors();
24
-        $this->byName('inq_name')->value('Test User');
25
-        $this->byName('inq_email')->value('[email protected]');
26
-        $this->byId('agt_mail_phone')->value('44444444444');
27
-        $this->byName('Send')->click();
28
-        $this->waitForPageLoadAndCheckForErrors();
29
-        $this->assertTrue( $this->isTextPresent("Enquiry sent successfully"), "Success text not found");
30
-    }
17
+	public function testSendEnquiry()
18
+	{
19
+		$this->logInfo('Send Enquiry......');
20
+		$this->url(self::GDTEST_BASE_URL.'places/united-states/new-york/new-york/attractions/test-listing/');
21
+		$this->waitForPageLoadAndCheckForErrors();
22
+		$this->byClassName('b_send_inquiry')->click();
23
+		$this->waitForPageLoadAndCheckForErrors();
24
+		$this->byName('inq_name')->value('Test User');
25
+		$this->byName('inq_email')->value('[email protected]');
26
+		$this->byId('agt_mail_phone')->value('44444444444');
27
+		$this->byName('Send')->click();
28
+		$this->waitForPageLoadAndCheckForErrors();
29
+		$this->assertTrue( $this->isTextPresent("Enquiry sent successfully"), "Success text not found");
30
+	}
31 31
 
32
-    public function tearDown()
33
-    {
34
-        if (!$this->skipTest($this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME)), $this->getCompletedFileNumber())) {
35
-            //write current file number to completed.txt
36
-            $CurrentFileNumber = $this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME));
37
-            $completed = fopen("tests/selenium/completed.txt", "w") or die("Unable to open file!");
38
-            fwrite($completed, $CurrentFileNumber);
39
-        }
40
-    }
32
+	public function tearDown()
33
+	{
34
+		if (!$this->skipTest($this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME)), $this->getCompletedFileNumber())) {
35
+			//write current file number to completed.txt
36
+			$CurrentFileNumber = $this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME));
37
+			$completed = fopen("tests/selenium/completed.txt", "w") or die("Unable to open file!");
38
+			fwrite($completed, $CurrentFileNumber);
39
+		}
40
+	}
41 41
 }
42 42
 ?>
43 43
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 
8 8
         //skip test if already completed.
9 9
         if ($this->skipTest($this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME)), $this->getCompletedFileNumber())) {
10
-            $this->markTestSkipped('Skipping '.pathinfo(__FILE__, PATHINFO_FILENAME).' since its already completed......');
10
+            $this->markTestSkipped('Skipping ' . pathinfo(__FILE__, PATHINFO_FILENAME) . ' since its already completed......');
11 11
             return;
12 12
         } else {
13 13
             $this->prepareSession()->currentWindow()->maximize();
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
     public function testSendEnquiry()
18 18
     {
19 19
         $this->logInfo('Send Enquiry......');
20
-        $this->url(self::GDTEST_BASE_URL.'places/united-states/new-york/new-york/attractions/test-listing/');
20
+        $this->url(self::GDTEST_BASE_URL . 'places/united-states/new-york/new-york/attractions/test-listing/');
21 21
         $this->waitForPageLoadAndCheckForErrors();
22 22
         $this->byClassName('b_send_inquiry')->click();
23 23
         $this->waitForPageLoadAndCheckForErrors();
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
         $this->byId('agt_mail_phone')->value('44444444444');
27 27
         $this->byName('Send')->click();
28 28
         $this->waitForPageLoadAndCheckForErrors();
29
-        $this->assertTrue( $this->isTextPresent("Enquiry sent successfully"), "Success text not found");
29
+        $this->assertTrue($this->isTextPresent("Enquiry sent successfully"), "Success text not found");
30 30
     }
31 31
 
32 32
     public function tearDown()
Please login to merge, or discard this patch.
tests/selenium/stest-17_Add_Custom_Fields.php 2 patches
Indentation   +65 added lines, -65 removed lines patch added patch discarded remove patch
@@ -1,74 +1,74 @@
 block discarded – undo
1 1
 <?php
2 2
 class AddCustomFields extends GD_Test
3 3
 {
4
-    public function setUp()
5
-    {
6
-        parent::setUp();
4
+	public function setUp()
5
+	{
6
+		parent::setUp();
7 7
 
8
-        //skip test if already completed.
9
-        if ($this->skipTest($this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME)), $this->getCompletedFileNumber())) {
10
-            $this->markTestSkipped('Skipping '.pathinfo(__FILE__, PATHINFO_FILENAME).' since its already completed......');
11
-            return;
12
-        } else {
13
-            $this->prepareSession()->currentWindow()->maximize();
14
-        }
15
-    }
8
+		//skip test if already completed.
9
+		if ($this->skipTest($this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME)), $this->getCompletedFileNumber())) {
10
+			$this->markTestSkipped('Skipping '.pathinfo(__FILE__, PATHINFO_FILENAME).' since its already completed......');
11
+			return;
12
+		} else {
13
+			$this->prepareSession()->currentWindow()->maximize();
14
+		}
15
+	}
16 16
 
17
-    public function testAddCustomFields()
18
-    {
19
-        $this->logInfo('Add custom fields......');
20
-        $this->prepareSession()->currentWindow()->maximize();
21
-        //Field 1
22
-        $this->maybeAdminLogin(self::GDTEST_BASE_URL.'wp-admin/admin.php?page=geodirectory&tab=gd_place_fields_settings&subtab=custom_fields&listing_type=gd_place');
23
-        $this->waitForPageLoadAndCheckForErrors();
24
-        $this->byId('gt-text')->click();
25
-        $this->waitForPageLoadAndCheckForErrors();
26
-        $link = $this->byXPath("//li[@id='licontainer_new10']/div[contains(@class,'titlenew10')]");
27
-        $this->moveto($link);
28
-        $this->doubleclick();
29
-        $this->waitForPageLoadAndCheckForErrors();
30
-        $this->byXPath("//div[@id='field_frmnew10']//input[@id='admin_title']")->value('Text Field 1');
31
-        $this->byXPath("//div[@id='field_frmnew10']//input[@id='site_title']")->value('Text Field 1');
32
-        $this->byXPath("//div[@id='field_frmnew10']//input[@id='htmlvar_name']")->value('text_field_1');
33
-        $this->byXPath("//div[@id='field_frmnew10']//input[@id='clabels']")->value('Text Field 1');
34
-        $this->select($this->byXPath("//div[@id='field_frmnew10']//select[@id='is_active']"))->selectOptionByLabel('Yes');
35
-        $this->select($this->byXPath("//div[@id='field_frmnew10']//select[@id='show_on_listing']"))->selectOptionByLabel('Yes');
36
-        $this->select($this->byXPath("//div[@id='field_frmnew10']//select[@id='show_on_detail']"))->selectOptionByLabel('Yes');
37
-        $this->byXPath("//div[@id='field_frmnew10']//input[@id='cat_sort']")->click();
38
-        $this->byXPath("//div[@id='field_frmnew10']//input[@id='cat_filter']")->click();
39
-        $this->byXPath("//div[@id='field_frmnew10']//input[@id='save']")->click();
40
-        $this->waitForPageLoadAndCheckForErrors();
17
+	public function testAddCustomFields()
18
+	{
19
+		$this->logInfo('Add custom fields......');
20
+		$this->prepareSession()->currentWindow()->maximize();
21
+		//Field 1
22
+		$this->maybeAdminLogin(self::GDTEST_BASE_URL.'wp-admin/admin.php?page=geodirectory&tab=gd_place_fields_settings&subtab=custom_fields&listing_type=gd_place');
23
+		$this->waitForPageLoadAndCheckForErrors();
24
+		$this->byId('gt-text')->click();
25
+		$this->waitForPageLoadAndCheckForErrors();
26
+		$link = $this->byXPath("//li[@id='licontainer_new10']/div[contains(@class,'titlenew10')]");
27
+		$this->moveto($link);
28
+		$this->doubleclick();
29
+		$this->waitForPageLoadAndCheckForErrors();
30
+		$this->byXPath("//div[@id='field_frmnew10']//input[@id='admin_title']")->value('Text Field 1');
31
+		$this->byXPath("//div[@id='field_frmnew10']//input[@id='site_title']")->value('Text Field 1');
32
+		$this->byXPath("//div[@id='field_frmnew10']//input[@id='htmlvar_name']")->value('text_field_1');
33
+		$this->byXPath("//div[@id='field_frmnew10']//input[@id='clabels']")->value('Text Field 1');
34
+		$this->select($this->byXPath("//div[@id='field_frmnew10']//select[@id='is_active']"))->selectOptionByLabel('Yes');
35
+		$this->select($this->byXPath("//div[@id='field_frmnew10']//select[@id='show_on_listing']"))->selectOptionByLabel('Yes');
36
+		$this->select($this->byXPath("//div[@id='field_frmnew10']//select[@id='show_on_detail']"))->selectOptionByLabel('Yes');
37
+		$this->byXPath("//div[@id='field_frmnew10']//input[@id='cat_sort']")->click();
38
+		$this->byXPath("//div[@id='field_frmnew10']//input[@id='cat_filter']")->click();
39
+		$this->byXPath("//div[@id='field_frmnew10']//input[@id='save']")->click();
40
+		$this->waitForPageLoadAndCheckForErrors();
41 41
 
42
-        //Field 2
43
-        $this->maybeAdminLogin(self::GDTEST_BASE_URL.'wp-admin/admin.php?page=geodirectory&tab=gd_place_fields_settings&subtab=custom_fields&listing_type=gd_place');
44
-        $this->waitForPageLoadAndCheckForErrors();
45
-        $this->byId('gt-text')->click();
46
-        $this->waitForPageLoadAndCheckForErrors();
47
-        $link = $this->byXPath("//li[@id='licontainer_new11']/div[contains(@class,'titlenew11')]");
48
-        $this->moveto($link);
49
-        $this->doubleclick();
50
-        $this->waitForPageLoadAndCheckForErrors();
51
-        $this->byXPath("//div[@id='field_frmnew11']//input[@id='admin_title']")->value('Text Field 2');
52
-        $this->byXPath("//div[@id='field_frmnew11']//input[@id='site_title']")->value('Text Field 2');
53
-        $this->byXPath("//div[@id='field_frmnew11']//input[@id='htmlvar_name']")->value('text_field_2');
54
-        $this->byXPath("//div[@id='field_frmnew11']//input[@id='clabels']")->value('Text Field 2');
55
-        $this->select($this->byXPath("//div[@id='field_frmnew11']//select[@id='is_active']"))->selectOptionByLabel('Yes');
56
-        $this->select($this->byXPath("//div[@id='field_frmnew11']//select[@id='show_on_listing']"))->selectOptionByLabel('Yes');
57
-        $this->select($this->byXPath("//div[@id='field_frmnew11']//select[@id='show_on_detail']"))->selectOptionByLabel('Yes');
58
-        $this->byXPath("//div[@id='field_frmnew11']//input[@id='cat_sort']")->click();
59
-        $this->byXPath("//div[@id='field_frmnew11']//input[@id='cat_filter']")->click();
60
-        $this->byXPath("//div[@id='field_frmnew11']//input[@id='save']")->click();
61
-        $this->waitForPageLoadAndCheckForErrors();
62
-    }
42
+		//Field 2
43
+		$this->maybeAdminLogin(self::GDTEST_BASE_URL.'wp-admin/admin.php?page=geodirectory&tab=gd_place_fields_settings&subtab=custom_fields&listing_type=gd_place');
44
+		$this->waitForPageLoadAndCheckForErrors();
45
+		$this->byId('gt-text')->click();
46
+		$this->waitForPageLoadAndCheckForErrors();
47
+		$link = $this->byXPath("//li[@id='licontainer_new11']/div[contains(@class,'titlenew11')]");
48
+		$this->moveto($link);
49
+		$this->doubleclick();
50
+		$this->waitForPageLoadAndCheckForErrors();
51
+		$this->byXPath("//div[@id='field_frmnew11']//input[@id='admin_title']")->value('Text Field 2');
52
+		$this->byXPath("//div[@id='field_frmnew11']//input[@id='site_title']")->value('Text Field 2');
53
+		$this->byXPath("//div[@id='field_frmnew11']//input[@id='htmlvar_name']")->value('text_field_2');
54
+		$this->byXPath("//div[@id='field_frmnew11']//input[@id='clabels']")->value('Text Field 2');
55
+		$this->select($this->byXPath("//div[@id='field_frmnew11']//select[@id='is_active']"))->selectOptionByLabel('Yes');
56
+		$this->select($this->byXPath("//div[@id='field_frmnew11']//select[@id='show_on_listing']"))->selectOptionByLabel('Yes');
57
+		$this->select($this->byXPath("//div[@id='field_frmnew11']//select[@id='show_on_detail']"))->selectOptionByLabel('Yes');
58
+		$this->byXPath("//div[@id='field_frmnew11']//input[@id='cat_sort']")->click();
59
+		$this->byXPath("//div[@id='field_frmnew11']//input[@id='cat_filter']")->click();
60
+		$this->byXPath("//div[@id='field_frmnew11']//input[@id='save']")->click();
61
+		$this->waitForPageLoadAndCheckForErrors();
62
+	}
63 63
 
64
-    public function tearDown()
65
-    {
66
-        if (!$this->skipTest($this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME)), $this->getCompletedFileNumber())) {
67
-            //write current file number to completed.txt
68
-            $CurrentFileNumber = $this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME));
69
-            $completed = fopen("tests/selenium/completed.txt", "w") or die("Unable to open file!");
70
-            fwrite($completed, $CurrentFileNumber);
71
-        }
72
-    }
64
+	public function tearDown()
65
+	{
66
+		if (!$this->skipTest($this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME)), $this->getCompletedFileNumber())) {
67
+			//write current file number to completed.txt
68
+			$CurrentFileNumber = $this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME));
69
+			$completed = fopen("tests/selenium/completed.txt", "w") or die("Unable to open file!");
70
+			fwrite($completed, $CurrentFileNumber);
71
+		}
72
+	}
73 73
 }
74 74
 ?>
75 75
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 
8 8
         //skip test if already completed.
9 9
         if ($this->skipTest($this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME)), $this->getCompletedFileNumber())) {
10
-            $this->markTestSkipped('Skipping '.pathinfo(__FILE__, PATHINFO_FILENAME).' since its already completed......');
10
+            $this->markTestSkipped('Skipping ' . pathinfo(__FILE__, PATHINFO_FILENAME) . ' since its already completed......');
11 11
             return;
12 12
         } else {
13 13
             $this->prepareSession()->currentWindow()->maximize();
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
         $this->logInfo('Add custom fields......');
20 20
         $this->prepareSession()->currentWindow()->maximize();
21 21
         //Field 1
22
-        $this->maybeAdminLogin(self::GDTEST_BASE_URL.'wp-admin/admin.php?page=geodirectory&tab=gd_place_fields_settings&subtab=custom_fields&listing_type=gd_place');
22
+        $this->maybeAdminLogin(self::GDTEST_BASE_URL . 'wp-admin/admin.php?page=geodirectory&tab=gd_place_fields_settings&subtab=custom_fields&listing_type=gd_place');
23 23
         $this->waitForPageLoadAndCheckForErrors();
24 24
         $this->byId('gt-text')->click();
25 25
         $this->waitForPageLoadAndCheckForErrors();
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
         $this->waitForPageLoadAndCheckForErrors();
41 41
 
42 42
         //Field 2
43
-        $this->maybeAdminLogin(self::GDTEST_BASE_URL.'wp-admin/admin.php?page=geodirectory&tab=gd_place_fields_settings&subtab=custom_fields&listing_type=gd_place');
43
+        $this->maybeAdminLogin(self::GDTEST_BASE_URL . 'wp-admin/admin.php?page=geodirectory&tab=gd_place_fields_settings&subtab=custom_fields&listing_type=gd_place');
44 44
         $this->waitForPageLoadAndCheckForErrors();
45 45
         $this->byId('gt-text')->click();
46 46
         $this->waitForPageLoadAndCheckForErrors();
Please login to merge, or discard this patch.
tests/selenium/stest-10_Add_A_Review.php 2 patches
Indentation   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -1,48 +1,48 @@
 block discarded – undo
1 1
 <?php
2 2
 class AddReview extends GD_Test
3 3
 {
4
-    public function setUp()
5
-    {
6
-        parent::setUp();
4
+	public function setUp()
5
+	{
6
+		parent::setUp();
7 7
 
8
-        //skip test if already completed.
9
-        if ($this->skipTest($this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME)), $this->getCompletedFileNumber())) {
10
-            $this->markTestSkipped('Skipping '.pathinfo(__FILE__, PATHINFO_FILENAME).' since its already completed......');
11
-            return;
12
-        } else {
13
-            $this->prepareSession()->currentWindow()->maximize();
14
-        }
15
-    }
8
+		//skip test if already completed.
9
+		if ($this->skipTest($this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME)), $this->getCompletedFileNumber())) {
10
+			$this->markTestSkipped('Skipping '.pathinfo(__FILE__, PATHINFO_FILENAME).' since its already completed......');
11
+			return;
12
+		} else {
13
+			$this->prepareSession()->currentWindow()->maximize();
14
+		}
15
+	}
16 16
 
17
-    public function testAddReview()
18
-    {
19
-        $this->logInfo('Adding a review......');
20
-        $this->maybeUserLogin(self::GDTEST_BASE_URL.'places/united-states/new-york/new-york/attractions/franklin-square/', true);
21
-        $this->waitForPageLoadAndCheckForErrors();
22
-        $this->prepareSession()->currentWindow()->maximize();
23
-        $this->ExecuteScript('jQuery(".geodir-tab-head").css("overflow", "hidden");');
24
-        try {
25
-            $this->byXPath("//a[text()='Reviews']")->click();
26
-        } catch (PHPUnit_Extensions_Selenium2TestCase_WebDriverException $e) {
27
-            if (PHPUnit_Extensions_Selenium2TestCase_WebDriverException::ElementNotVisible == $e->getCode()) {
28
-                $this->ExecuteScript('jQuery("#geodir-tab-mobile-menu").click();');
29
-                $this->byXPath("//a[text()='Reviews']")->click();
30
-            }
31
-        }
32
-        $this->ExecuteScript('jQuery("#geodir_overallrating").val("4");');
33
-        $this->byId('comment')->value('Cool xyz');
34
-        $this->byId('submit')->click();
35
-        $this->waitForPageLoadAndCheckForErrors();
36
-    }
17
+	public function testAddReview()
18
+	{
19
+		$this->logInfo('Adding a review......');
20
+		$this->maybeUserLogin(self::GDTEST_BASE_URL.'places/united-states/new-york/new-york/attractions/franklin-square/', true);
21
+		$this->waitForPageLoadAndCheckForErrors();
22
+		$this->prepareSession()->currentWindow()->maximize();
23
+		$this->ExecuteScript('jQuery(".geodir-tab-head").css("overflow", "hidden");');
24
+		try {
25
+			$this->byXPath("//a[text()='Reviews']")->click();
26
+		} catch (PHPUnit_Extensions_Selenium2TestCase_WebDriverException $e) {
27
+			if (PHPUnit_Extensions_Selenium2TestCase_WebDriverException::ElementNotVisible == $e->getCode()) {
28
+				$this->ExecuteScript('jQuery("#geodir-tab-mobile-menu").click();');
29
+				$this->byXPath("//a[text()='Reviews']")->click();
30
+			}
31
+		}
32
+		$this->ExecuteScript('jQuery("#geodir_overallrating").val("4");');
33
+		$this->byId('comment')->value('Cool xyz');
34
+		$this->byId('submit')->click();
35
+		$this->waitForPageLoadAndCheckForErrors();
36
+	}
37 37
 
38
-    public function tearDown()
39
-    {
40
-        if (!$this->skipTest($this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME)), $this->getCompletedFileNumber())) {
41
-            //write current file number to completed.txt
42
-            $CurrentFileNumber = $this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME));
43
-            $completed = fopen("tests/selenium/completed.txt", "w") or die("Unable to open file!");
44
-            fwrite($completed, $CurrentFileNumber);
45
-        }
46
-    }
38
+	public function tearDown()
39
+	{
40
+		if (!$this->skipTest($this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME)), $this->getCompletedFileNumber())) {
41
+			//write current file number to completed.txt
42
+			$CurrentFileNumber = $this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME));
43
+			$completed = fopen("tests/selenium/completed.txt", "w") or die("Unable to open file!");
44
+			fwrite($completed, $CurrentFileNumber);
45
+		}
46
+	}
47 47
 }
48 48
 ?>
49 49
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 
8 8
         //skip test if already completed.
9 9
         if ($this->skipTest($this->getCurrentFileNumber(pathinfo(__FILE__, PATHINFO_FILENAME)), $this->getCompletedFileNumber())) {
10
-            $this->markTestSkipped('Skipping '.pathinfo(__FILE__, PATHINFO_FILENAME).' since its already completed......');
10
+            $this->markTestSkipped('Skipping ' . pathinfo(__FILE__, PATHINFO_FILENAME) . ' since its already completed......');
11 11
             return;
12 12
         } else {
13 13
             $this->prepareSession()->currentWindow()->maximize();
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
     public function testAddReview()
18 18
     {
19 19
         $this->logInfo('Adding a review......');
20
-        $this->maybeUserLogin(self::GDTEST_BASE_URL.'places/united-states/new-york/new-york/attractions/franklin-square/', true);
20
+        $this->maybeUserLogin(self::GDTEST_BASE_URL . 'places/united-states/new-york/new-york/attractions/franklin-square/', true);
21 21
         $this->waitForPageLoadAndCheckForErrors();
22 22
         $this->prepareSession()->currentWindow()->maximize();
23 23
         $this->ExecuteScript('jQuery(".geodir-tab-head").css("overflow", "hidden");');
Please login to merge, or discard this patch.