Test Failed
Pull Request — master (#283)
by Kiran
07:36
created
geodirectory_hooks_actions.php 4 patches
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2195,7 +2195,7 @@  discard block
 block discarded – undo
2195 2195
  * @global object $wpdb WordPress Database object.
2196 2196
  * @global string $plugin_prefix Geodirectory plugin table prefix.
2197 2197
  * @param int $attachment_id Attachment ID.
2198
- * @return bool|void Returns false on failure.
2198
+ * @return false|null Returns false on failure.
2199 2199
  */
2200 2200
 function geodirectory_before_featured_image_delete($attachment_id)
2201 2201
 {
@@ -2368,6 +2368,7 @@  discard block
 block discarded – undo
2368 2368
  * @global object $wpdb WordPress Database object.
2369 2369
  * @global object $current_user Current user object.
2370 2370
  * @global string $plugin_prefix Geodirectory plugin table prefix.
2371
+ * @param string $user_id
2371 2372
  * @return array User listing count for each post type.
2372 2373
  */
2373 2374
 function geodir_user_post_listing_count($user_id=null)
@@ -3176,7 +3177,7 @@  discard block
 block discarded – undo
3176 3177
  * @since 1.0.0
3177 3178
  * @package GeoDirectory
3178 3179
  * @param array $classes The class array of the HTML element.
3179
- * @return array Modified class array.
3180
+ * @return string[] Modified class array.
3180 3181
  */
3181 3182
 function geodir_body_class_no_rating($classes = array())
3182 3183
 {
Please login to merge, or discard this patch.
Braces   +91 added lines, -73 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
 
@@ -421,8 +422,9 @@  discard block
 block discarded – undo
421 422
      */
422 423
     do_action('geodir_after_social_sharing_buttons');
423 424
     $content_html = ob_get_clean();
424
-    if (trim($content_html) != '')
425
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>';
425
+    if (trim($content_html) != '') {
426
+            $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>';
427
+    }
426 428
     if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
427 429
         /**
428 430
          * Filter the geodir_social_sharing_buttons() function content.
@@ -468,8 +470,9 @@  discard block
 block discarded – undo
468 470
      */
469 471
     do_action('geodir_after_share_this_button');
470 472
     $content_html = ob_get_clean();
471
-    if (trim($content_html) != '')
472
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-sharethis">' . $content_html . '</div>';
473
+    if (trim($content_html) != '') {
474
+            $content_html = '<div class="geodir-company_info geodir-details-sidebar-sharethis">' . $content_html . '</div>';
475
+    }
473 476
     if ((int)get_option('geodir_disable_sharethis_button_section') != 1) {
474 477
         /**
475 478
          * Filter the geodir_share_this_button() function content.
@@ -524,8 +527,9 @@  discard block
 block discarded – undo
524 527
      */
525 528
     do_action('geodir_after_edit_post_link');
526 529
     $content_html = ob_get_clean();
527
-    if (trim($content_html) != '')
528
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>';
530
+    if (trim($content_html) != '') {
531
+            $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>';
532
+    }
529 533
     if ((int)get_option('geodir_disable_user_links_section') != 1) {
530 534
         /**
531 535
          * Filter the geodir_edit_post_link() function content.
@@ -1098,8 +1102,9 @@  discard block
 block discarded – undo
1098 1102
      */
1099 1103
     do_action('geodir_after_google_analytics');
1100 1104
     $content_html = ob_get_clean();
1101
-    if (trim($content_html) != '')
1102
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>';
1105
+    if (trim($content_html) != '') {
1106
+            $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>';
1107
+    }
1103 1108
     if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
1104 1109
         /**
1105 1110
          * Filter the geodir_edit_post_link() function content.
@@ -1236,8 +1241,9 @@  discard block
 block discarded – undo
1236 1241
     do_action('geodir_after_detail_page_more_info');
1237 1242
 
1238 1243
     $content_html = ob_get_clean();
1239
-    if (trim($content_html) != '')
1240
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>';
1244
+    if (trim($content_html) != '') {
1245
+            $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>';
1246
+    }
1241 1247
     if ((int)get_option('geodir_disable_listing_info_section') != 1) {
1242 1248
         /**
1243 1249
          * Filter the output html for function geodir_detail_page_more_info().
@@ -1353,8 +1359,9 @@  discard block
 block discarded – undo
1353 1359
     $arr_alert_msg = apply_filters('geodir_all_js_msg', $arr_alert_msg);
1354 1360
 
1355 1361
     foreach ($arr_alert_msg as $key => $value) {
1356
-        if (!is_scalar($value))
1357
-            continue;
1362
+        if (!is_scalar($value)) {
1363
+                    continue;
1364
+        }
1358 1365
         $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8');
1359 1366
     }
1360 1367
 
@@ -1410,17 +1417,19 @@  discard block
 block discarded – undo
1410 1417
     global $geodir_sidebars;
1411 1418
     global $sidebars_widgets;
1412 1419
 
1413
-    if (!is_array($sidebars_widgets))
1414
-        $sidebars_widgets = wp_get_sidebars_widgets();
1420
+    if (!is_array($sidebars_widgets)) {
1421
+            $sidebars_widgets = wp_get_sidebars_widgets();
1422
+    }
1415 1423
     $geodir_old_sidebars = array();
1416 1424
 
1417 1425
     if (is_array($geodir_sidebars)) {
1418 1426
         foreach ($geodir_sidebars as $val) {
1419 1427
             if (is_array($sidebars_widgets)) {
1420
-                if (array_key_exists($val, $sidebars_widgets))
1421
-                    $geodir_old_sidebars[$val] = $sidebars_widgets[$val];
1422
-                else
1423
-                    $geodir_old_sidebars[$val] = array();
1428
+                if (array_key_exists($val, $sidebars_widgets)) {
1429
+                                    $geodir_old_sidebars[$val] = $sidebars_widgets[$val];
1430
+                } else {
1431
+                                    $geodir_old_sidebars[$val] = array();
1432
+                }
1424 1433
             }
1425 1434
         }
1426 1435
     }
@@ -1441,16 +1450,19 @@  discard block
 block discarded – undo
1441 1450
 {
1442 1451
     global $sidebars_widgets;
1443 1452
 
1444
-    if (!is_array($sidebars_widgets))
1445
-        $sidebars_widgets = wp_get_sidebars_widgets();
1453
+    if (!is_array($sidebars_widgets)) {
1454
+            $sidebars_widgets = wp_get_sidebars_widgets();
1455
+    }
1446 1456
 
1447 1457
     if (is_array($sidebars_widgets)) {
1448 1458
         $geodir_old_sidebars = get_option('geodir_sidebars');
1449 1459
         if (is_array($geodir_old_sidebars)) {
1450 1460
             foreach ($geodir_old_sidebars as $key => $val) {
1451
-                if(0 === strpos($key, 'geodir_'))// if gd widget
1461
+                if(0 === strpos($key, 'geodir_')) {
1462
+                	// if gd widget
1452 1463
                 {
1453
-                    $sidebars_widgets[$key] = $geodir_old_sidebars[$key];
1464
+                    $sidebars_widgets[$key] = $geodir_old_sidebars[$key];
1465
+                }
1454 1466
                 }
1455 1467
 
1456 1468
 
@@ -1586,20 +1598,25 @@  discard block
 block discarded – undo
1586 1598
         }
1587 1599
     }
1588 1600
     
1589
-    if ($tab == 'post_info')
1590
-        $is_display = (!empty($geodir_post_detail_fields)) ? true : false;
1601
+    if ($tab == 'post_info') {
1602
+            $is_display = (!empty($geodir_post_detail_fields)) ? true : false;
1603
+    }
1591 1604
     
1592
-    if ($tab == 'post_images')
1593
-        $is_display = (!empty($post_images)) ? true : false;
1605
+    if ($tab == 'post_images') {
1606
+            $is_display = (!empty($post_images)) ? true : false;
1607
+    }
1594 1608
 
1595
-    if ($tab == 'post_video')
1596
-        $is_display = (!empty($video)) ? true : false;
1609
+    if ($tab == 'post_video') {
1610
+            $is_display = (!empty($video)) ? true : false;
1611
+    }
1597 1612
 
1598
-    if ($tab == 'special_offers')
1599
-        $is_display = (!empty($special_offers)) ? true : false;
1613
+    if ($tab == 'special_offers') {
1614
+            $is_display = (!empty($special_offers)) ? true : false;
1615
+    }
1600 1616
 
1601
-    if ($tab == 'reviews')
1602
-        $is_display = (geodir_is_page('detail')) ? true : false;
1617
+    if ($tab == 'reviews') {
1618
+            $is_display = (geodir_is_page('detail')) ? true : false;
1619
+    }
1603 1620
 
1604 1621
     if ($tab == 'related_listing') {
1605 1622
        $message = __('No listings found which match your selection.', 'geodirectory');
@@ -1833,11 +1850,13 @@  discard block
 block discarded – undo
1833 1850
     $region_slug = $default_location->region_slug;
1834 1851
     $city_slug = $default_location->city_slug;
1835 1852
 
1836
-    if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug)
1837
-        return $slug_exists = true;
1853
+    if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug) {
1854
+            return $slug_exists = true;
1855
+    }
1838 1856
 
1839
-    if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
1840
-        return $slug_exists = true;
1857
+    if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id)))) {
1858
+            return $slug_exists = true;
1859
+    }
1841 1860
 
1842 1861
     return $slug_exists;
1843 1862
 }
@@ -1879,40 +1898,31 @@  discard block
 block discarded – undo
1879 1898
     if(geodir_is_page('home')){
1880 1899
         $gd_page = 'home';
1881 1900
         $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
1882
-    }
1883
-    elseif(geodir_is_page('detail')){
1901
+    } elseif(geodir_is_page('detail')){
1884 1902
         $gd_page = 'detail';
1885 1903
         $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
1886
-    }
1887
-    elseif(geodir_is_page('pt')){
1904
+    } elseif(geodir_is_page('pt')){
1888 1905
         $gd_page = 'pt';
1889 1906
         $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
1890
-    }
1891
-    elseif(geodir_is_page('listing')){
1907
+    } elseif(geodir_is_page('listing')){
1892 1908
         $gd_page = 'listing';
1893 1909
         $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
1894
-    }
1895
-    elseif(geodir_is_page('location')){
1910
+    } elseif(geodir_is_page('location')){
1896 1911
         $gd_page = 'location';
1897 1912
         $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
1898
-    }
1899
-    elseif(geodir_is_page('search')){
1913
+    } elseif(geodir_is_page('search')){
1900 1914
         $gd_page = 'search';
1901 1915
         $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
1902
-    }
1903
-    elseif(geodir_is_page('add-listing')){
1916
+    } elseif(geodir_is_page('add-listing')){
1904 1917
         $gd_page = 'add-listing';
1905 1918
         $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
1906
-    }
1907
-    elseif(geodir_is_page('author')){
1919
+    } elseif(geodir_is_page('author')){
1908 1920
         $gd_page = 'author';
1909 1921
         $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
1910
-    }
1911
-    elseif(geodir_is_page('login')){
1922
+    } elseif(geodir_is_page('login')){
1912 1923
         $gd_page = 'login';
1913 1924
         $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
1914
-    }
1915
-    elseif(geodir_is_page('listing-success')){
1925
+    } elseif(geodir_is_page('listing-success')){
1916 1926
         $gd_page = 'listing-success';
1917 1927
         $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
1918 1928
     }
@@ -1990,11 +2000,13 @@  discard block
 block discarded – undo
1990 2000
 
1991 2001
     if (!get_option('geodir_remove_url_seperator')) {
1992 2002
 
1993
-        if (get_option('geodir_listingurl_separator'))
1994
-            delete_option('geodir_listingurl_separator');
2003
+        if (get_option('geodir_listingurl_separator')) {
2004
+                    delete_option('geodir_listingurl_separator');
2005
+        }
1995 2006
 
1996
-        if (get_option('geodir_detailurl_separator'))
1997
-            delete_option('geodir_detailurl_separator');
2007
+        if (get_option('geodir_detailurl_separator')) {
2008
+                    delete_option('geodir_detailurl_separator');
2009
+        }
1998 2010
 
1999 2011
         flush_rewrite_rules(false);
2000 2012
 
@@ -2018,8 +2030,9 @@  discard block
 block discarded – undo
2018 2030
 {
2019 2031
     foreach ($permalink_arr as $key => $value) {
2020 2032
 
2021
-        if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator')
2022
-            unset($permalink_arr[$key]);
2033
+        if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator') {
2034
+                    unset($permalink_arr[$key]);
2035
+        }
2023 2036
 
2024 2037
     }
2025 2038
 
@@ -2154,16 +2167,18 @@  discard block
 block discarded – undo
2154 2167
 
2155 2168
             $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)));
2156 2169
 
2157
-            if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '')
2158
-                $tabs_arr['post_video']['heading_text'] = $field_title;
2170
+            if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '') {
2171
+                            $tabs_arr['post_video']['heading_text'] = $field_title;
2172
+            }
2159 2173
         }
2160 2174
 
2161 2175
         if (array_key_exists('special_offers', $tabs_arr)) {
2162 2176
 
2163 2177
             $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)));
2164 2178
 
2165
-            if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '')
2166
-                $tabs_arr['special_offers']['heading_text'] = $field_title;
2179
+            if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '') {
2180
+                            $tabs_arr['special_offers']['heading_text'] = $field_title;
2181
+            }
2167 2182
         }
2168 2183
 
2169 2184
     }
@@ -2218,8 +2233,9 @@  discard block
 block discarded – undo
2218 2233
 
2219 2234
         $all_postypes = geodir_get_posttypes();
2220 2235
 
2221
-        if (!in_array($post_type, $all_postypes) || !is_admin())
2222
-            return false;
2236
+        if (!in_array($post_type, $all_postypes) || !is_admin()) {
2237
+                    return false;
2238
+        }
2223 2239
 
2224 2240
         $uploads = wp_upload_dir();
2225 2241
 
@@ -2293,8 +2309,9 @@  discard block
 block discarded – undo
2293 2309
                         $file_info = pathinfo($attach->file);
2294 2310
 
2295 2311
                         $sub_dir = '';
2296
-                        if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
2297
-                            $sub_dir = stripslashes_deep($file_info['dirname']);
2312
+                        if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') {
2313
+                                                    $sub_dir = stripslashes_deep($file_info['dirname']);
2314
+                        }
2298 2315
 
2299 2316
                         $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
2300 2317
                         $uploads_path = $uploads['basedir'];
@@ -2315,8 +2332,9 @@  discard block
 block discarded – undo
2315 2332
 
2316 2333
                     if (!empty($attachment_data)) {
2317 2334
 
2318
-                        if ($attachment_data->ID)
2319
-                            $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2335
+                        if ($attachment_data->ID) {
2336
+                                                    $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2337
+                        }
2320 2338
 
2321 2339
                     } else {
2322 2340
 
@@ -2493,7 +2511,7 @@  discard block
 block discarded – undo
2493 2511
                         $variables_array['label'] = __($type['site_title'], 'geodirectory');
2494 2512
                         $variables_array['value'] = '';
2495 2513
                         $variables_array['value'] = $post->{$type['htmlvar_name']};
2496
-                    }else{
2514
+                    } else{
2497 2515
                         $i = 0;
2498 2516
                         $fieldset_count++;
2499 2517
                         $field_set_start = 1;
Please login to merge, or discard this patch.
Indentation   +1106 added lines, -1106 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
 
@@ -222,12 +222,12 @@  discard block
 block discarded – undo
222 222
  */
223 223
 function geodir_unset_prev_theme_nav_location($newname)
224 224
 {
225
-    $geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
226
-    if ($geodir_theme_location) {
227
-        update_option('geodir_theme_location_nav', $geodir_theme_location);
228
-    } else {
229
-        update_option('geodir_theme_location_nav', '');
230
-    }
225
+	$geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
226
+	if ($geodir_theme_location) {
227
+		update_option('geodir_theme_location_nav', $geodir_theme_location);
228
+	} else {
229
+		update_option('geodir_theme_location_nav', '');
230
+	}
231 231
 }
232 232
 
233 233
 /// add action for theme switch to blank previous theme navigation location setting
@@ -248,32 +248,32 @@  discard block
 block discarded – undo
248 248
  */
249 249
 function geodir_add_post_filters()
250 250
 {
251
-    /**
252
-     * Contains all function for filtering listing.
253
-     *
254
-     * @since 1.0.0
255
-     * @package GeoDirectory
256
-     */
257
-    include_once('geodirectory-functions/listing_filters.php');
251
+	/**
252
+	 * Contains all function for filtering listing.
253
+	 *
254
+	 * @since 1.0.0
255
+	 * @package GeoDirectory
256
+	 */
257
+	include_once('geodirectory-functions/listing_filters.php');
258 258
 }
259 259
 
260 260
 
261 261
 if (!function_exists('geodir_init_defaults')) {
262
-    /**
263
-     * Calls the function to register the GeoDirectory default CPT and taxonomies.
264
-     *
265
-     * @since 1.0.0
266
-     * @package GeoDirectory
267
-     */
268
-    function geodir_init_defaults()
269
-    {
270
-        if (function_exists('geodir_register_defaults')) {
262
+	/**
263
+	 * Calls the function to register the GeoDirectory default CPT and taxonomies.
264
+	 *
265
+	 * @since 1.0.0
266
+	 * @package GeoDirectory
267
+	 */
268
+	function geodir_init_defaults()
269
+	{
270
+		if (function_exists('geodir_register_defaults')) {
271 271
 
272
-            geodir_register_defaults();
272
+			geodir_register_defaults();
273 273
 
274
-        }
274
+		}
275 275
 
276
-    }
276
+	}
277 277
 }
278 278
 
279 279
 
@@ -295,26 +295,26 @@  discard block
 block discarded – undo
295 295
 // CALLED ON 'sidebars_widgets' FILTER
296 296
 
297 297
 if (!function_exists('geodir_restrict_widget')) {
298
-    /**
299
-     * Sets global values to be able to tell if the current page is a GeoDirectory listing page or a GeoDirectory details page.
300
-     *
301
-     * @global bool $is_listing Sets the global value to true if on a GD category page. False if not.
302
-     * @global bool $is_single_place Sets the global value to true if on a GD details (post) page. False if not.
303
-     * @since 1.0.0
304
-     * @package GeoDirectory
305
-     */
306
-    function geodir_restrict_widget()
307
-    {
308
-        global $is_listing, $is_single_place;
298
+	/**
299
+	 * Sets global values to be able to tell if the current page is a GeoDirectory listing page or a GeoDirectory details page.
300
+	 *
301
+	 * @global bool $is_listing Sets the global value to true if on a GD category page. False if not.
302
+	 * @global bool $is_single_place Sets the global value to true if on a GD details (post) page. False if not.
303
+	 * @since 1.0.0
304
+	 * @package GeoDirectory
305
+	 */
306
+	function geodir_restrict_widget()
307
+	{
308
+		global $is_listing, $is_single_place;
309 309
 
310
-        // set is listing	
311
-        (geodir_is_page('listing')) ? $is_listing = true : $is_listing = false;
310
+		// set is listing	
311
+		(geodir_is_page('listing')) ? $is_listing = true : $is_listing = false;
312 312
 
313
-        // set is single place
314
-        (geodir_is_page('place')) ? $is_single_place = true : $is_single_place = false;
313
+		// set is single place
314
+		(geodir_is_page('place')) ? $is_single_place = true : $is_single_place = false;
315 315
 
316 316
 
317
-    }
317
+	}
318 318
 }
319 319
 
320 320
 
@@ -335,32 +335,32 @@  discard block
 block discarded – undo
335 335
  */
336 336
 function geodir_detail_page_sidebar_content_sorting()
337 337
 {
338
-    $arr_detail_page_sidebar_content =
339
-        /**
340
-         * An array of functions to be called to be displayed on the details (post) page sidebar.
341
-         *
342
-         * This filter can be used to remove sections of the details page sidebar,
343
-         * add new sections or rearrange the order of the sections.
344
-         *
345
-         * @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.
346
-         * @since 1.0.0
347
-         */
348
-        apply_filters('geodir_detail_page_sidebar_content',
349
-            array('geodir_social_sharing_buttons',
350
-                'geodir_share_this_button',
351
-                'geodir_detail_page_google_analytics',
352
-                'geodir_edit_post_link',
353
-                'geodir_detail_page_review_rating',
354
-                'geodir_detail_page_more_info'
355
-            ) // end of array 
356
-        ); // end of apply filter
357
-    if (!empty($arr_detail_page_sidebar_content)) {
358
-        foreach ($arr_detail_page_sidebar_content as $content_function) {
359
-            if (function_exists($content_function)) {
360
-                add_action('geodir_detail_page_sidebar', $content_function);
361
-            }
362
-        }
363
-    }
338
+	$arr_detail_page_sidebar_content =
339
+		/**
340
+		 * An array of functions to be called to be displayed on the details (post) page sidebar.
341
+		 *
342
+		 * This filter can be used to remove sections of the details page sidebar,
343
+		 * add new sections or rearrange the order of the sections.
344
+		 *
345
+		 * @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.
346
+		 * @since 1.0.0
347
+		 */
348
+		apply_filters('geodir_detail_page_sidebar_content',
349
+			array('geodir_social_sharing_buttons',
350
+				'geodir_share_this_button',
351
+				'geodir_detail_page_google_analytics',
352
+				'geodir_edit_post_link',
353
+				'geodir_detail_page_review_rating',
354
+				'geodir_detail_page_more_info'
355
+			) // end of array 
356
+		); // end of apply filter
357
+	if (!empty($arr_detail_page_sidebar_content)) {
358
+		foreach ($arr_detail_page_sidebar_content as $content_function) {
359
+			if (function_exists($content_function)) {
360
+				add_action('geodir_detail_page_sidebar', $content_function);
361
+			}
362
+		}
363
+	}
364 364
 }
365 365
 
366 366
 add_action('geodir_after_edit_post_link', 'geodir_add_to_favourite_link', 1);
@@ -375,14 +375,14 @@  discard block
 block discarded – undo
375 375
  */
376 376
 function geodir_add_to_favourite_link()
377 377
 {
378
-    global $post, $preview;
379
-    if (!$preview && geodir_is_page('detail')) {
380
-        ?>
378
+	global $post, $preview;
379
+	if (!$preview && geodir_is_page('detail')) {
380
+		?>
381 381
         <p class="edit_link">
382 382
             <?php geodir_favourite_html($post->post_author, $post->ID); ?>
383 383
         </p>
384 384
     <?php
385
-    }
385
+	}
386 386
 }
387 387
 
388 388
 /**
@@ -396,41 +396,41 @@  discard block
 block discarded – undo
396 396
  */
397 397
 function geodir_social_sharing_buttons()
398 398
 {
399
-    global $preview;
400
-    ob_start(); // Start  buffering;
401
-    /**
402
-     * This action is called before the social buttons twitter,facebook and google plus are output in a containing div.
403
-     *
404
-     * @since 1.0.0
405
-     */
406
-    do_action('geodir_before_social_sharing_buttons');
407
-    if (!$preview) {
408
-        ?>
399
+	global $preview;
400
+	ob_start(); // Start  buffering;
401
+	/**
402
+	 * This action is called before the social buttons twitter,facebook and google plus are output in a containing div.
403
+	 *
404
+	 * @since 1.0.0
405
+	 */
406
+	do_action('geodir_before_social_sharing_buttons');
407
+	if (!$preview) {
408
+		?>
409 409
         <div class="likethis">
410 410
             <?php geodir_twitter_tweet_button(); ?>
411 411
             <?php geodir_fb_like_button(); ?>
412 412
             <?php geodir_google_plus_button(); ?>
413 413
         </div>
414 414
     <?php
415
-    }// end of if, if its a preview or not
416
-
417
-    /**
418
-     * This action is called after the social buttons twitter,facebook and google plus are output in a containing div.
419
-     *
420
-     * @since 1.0.0
421
-     */
422
-    do_action('geodir_after_social_sharing_buttons');
423
-    $content_html = ob_get_clean();
424
-    if (trim($content_html) != '')
425
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>';
426
-    if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
427
-        /**
428
-         * Filter the geodir_social_sharing_buttons() function content.
429
-         *
430
-         * @param string $content_html The output html of the geodir_social_sharing_buttons() function.
431
-         */
432
-        echo $content_html = apply_filters('geodir_social_sharing_buttons_html', $content_html);
433
-    }
415
+	}// end of if, if its a preview or not
416
+
417
+	/**
418
+	 * This action is called after the social buttons twitter,facebook and google plus are output in a containing div.
419
+	 *
420
+	 * @since 1.0.0
421
+	 */
422
+	do_action('geodir_after_social_sharing_buttons');
423
+	$content_html = ob_get_clean();
424
+	if (trim($content_html) != '')
425
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>';
426
+	if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
427
+		/**
428
+		 * Filter the geodir_social_sharing_buttons() function content.
429
+		 *
430
+		 * @param string $content_html The output html of the geodir_social_sharing_buttons() function.
431
+		 */
432
+		echo $content_html = apply_filters('geodir_social_sharing_buttons_html', $content_html);
433
+	}
434 434
 
435 435
 
436 436
 }
@@ -446,39 +446,39 @@  discard block
 block discarded – undo
446 446
  */
447 447
 function geodir_share_this_button()
448 448
 {
449
-    global $preview;
450
-    ob_start(); // Start buffering;
451
-    /**
452
-     * This is called before the share this html in the function geodir_share_this_button()
453
-     *
454
-     * @since 1.0.0
455
-     */
456
-    do_action('geodir_before_share_this_button');
457
-    if (!$preview) {
458
-        ?>
449
+	global $preview;
450
+	ob_start(); // Start buffering;
451
+	/**
452
+	 * This is called before the share this html in the function geodir_share_this_button()
453
+	 *
454
+	 * @since 1.0.0
455
+	 */
456
+	do_action('geodir_before_share_this_button');
457
+	if (!$preview) {
458
+		?>
459 459
         <div class="share clearfix">
460 460
             <?php geodir_share_this_button_code(); ?>
461 461
         </div>
462 462
     <?php
463
-    }// end of if, if its a preview or not
464
-    /**
465
-     * This is called after the share this html in the function geodir_share_this_button()
466
-     *
467
-     * @since 1.0.0
468
-     */
469
-    do_action('geodir_after_share_this_button');
470
-    $content_html = ob_get_clean();
471
-    if (trim($content_html) != '')
472
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-sharethis">' . $content_html . '</div>';
473
-    if ((int)get_option('geodir_disable_sharethis_button_section') != 1) {
474
-        /**
475
-         * Filter the geodir_share_this_button() function content.
476
-         *
477
-         * @param string $content_html The output html of the geodir_share_this_button() function.
478
-         * @since 1.0.0
479
-         */
480
-        echo $content_html = apply_filters('geodir_share_this_button_html', $content_html);
481
-    }
463
+	}// end of if, if its a preview or not
464
+	/**
465
+	 * This is called after the share this html in the function geodir_share_this_button()
466
+	 *
467
+	 * @since 1.0.0
468
+	 */
469
+	do_action('geodir_after_share_this_button');
470
+	$content_html = ob_get_clean();
471
+	if (trim($content_html) != '')
472
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-sharethis">' . $content_html . '</div>';
473
+	if ((int)get_option('geodir_disable_sharethis_button_section') != 1) {
474
+		/**
475
+		 * Filter the geodir_share_this_button() function content.
476
+		 *
477
+		 * @param string $content_html The output html of the geodir_share_this_button() function.
478
+		 * @since 1.0.0
479
+		 */
480
+		echo $content_html = apply_filters('geodir_share_this_button_html', $content_html);
481
+	}
482 482
 
483 483
 }
484 484
 
@@ -494,46 +494,46 @@  discard block
 block discarded – undo
494 494
  */
495 495
 function geodir_edit_post_link()
496 496
 {
497
-    global $post, $preview;
498
-    ob_start(); // Start buffering;
499
-    /**
500
-     * This is called before the edit post link html in the function geodir_edit_post_link()
501
-     *
502
-     * @since 1.0.0
503
-     */
504
-    do_action('geodir_before_edit_post_link');
505
-    if (!$preview) {
506
-        $is_current_user_owner = geodir_listing_belong_to_current_user();
497
+	global $post, $preview;
498
+	ob_start(); // Start buffering;
499
+	/**
500
+	 * This is called before the edit post link html in the function geodir_edit_post_link()
501
+	 *
502
+	 * @since 1.0.0
503
+	 */
504
+	do_action('geodir_before_edit_post_link');
505
+	if (!$preview) {
506
+		$is_current_user_owner = geodir_listing_belong_to_current_user();
507 507
         
508
-        if ($is_current_user_owner) {
509
-            $post_id = $post->ID;
508
+		if ($is_current_user_owner) {
509
+			$post_id = $post->ID;
510 510
             
511
-            if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
512
-                $post_id = (int)$_REQUEST['pid'];
513
-            }
511
+			if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
512
+				$post_id = (int)$_REQUEST['pid'];
513
+			}
514 514
 
515
-            $postlink = get_permalink(geodir_add_listing_page_id());
516
-            $editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
517
-            echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
518
-        }
519
-    }// end of if, if its a preview or not
520
-    /**
521
-     * This is called after the edit post link html in the function geodir_edit_post_link()
522
-     *
523
-     * @since 1.0.0
524
-     */
525
-    do_action('geodir_after_edit_post_link');
526
-    $content_html = ob_get_clean();
527
-    if (trim($content_html) != '')
528
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>';
529
-    if ((int)get_option('geodir_disable_user_links_section') != 1) {
530
-        /**
531
-         * Filter the geodir_edit_post_link() function content.
532
-         *
533
-         * @param string $content_html The output html of the geodir_edit_post_link() function.
534
-         */
535
-        echo $content_html = apply_filters('geodir_edit_post_link_html', $content_html);
536
-    }
515
+			$postlink = get_permalink(geodir_add_listing_page_id());
516
+			$editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
517
+			echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
518
+		}
519
+	}// end of if, if its a preview or not
520
+	/**
521
+	 * This is called after the edit post link html in the function geodir_edit_post_link()
522
+	 *
523
+	 * @since 1.0.0
524
+	 */
525
+	do_action('geodir_after_edit_post_link');
526
+	$content_html = ob_get_clean();
527
+	if (trim($content_html) != '')
528
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>';
529
+	if ((int)get_option('geodir_disable_user_links_section') != 1) {
530
+		/**
531
+		 * Filter the geodir_edit_post_link() function content.
532
+		 *
533
+		 * @param string $content_html The output html of the geodir_edit_post_link() function.
534
+		 */
535
+		echo $content_html = apply_filters('geodir_edit_post_link_html', $content_html);
536
+	}
537 537
 }
538 538
 
539 539
 /**
@@ -547,41 +547,41 @@  discard block
 block discarded – undo
547 547
  */
548 548
 function geodir_detail_page_google_analytics()
549 549
 {
550
-    global $post;
551
-    $package_info = array();
552
-    $package_info = geodir_post_package_info($package_info, $post);
550
+	global $post;
551
+	$package_info = array();
552
+	$package_info = geodir_post_package_info($package_info, $post);
553 553
 
554
-    $id = trim(get_option('geodir_ga_id'));
554
+	$id = trim(get_option('geodir_ga_id'));
555 555
 
556
-    if (!$id) {
557
-        return; //if no Google Analytics ID then bail.
558
-    }
556
+	if (!$id) {
557
+		return; //if no Google Analytics ID then bail.
558
+	}
559 559
 
560
-    ob_start(); // Start buffering;
561
-    /**
562
-     * This is called before the edit post link html in the function geodir_detail_page_google_analytics()
563
-     *
564
-     * @since 1.0.0
565
-     */
566
-    do_action('geodir_before_google_analytics');
560
+	ob_start(); // Start buffering;
561
+	/**
562
+	 * This is called before the edit post link html in the function geodir_detail_page_google_analytics()
563
+	 *
564
+	 * @since 1.0.0
565
+	 */
566
+	do_action('geodir_before_google_analytics');
567 567
     
568
-    $refresh_time = get_option('geodir_ga_refresh_time', 5);
569
-    /**
570
-     * Filter the time interval to check & refresh new users results.
571
-     *
572
-     * @since 1.5.9
573
-     *
574
-     * @param int $refresh_time Time interval to check & refresh new users results.
575
-     */
576
-    $refresh_time = apply_filters('geodir_google_analytics_refresh_time', $refresh_time);
577
-    $refresh_time = absint($refresh_time * 1000);
568
+	$refresh_time = get_option('geodir_ga_refresh_time', 5);
569
+	/**
570
+	 * Filter the time interval to check & refresh new users results.
571
+	 *
572
+	 * @since 1.5.9
573
+	 *
574
+	 * @param int $refresh_time Time interval to check & refresh new users results.
575
+	 */
576
+	$refresh_time = apply_filters('geodir_google_analytics_refresh_time', $refresh_time);
577
+	$refresh_time = absint($refresh_time * 1000);
578 578
     
579
-    $hide_refresh = get_option('geodir_ga_auto_refresh');
579
+	$hide_refresh = get_option('geodir_ga_auto_refresh');
580 580
     
581
-    $auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0;
582
-    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' )) ) {
583
-        $page_url = urlencode($_SERVER['REQUEST_URI']);
584
-        ?>
581
+	$auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0;
582
+	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' )) ) {
583
+		$page_url = urlencode($_SERVER['REQUEST_URI']);
584
+		?>
585 585
         <script type="text/javascript">
586 586
             var gd_gaTimeOut;
587 587
             var gd_gaTime = parseInt('<?php echo $refresh_time;?>');
@@ -833,15 +833,15 @@  discard block
 block discarded – undo
833 833
                     var labels = results[1].rows.map(function(row) { return +row[0]; });
834 834
 
835 835
                     <?php
836
-                    // Here we list the shorthand days of the week so it can be used in translation.
837
-                    __("Mon",'geodirectory');
838
-                    __("Tue",'geodirectory');
839
-                    __("Wed",'geodirectory');
840
-                    __("Thu",'geodirectory');
841
-                    __("Fri",'geodirectory');
842
-                    __("Sat",'geodirectory');
843
-                    __("Sun",'geodirectory');
844
-                    ?>
836
+					// Here we list the shorthand days of the week so it can be used in translation.
837
+					__("Mon",'geodirectory');
838
+					__("Tue",'geodirectory');
839
+					__("Wed",'geodirectory');
840
+					__("Thu",'geodirectory');
841
+					__("Fri",'geodirectory');
842
+					__("Sat",'geodirectory');
843
+					__("Sun",'geodirectory');
844
+					?>
845 845
 
846 846
                     labels = [
847 847
                         "<?php _e(date('D', strtotime("+1 day")),'geodirectory'); ?>",
@@ -1090,24 +1090,24 @@  discard block
 block discarded – undo
1090 1090
         </span>
1091 1091
 
1092 1092
     <?php
1093
-    }
1094
-    /**
1095
-     * This is called after the edit post link html in the function geodir_detail_page_google_analytics()
1096
-     *
1097
-     * @since 1.0.0
1098
-     */
1099
-    do_action('geodir_after_google_analytics');
1100
-    $content_html = ob_get_clean();
1101
-    if (trim($content_html) != '')
1102
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>';
1103
-    if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
1104
-        /**
1105
-         * Filter the geodir_edit_post_link() function content.
1106
-         *
1107
-         * @param string $content_html The output html of the geodir_edit_post_link() function.
1108
-         */
1109
-        echo $content_html = apply_filters('geodir_google_analytic_html', $content_html);
1110
-    }
1093
+	}
1094
+	/**
1095
+	 * This is called after the edit post link html in the function geodir_detail_page_google_analytics()
1096
+	 *
1097
+	 * @since 1.0.0
1098
+	 */
1099
+	do_action('geodir_after_google_analytics');
1100
+	$content_html = ob_get_clean();
1101
+	if (trim($content_html) != '')
1102
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>';
1103
+	if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
1104
+		/**
1105
+		 * Filter the geodir_edit_post_link() function content.
1106
+		 *
1107
+		 * @param string $content_html The output html of the geodir_edit_post_link() function.
1108
+		 */
1109
+		echo $content_html = apply_filters('geodir_google_analytic_html', $content_html);
1110
+	}
1111 1111
 }
1112 1112
 
1113 1113
 /**
@@ -1123,90 +1123,90 @@  discard block
 block discarded – undo
1123 1123
  */
1124 1124
 function geodir_detail_page_review_rating()
1125 1125
 {
1126
-    global $post, $preview, $post_images;
1127
-    ob_start(); // Start  buffering;
1128
-    /**
1129
-     * This is called before the rating html in the function geodir_detail_page_review_rating().
1130
-     *
1131
-     * This is called outside the check for an actual rating and the check for preview page.
1132
-     *
1133
-     * @since 1.0.0
1134
-     */
1135
-    do_action('geodir_before_detail_page_review_rating');
1136
-
1137
-    $comment_count = geodir_get_review_count_total($post->ID);
1138
-    $post_avgratings = geodir_get_post_rating($post->ID);
1139
-
1140
-    if ($post_avgratings != 0 && !$preview) {
1141
-        /**
1142
-         * This is called before the rating html in the function geodir_detail_page_review_rating().
1143
-         *
1144
-         * This is called inside the check for an actual rating and the check for preview page.
1145
-         *
1146
-         * @since 1.0.0
1147
-         * @param float $post_avgratings Average rating for the surrent post.
1148
-         * @param int $post->ID Current post ID.
1149
-         */
1150
-        do_action('geodir_before_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1151
-
1152
-        $html = '<p style=" float:left;">';
1153
-        $html .= geodir_get_rating_stars($post_avgratings, $post->ID);
1154
-        $html .= '<div class="average-review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">';
1155
-        $post_avgratings = (is_float($post_avgratings) || (strpos($post_avgratings, ".", 1) == 1 && strlen($post_avgratings) > 3)) ? number_format($post_avgratings, 1, '.', '') : $post_avgratings;
1126
+	global $post, $preview, $post_images;
1127
+	ob_start(); // Start  buffering;
1128
+	/**
1129
+	 * This is called before the rating html in the function geodir_detail_page_review_rating().
1130
+	 *
1131
+	 * This is called outside the check for an actual rating and the check for preview page.
1132
+	 *
1133
+	 * @since 1.0.0
1134
+	 */
1135
+	do_action('geodir_before_detail_page_review_rating');
1136
+
1137
+	$comment_count = geodir_get_review_count_total($post->ID);
1138
+	$post_avgratings = geodir_get_post_rating($post->ID);
1139
+
1140
+	if ($post_avgratings != 0 && !$preview) {
1141
+		/**
1142
+		 * This is called before the rating html in the function geodir_detail_page_review_rating().
1143
+		 *
1144
+		 * This is called inside the check for an actual rating and the check for preview page.
1145
+		 *
1146
+		 * @since 1.0.0
1147
+		 * @param float $post_avgratings Average rating for the surrent post.
1148
+		 * @param int $post->ID Current post ID.
1149
+		 */
1150
+		do_action('geodir_before_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1151
+
1152
+		$html = '<p style=" float:left;">';
1153
+		$html .= geodir_get_rating_stars($post_avgratings, $post->ID);
1154
+		$html .= '<div class="average-review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">';
1155
+		$post_avgratings = (is_float($post_avgratings) || (strpos($post_avgratings, ".", 1) == 1 && strlen($post_avgratings) > 3)) ? number_format($post_avgratings, 1, '.', '') : $post_avgratings;
1156 1156
        
1157 1157
 	   $reviews_text = $comment_count > 1 ? __("reviews", 'geodirectory') : __("review", 'geodirectory');
1158 1158
 	   
1159 1159
 	   $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 />';
1160 1160
 
1161
-        $html .= '<span class="item">';
1162
-        $html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>';
1161
+		$html .= '<span class="item">';
1162
+		$html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>';
1163 1163
 
1164
-        if ($post_images) {
1165
-            foreach ($post_images as $img) {
1166
-                $post_img = $img->src;
1167
-                break;
1168
-            }
1169
-        }
1170
-
1171
-        if (isset($post_img) && $post_img) {
1172
-            $html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />';
1173
-        }
1174
-
1175
-        $html .= '</span>';
1176
-
1177
-        echo $html .= '</div>';
1178
-        /**
1179
-         * This is called after the rating html in the function geodir_detail_page_review_rating().
1180
-         *
1181
-         * This is called inside the check for an actual rating and the check for preview page.
1182
-         *
1183
-         * @since 1.0.0
1184
-         * @param float $post_avgratings Average rating for the surrent post.
1185
-         * @param int $post->ID Current post ID.
1186
-         */
1187
-        do_action('geodir_after_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1188
-    }
1189
-    /**
1190
-     * This is called before the rating html in the function geodir_detail_page_review_rating().
1191
-     *
1192
-     * This is called outside the check for an actual rating and the check for preview page.
1193
-     *
1194
-     * @since 1.0.0
1195
-     */
1196
-    do_action('geodir_after_detail_page_review_rating');
1197
-    $content_html = ob_get_clean();
1198
-    if (trim($content_html) != '') {
1199
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>';
1200
-    }
1201
-    if ((int)get_option('geodir_disable_rating_info_section') != 1) {
1202
-        /**
1203
-         * Filter the geodir_detail_page_review_rating() function content.
1204
-         *
1205
-         * @since 1.0.0
1206
-         * @param string $content_html The output html of the geodir_detail_page_review_rating() function.
1207
-         */
1208
-        echo $content_html = apply_filters('geodir_detail_page_review_rating_html', $content_html);
1209
-    }
1164
+		if ($post_images) {
1165
+			foreach ($post_images as $img) {
1166
+				$post_img = $img->src;
1167
+				break;
1168
+			}
1169
+		}
1170
+
1171
+		if (isset($post_img) && $post_img) {
1172
+			$html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />';
1173
+		}
1174
+
1175
+		$html .= '</span>';
1176
+
1177
+		echo $html .= '</div>';
1178
+		/**
1179
+		 * This is called after the rating html in the function geodir_detail_page_review_rating().
1180
+		 *
1181
+		 * This is called inside the check for an actual rating and the check for preview page.
1182
+		 *
1183
+		 * @since 1.0.0
1184
+		 * @param float $post_avgratings Average rating for the surrent post.
1185
+		 * @param int $post->ID Current post ID.
1186
+		 */
1187
+		do_action('geodir_after_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1188
+	}
1189
+	/**
1190
+	 * This is called before the rating html in the function geodir_detail_page_review_rating().
1191
+	 *
1192
+	 * This is called outside the check for an actual rating and the check for preview page.
1193
+	 *
1194
+	 * @since 1.0.0
1195
+	 */
1196
+	do_action('geodir_after_detail_page_review_rating');
1197
+	$content_html = ob_get_clean();
1198
+	if (trim($content_html) != '') {
1199
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>';
1200
+	}
1201
+	if ((int)get_option('geodir_disable_rating_info_section') != 1) {
1202
+		/**
1203
+		 * Filter the geodir_detail_page_review_rating() function content.
1204
+		 *
1205
+		 * @since 1.0.0
1206
+		 * @param string $content_html The output html of the geodir_detail_page_review_rating() function.
1207
+		 */
1208
+		echo $content_html = apply_filters('geodir_detail_page_review_rating_html', $content_html);
1209
+	}
1210 1210
 }
1211 1211
 
1212 1212
 /**
@@ -1218,35 +1218,35 @@  discard block
 block discarded – undo
1218 1218
  */
1219 1219
 function geodir_detail_page_more_info()
1220 1220
 {
1221
-    ob_start(); // Start  buffering;
1222
-    /**
1223
-     * This is called before the info section html.
1224
-     *
1225
-     * @since 1.0.0
1226
-     */
1227
-    do_action('geodir_before_detail_page_more_info');
1228
-    if ($geodir_post_detail_fields = geodir_show_listing_info('detail')) {
1229
-        echo $geodir_post_detail_fields;
1230
-    }
1231
-    /**
1232
-     * This is called after the info section html.
1233
-     *
1234
-     * @since 1.0.0
1235
-     */
1236
-    do_action('geodir_after_detail_page_more_info');
1237
-
1238
-    $content_html = ob_get_clean();
1239
-    if (trim($content_html) != '')
1240
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>';
1241
-    if ((int)get_option('geodir_disable_listing_info_section') != 1) {
1242
-        /**
1243
-         * Filter the output html for function geodir_detail_page_more_info().
1244
-         *
1245
-         * @since 1.0.0
1246
-         * @param string $content_html The output html of the geodir_detail_page_more_info() function.
1247
-         */
1248
-        echo $content_html = apply_filters('geodir_detail_page_more_info_html', $content_html);
1249
-    }
1221
+	ob_start(); // Start  buffering;
1222
+	/**
1223
+	 * This is called before the info section html.
1224
+	 *
1225
+	 * @since 1.0.0
1226
+	 */
1227
+	do_action('geodir_before_detail_page_more_info');
1228
+	if ($geodir_post_detail_fields = geodir_show_listing_info('detail')) {
1229
+		echo $geodir_post_detail_fields;
1230
+	}
1231
+	/**
1232
+	 * This is called after the info section html.
1233
+	 *
1234
+	 * @since 1.0.0
1235
+	 */
1236
+	do_action('geodir_after_detail_page_more_info');
1237
+
1238
+	$content_html = ob_get_clean();
1239
+	if (trim($content_html) != '')
1240
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>';
1241
+	if ((int)get_option('geodir_disable_listing_info_section') != 1) {
1242
+		/**
1243
+		 * Filter the output html for function geodir_detail_page_more_info().
1244
+		 *
1245
+		 * @since 1.0.0
1246
+		 * @param string $content_html The output html of the geodir_detail_page_more_info() function.
1247
+		 */
1248
+		echo $content_html = apply_filters('geodir_detail_page_more_info_html', $content_html);
1249
+	}
1250 1250
 }
1251 1251
 
1252 1252
 
@@ -1260,15 +1260,15 @@  discard block
 block discarded – undo
1260 1260
  */
1261 1261
 function geodir_localize_all_js_msg()
1262 1262
 {// 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
1263
-    if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1264
-        $ajax_url = admin_url('admin-ajax.php');
1265
-    } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1266
-        $ajax_url = admin_url('admin-ajax.php');
1267
-    } elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1268
-        $ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
1269
-    } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1270
-        $ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
1271
-    }
1263
+	if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1264
+		$ajax_url = admin_url('admin-ajax.php');
1265
+	} elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1266
+		$ajax_url = admin_url('admin-ajax.php');
1267
+	} elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1268
+		$ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
1269
+	} elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1270
+		$ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
1271
+	}
1272 1272
 	
1273 1273
 	/**
1274 1274
 	 * Filter the allowed image type extensions for post images.
@@ -1278,60 +1278,60 @@  discard block
 block discarded – undo
1278 1278
 	 */
1279 1279
 	$allowed_img_types = apply_filters('geodir_allowed_post_image_exts', array('jpg', 'jpeg', 'jpe', 'gif', 'png'));
1280 1280
 	
1281
-    $default_marker_icon = get_option('geodir_default_marker_icon');
1282
-    $default_marker_size = geodir_get_marker_size($default_marker_icon, array('w' => 20, 'h' => 34));
1283
-    $default_marker_width = $default_marker_size['w'];
1284
-    $default_marker_height = $default_marker_size['h'];
1281
+	$default_marker_icon = get_option('geodir_default_marker_icon');
1282
+	$default_marker_size = geodir_get_marker_size($default_marker_icon, array('w' => 20, 'h' => 34));
1283
+	$default_marker_width = $default_marker_size['w'];
1284
+	$default_marker_height = $default_marker_size['h'];
1285 1285
     
1286
-    $arr_alert_msg = array(
1287
-        'geodir_plugin_url' => geodir_plugin_url(),
1288
-        'geodir_admin_ajax_url' => $ajax_url,
1289
-        'custom_field_not_blank_var' => __('HTML Variable Name must not be blank', 'geodirectory'),
1290
-        'custom_field_not_special_char' => __('Please do not use special character and spaces in HTML Variable Name.', 'geodirectory'),
1291
-        'custom_field_unique_name' => __('HTML Variable Name should be a unique name.', 'geodirectory'),
1292
-        'custom_field_delete' => __('Are you wish to delete this field?', 'geodirectory'),
1293
-        //start not show alert msg
1294
-        'tax_meta_class_succ_del_msg' => __('File has been successfully deleted.', 'geodirectory'),
1295
-        'tax_meta_class_not_permission_to_del_msg' => __('You do NOT have permission to delete this file.', 'geodirectory'),
1296
-        'tax_meta_class_order_save_msg' => __('Order saved!', 'geodirectory'),
1297
-        'tax_meta_class_not_permission_record_img_msg' => __('You do not have permission to reorder images.', 'geodirectory'),
1298
-        'address_not_found_on_map_msg' => __('Address not found for:', 'geodirectory'),
1299
-        // end not show alert msg
1300
-        'my_place_listing_del' => __('Are you wish to delete this listing?', 'geodirectory'),
1301
-        'my_main_listing_del' => __('Deleting the main listing of a franchise will turn all franchises in regular listings. Are you sure wish to delete this main listing?', 'geodirectory'),
1302
-        //start not show alert msg
1303
-        'rating_error_msg' => __('Error : please retry', 'geodirectory'),
1304
-        'listing_url_prefix_msg' => __('Please enter listing url prefix', 'geodirectory'),
1305
-        'invalid_listing_prefix_msg' => __('Invalid character in listing url prefix', 'geodirectory'),
1306
-        'location_url_prefix_msg' => __('Please enter location url prefix', 'geodirectory'),
1307
-        'invalid_location_prefix_msg' => __('Invalid character in location url prefix', 'geodirectory'),
1308
-        'location_and_cat_url_separator_msg' => __('Please enter location and category url separator', 'geodirectory'),
1309
-        'invalid_char_and_cat_url_separator_msg' => __('Invalid character in location and category url separator', 'geodirectory'),
1310
-        'listing_det_url_separator_msg' => __('Please enter listing detail url separator', 'geodirectory'),
1311
-        'invalid_char_listing_det_url_separator_msg' => __('Invalid character in listing detail url separator', 'geodirectory'),
1312
-        'loading_listing_error_favorite' => __('Error loading listing.', 'geodirectory'),
1313
-        'geodir_field_id_required' => __('This field is required.', 'geodirectory'),
1314
-        'geodir_valid_email_address_msg' => __('Please enter valid email address.', 'geodirectory'),
1315
-        'geodir_default_marker_icon' => $default_marker_icon,
1316
-        'geodir_default_marker_w' => $default_marker_width,
1317
-        'geodir_default_marker_h' => $default_marker_height,
1318
-        'geodir_latitude_error_msg' => GEODIR_LATITUDE_ERROR_MSG,
1319
-        'geodir_longgitude_error_msg' => GEODIR_LOGNGITUDE_ERROR_MSG,
1320
-        'geodir_default_rating_star_icon' => get_option('geodir_default_rating_star_icon'),
1321
-        'gd_cmt_btn_post_reply' => __('Post Reply', 'geodirectory'),
1322
-        'gd_cmt_btn_reply_text' => __('Reply text', 'geodirectory'),
1323
-        'gd_cmt_btn_post_review' => __('Post Review', 'geodirectory'),
1324
-        'gd_cmt_btn_review_text' => __('Review text', 'geodirectory'),
1325
-        'gd_cmt_err_no_rating' => __("Please select star rating, you can't leave a review without stars.", 'geodirectory'),
1326
-        /* on/off dragging for phone devices */
1327
-        'geodir_onoff_dragging' => get_option('geodir_map_onoff_dragging') ? true : false,
1328
-        'geodir_is_mobile' => wp_is_mobile() ? true : false,
1329
-        'geodir_on_dragging_text' => __('Enable Dragging', 'geodirectory'),
1330
-        'geodir_off_dragging_text' => __('Disable Dragging', 'geodirectory'),
1331
-        'geodir_err_max_file_size' => __('File size error : You tried to upload a file over %s', 'geodirectory'),
1332
-        'geodir_err_file_upload_limit' => __('You have reached your upload limit of %s files.', 'geodirectory'),
1333
-        'geodir_err_pkg_upload_limit' => __('You may only upload %s files with this package, please try again.', 'geodirectory'),
1334
-        'geodir_action_remove' => __('Remove', 'geodirectory'),
1286
+	$arr_alert_msg = array(
1287
+		'geodir_plugin_url' => geodir_plugin_url(),
1288
+		'geodir_admin_ajax_url' => $ajax_url,
1289
+		'custom_field_not_blank_var' => __('HTML Variable Name must not be blank', 'geodirectory'),
1290
+		'custom_field_not_special_char' => __('Please do not use special character and spaces in HTML Variable Name.', 'geodirectory'),
1291
+		'custom_field_unique_name' => __('HTML Variable Name should be a unique name.', 'geodirectory'),
1292
+		'custom_field_delete' => __('Are you wish to delete this field?', 'geodirectory'),
1293
+		//start not show alert msg
1294
+		'tax_meta_class_succ_del_msg' => __('File has been successfully deleted.', 'geodirectory'),
1295
+		'tax_meta_class_not_permission_to_del_msg' => __('You do NOT have permission to delete this file.', 'geodirectory'),
1296
+		'tax_meta_class_order_save_msg' => __('Order saved!', 'geodirectory'),
1297
+		'tax_meta_class_not_permission_record_img_msg' => __('You do not have permission to reorder images.', 'geodirectory'),
1298
+		'address_not_found_on_map_msg' => __('Address not found for:', 'geodirectory'),
1299
+		// end not show alert msg
1300
+		'my_place_listing_del' => __('Are you wish to delete this listing?', 'geodirectory'),
1301
+		'my_main_listing_del' => __('Deleting the main listing of a franchise will turn all franchises in regular listings. Are you sure wish to delete this main listing?', 'geodirectory'),
1302
+		//start not show alert msg
1303
+		'rating_error_msg' => __('Error : please retry', 'geodirectory'),
1304
+		'listing_url_prefix_msg' => __('Please enter listing url prefix', 'geodirectory'),
1305
+		'invalid_listing_prefix_msg' => __('Invalid character in listing url prefix', 'geodirectory'),
1306
+		'location_url_prefix_msg' => __('Please enter location url prefix', 'geodirectory'),
1307
+		'invalid_location_prefix_msg' => __('Invalid character in location url prefix', 'geodirectory'),
1308
+		'location_and_cat_url_separator_msg' => __('Please enter location and category url separator', 'geodirectory'),
1309
+		'invalid_char_and_cat_url_separator_msg' => __('Invalid character in location and category url separator', 'geodirectory'),
1310
+		'listing_det_url_separator_msg' => __('Please enter listing detail url separator', 'geodirectory'),
1311
+		'invalid_char_listing_det_url_separator_msg' => __('Invalid character in listing detail url separator', 'geodirectory'),
1312
+		'loading_listing_error_favorite' => __('Error loading listing.', 'geodirectory'),
1313
+		'geodir_field_id_required' => __('This field is required.', 'geodirectory'),
1314
+		'geodir_valid_email_address_msg' => __('Please enter valid email address.', 'geodirectory'),
1315
+		'geodir_default_marker_icon' => $default_marker_icon,
1316
+		'geodir_default_marker_w' => $default_marker_width,
1317
+		'geodir_default_marker_h' => $default_marker_height,
1318
+		'geodir_latitude_error_msg' => GEODIR_LATITUDE_ERROR_MSG,
1319
+		'geodir_longgitude_error_msg' => GEODIR_LOGNGITUDE_ERROR_MSG,
1320
+		'geodir_default_rating_star_icon' => get_option('geodir_default_rating_star_icon'),
1321
+		'gd_cmt_btn_post_reply' => __('Post Reply', 'geodirectory'),
1322
+		'gd_cmt_btn_reply_text' => __('Reply text', 'geodirectory'),
1323
+		'gd_cmt_btn_post_review' => __('Post Review', 'geodirectory'),
1324
+		'gd_cmt_btn_review_text' => __('Review text', 'geodirectory'),
1325
+		'gd_cmt_err_no_rating' => __("Please select star rating, you can't leave a review without stars.", 'geodirectory'),
1326
+		/* on/off dragging for phone devices */
1327
+		'geodir_onoff_dragging' => get_option('geodir_map_onoff_dragging') ? true : false,
1328
+		'geodir_is_mobile' => wp_is_mobile() ? true : false,
1329
+		'geodir_on_dragging_text' => __('Enable Dragging', 'geodirectory'),
1330
+		'geodir_off_dragging_text' => __('Disable Dragging', 'geodirectory'),
1331
+		'geodir_err_max_file_size' => __('File size error : You tried to upload a file over %s', 'geodirectory'),
1332
+		'geodir_err_file_upload_limit' => __('You have reached your upload limit of %s files.', 'geodirectory'),
1333
+		'geodir_err_pkg_upload_limit' => __('You may only upload %s files with this package, please try again.', 'geodirectory'),
1334
+		'geodir_action_remove' => __('Remove', 'geodirectory'),
1335 1335
 		'geodir_txt_all_files' => __('Allowed files', 'geodirectory'),
1336 1336
 		'geodir_err_file_type' => __('File type error. Allowed file types: %s', 'geodirectory'),
1337 1337
 		'gd_allowed_img_types' => !empty($allowed_img_types) ? implode(',', $allowed_img_types) : '',
@@ -1339,32 +1339,32 @@  discard block
 block discarded – undo
1339 1339
 		'geodir_txt_form_searching' => __('Searching...', 'geodirectory'),
1340 1340
 		'fa_rating' => (int)get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
1341 1341
 		'reviewrating' => defined('GEODIRREVIEWRATING_VERSION') ? 1 : '',
1342
-        'geodir_map_name' => geodir_map_name(),
1343
-        'osmStart' => __('Start', 'geodirectory'),
1344
-        'osmVia' => __('Via {viaNumber}', 'geodirectory'),
1345
-        'osmEnd' => __('Enter Your Location', 'geodirectory'),
1346
-    );
1347
-
1348
-    /**
1349
-     * Filters the translated JS strings from function geodir_localize_all_js_msg().
1350
-     *
1351
-     * With this filter you can add, remove or change translated JS strings.
1352
-     * You should add your own translations to this if you are building an addon rather than adding another script block.
1353
-     *
1354
-     * @since 1.0.0
1355
-     */
1356
-    $arr_alert_msg = apply_filters('geodir_all_js_msg', $arr_alert_msg);
1357
-
1358
-    foreach ($arr_alert_msg as $key => $value) {
1359
-        if (!is_scalar($value))
1360
-            continue;
1361
-        $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8');
1362
-    }
1342
+		'geodir_map_name' => geodir_map_name(),
1343
+		'osmStart' => __('Start', 'geodirectory'),
1344
+		'osmVia' => __('Via {viaNumber}', 'geodirectory'),
1345
+		'osmEnd' => __('Enter Your Location', 'geodirectory'),
1346
+	);
1363 1347
 
1364
-    $script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';';
1365
-    echo '<script>';
1366
-    echo $script;
1367
-    echo '</script>';
1348
+	/**
1349
+	 * Filters the translated JS strings from function geodir_localize_all_js_msg().
1350
+	 *
1351
+	 * With this filter you can add, remove or change translated JS strings.
1352
+	 * You should add your own translations to this if you are building an addon rather than adding another script block.
1353
+	 *
1354
+	 * @since 1.0.0
1355
+	 */
1356
+	$arr_alert_msg = apply_filters('geodir_all_js_msg', $arr_alert_msg);
1357
+
1358
+	foreach ($arr_alert_msg as $key => $value) {
1359
+		if (!is_scalar($value))
1360
+			continue;
1361
+		$arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8');
1362
+	}
1363
+
1364
+	$script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';';
1365
+	echo '<script>';
1366
+	echo $script;
1367
+	echo '</script>';
1368 1368
 }
1369 1369
 
1370 1370
 add_action('admin_bar_menu', 'geodir_admin_bar_site_menu', 31);
@@ -1380,11 +1380,11 @@  discard block
 block discarded – undo
1380 1380
  */
1381 1381
 function geodir_admin_bar_site_menu($wp_admin_bar)
1382 1382
 {
1383
-    if (get_option("geodir_installed")) {
1384
-        if (current_user_can('manage_options')) {
1385
-            $wp_admin_bar->add_menu(array('parent' => 'appearance', 'id' => 'geodirectory', 'title' => __('GeoDirectory', 'geodirectory'), 'href' => admin_url('?page=geodirectory')));
1386
-        }
1387
-    }
1383
+	if (get_option("geodir_installed")) {
1384
+		if (current_user_can('manage_options')) {
1385
+			$wp_admin_bar->add_menu(array('parent' => 'appearance', 'id' => 'geodirectory', 'title' => __('GeoDirectory', 'geodirectory'), 'href' => admin_url('?page=geodirectory')));
1386
+		}
1387
+	}
1388 1388
 }
1389 1389
 
1390 1390
 add_action('geodir_before_listing', 'geodir_display_sort_options'); /*function in custom_functions.php*/
@@ -1410,25 +1410,25 @@  discard block
 block discarded – undo
1410 1410
  */
1411 1411
 function geodir_store_sidebars()
1412 1412
 {
1413
-    global $geodir_sidebars;
1414
-    global $sidebars_widgets;
1415
-
1416
-    if (!is_array($sidebars_widgets))
1417
-        $sidebars_widgets = wp_get_sidebars_widgets();
1418
-    $geodir_old_sidebars = array();
1419
-
1420
-    if (is_array($geodir_sidebars)) {
1421
-        foreach ($geodir_sidebars as $val) {
1422
-            if (is_array($sidebars_widgets)) {
1423
-                if (array_key_exists($val, $sidebars_widgets))
1424
-                    $geodir_old_sidebars[$val] = $sidebars_widgets[$val];
1425
-                else
1426
-                    $geodir_old_sidebars[$val] = array();
1427
-            }
1428
-        }
1429
-    }
1430
-    update_option('geodir_sidebars', $geodir_old_sidebars);
1431
-    geodir_option_version_backup('geodir_sidebars');
1413
+	global $geodir_sidebars;
1414
+	global $sidebars_widgets;
1415
+
1416
+	if (!is_array($sidebars_widgets))
1417
+		$sidebars_widgets = wp_get_sidebars_widgets();
1418
+	$geodir_old_sidebars = array();
1419
+
1420
+	if (is_array($geodir_sidebars)) {
1421
+		foreach ($geodir_sidebars as $val) {
1422
+			if (is_array($sidebars_widgets)) {
1423
+				if (array_key_exists($val, $sidebars_widgets))
1424
+					$geodir_old_sidebars[$val] = $sidebars_widgets[$val];
1425
+				else
1426
+					$geodir_old_sidebars[$val] = array();
1427
+			}
1428
+		}
1429
+	}
1430
+	update_option('geodir_sidebars', $geodir_old_sidebars);
1431
+	geodir_option_version_backup('geodir_sidebars');
1432 1432
 
1433 1433
 }
1434 1434
 
@@ -1442,28 +1442,28 @@  discard block
 block discarded – undo
1442 1442
  */
1443 1443
 function geodir_restore_sidebars()
1444 1444
 {
1445
-    global $sidebars_widgets;
1446
-
1447
-    if (!is_array($sidebars_widgets))
1448
-        $sidebars_widgets = wp_get_sidebars_widgets();
1449
-
1450
-    if (is_array($sidebars_widgets)) {
1451
-        $geodir_old_sidebars = get_option('geodir_sidebars');
1452
-        if (is_array($geodir_old_sidebars)) {
1453
-            foreach ($geodir_old_sidebars as $key => $val) {
1454
-                if(0 === strpos($key, 'geodir_'))// if gd widget
1455
-                {
1456
-                    $sidebars_widgets[$key] = $geodir_old_sidebars[$key];
1457
-                }
1445
+	global $sidebars_widgets;
1458 1446
 
1447
+	if (!is_array($sidebars_widgets))
1448
+		$sidebars_widgets = wp_get_sidebars_widgets();
1459 1449
 
1460
-            }
1461
-        }
1450
+	if (is_array($sidebars_widgets)) {
1451
+		$geodir_old_sidebars = get_option('geodir_sidebars');
1452
+		if (is_array($geodir_old_sidebars)) {
1453
+			foreach ($geodir_old_sidebars as $key => $val) {
1454
+				if(0 === strpos($key, 'geodir_'))// if gd widget
1455
+				{
1456
+					$sidebars_widgets[$key] = $geodir_old_sidebars[$key];
1457
+				}
1462 1458
 
1463
-    }
1464 1459
 
1465
-    update_option('sidebars_widgets', $sidebars_widgets);
1466
-    update_option('geodir_sidebars', '');
1460
+			}
1461
+		}
1462
+
1463
+	}
1464
+
1465
+	update_option('sidebars_widgets', $sidebars_widgets);
1466
+	update_option('geodir_sidebars', '');
1467 1467
 }
1468 1468
 
1469 1469
 add_action('geodir_after_listing_post_gridview', 'geodir_after_listing_post_gridview');
@@ -1476,9 +1476,9 @@  discard block
 block discarded – undo
1476 1476
  */
1477 1477
 function geodir_after_listing_post_gridview()
1478 1478
 {
1479
-    global $gridview_columns;
1479
+	global $gridview_columns;
1480 1480
 
1481
-    $gridview_columns = '';
1481
+	$gridview_columns = '';
1482 1482
 
1483 1483
 }
1484 1484
 
@@ -1506,11 +1506,11 @@  discard block
 block discarded – undo
1506 1506
  */
1507 1507
 function so_handle_038($url, $original_url, $_context)
1508 1508
 {
1509
-    if (strstr($url, "maps.google.com/maps/api/js") !== false) {
1510
-        $url = str_replace("&#038;", "&amp;", $url); // or $url = $original_url
1511
-    }
1509
+	if (strstr($url, "maps.google.com/maps/api/js") !== false) {
1510
+		$url = str_replace("&#038;", "&amp;", $url); // or $url = $original_url
1511
+	}
1512 1512
 
1513
-    return $url;
1513
+	return $url;
1514 1514
 }
1515 1515
 
1516 1516
 
@@ -1526,34 +1526,34 @@  discard block
 block discarded – undo
1526 1526
 function geodir_after_main_form_fields() {
1527 1527
 	global $gd_session;
1528 1528
 	
1529
-    if (get_option('geodir_accept_term_condition')) {
1530
-        global $post;
1531
-        $term_condition = '';
1532
-        if (isset($_REQUEST['backandedit'])) {
1533
-            $post = (object)$gd_session->get('listing');
1534
-            $term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : '';
1535
-        }
1536
-
1537
-        ?>
1529
+	if (get_option('geodir_accept_term_condition')) {
1530
+		global $post;
1531
+		$term_condition = '';
1532
+		if (isset($_REQUEST['backandedit'])) {
1533
+			$post = (object)$gd_session->get('listing');
1534
+			$term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : '';
1535
+		}
1536
+
1537
+		?>
1538 1538
         <div id="geodir_accept_term_condition_row" class="required_field geodir_form_row clearfix">
1539 1539
             <label>&nbsp;</label>
1540 1540
 
1541 1541
             <div class="geodir_taxonomy_field" style="float:left; width:70%;">
1542 1542
 				<span style="display:block"> 
1543 1543
 				<input class="main_list_selecter" type="checkbox" <?php if ($term_condition == '1') {
1544
-                    echo 'checked="checked"';
1545
-                } ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition"
1544
+					echo 'checked="checked"';
1545
+				} ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition"
1546 1546
                        class="geodir_textfield" value="1"
1547 1547
                        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>
1548 1548
 				</span>
1549 1549
             </div>
1550 1550
             <span class="geodir_message_error"><?php if (isset($required_msg)) {
1551
-                    _e($required_msg, 'geodirectory');
1552
-                } ?></span>
1551
+					_e($required_msg, 'geodirectory');
1552
+				} ?></span>
1553 1553
         </div>
1554 1554
     <?php
1555 1555
 
1556
-    }
1556
+	}
1557 1557
 }
1558 1558
 
1559 1559
 
@@ -1578,42 +1578,42 @@  discard block
 block discarded – undo
1578 1578
  */
1579 1579
 function geodir_detail_page_tab_is_display($is_display, $tab)
1580 1580
 {
1581
-    global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields;
1581
+	global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields;
1582 1582
 
1583
-    if ($tab == 'post_profile') {
1584
-        /** This action is documented in geodirectory_template_actions.php */
1585
-        $desc_limit = apply_filters('geodir_description_field_desc_limit', '');
1583
+	if ($tab == 'post_profile') {
1584
+		/** This action is documented in geodirectory_template_actions.php */
1585
+		$desc_limit = apply_filters('geodir_description_field_desc_limit', '');
1586 1586
         
1587
-        if (!($desc_limit === '' || (int)$desc_limit > 0)) {
1588
-            $is_display = false;
1589
-        }
1590
-    }
1587
+		if (!($desc_limit === '' || (int)$desc_limit > 0)) {
1588
+			$is_display = false;
1589
+		}
1590
+	}
1591 1591
     
1592
-    if ($tab == 'post_info')
1593
-        $is_display = (!empty($geodir_post_detail_fields)) ? true : false;
1592
+	if ($tab == 'post_info')
1593
+		$is_display = (!empty($geodir_post_detail_fields)) ? true : false;
1594 1594
     
1595
-    if ($tab == 'post_images')
1596
-        $is_display = (!empty($post_images)) ? true : false;
1595
+	if ($tab == 'post_images')
1596
+		$is_display = (!empty($post_images)) ? true : false;
1597 1597
 
1598
-    if ($tab == 'post_video')
1599
-        $is_display = (!empty($video)) ? true : false;
1598
+	if ($tab == 'post_video')
1599
+		$is_display = (!empty($video)) ? true : false;
1600 1600
 
1601
-    if ($tab == 'special_offers')
1602
-        $is_display = (!empty($special_offers)) ? true : false;
1601
+	if ($tab == 'special_offers')
1602
+		$is_display = (!empty($special_offers)) ? true : false;
1603 1603
 
1604
-    if ($tab == 'reviews')
1605
-        $is_display = (geodir_is_page('detail')) ? true : false;
1604
+	if ($tab == 'reviews')
1605
+		$is_display = (geodir_is_page('detail')) ? true : false;
1606 1606
 
1607
-    if ($tab == 'related_listing') {
1608
-       $message = __('No listings found which match your selection.', 'geodirectory');
1607
+	if ($tab == 'related_listing') {
1608
+	   $message = __('No listings found which match your selection.', 'geodirectory');
1609 1609
        
1610
-       /** This action is documented in geodirectory-functions/template_functions.php */
1611
-       $message = apply_filters('geodir_message_listing_not_found', $message, 'listing-listview', false);
1610
+	   /** This action is documented in geodirectory-functions/template_functions.php */
1611
+	   $message = apply_filters('geodir_message_listing_not_found', $message, 'listing-listview', false);
1612 1612
        
1613
-       $is_display = ((strpos($related_listing, $message) !== false || $related_listing == '' || !geodir_is_page('detail'))) ? false : true;
1614
-    }
1613
+	   $is_display = ((strpos($related_listing, $message) !== false || $related_listing == '' || !geodir_is_page('detail'))) ? false : true;
1614
+	}
1615 1615
 
1616
-    return $is_display;
1616
+	return $is_display;
1617 1617
 }
1618 1618
 
1619 1619
 
@@ -1629,69 +1629,69 @@  discard block
 block discarded – undo
1629 1629
  * @global string $plugin_prefix Geodirectory plugin table prefix.
1630 1630
  */
1631 1631
 function geodir_changes_in_custom_fields_table() {
1632
-    global $wpdb, $plugin_prefix;
1632
+	global $wpdb, $plugin_prefix;
1633 1633
 	
1634 1634
 	// Remove unused virtual page
1635 1635
 	$listings_page_id = (int)get_option('geodir_listing_page');
1636 1636
 	if ($listings_page_id) {
1637 1637
 		$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')));
1638
-        delete_option('geodir_listing_page');
1638
+		delete_option('geodir_listing_page');
1639 1639
 	}
1640 1640
 
1641
-    if (!get_option('geodir_changes_in_custom_fields_table')) {
1642
-        $wpdb->query(
1643
-            $wpdb->prepare(
1644
-                "UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s",
1645
-                array('1', '1', 'admin')
1646
-            )
1647
-        );
1641
+	if (!get_option('geodir_changes_in_custom_fields_table')) {
1642
+		$wpdb->query(
1643
+			$wpdb->prepare(
1644
+				"UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s",
1645
+				array('1', '1', 'admin')
1646
+			)
1647
+		);
1648 1648
 
1649 1649
 
1650
-        /* --- terms meta value set --- */
1650
+		/* --- terms meta value set --- */
1651 1651
 
1652
-        update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
1652
+		update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
1653 1653
 
1654
-        $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
1654
+		$options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
1655 1655
 
1656
-        if (!empty($options_data)) {
1656
+		if (!empty($options_data)) {
1657 1657
 
1658
-            foreach ($options_data as $optobj) {
1658
+			foreach ($options_data as $optobj) {
1659 1659
 
1660
-                $option_val = str_replace('tax_meta_', '', $optobj->option_name);
1660
+				$option_val = str_replace('tax_meta_', '', $optobj->option_name);
1661 1661
 
1662
-                $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)));
1662
+				$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)));
1663 1663
 
1664
-                if (!empty($taxonomies_data)) {
1664
+				if (!empty($taxonomies_data)) {
1665 1665
 
1666
-                    foreach ($taxonomies_data as $taxobj) {
1666
+					foreach ($taxonomies_data as $taxobj) {
1667 1667
 
1668
-                        $taxObject = get_taxonomy($taxobj->taxonomy);
1669
-                        $post_type = $taxObject->object_type[0];
1668
+						$taxObject = get_taxonomy($taxobj->taxonomy);
1669
+						$post_type = $taxObject->object_type[0];
1670 1670
 
1671
-                        $opt_value = 'tax_meta_' . $post_type . '_' . $option_val;
1671
+						$opt_value = 'tax_meta_' . $post_type . '_' . $option_val;
1672 1672
 
1673
-                        $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
1673
+						$duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
1674 1674
 
1675
-                        if ($duplicate_data) {
1675
+						if ($duplicate_data) {
1676 1676
 
1677
-                            $wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET	option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
1677
+							$wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET	option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
1678 1678
 
1679
-                        } else {
1679
+						} else {
1680 1680
 
1681
-                            $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)));
1681
+							$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)));
1682 1682
 
1683
-                        }
1683
+						}
1684 1684
 
1685
-                    }
1685
+					}
1686 1686
 
1687
-                }
1687
+				}
1688 1688
 
1689
-            }
1690
-        }
1689
+			}
1690
+		}
1691 1691
 
1692
-        update_option('geodir_changes_in_custom_fields_table', '1');
1692
+		update_option('geodir_changes_in_custom_fields_table', '1');
1693 1693
 
1694
-    }
1694
+	}
1695 1695
 
1696 1696
 }
1697 1697
 
@@ -1710,24 +1710,24 @@  discard block
 block discarded – undo
1710 1710
 function geodir_location_slug_check($slug)
1711 1711
 {
1712 1712
 
1713
-    global $wpdb, $table_prefix;
1713
+	global $wpdb, $table_prefix;
1714 1714
 
1715
-    $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
1715
+	$slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
1716 1716
 
1717
-    if ($slug_exists) {
1717
+	if ($slug_exists) {
1718 1718
 
1719
-        $suffix = 1;
1720
-        do {
1721
-            $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1722
-            $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
1723
-            $suffix++;
1724
-        } while ($location_slug_check && $suffix < 100);
1719
+		$suffix = 1;
1720
+		do {
1721
+			$alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1722
+			$location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
1723
+			$suffix++;
1724
+		} while ($location_slug_check && $suffix < 100);
1725 1725
 
1726
-        $slug = $alt_location_name;
1726
+		$slug = $alt_location_name;
1727 1727
 
1728
-    }
1728
+	}
1729 1729
 
1730
-    return $slug;
1730
+	return $slug;
1731 1731
 
1732 1732
 }
1733 1733
 
@@ -1752,42 +1752,42 @@  discard block
 block discarded – undo
1752 1752
 function geodir_update_term_slug($term_id, $tt_id, $taxonomy)
1753 1753
 {
1754 1754
 
1755
-    global $wpdb, $plugin_prefix, $table_prefix;
1755
+	global $wpdb, $plugin_prefix, $table_prefix;
1756 1756
 
1757
-    $tern_data = get_term_by('id', $term_id, $taxonomy);
1757
+	$tern_data = get_term_by('id', $term_id, $taxonomy);
1758 1758
 
1759
-    $slug = $tern_data->slug;
1759
+	$slug = $tern_data->slug;
1760 1760
 
1761
-    /**
1762
-     * Filter if a term slug exists.
1763
-     *
1764
-     * @since 1.0.0
1765
-     * @package GeoDirectory
1766
-     * @param bool $bool Default: false.
1767
-     * @param string $slug The term slug.
1768
-     * @param int $term_id The term ID.
1769
-     */
1770
-    $slug_exists = apply_filters('geodir_term_slug_is_exists', false, $slug, $term_id);
1761
+	/**
1762
+	 * Filter if a term slug exists.
1763
+	 *
1764
+	 * @since 1.0.0
1765
+	 * @package GeoDirectory
1766
+	 * @param bool $bool Default: false.
1767
+	 * @param string $slug The term slug.
1768
+	 * @param int $term_id The term ID.
1769
+	 */
1770
+	$slug_exists = apply_filters('geodir_term_slug_is_exists', false, $slug, $term_id);
1771 1771
 
1772
-    if ($slug_exists) {
1772
+	if ($slug_exists) {
1773 1773
 
1774
-        $suffix = 1;
1775
-        do {
1776
-            $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1774
+		$suffix = 1;
1775
+		do {
1776
+			$new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1777 1777
 
1778
-            /** This action is documented in geodirectory_hooks_actions.php */
1779
-            $term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
1778
+			/** This action is documented in geodirectory_hooks_actions.php */
1779
+			$term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
1780 1780
 
1781
-            $suffix++;
1782
-        } while ($term_slug_check && $suffix < 100);
1781
+			$suffix++;
1782
+		} while ($term_slug_check && $suffix < 100);
1783 1783
 
1784
-        $slug = $new_slug;
1784
+		$slug = $new_slug;
1785 1785
 
1786
-        //wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
1786
+		//wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
1787 1787
 
1788
-        $wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
1788
+		$wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
1789 1789
 
1790
-    }
1790
+	}
1791 1791
 	
1792 1792
 	// Update tag in detail table.
1793 1793
 	$taxonomy_obj = get_taxonomy($taxonomy);
@@ -1828,21 +1828,21 @@  discard block
 block discarded – undo
1828 1828
 function geodir_term_slug_is_exists($slug_exists, $slug, $term_id)
1829 1829
 {
1830 1830
 
1831
-    global $wpdb, $table_prefix;
1831
+	global $wpdb, $table_prefix;
1832 1832
 
1833
-    $default_location = geodir_get_default_location();
1833
+	$default_location = geodir_get_default_location();
1834 1834
 
1835
-    $country_slug = $default_location->country_slug;
1836
-    $region_slug = $default_location->region_slug;
1837
-    $city_slug = $default_location->city_slug;
1835
+	$country_slug = $default_location->country_slug;
1836
+	$region_slug = $default_location->region_slug;
1837
+	$city_slug = $default_location->city_slug;
1838 1838
 
1839
-    if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug)
1840
-        return $slug_exists = true;
1839
+	if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug)
1840
+		return $slug_exists = true;
1841 1841
 
1842
-    if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
1843
-        return $slug_exists = true;
1842
+	if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
1843
+		return $slug_exists = true;
1844 1844
 
1845
-    return $slug_exists;
1845
+	return $slug_exists;
1846 1846
 }
1847 1847
 
1848 1848
 
@@ -1861,75 +1861,75 @@  discard block
 block discarded – undo
1861 1861
  */
1862 1862
 function geodir_custom_page_title($title = '', $sep = '')
1863 1863
 {
1864
-    global $wp;
1865
-    if (class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) {
1866
-        return $title;
1867
-    }
1864
+	global $wp;
1865
+	if (class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) {
1866
+		return $title;
1867
+	}
1868 1868
 
1869
-    if ($sep == '') {
1870
-        /**
1871
-         * Filter the page title separator.
1872
-         *
1873
-         * @since 1.0.0
1874
-         * @package GeoDirectory
1875
-         * @param string $sep The separator, default: `|`.
1876
-         */
1877
-        $sep = apply_filters('geodir_page_title_separator', '|');
1878
-    }
1869
+	if ($sep == '') {
1870
+		/**
1871
+		 * Filter the page title separator.
1872
+		 *
1873
+		 * @since 1.0.0
1874
+		 * @package GeoDirectory
1875
+		 * @param string $sep The separator, default: `|`.
1876
+		 */
1877
+		$sep = apply_filters('geodir_page_title_separator', '|');
1878
+	}
1879 1879
 
1880 1880
 
1881
-    $gd_page = '';
1882
-    if(geodir_is_page('home')){
1883
-        $gd_page = 'home';
1884
-        $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
1885
-    }
1886
-    elseif(geodir_is_page('detail')){
1887
-        $gd_page = 'detail';
1888
-        $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
1889
-    }
1890
-    elseif(geodir_is_page('pt')){
1891
-        $gd_page = 'pt';
1892
-        $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
1893
-    }
1894
-    elseif(geodir_is_page('listing')){
1895
-        $gd_page = 'listing';
1896
-        $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
1897
-    }
1898
-    elseif(geodir_is_page('location')){
1899
-        $gd_page = 'location';
1900
-        $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
1901
-    }
1902
-    elseif(geodir_is_page('search')){
1903
-        $gd_page = 'search';
1904
-        $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
1905
-    }
1906
-    elseif(geodir_is_page('add-listing')){
1907
-        $gd_page = 'add-listing';
1908
-        $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
1909
-    }
1910
-    elseif(geodir_is_page('author')){
1911
-        $gd_page = 'author';
1912
-        $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
1913
-    }
1914
-    elseif(geodir_is_page('login')){
1915
-        $gd_page = 'login';
1916
-        $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
1917
-    }
1918
-    elseif(geodir_is_page('listing-success')){
1919
-        $gd_page = 'listing-success';
1920
-        $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
1921
-    }
1881
+	$gd_page = '';
1882
+	if(geodir_is_page('home')){
1883
+		$gd_page = 'home';
1884
+		$title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
1885
+	}
1886
+	elseif(geodir_is_page('detail')){
1887
+		$gd_page = 'detail';
1888
+		$title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
1889
+	}
1890
+	elseif(geodir_is_page('pt')){
1891
+		$gd_page = 'pt';
1892
+		$title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
1893
+	}
1894
+	elseif(geodir_is_page('listing')){
1895
+		$gd_page = 'listing';
1896
+		$title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
1897
+	}
1898
+	elseif(geodir_is_page('location')){
1899
+		$gd_page = 'location';
1900
+		$title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
1901
+	}
1902
+	elseif(geodir_is_page('search')){
1903
+		$gd_page = 'search';
1904
+		$title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
1905
+	}
1906
+	elseif(geodir_is_page('add-listing')){
1907
+		$gd_page = 'add-listing';
1908
+		$title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
1909
+	}
1910
+	elseif(geodir_is_page('author')){
1911
+		$gd_page = 'author';
1912
+		$title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
1913
+	}
1914
+	elseif(geodir_is_page('login')){
1915
+		$gd_page = 'login';
1916
+		$title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
1917
+	}
1918
+	elseif(geodir_is_page('listing-success')){
1919
+		$gd_page = 'listing-success';
1920
+		$title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
1921
+	}
1922 1922
 
1923 1923
 
1924
-    /**
1925
-     * Filter page meta title to replace variables.
1926
-     *
1927
-     * @since 1.5.4
1928
-     * @param string $title The page title including variables.
1929
-     * @param string $gd_page The GeoDirectory page type if any.
1930
-     * @param string $sep The title separator symbol.
1931
-     */
1932
-    return apply_filters('geodir_seo_meta_title', __($title, 'geodirectory'), $gd_page, $sep);
1924
+	/**
1925
+	 * Filter page meta title to replace variables.
1926
+	 *
1927
+	 * @since 1.5.4
1928
+	 * @param string $title The page title including variables.
1929
+	 * @param string $gd_page The GeoDirectory page type if any.
1930
+	 * @param string $sep The title separator symbol.
1931
+	 */
1932
+	return apply_filters('geodir_seo_meta_title', __($title, 'geodirectory'), $gd_page, $sep);
1933 1933
 
1934 1934
 }
1935 1935
 
@@ -1945,36 +1945,36 @@  discard block
 block discarded – undo
1945 1945
 function geodir_set_post_attachment()
1946 1946
 {
1947 1947
 
1948
-    if (!get_option('geodir_set_post_attachments')) {
1948
+	if (!get_option('geodir_set_post_attachments')) {
1949 1949
 
1950
-        require_once(ABSPATH . 'wp-admin/includes/image.php');
1951
-        require_once(ABSPATH . 'wp-admin/includes/file.php');
1950
+		require_once(ABSPATH . 'wp-admin/includes/image.php');
1951
+		require_once(ABSPATH . 'wp-admin/includes/file.php');
1952 1952
 
1953
-        $all_postypes = geodir_get_posttypes();
1953
+		$all_postypes = geodir_get_posttypes();
1954 1954
 
1955
-        foreach($all_postypes as $post_type){
1956
-            $args = array(
1957
-                'posts_per_page' => -1,
1958
-                'post_type' => $post_type,
1959
-                'post_status' => 'publish');
1955
+		foreach($all_postypes as $post_type){
1956
+			$args = array(
1957
+				'posts_per_page' => -1,
1958
+				'post_type' => $post_type,
1959
+				'post_status' => 'publish');
1960 1960
 
1961
-            $posts_array = get_posts($args);
1961
+			$posts_array = get_posts($args);
1962 1962
 
1963
-            if (!empty($posts_array)) {
1963
+			if (!empty($posts_array)) {
1964 1964
 
1965
-                foreach ($posts_array as $post) {
1965
+				foreach ($posts_array as $post) {
1966 1966
 
1967
-                    geodir_set_wp_featured_image($post->ID);
1967
+					geodir_set_wp_featured_image($post->ID);
1968 1968
 
1969
-                }
1969
+				}
1970 1970
 
1971
-            }
1972
-        }
1971
+			}
1972
+		}
1973 1973
 
1974 1974
 
1975
-        update_option('geodir_set_post_attachments', '1');
1975
+		update_option('geodir_set_post_attachments', '1');
1976 1976
 
1977
-    }
1977
+	}
1978 1978
 
1979 1979
 }
1980 1980
 
@@ -1991,19 +1991,19 @@  discard block
 block discarded – undo
1991 1991
 function geodir_remove_url_seperator()
1992 1992
 {
1993 1993
 
1994
-    if (!get_option('geodir_remove_url_seperator')) {
1994
+	if (!get_option('geodir_remove_url_seperator')) {
1995 1995
 
1996
-        if (get_option('geodir_listingurl_separator'))
1997
-            delete_option('geodir_listingurl_separator');
1996
+		if (get_option('geodir_listingurl_separator'))
1997
+			delete_option('geodir_listingurl_separator');
1998 1998
 
1999
-        if (get_option('geodir_detailurl_separator'))
2000
-            delete_option('geodir_detailurl_separator');
1999
+		if (get_option('geodir_detailurl_separator'))
2000
+			delete_option('geodir_detailurl_separator');
2001 2001
 
2002
-        flush_rewrite_rules(false);
2002
+		flush_rewrite_rules(false);
2003 2003
 
2004
-        update_option('geodir_remove_url_seperator', '1');
2004
+		update_option('geodir_remove_url_seperator', '1');
2005 2005
 
2006
-    }
2006
+	}
2007 2007
 
2008 2008
 }
2009 2009
 
@@ -2019,19 +2019,19 @@  discard block
 block discarded – undo
2019 2019
  */
2020 2020
 function geodir_remove_url_seperator_form_permalink_settings($permalink_arr)
2021 2021
 {
2022
-    foreach ($permalink_arr as $key => $value) {
2022
+	foreach ($permalink_arr as $key => $value) {
2023 2023
 
2024
-        if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator')
2025
-            unset($permalink_arr[$key]);
2024
+		if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator')
2025
+			unset($permalink_arr[$key]);
2026 2026
 
2027
-    }
2027
+	}
2028 2028
 
2029
-    return $permalink_arr;
2029
+	return $permalink_arr;
2030 2030
 
2031 2031
 }
2032 2032
 
2033 2033
 if (!is_admin()) {
2034
-    add_filter('posts_results', 'geodir_set_status_draft_to_publish_for_own_post');
2034
+	add_filter('posts_results', 'geodir_set_status_draft_to_publish_for_own_post');
2035 2035
 }
2036 2036
 /**
2037 2037
  * Set status from draft to publish.
@@ -2044,16 +2044,16 @@  discard block
 block discarded – undo
2044 2044
  */
2045 2045
 function geodir_set_status_draft_to_publish_for_own_post($post)
2046 2046
 {
2047
-    $user_id = get_current_user_id();
2047
+	$user_id = get_current_user_id();
2048 2048
 
2049
-    if(!$user_id){return $post;}
2049
+	if(!$user_id){return $post;}
2050 2050
 
2051
-    $gd_post_types = geodir_get_posttypes();
2051
+	$gd_post_types = geodir_get_posttypes();
2052 2052
 
2053
-    if (!empty($post) && $post[0]->post_author == $user_id && in_array($post[0]->post_type, $gd_post_types) && !isset($_REQUEST['fl_builder'])) {
2054
-        $post[0]->post_status = 'publish';
2055
-    }
2056
-    return $post;
2053
+	if (!empty($post) && $post[0]->post_author == $user_id && in_array($post[0]->post_type, $gd_post_types) && !isset($_REQUEST['fl_builder'])) {
2054
+		$post[0]->post_status = 'publish';
2055
+	}
2056
+	return $post;
2057 2057
 }
2058 2058
 
2059 2059
 
@@ -2145,33 +2145,33 @@  discard block
 block discarded – undo
2145 2145
  */
2146 2146
 function geodir_detail_page_tab_headings_change($tabs_arr)
2147 2147
 {
2148
-    global $wpdb;
2148
+	global $wpdb;
2149 2149
 
2150
-    $post_type = geodir_get_current_posttype();
2150
+	$post_type = geodir_get_current_posttype();
2151 2151
 
2152
-    $all_postypes = geodir_get_posttypes();
2152
+	$all_postypes = geodir_get_posttypes();
2153 2153
 
2154
-    if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes)) {
2154
+	if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes)) {
2155 2155
 
2156
-        if (array_key_exists('post_video', $tabs_arr)) {
2156
+		if (array_key_exists('post_video', $tabs_arr)) {
2157 2157
 
2158
-            $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)));
2158
+			$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)));
2159 2159
 
2160
-            if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '')
2161
-                $tabs_arr['post_video']['heading_text'] = $field_title;
2162
-        }
2160
+			if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '')
2161
+				$tabs_arr['post_video']['heading_text'] = $field_title;
2162
+		}
2163 2163
 
2164
-        if (array_key_exists('special_offers', $tabs_arr)) {
2164
+		if (array_key_exists('special_offers', $tabs_arr)) {
2165 2165
 
2166
-            $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)));
2166
+			$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)));
2167 2167
 
2168
-            if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '')
2169
-                $tabs_arr['special_offers']['heading_text'] = $field_title;
2170
-        }
2168
+			if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '')
2169
+				$tabs_arr['special_offers']['heading_text'] = $field_title;
2170
+		}
2171 2171
 
2172
-    }
2172
+	}
2173 2173
 
2174
-    return $tabs_arr;
2174
+	return $tabs_arr;
2175 2175
 
2176 2176
 }
2177 2177
 
@@ -2184,10 +2184,10 @@  discard block
 block discarded – undo
2184 2184
  */
2185 2185
 function geodir_remove_template_redirect_actions()
2186 2186
 {
2187
-    if (geodir_is_page('login')){
2188
-        remove_all_actions('template_redirect');
2189
-        remove_action('init', 'avia_modify_front', 10);
2190
-    }
2187
+	if (geodir_is_page('login')){
2188
+		remove_all_actions('template_redirect');
2189
+		remove_action('init', 'avia_modify_front', 10);
2190
+	}
2191 2191
 }
2192 2192
 
2193 2193
 
@@ -2209,51 +2209,51 @@  discard block
 block discarded – undo
2209 2209
 function geodirectory_before_featured_image_delete($attachment_id)
2210 2210
 {
2211 2211
 
2212
-    global $wpdb, $plugin_prefix;
2212
+	global $wpdb, $plugin_prefix;
2213 2213
 
2214
-    $post_id = get_post_field('post_parent', $attachment_id);
2214
+	$post_id = get_post_field('post_parent', $attachment_id);
2215 2215
 
2216
-    $attachment_url = wp_get_attachment_url($attachment_id);
2216
+	$attachment_url = wp_get_attachment_url($attachment_id);
2217 2217
 
2218
-    if ($post_id > 0 && (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete')) {
2218
+	if ($post_id > 0 && (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete')) {
2219 2219
 
2220
-        $post_type = get_post_type($post_id);
2220
+		$post_type = get_post_type($post_id);
2221 2221
 
2222
-        $all_postypes = geodir_get_posttypes();
2222
+		$all_postypes = geodir_get_posttypes();
2223 2223
 
2224
-        if (!in_array($post_type, $all_postypes) || !is_admin())
2225
-            return false;
2224
+		if (!in_array($post_type, $all_postypes) || !is_admin())
2225
+			return false;
2226 2226
 
2227
-        $uploads = wp_upload_dir();
2227
+		$uploads = wp_upload_dir();
2228 2228
 
2229
-        $split_img_path = explode($uploads['baseurl'], $attachment_url);
2229
+		$split_img_path = explode($uploads['baseurl'], $attachment_url);
2230 2230
 
2231
-        $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
2231
+		$split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
2232 2232
 
2233
-        $wpdb->query(
2234
-            $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
2235
-                array($post_id, $split_img_file_path)
2236
-            )
2237
-        );
2233
+		$wpdb->query(
2234
+			$wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
2235
+				array($post_id, $split_img_file_path)
2236
+			)
2237
+		);
2238 2238
 
2239
-        $attachment_data = $wpdb->get_row(
2240
-            $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
2241
-                array($post_id)
2242
-            )
2243
-        );
2239
+		$attachment_data = $wpdb->get_row(
2240
+			$wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
2241
+				array($post_id)
2242
+			)
2243
+		);
2244 2244
 
2245
-        if (!empty($attachment_data)) {
2246
-            $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2247
-        }
2245
+		if (!empty($attachment_data)) {
2246
+			$wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2247
+		}
2248 2248
 
2249 2249
 
2250
-        $table_name = $plugin_prefix . $post_type . '_detail';
2250
+		$table_name = $plugin_prefix . $post_type . '_detail';
2251 2251
 
2252
-        $wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
2252
+		$wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
2253 2253
 
2254
-        geodir_set_wp_featured_image($post_id);
2254
+		geodir_set_wp_featured_image($post_id);
2255 2255
 
2256
-    }
2256
+	}
2257 2257
 
2258 2258
 }
2259 2259
 
@@ -2271,79 +2271,79 @@  discard block
 block discarded – undo
2271 2271
 function geodir_temp_set_post_attachment()
2272 2272
 {
2273 2273
 
2274
-    global $wpdb, $plugin_prefix;
2274
+	global $wpdb, $plugin_prefix;
2275 2275
 
2276
-    $all_postypes = geodir_get_posttypes();
2276
+	$all_postypes = geodir_get_posttypes();
2277 2277
 
2278
-    foreach ($all_postypes as $posttype) {
2278
+	foreach ($all_postypes as $posttype) {
2279 2279
 
2280
-        $tablename = $plugin_prefix . $posttype . '_detail';
2280
+		$tablename = $plugin_prefix . $posttype . '_detail';
2281 2281
 
2282
-        $get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
2282
+		$get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
2283 2283
 
2284
-        if (!empty($get_post_data)) {
2284
+		if (!empty($get_post_data)) {
2285 2285
 
2286
-            foreach ($get_post_data as $data) {
2286
+			foreach ($get_post_data as $data) {
2287 2287
 
2288
-                $post_id = $data->post_id;
2288
+				$post_id = $data->post_id;
2289 2289
 
2290
-                $attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
2290
+				$attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
2291 2291
 
2292
-                if (!empty($attachment_data)) {
2292
+				if (!empty($attachment_data)) {
2293 2293
 
2294
-                    foreach ($attachment_data as $attach) {
2294
+					foreach ($attachment_data as $attach) {
2295 2295
 
2296
-                        $file_info = pathinfo($attach->file);
2296
+						$file_info = pathinfo($attach->file);
2297 2297
 
2298
-                        $sub_dir = '';
2299
-                        if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
2300
-                            $sub_dir = stripslashes_deep($file_info['dirname']);
2298
+						$sub_dir = '';
2299
+						if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
2300
+							$sub_dir = stripslashes_deep($file_info['dirname']);
2301 2301
 
2302
-                        $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
2303
-                        $uploads_path = $uploads['basedir'];
2302
+						$uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
2303
+						$uploads_path = $uploads['basedir'];
2304 2304
 
2305
-                        $file_name = $file_info['basename'];
2305
+						$file_name = $file_info['basename'];
2306 2306
 
2307
-                        $img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name;
2307
+						$img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name;
2308 2308
 
2309
-                        if (!file_exists($img_arr['path'])) {
2309
+						if (!file_exists($img_arr['path'])) {
2310 2310
 
2311
-                            $wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
2311
+							$wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
2312 2312
 
2313
-                        }
2313
+						}
2314 2314
 
2315
-                    }
2315
+					}
2316 2316
 
2317
-                    $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
2317
+					$attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
2318 2318
 
2319
-                    if (!empty($attachment_data)) {
2319
+					if (!empty($attachment_data)) {
2320 2320
 
2321
-                        if ($attachment_data->ID)
2322
-                            $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2321
+						if ($attachment_data->ID)
2322
+							$wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2323 2323
 
2324
-                    } else {
2324
+					} else {
2325 2325
 
2326
-                        if (has_post_thumbnail($post_id)) {
2326
+						if (has_post_thumbnail($post_id)) {
2327 2327
 
2328
-                            $post_thumbnail_id = get_post_thumbnail_id($post_id);
2328
+							$post_thumbnail_id = get_post_thumbnail_id($post_id);
2329 2329
 
2330
-                            wp_delete_attachment($post_thumbnail_id);
2330
+							wp_delete_attachment($post_thumbnail_id);
2331 2331
 
2332
-                        }
2332
+						}
2333 2333
 
2334
-                    }
2334
+					}
2335 2335
 
2336
-                    $wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
2336
+					$wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
2337 2337
 
2338
-                    geodir_set_wp_featured_image($post_id);
2338
+					geodir_set_wp_featured_image($post_id);
2339 2339
 
2340
-                }
2340
+				}
2341 2341
 
2342
-            }
2342
+			}
2343 2343
 
2344
-        }
2344
+		}
2345 2345
 
2346
-    }
2346
+	}
2347 2347
 
2348 2348
 }
2349 2349
 
@@ -2361,9 +2361,9 @@  discard block
 block discarded – undo
2361 2361
 function geodir_default_rating_star_icon()
2362 2362
 {
2363 2363
 
2364
-    if (!get_option('geodir_default_rating_star_icon')) {
2365
-        update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
2366
-    }
2364
+	if (!get_option('geodir_default_rating_star_icon')) {
2365
+		update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
2366
+	}
2367 2367
 
2368 2368
 }
2369 2369
 
@@ -2381,27 +2381,27 @@  discard block
 block discarded – undo
2381 2381
  */
2382 2382
 function geodir_user_post_listing_count($user_id=null)
2383 2383
 {
2384
-    global $wpdb, $plugin_prefix, $current_user;
2385
-    if(!$user_id){
2386
-        $user_id = $current_user->ID;
2387
-    }
2384
+	global $wpdb, $plugin_prefix, $current_user;
2385
+	if(!$user_id){
2386
+		$user_id = $current_user->ID;
2387
+	}
2388 2388
 
2389
-    $user_id = $current_user->ID;
2390
-    $all_postypes = geodir_get_posttypes();
2391
-    $all_posts = get_option('geodir_listing_link_user_dashboard');
2389
+	$user_id = $current_user->ID;
2390
+	$all_postypes = geodir_get_posttypes();
2391
+	$all_posts = get_option('geodir_listing_link_user_dashboard');
2392 2392
 
2393
-    $user_listing = array();
2394
-    if (is_array($all_posts) && !empty($all_posts)) {
2395
-        foreach ($all_posts as $ptype) {
2396
-            $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' )");
2393
+	$user_listing = array();
2394
+	if (is_array($all_posts) && !empty($all_posts)) {
2395
+		foreach ($all_posts as $ptype) {
2396
+			$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' )");
2397 2397
 
2398
-            if ($total_posts > 0) {
2399
-                $user_listing[$ptype] = $total_posts;
2400
-            }
2401
-        }
2402
-    }
2398
+			if ($total_posts > 0) {
2399
+				$user_listing[$ptype] = $total_posts;
2400
+			}
2401
+		}
2402
+	}
2403 2403
 
2404
-    return $user_listing;
2404
+	return $user_listing;
2405 2405
 }
2406 2406
 
2407 2407
 
@@ -2421,190 +2421,190 @@  discard block
 block discarded – undo
2421 2421
  */
2422 2422
 function geodir_detail_page_custom_field_tab($tabs_arr)
2423 2423
 {
2424
-    global $post;
2425
-
2426
-    $post_type = geodir_get_current_posttype();
2427
-    $all_postypes = geodir_get_posttypes();
2428
-
2429
-    if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes) && (geodir_is_page('detail') || geodir_is_page('preview'))) {
2430
-        $package_info = array();
2431
-        $package_info = geodir_post_package_info($package_info, $post);
2432
-        $post_package_id = !empty($package_info->pid) ? $package_info->pid : '';
2433
-        $fields_location = 'owntab';
2434
-
2435
-        $custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location);
2436
-
2437
-        //remove video and special offers if it is already set to show
2438
-        if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
2439
-            $unset_video = true;
2440
-        }
2441
-
2442
-        if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
2443
-            $unset_special_offers = true;
2444
-        }
2445
-        if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
2446
-            foreach($custom_fields as $key => $custom_field){
2447
-                if($custom_field['name']=='geodir_video' && isset($unset_video)){
2448
-                    unset($custom_fields[$key]);
2449
-                }
2450
-                if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
2451
-                    unset($custom_fields[$key]);
2452
-                }
2453
-            }
2454
-        }
2424
+	global $post;
2455 2425
 
2426
+	$post_type = geodir_get_current_posttype();
2427
+	$all_postypes = geodir_get_posttypes();
2456 2428
 
2429
+	if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes) && (geodir_is_page('detail') || geodir_is_page('preview'))) {
2430
+		$package_info = array();
2431
+		$package_info = geodir_post_package_info($package_info, $post);
2432
+		$post_package_id = !empty($package_info->pid) ? $package_info->pid : '';
2433
+		$fields_location = 'owntab';
2457 2434
 
2458
-        if (!empty($custom_fields)) {
2459
-            $parse_custom_fields = array();
2460
-            foreach ($custom_fields as $field) {
2461
-                $field = stripslashes_deep($field); // strip slashes
2462
-                
2463
-                $type = $field;
2464
-                $field_name = $field['htmlvar_name'];
2465
-                if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2466
-                    $post->{$field_name} = $_REQUEST[$field_name];
2467
-                }
2468
-
2469
-                if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false  && ((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'))) {
2470
-                    if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2471
-                        continue;
2472
-                    }
2435
+		$custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location);
2473 2436
 
2474
-                    $parse_custom_fields[] = $field;
2475
-                }
2476
-            }
2477
-            $custom_fields = $parse_custom_fields;
2478
-        }
2479
-        //print_r($custom_fields);
2480
-        if (!empty($custom_fields)) {
2481
-
2482
-            global $field_set_start;
2437
+		//remove video and special offers if it is already set to show
2438
+		if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
2439
+			$unset_video = true;
2440
+		}
2483 2441
 
2484
-            $post = stripslashes_deep($post); // strip slashes
2485
-            
2486
-            $field_set_start = 0;
2487
-            $fieldset_count = 0;
2488
-            $fieldset = '';
2489
-            $total_fields = count($custom_fields);
2490
-            $count_field = 0;
2491
-            $fieldset_arr = array();
2492
-            $i = 0;
2493
-            $geodir_post_info = isset($post->ID) && !empty($post->ID) ? geodir_get_post_info($post->ID) : NULL;
2494
-
2495
-            foreach ($custom_fields as $field) {
2496
-                $count_field++;
2497
-                $field_name = $field['htmlvar_name'];
2498
-                if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2499
-                    $post->{$field_name} = $_REQUEST[$field_name];
2500
-                }
2442
+		if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
2443
+			$unset_special_offers = true;
2444
+		}
2445
+		if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
2446
+			foreach($custom_fields as $key => $custom_field){
2447
+				if($custom_field['name']=='geodir_video' && isset($unset_video)){
2448
+					unset($custom_fields[$key]);
2449
+				}
2450
+				if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
2451
+					unset($custom_fields[$key]);
2452
+				}
2453
+			}
2454
+		}
2501 2455
 
2502
-                if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((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'))) {
2503
-                    $label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title'];
2504
-                    $site_title = trim($field['site_title']);
2505
-                    $type = $field;
2506
-                    $variables_array = array();
2507 2456
 
2508
-                    if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2509
-                        continue;
2510
-                    }
2511 2457
 
2512
-                    if ($type['type'] != 'fieldset') {
2513
-                        $i++;
2514
-                        $variables_array['post_id'] = $post->ID;
2515
-                        $variables_array['label'] = __($type['site_title'], 'geodirectory');
2516
-                        $variables_array['value'] = '';
2517
-                        $variables_array['value'] = $post->{$type['htmlvar_name']};
2518
-                    }else{
2519
-                        $i = 0;
2520
-                        $fieldset_count++;
2521
-                        $field_set_start = 1;
2522
-                        $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count;
2523
-                        $fieldset_arr[$fieldset_count]['label'] = $label;
2524
-                    }
2458
+		if (!empty($custom_fields)) {
2459
+			$parse_custom_fields = array();
2460
+			foreach ($custom_fields as $field) {
2461
+				$field = stripslashes_deep($field); // strip slashes
2462
+                
2463
+				$type = $field;
2464
+				$field_name = $field['htmlvar_name'];
2465
+				if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2466
+					$post->{$field_name} = $_REQUEST[$field_name];
2467
+				}
2468
+
2469
+				if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false  && ((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'))) {
2470
+					if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2471
+						continue;
2472
+					}
2473
+
2474
+					$parse_custom_fields[] = $field;
2475
+				}
2476
+			}
2477
+			$custom_fields = $parse_custom_fields;
2478
+		}
2479
+		//print_r($custom_fields);
2480
+		if (!empty($custom_fields)) {
2525 2481
 
2482
+			global $field_set_start;
2526 2483
 
2527
-                    $type = stripslashes_deep($type); // strip slashes
2528
-                    $html = '';
2529
-                    $html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : '';
2530
-                    if($html_var=='post'){$html_var='post_address';}
2531
-                    $field_icon = geodir_field_icon_proccess($type);
2532
-                    $filed_type = $type['type'];
2533
-
2534
-                    /**
2535
-                     * Filter the output for custom fields.
2536
-                     *
2537
-                     * Here we can remove or add new functions depending on the field type.
2538
-                     *
2539
-                     * @param string $html The html to be filtered (blank).
2540
-                     * @param string $fields_location The location the field is to be show.
2541
-                     * @param array $type The array of field values.
2542
-                     */
2543
-                    $html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
2544
-
2545
-
2546
-                    /**
2547
-                     * Filter custom field output in tab.
2548
-                     *
2549
-                     * @since 1.5.6
2550
-                     *
2551
-                     * @param string $html_var The HTML variable name for the field.
2552
-                     * @param string $html Custom field unfiltered HTML.
2553
-                     * @param array $variables_array Custom field variables array.
2554
-                     */
2555
-                    $html = apply_filters("geodir_tab_show_{$html_var}", $html, $variables_array);
2556
-
2557
-                    $fieldset_html = '';
2558
-                    if ($field_set_start == 1) {
2559
-                        $add_html = false;
2560
-                        if ($type['type'] == 'fieldset' && $fieldset_count > 1) {
2561
-                            if ($fieldset != '') {
2562
-                                $add_html = true;
2563
-                                $label = $fieldset_arr[$fieldset_count - 1]['label'];
2564
-                                $htmlvar_name = $fieldset_arr[$fieldset_count - 1]['htmlvar_name'];
2565
-                            }
2566
-                            $fieldset_html = $fieldset;
2567
-                            $fieldset = '';
2568
-                        } else {
2569
-                            $fieldset .= $html;
2570
-                            if ($total_fields == $count_field && $fieldset != '') {
2571
-                                $add_html = true;
2572
-                                $label = $fieldset_arr[$fieldset_count]['label'];
2573
-                                $htmlvar_name = $fieldset_arr[$fieldset_count]['htmlvar_name'];
2574
-                                $fieldset_html = $fieldset;
2575
-                            }
2576
-                        }
2577
-
2578
-                        if ($add_html) {
2579
-                            $tabs_arr[$htmlvar_name] = array(
2580
-                                'heading_text' => __($label, 'geodirectory'),
2581
-                                'is_active_tab' => false,
2582
-                                /**
2583
-                                 * Filter if a custom field should be displayed on the details page tab.
2584
-                                 *
2585
-                                 * @since 1.0.0
2586
-                                 * @param string $htmlvar_name The field HTML var name.
2587
-                                 */
2588
-                                'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
2589
-                                'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>'
2590
-                            );
2591
-                        }
2592
-                    } else {
2593
-                        if ($html != '') {
2594
-                            $tabs_arr[$field['htmlvar_name']] = array(
2595
-                                'heading_text' => __($label, 'geodirectory'),
2596
-                                'is_active_tab' => false,
2597
-                                /** This action is documented in geodirectory_hooks_actions.php */
2598
-                                'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $field['htmlvar_name']),
2599
-                                'tab_content' => $html
2600
-                            );
2601
-                        }
2602
-                    }
2603
-                }
2604
-            }
2605
-        }
2606
-    }
2607
-    return $tabs_arr;
2484
+			$post = stripslashes_deep($post); // strip slashes
2485
+            
2486
+			$field_set_start = 0;
2487
+			$fieldset_count = 0;
2488
+			$fieldset = '';
2489
+			$total_fields = count($custom_fields);
2490
+			$count_field = 0;
2491
+			$fieldset_arr = array();
2492
+			$i = 0;
2493
+			$geodir_post_info = isset($post->ID) && !empty($post->ID) ? geodir_get_post_info($post->ID) : NULL;
2494
+
2495
+			foreach ($custom_fields as $field) {
2496
+				$count_field++;
2497
+				$field_name = $field['htmlvar_name'];
2498
+				if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2499
+					$post->{$field_name} = $_REQUEST[$field_name];
2500
+				}
2501
+
2502
+				if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((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'))) {
2503
+					$label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title'];
2504
+					$site_title = trim($field['site_title']);
2505
+					$type = $field;
2506
+					$variables_array = array();
2507
+
2508
+					if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2509
+						continue;
2510
+					}
2511
+
2512
+					if ($type['type'] != 'fieldset') {
2513
+						$i++;
2514
+						$variables_array['post_id'] = $post->ID;
2515
+						$variables_array['label'] = __($type['site_title'], 'geodirectory');
2516
+						$variables_array['value'] = '';
2517
+						$variables_array['value'] = $post->{$type['htmlvar_name']};
2518
+					}else{
2519
+						$i = 0;
2520
+						$fieldset_count++;
2521
+						$field_set_start = 1;
2522
+						$fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count;
2523
+						$fieldset_arr[$fieldset_count]['label'] = $label;
2524
+					}
2525
+
2526
+
2527
+					$type = stripslashes_deep($type); // strip slashes
2528
+					$html = '';
2529
+					$html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : '';
2530
+					if($html_var=='post'){$html_var='post_address';}
2531
+					$field_icon = geodir_field_icon_proccess($type);
2532
+					$filed_type = $type['type'];
2533
+
2534
+					/**
2535
+					 * Filter the output for custom fields.
2536
+					 *
2537
+					 * Here we can remove or add new functions depending on the field type.
2538
+					 *
2539
+					 * @param string $html The html to be filtered (blank).
2540
+					 * @param string $fields_location The location the field is to be show.
2541
+					 * @param array $type The array of field values.
2542
+					 */
2543
+					$html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
2544
+
2545
+
2546
+					/**
2547
+					 * Filter custom field output in tab.
2548
+					 *
2549
+					 * @since 1.5.6
2550
+					 *
2551
+					 * @param string $html_var The HTML variable name for the field.
2552
+					 * @param string $html Custom field unfiltered HTML.
2553
+					 * @param array $variables_array Custom field variables array.
2554
+					 */
2555
+					$html = apply_filters("geodir_tab_show_{$html_var}", $html, $variables_array);
2556
+
2557
+					$fieldset_html = '';
2558
+					if ($field_set_start == 1) {
2559
+						$add_html = false;
2560
+						if ($type['type'] == 'fieldset' && $fieldset_count > 1) {
2561
+							if ($fieldset != '') {
2562
+								$add_html = true;
2563
+								$label = $fieldset_arr[$fieldset_count - 1]['label'];
2564
+								$htmlvar_name = $fieldset_arr[$fieldset_count - 1]['htmlvar_name'];
2565
+							}
2566
+							$fieldset_html = $fieldset;
2567
+							$fieldset = '';
2568
+						} else {
2569
+							$fieldset .= $html;
2570
+							if ($total_fields == $count_field && $fieldset != '') {
2571
+								$add_html = true;
2572
+								$label = $fieldset_arr[$fieldset_count]['label'];
2573
+								$htmlvar_name = $fieldset_arr[$fieldset_count]['htmlvar_name'];
2574
+								$fieldset_html = $fieldset;
2575
+							}
2576
+						}
2577
+
2578
+						if ($add_html) {
2579
+							$tabs_arr[$htmlvar_name] = array(
2580
+								'heading_text' => __($label, 'geodirectory'),
2581
+								'is_active_tab' => false,
2582
+								/**
2583
+								 * Filter if a custom field should be displayed on the details page tab.
2584
+								 *
2585
+								 * @since 1.0.0
2586
+								 * @param string $htmlvar_name The field HTML var name.
2587
+								 */
2588
+								'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
2589
+								'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>'
2590
+							);
2591
+						}
2592
+					} else {
2593
+						if ($html != '') {
2594
+							$tabs_arr[$field['htmlvar_name']] = array(
2595
+								'heading_text' => __($label, 'geodirectory'),
2596
+								'is_active_tab' => false,
2597
+								/** This action is documented in geodirectory_hooks_actions.php */
2598
+								'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $field['htmlvar_name']),
2599
+								'tab_content' => $html
2600
+							);
2601
+						}
2602
+					}
2603
+				}
2604
+			}
2605
+		}
2606
+	}
2607
+	return $tabs_arr;
2608 2608
 }
2609 2609
 
2610 2610
 /* display add listing page for wpml */
@@ -2628,37 +2628,37 @@  discard block
 block discarded – undo
2628 2628
  */
2629 2629
 function geodir_add_post_status_author_page()
2630 2630
 {
2631
-    global $wpdb, $post;
2632
-
2633
-    $html = '';
2634
-    if (get_current_user_id()) {
2635
-        if (geodir_is_page('author') && !empty($post) && isset($post->post_author) && $post->post_author == get_current_user_id()) {
2636
-
2637
-            // 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.
2638
-            $real_status = $wpdb->get_var("SELECT post_status from $wpdb->posts WHERE ID=$post->ID");
2639
-            $status = "<strong>(";
2640
-            $status_icon = '<i class="fa fa-play"></i>';
2641
-            if ($real_status == 'publish') {
2642
-                $status .= __('Published', 'geodirectory');
2643
-            } else {
2644
-                $status .= __('Not published', 'geodirectory');
2645
-                $status_icon = '<i class="fa fa-pause"></i>';
2646
-            }
2647
-            $status .= ")</strong>";
2631
+	global $wpdb, $post;
2632
+
2633
+	$html = '';
2634
+	if (get_current_user_id()) {
2635
+		if (geodir_is_page('author') && !empty($post) && isset($post->post_author) && $post->post_author == get_current_user_id()) {
2636
+
2637
+			// 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.
2638
+			$real_status = $wpdb->get_var("SELECT post_status from $wpdb->posts WHERE ID=$post->ID");
2639
+			$status = "<strong>(";
2640
+			$status_icon = '<i class="fa fa-play"></i>';
2641
+			if ($real_status == 'publish') {
2642
+				$status .= __('Published', 'geodirectory');
2643
+			} else {
2644
+				$status .= __('Not published', 'geodirectory');
2645
+				$status_icon = '<i class="fa fa-pause"></i>';
2646
+			}
2647
+			$status .= ")</strong>";
2648 2648
 
2649
-            $html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
2650
-        }
2651
-    }
2649
+			$html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
2650
+		}
2651
+	}
2652 2652
 
2653
-    if ($html != '') {
2654
-        /**
2655
-         * Filter the post status text on the author page.
2656
-         *
2657
-         * @since 1.0.0
2658
-         * @param string $html The HTML of the status.
2659
-         */
2660
-        echo apply_filters('geodir_filter_status_text_on_author_page', $html);
2661
-    }
2653
+	if ($html != '') {
2654
+		/**
2655
+		 * Filter the post status text on the author page.
2656
+		 *
2657
+		 * @since 1.0.0
2658
+		 * @param string $html The HTML of the status.
2659
+		 */
2660
+		echo apply_filters('geodir_filter_status_text_on_author_page', $html);
2661
+	}
2662 2662
 
2663 2663
 
2664 2664
 }
@@ -2672,21 +2672,21 @@  discard block
 block discarded – undo
2672 2672
  */
2673 2673
 function geodir_init_no_rating()
2674 2674
 {
2675
-    if (get_option('geodir_disable_rating')) {
2676
-        remove_action('comment_form_logged_in_after', 'geodir_comment_rating_fields');
2677
-        remove_action('comment_form_before_fields', 'geodir_comment_rating_fields');
2678
-        remove_action('comment_form_logged_in_after', 'geodir_reviewrating_comment_rating_fields');
2679
-        remove_action('comment_form_before_fields', 'geodir_reviewrating_comment_rating_fields');
2680
-        remove_action('add_meta_boxes_comment', 'geodir_comment_add_meta_box');
2681
-        remove_action('add_meta_boxes', 'geodir_reviewrating_comment_metabox', 13);
2682
-        remove_filter('comment_text', 'geodir_wrap_comment_text', 40);
2683
-
2684
-        add_action('comment_form_logged_in_after', 'geodir_no_rating_rating_fields');
2685
-        add_action('comment_form_before_fields', 'geodir_no_rating_rating_fields');
2686
-        add_filter('comment_text', 'geodir_no_rating_comment_text', 100, 2);
2687
-        add_filter('geodir_detail_page_review_rating_html', 'geodir_no_rating_review_rating_html', 100);
2688
-        add_filter('geodir_get_sort_options', 'geodir_no_rating_get_sort_options', 100, 2);
2689
-    }
2675
+	if (get_option('geodir_disable_rating')) {
2676
+		remove_action('comment_form_logged_in_after', 'geodir_comment_rating_fields');
2677
+		remove_action('comment_form_before_fields', 'geodir_comment_rating_fields');
2678
+		remove_action('comment_form_logged_in_after', 'geodir_reviewrating_comment_rating_fields');
2679
+		remove_action('comment_form_before_fields', 'geodir_reviewrating_comment_rating_fields');
2680
+		remove_action('add_meta_boxes_comment', 'geodir_comment_add_meta_box');
2681
+		remove_action('add_meta_boxes', 'geodir_reviewrating_comment_metabox', 13);
2682
+		remove_filter('comment_text', 'geodir_wrap_comment_text', 40);
2683
+
2684
+		add_action('comment_form_logged_in_after', 'geodir_no_rating_rating_fields');
2685
+		add_action('comment_form_before_fields', 'geodir_no_rating_rating_fields');
2686
+		add_filter('comment_text', 'geodir_no_rating_comment_text', 100, 2);
2687
+		add_filter('geodir_detail_page_review_rating_html', 'geodir_no_rating_review_rating_html', 100);
2688
+		add_filter('geodir_get_sort_options', 'geodir_no_rating_get_sort_options', 100, 2);
2689
+	}
2690 2690
 }
2691 2691
 
2692 2692
 /**
@@ -2698,20 +2698,20 @@  discard block
 block discarded – undo
2698 2698
  */
2699 2699
 function geodir_no_rating_rating_fields()
2700 2700
 {
2701
-    global $post;
2701
+	global $post;
2702 2702
 
2703
-    $post_types = geodir_get_posttypes();
2703
+	$post_types = geodir_get_posttypes();
2704 2704
 
2705
-    if (!empty($post) && isset($post->post_type) && in_array($post->post_type, $post_types)) {
2706
-        if (is_plugin_active('geodir_review_rating_manager/geodir_review_rating_manager.php')) {
2707
-            echo '<input type="hidden" value="1" name="geodir_rating[overall]" />';
2708
-            if (get_option('geodir_reviewrating_enable_images')) {
2709
-                geodir_reviewrating_rating_img_html();
2710
-            }
2711
-        } else {
2712
-            echo '<input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="1" />';
2713
-        }
2714
-    }
2705
+	if (!empty($post) && isset($post->post_type) && in_array($post->post_type, $post_types)) {
2706
+		if (is_plugin_active('geodir_review_rating_manager/geodir_review_rating_manager.php')) {
2707
+			echo '<input type="hidden" value="1" name="geodir_rating[overall]" />';
2708
+			if (get_option('geodir_reviewrating_enable_images')) {
2709
+				geodir_reviewrating_rating_img_html();
2710
+			}
2711
+		} else {
2712
+			echo '<input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="1" />';
2713
+		}
2714
+	}
2715 2715
 }
2716 2716
 
2717 2717
 /**
@@ -2725,11 +2725,11 @@  discard block
 block discarded – undo
2725 2725
  */
2726 2726
 function geodir_no_rating_comment_text($content, $comment = '')
2727 2727
 {
2728
-    if (!is_admin()) {
2729
-        return '<div class="description">' . $content . '</div>';
2730
-    } else {
2731
-        return $content;
2732
-    }
2728
+	if (!is_admin()) {
2729
+		return '<div class="description">' . $content . '</div>';
2730
+	} else {
2731
+		return $content;
2732
+	}
2733 2733
 }
2734 2734
 
2735 2735
 /**
@@ -2742,7 +2742,7 @@  discard block
 block discarded – undo
2742 2742
  */
2743 2743
 function geodir_no_rating_review_rating_html($content = '')
2744 2744
 {
2745
-    return NULL;
2745
+	return NULL;
2746 2746
 }
2747 2747
 
2748 2748
 /**
@@ -2756,19 +2756,19 @@  discard block
 block discarded – undo
2756 2756
  */
2757 2757
 function geodir_no_rating_get_sort_options($options, $post_type = '')
2758 2758
 {
2759
-    $new_options = array();
2760
-    if (!empty($options)) {
2761
-        foreach ($options as $option) {
2762
-            if (is_object($option) && isset($option->htmlvar_name) && $option->htmlvar_name == 'overall_rating') {
2763
-                continue;
2764
-            }
2765
-            $new_options[] = $option;
2766
-        }
2759
+	$new_options = array();
2760
+	if (!empty($options)) {
2761
+		foreach ($options as $option) {
2762
+			if (is_object($option) && isset($option->htmlvar_name) && $option->htmlvar_name == 'overall_rating') {
2763
+				continue;
2764
+			}
2765
+			$new_options[] = $option;
2766
+		}
2767 2767
 
2768
-        $options = $new_options;
2769
-    }
2768
+		$options = $new_options;
2769
+	}
2770 2770
 
2771
-    return $options;
2771
+	return $options;
2772 2772
 }
2773 2773
 
2774 2774
 add_filter('geodir_all_js_msg', 'geodir_all_js_msg_no_rating', 100);
@@ -2782,11 +2782,11 @@  discard block
 block discarded – undo
2782 2782
  */
2783 2783
 function geodir_all_js_msg_no_rating($msg = array())
2784 2784
 {
2785
-    if (get_option('geodir_disable_rating')) {
2786
-        $msg['gd_cmt_no_rating'] = true;
2787
-    }
2785
+	if (get_option('geodir_disable_rating')) {
2786
+		$msg['gd_cmt_no_rating'] = true;
2787
+	}
2788 2788
 
2789
-    return $msg;
2789
+	return $msg;
2790 2790
 }
2791 2791
 
2792 2792
 add_filter('body_class', 'geodir_body_class_no_rating', 100);
@@ -2800,13 +2800,13 @@  discard block
 block discarded – undo
2800 2800
  */
2801 2801
 function geodir_body_class_no_rating($classes = array())
2802 2802
 {
2803
-    if (get_option('geodir_disable_rating')) {
2804
-        $classes[] = 'gd-no-rating';
2805
-    }
2803
+	if (get_option('geodir_disable_rating')) {
2804
+		$classes[] = 'gd-no-rating';
2805
+	}
2806 2806
     
2807
-    $classes[] = 'gd-map-' . geodir_map_name();
2807
+	$classes[] = 'gd-map-' . geodir_map_name();
2808 2808
 
2809
-    return $classes;
2809
+	return $classes;
2810 2810
 }
2811 2811
 
2812 2812
 add_filter('admin_body_class', 'geodir_admin_body_class_no_rating', 100);
@@ -2820,13 +2820,13 @@  discard block
 block discarded – undo
2820 2820
  */
2821 2821
 function geodir_admin_body_class_no_rating($class = '')
2822 2822
 {
2823
-    if (get_option('geodir_disable_rating')) {
2824
-        $class .= ' gd-no-rating';
2825
-    }
2823
+	if (get_option('geodir_disable_rating')) {
2824
+		$class .= ' gd-no-rating';
2825
+	}
2826 2826
     
2827
-    $class .= ' gd-map-' . geodir_map_name();
2827
+	$class .= ' gd-map-' . geodir_map_name();
2828 2828
 
2829
-    return $class;
2829
+	return $class;
2830 2830
 }
2831 2831
 
2832 2832
 add_action('wp_head', 'geodir_wp_head_no_rating');
@@ -2839,10 +2839,10 @@  discard block
 block discarded – undo
2839 2839
  */
2840 2840
 function geodir_wp_head_no_rating()
2841 2841
 {
2842
-    if (get_option('geodir_disable_rating')) {
2843
-        echo '<style>body .geodir-rating, body .geodir-bubble-rating, body .gd_ratings_module_box{display:none!important;}</style>';
2844
-        echo '<script type="text/javascript">jQuery(function(){jQuery(".gd_rating_show").parent(".geodir-rating").remove();});</script>';
2845
-    }
2842
+	if (get_option('geodir_disable_rating')) {
2843
+		echo '<style>body .geodir-rating, body .geodir-bubble-rating, body .gd_ratings_module_box{display:none!important;}</style>';
2844
+		echo '<script type="text/javascript">jQuery(function(){jQuery(".gd_rating_show").parent(".geodir-rating").remove();});</script>';
2845
+	}
2846 2846
 }
2847 2847
 
2848 2848
 add_filter('geodir_load_db_language', 'geodir_load_custom_field_translation');
@@ -2859,36 +2859,36 @@  discard block
 block discarded – undo
2859 2859
  * @return array Translation texts.
2860 2860
  */
2861 2861
 function geodir_load_gd_options_text_translation($translation_texts = array()) {
2862
-    $translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array();
2863
-
2864
-    $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');
2865
-
2866
-    /**
2867
-     * Filters the geodirectory option names that requires to add for translation.
2868
-     *
2869
-     * @since 1.5.7
2870
-     * @package GeoDirectory
2871
-     *
2872
-     * @param  array $gd_options Array of option names.
2873
-     */
2874
-    $gd_options = apply_filters('geodir_gd_options_for_translation', $gd_options);
2875
-    $gd_options = array_unique($gd_options);
2876
-
2877
-    if (!empty($gd_options)) {
2878
-        foreach ($gd_options as $gd_option) {
2879
-            if ($gd_option != '' && $option_value = get_option($gd_option)) {
2880
-                $option_value = is_string($option_value) ? stripslashes_deep($option_value) : '';
2862
+	$translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array();
2863
+
2864
+	$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');
2865
+
2866
+	/**
2867
+	 * Filters the geodirectory option names that requires to add for translation.
2868
+	 *
2869
+	 * @since 1.5.7
2870
+	 * @package GeoDirectory
2871
+	 *
2872
+	 * @param  array $gd_options Array of option names.
2873
+	 */
2874
+	$gd_options = apply_filters('geodir_gd_options_for_translation', $gd_options);
2875
+	$gd_options = array_unique($gd_options);
2876
+
2877
+	if (!empty($gd_options)) {
2878
+		foreach ($gd_options as $gd_option) {
2879
+			if ($gd_option != '' && $option_value = get_option($gd_option)) {
2880
+				$option_value = is_string($option_value) ? stripslashes_deep($option_value) : '';
2881 2881
                 
2882
-                if ($option_value != '' && !in_array($option_value, $translation_texts)) {
2883
-                    $translation_texts[] = stripslashes_deep($option_value);
2884
-                }
2885
-            }
2886
-        }
2887
-    }
2882
+				if ($option_value != '' && !in_array($option_value, $translation_texts)) {
2883
+					$translation_texts[] = stripslashes_deep($option_value);
2884
+				}
2885
+			}
2886
+		}
2887
+	}
2888 2888
 
2889
-    $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
2889
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
2890 2890
 
2891
-    return $translation_texts;
2891
+	return $translation_texts;
2892 2892
 }
2893 2893
 
2894 2894
 add_filter('geodir_load_db_language', 'geodir_load_gd_options_text_translation');
@@ -2902,15 +2902,15 @@  discard block
 block discarded – undo
2902 2902
 
2903 2903
 add_filter('get_comments_link', 'gd_get_comments_link', 10, 2);
2904 2904
 function gd_get_comments_link($comments_link, $post_id) {
2905
-    $post_type = get_post_type($post_id);
2905
+	$post_type = get_post_type($post_id);
2906 2906
 
2907
-    $all_postypes = geodir_get_posttypes();
2908
-    if (in_array($post_type, $all_postypes)) {
2909
-        $comments_link = str_replace('#comments', '#reviews', $comments_link);
2910
-        $comments_link = str_replace('#respond', '#reviews', $comments_link);
2911
-    }
2907
+	$all_postypes = geodir_get_posttypes();
2908
+	if (in_array($post_type, $all_postypes)) {
2909
+		$comments_link = str_replace('#comments', '#reviews', $comments_link);
2910
+		$comments_link = str_replace('#respond', '#reviews', $comments_link);
2911
+	}
2912 2912
 
2913
-    return $comments_link;
2913
+	return $comments_link;
2914 2914
 }
2915 2915
 
2916 2916
 
@@ -2928,11 +2928,11 @@  discard block
 block discarded – undo
2928 2928
 function geodir_add_nav_menu_class( $args )
2929 2929
 {
2930 2930
 
2931
-        if(isset($args['menu_class'])){
2932
-            $args['menu_class'] = $args['menu_class']." gd-menu-z";
2933
-        }
2931
+		if(isset($args['menu_class'])){
2932
+			$args['menu_class'] = $args['menu_class']." gd-menu-z";
2933
+		}
2934 2934
     
2935
-    return $args;
2935
+	return $args;
2936 2936
 }
2937 2937
 
2938 2938
 add_filter( 'wp_nav_menu_args', 'geodir_add_nav_menu_class' );
2939 2939
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +146 added lines, -146 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 */
@@ -176,9 +176,9 @@  discard block
 block discarded – undo
176 176
 /* WP REVIEW COUNT ACTIONS */
177 177
 ////////////////////////
178 178
 
179
-add_action('geodir_update_postrating', 'geodir_term_review_count_force_update_single_post', 100,1);
179
+add_action('geodir_update_postrating', 'geodir_term_review_count_force_update_single_post', 100, 1);
180 180
 //add_action('geodir_update_postrating', 'geodir_term_review_count_force_update', 100);
181
-add_action('transition_post_status', 'geodir_term_review_count_force_update', 100,3);
181
+add_action('transition_post_status', 'geodir_term_review_count_force_update', 100, 3);
182 182
 //add_action('created_term', 'geodir_term_review_count_force_update', 100);
183 183
 add_action('edited_term', 'geodir_term_review_count_force_update', 100);
184 184
 add_action('delete_term', 'geodir_term_review_count_force_update', 100);
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
  */
223 223
 function geodir_unset_prev_theme_nav_location($newname)
224 224
 {
225
-    $geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
225
+    $geodir_theme_location = get_option('geodir_theme_location_nav_'.$newname);
226 226
     if ($geodir_theme_location) {
227 227
         update_option('geodir_theme_location_nav', $geodir_theme_location);
228 228
     } else {
@@ -320,8 +320,8 @@  discard block
 block discarded – undo
320 320
 
321 321
 /////// GEO DIRECOTORY CUSTOM HOOKS ///
322 322
 
323
-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 
324
-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
323
+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 
324
+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
325 325
 
326 326
 // Detail page sidebar content 
327 327
 add_action('geodir_detail_page_sidebar', 'geodir_detail_page_sidebar_content_sorting', 1);
@@ -422,8 +422,8 @@  discard block
 block discarded – undo
422 422
     do_action('geodir_after_social_sharing_buttons');
423 423
     $content_html = ob_get_clean();
424 424
     if (trim($content_html) != '')
425
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>';
426
-    if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
425
+        $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">'.$content_html.'</div>';
426
+    if ((int) get_option('geodir_disable_tfg_buttons_section') != 1) {
427 427
         /**
428 428
          * Filter the geodir_social_sharing_buttons() function content.
429 429
          *
@@ -469,8 +469,8 @@  discard block
 block discarded – undo
469 469
     do_action('geodir_after_share_this_button');
470 470
     $content_html = ob_get_clean();
471 471
     if (trim($content_html) != '')
472
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-sharethis">' . $content_html . '</div>';
473
-    if ((int)get_option('geodir_disable_sharethis_button_section') != 1) {
472
+        $content_html = '<div class="geodir-company_info geodir-details-sidebar-sharethis">'.$content_html.'</div>';
473
+    if ((int) get_option('geodir_disable_sharethis_button_section') != 1) {
474 474
         /**
475 475
          * Filter the geodir_share_this_button() function content.
476 476
          *
@@ -509,12 +509,12 @@  discard block
 block discarded – undo
509 509
             $post_id = $post->ID;
510 510
             
511 511
             if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
512
-                $post_id = (int)$_REQUEST['pid'];
512
+                $post_id = (int) $_REQUEST['pid'];
513 513
             }
514 514
 
515 515
             $postlink = get_permalink(geodir_add_listing_page_id());
516 516
             $editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
517
-            echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
517
+            echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="'.esc_url($editlink).'">'.__('Edit this Post', 'geodirectory').'</a></p>';
518 518
         }
519 519
     }// end of if, if its a preview or not
520 520
     /**
@@ -525,8 +525,8 @@  discard block
 block discarded – undo
525 525
     do_action('geodir_after_edit_post_link');
526 526
     $content_html = ob_get_clean();
527 527
     if (trim($content_html) != '')
528
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>';
529
-    if ((int)get_option('geodir_disable_user_links_section') != 1) {
528
+        $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">'.$content_html.'</div>';
529
+    if ((int) get_option('geodir_disable_user_links_section') != 1) {
530 530
         /**
531 531
          * Filter the geodir_edit_post_link() function content.
532 532
          *
@@ -579,14 +579,14 @@  discard block
 block discarded – undo
579 579
     $hide_refresh = get_option('geodir_ga_auto_refresh');
580 580
     
581 581
     $auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0;
582
-    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
+    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'))) {
583 583
         $page_url = urlencode($_SERVER['REQUEST_URI']);
584 584
         ?>
585 585
         <script type="text/javascript">
586 586
             var gd_gaTimeOut;
587
-            var gd_gaTime = parseInt('<?php echo $refresh_time;?>');
588
-            var gd_gaHideRefresh = <?php echo (int)$hide_refresh;?>;
589
-            var gd_gaAutoRefresh = <?php echo $auto_refresh;?>;
587
+            var gd_gaTime = parseInt('<?php echo $refresh_time; ?>');
588
+            var gd_gaHideRefresh = <?php echo (int) $hide_refresh; ?>;
589
+            var gd_gaAutoRefresh = <?php echo $auto_refresh; ?>;
590 590
             ga_data1 = false;
591 591
             ga_data2 = false;
592 592
             ga_data3 = false;
@@ -727,7 +727,7 @@  discard block
 block discarded – undo
727 727
             }
728 728
 
729 729
             function gdga_noResults() {
730
-                jQuery('#gdga-chart-container').html('<?php _e('No results available','geodirectory');?>');
730
+                jQuery('#gdga-chart-container').html('<?php _e('No results available', 'geodirectory'); ?>');
731 731
                 jQuery('#gdga-legend-container').html('');
732 732
             }
733 733
 
@@ -759,18 +759,18 @@  discard block
 block discarded – undo
759 759
                     var data2 = results[1].rows.map(function(row) { return +row[2]; });
760 760
                     //var labelsN = results[0].rows.map(function(row) { return +row[1]; });
761 761
 
762
-                    var labels = ['<?php _e('Jan', 'geodirectory');?>',
763
-                        '<?php _e('Feb', 'geodirectory');?>',
764
-                        '<?php _e('Mar', 'geodirectory');?>',
765
-                        '<?php _e('Apr', 'geodirectory');?>',
766
-                        '<?php _e('May', 'geodirectory');?>',
767
-                        '<?php _e('Jun', 'geodirectory');?>',
768
-                        '<?php _e('Jul', 'geodirectory');?>',
769
-                        '<?php _e('Aug', 'geodirectory');?>',
770
-                        '<?php _e('Sep', 'geodirectory');?>',
771
-                        '<?php _e('Oct', 'geodirectory');?>',
772
-                        '<?php _e('Nov', 'geodirectory');?>',
773
-                        '<?php _e('Dec', 'geodirectory');?>'];
762
+                    var labels = ['<?php _e('Jan', 'geodirectory'); ?>',
763
+                        '<?php _e('Feb', 'geodirectory'); ?>',
764
+                        '<?php _e('Mar', 'geodirectory'); ?>',
765
+                        '<?php _e('Apr', 'geodirectory'); ?>',
766
+                        '<?php _e('May', 'geodirectory'); ?>',
767
+                        '<?php _e('Jun', 'geodirectory'); ?>',
768
+                        '<?php _e('Jul', 'geodirectory'); ?>',
769
+                        '<?php _e('Aug', 'geodirectory'); ?>',
770
+                        '<?php _e('Sep', 'geodirectory'); ?>',
771
+                        '<?php _e('Oct', 'geodirectory'); ?>',
772
+                        '<?php _e('Nov', 'geodirectory'); ?>',
773
+                        '<?php _e('Dec', 'geodirectory'); ?>'];
774 774
 
775 775
                     // Ensure the data arrays are at least as long as the labels array.
776 776
                     // Chart.js bar charts don't (yet) accept sparse datasets.
@@ -783,13 +783,13 @@  discard block
 block discarded – undo
783 783
                         labels : labels,
784 784
                         datasets : [
785 785
                             {
786
-                                label: '<?php _e('Last Year', 'geodirectory');?>',
786
+                                label: '<?php _e('Last Year', 'geodirectory'); ?>',
787 787
                                 fillColor : "rgba(220,220,220,0.5)",
788 788
                                 strokeColor : "rgba(220,220,220,1)",
789 789
                                 data : data2
790 790
                             },
791 791
                             {
792
-                                label: '<?php _e('This Year', 'geodirectory');?>',
792
+                                label: '<?php _e('This Year', 'geodirectory'); ?>',
793 793
                                 fillColor : "rgba(151,187,205,0.5)",
794 794
                                 strokeColor : "rgba(151,187,205,1)",
795 795
                                 data : data1
@@ -834,30 +834,30 @@  discard block
 block discarded – undo
834 834
 
835 835
                     <?php
836 836
                     // Here we list the shorthand days of the week so it can be used in translation.
837
-                    __("Mon",'geodirectory');
838
-                    __("Tue",'geodirectory');
839
-                    __("Wed",'geodirectory');
840
-                    __("Thu",'geodirectory');
841
-                    __("Fri",'geodirectory');
842
-                    __("Sat",'geodirectory');
843
-                    __("Sun",'geodirectory');
837
+                    __("Mon", 'geodirectory');
838
+                    __("Tue", 'geodirectory');
839
+                    __("Wed", 'geodirectory');
840
+                    __("Thu", 'geodirectory');
841
+                    __("Fri", 'geodirectory');
842
+                    __("Sat", 'geodirectory');
843
+                    __("Sun", 'geodirectory');
844 844
                     ?>
845 845
 
846 846
                     labels = [
847
-                        "<?php _e(date('D', strtotime("+1 day")),'geodirectory'); ?>",
848
-                        "<?php _e(date('D', strtotime("+2 day")),'geodirectory'); ?>",
849
-                        "<?php _e(date('D', strtotime("+3 day")),'geodirectory'); ?>",
850
-                        "<?php _e(date('D', strtotime("+4 day")),'geodirectory'); ?>",
851
-                        "<?php _e(date('D', strtotime("+5 day")),'geodirectory'); ?>",
852
-                        "<?php _e(date('D', strtotime("+6 day")),'geodirectory'); ?>",
853
-                        "<?php _e(date('D', strtotime("+7 day")),'geodirectory'); ?>"
847
+                        "<?php _e(date('D', strtotime("+1 day")), 'geodirectory'); ?>",
848
+                        "<?php _e(date('D', strtotime("+2 day")), 'geodirectory'); ?>",
849
+                        "<?php _e(date('D', strtotime("+3 day")), 'geodirectory'); ?>",
850
+                        "<?php _e(date('D', strtotime("+4 day")), 'geodirectory'); ?>",
851
+                        "<?php _e(date('D', strtotime("+5 day")), 'geodirectory'); ?>",
852
+                        "<?php _e(date('D', strtotime("+6 day")), 'geodirectory'); ?>",
853
+                        "<?php _e(date('D', strtotime("+7 day")), 'geodirectory'); ?>"
854 854
                     ];
855 855
 
856 856
                     var data = {
857 857
                         labels : labels,
858 858
                         datasets : [
859 859
                             {
860
-                                label: '<?php _e('Last Week', 'geodirectory');?>',
860
+                                label: '<?php _e('Last Week', 'geodirectory'); ?>',
861 861
                                 fillColor : "rgba(220,220,220,0.5)",
862 862
                                 strokeColor : "rgba(220,220,220,1)",
863 863
                                 pointColor : "rgba(220,220,220,1)",
@@ -865,7 +865,7 @@  discard block
 block discarded – undo
865 865
                                 data : data2
866 866
                             },
867 867
                             {
868
-                                label: '<?php _e('This Week', 'geodirectory');?>',
868
+                                label: '<?php _e('This Week', 'geodirectory'); ?>',
869 869
                                 fillColor : "rgba(151,187,205,0.5)",
870 870
                                 strokeColor : "rgba(151,187,205,1)",
871 871
                                 pointColor : "rgba(151,187,205,1)",
@@ -1072,18 +1072,18 @@  discard block
 block discarded – undo
1072 1072
         </style>
1073 1073
         <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/1.0.2/Chart.min.js"></script>
1074 1074
         <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.2/moment.min.js"></script>
1075
-        <button type="button" class="gdga-show-analytics"><?php _e('Show Google Analytics', 'geodirectory');?></button>
1075
+        <button type="button" class="gdga-show-analytics"><?php _e('Show Google Analytics', 'geodirectory'); ?></button>
1076 1076
         <span id="ga_stats" class="gdga-analytics-box" style="display:none">
1077
-            <div id="ga-analytics-title"><?php _e("Analytics", 'geodirectory');?></div>
1077
+            <div id="ga-analytics-title"><?php _e("Analytics", 'geodirectory'); ?></div>
1078 1078
             <div id="gd-active-users-container">
1079
-                <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
+                <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'); ?>
1080 1080
                     <b class="gd-ActiveUsers-value">0</b>
1081 1081
                 </div>
1082 1082
             </div>
1083 1083
             <select id="gdga-select-analytic" onchange="gdga_select_option();" style="display: none;">
1084
-                <option value="weeks"><?php _e("Last Week vs This Week", 'geodirectory');?></option>
1085
-                <option value="years"><?php _e("This Year vs Last Year", 'geodirectory');?></option>
1086
-                <option value="country"><?php _e("Top Countries", 'geodirectory');?></option>
1084
+                <option value="weeks"><?php _e("Last Week vs This Week", 'geodirectory'); ?></option>
1085
+                <option value="years"><?php _e("This Year vs Last Year", 'geodirectory'); ?></option>
1086
+                <option value="country"><?php _e("Top Countries", 'geodirectory'); ?></option>
1087 1087
             </select>
1088 1088
             <div class="Chartjs-figure" id="gdga-chart-container"></div>
1089 1089
             <ol class="Chartjs-legend" id="gdga-legend-container"></ol>
@@ -1099,8 +1099,8 @@  discard block
 block discarded – undo
1099 1099
     do_action('geodir_after_google_analytics');
1100 1100
     $content_html = ob_get_clean();
1101 1101
     if (trim($content_html) != '')
1102
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>';
1103
-    if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
1102
+        $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">'.$content_html.'</div>';
1103
+    if ((int) get_option('geodir_disable_google_analytics_section') != 1) {
1104 1104
         /**
1105 1105
          * Filter the geodir_edit_post_link() function content.
1106 1106
          *
@@ -1156,10 +1156,10 @@  discard block
 block discarded – undo
1156 1156
        
1157 1157
 	   $reviews_text = $comment_count > 1 ? __("reviews", 'geodirectory') : __("review", 'geodirectory');
1158 1158
 	   
1159
-	   $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 />';
1159
+	   $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 />';
1160 1160
 
1161 1161
         $html .= '<span class="item">';
1162
-        $html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>';
1162
+        $html .= '<span class="fn" itemprop="itemreviewed">'.$post->post_title.'</span>';
1163 1163
 
1164 1164
         if ($post_images) {
1165 1165
             foreach ($post_images as $img) {
@@ -1169,7 +1169,7 @@  discard block
 block discarded – undo
1169 1169
         }
1170 1170
 
1171 1171
         if (isset($post_img) && $post_img) {
1172
-            $html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />';
1172
+            $html .= '<br /><img src="'.$post_img.'" class="photo" alt="'.esc_attr($post->post_title).'" itemprop="photo" content="'.$post_img.'" class="photo" />';
1173 1173
         }
1174 1174
 
1175 1175
         $html .= '</span>';
@@ -1196,9 +1196,9 @@  discard block
 block discarded – undo
1196 1196
     do_action('geodir_after_detail_page_review_rating');
1197 1197
     $content_html = ob_get_clean();
1198 1198
     if (trim($content_html) != '') {
1199
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>';
1199
+        $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">'.$content_html.'</div>';
1200 1200
     }
1201
-    if ((int)get_option('geodir_disable_rating_info_section') != 1) {
1201
+    if ((int) get_option('geodir_disable_rating_info_section') != 1) {
1202 1202
         /**
1203 1203
          * Filter the geodir_detail_page_review_rating() function content.
1204 1204
          *
@@ -1237,8 +1237,8 @@  discard block
 block discarded – undo
1237 1237
 
1238 1238
     $content_html = ob_get_clean();
1239 1239
     if (trim($content_html) != '')
1240
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>';
1241
-    if ((int)get_option('geodir_disable_listing_info_section') != 1) {
1240
+        $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">'.$content_html.'</div>';
1241
+    if ((int) get_option('geodir_disable_listing_info_section') != 1) {
1242 1242
         /**
1243 1243
          * Filter the output html for function geodir_detail_page_more_info().
1244 1244
          *
@@ -1337,7 +1337,7 @@  discard block
 block discarded – undo
1337 1337
 		'gd_allowed_img_types' => !empty($allowed_img_types) ? implode(',', $allowed_img_types) : '',
1338 1338
 		'geodir_txt_form_wait' => __('Wait...', 'geodirectory'),
1339 1339
 		'geodir_txt_form_searching' => __('Searching...', 'geodirectory'),
1340
-		'fa_rating' => (int)get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
1340
+		'fa_rating' => (int) get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
1341 1341
 		'reviewrating' => defined('GEODIRREVIEWRATING_VERSION') ? 1 : '',
1342 1342
         'geodir_map_name' => geodir_map_name(),
1343 1343
         'osmStart' => __('Start', 'geodirectory'),
@@ -1358,10 +1358,10 @@  discard block
 block discarded – undo
1358 1358
     foreach ($arr_alert_msg as $key => $value) {
1359 1359
         if (!is_scalar($value))
1360 1360
             continue;
1361
-        $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8');
1361
+        $arr_alert_msg[$key] = html_entity_decode((string) $value, ENT_QUOTES, 'UTF-8');
1362 1362
     }
1363 1363
 
1364
-    $script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';';
1364
+    $script = "var geodir_all_js_msg = ".json_encode($arr_alert_msg).';';
1365 1365
     echo '<script>';
1366 1366
     echo $script;
1367 1367
     echo '</script>';
@@ -1451,7 +1451,7 @@  discard block
 block discarded – undo
1451 1451
         $geodir_old_sidebars = get_option('geodir_sidebars');
1452 1452
         if (is_array($geodir_old_sidebars)) {
1453 1453
             foreach ($geodir_old_sidebars as $key => $val) {
1454
-                if(0 === strpos($key, 'geodir_'))// if gd widget
1454
+                if (0 === strpos($key, 'geodir_'))// if gd widget
1455 1455
                 {
1456 1456
                     $sidebars_widgets[$key] = $geodir_old_sidebars[$key];
1457 1457
                 }
@@ -1530,7 +1530,7 @@  discard block
 block discarded – undo
1530 1530
         global $post;
1531 1531
         $term_condition = '';
1532 1532
         if (isset($_REQUEST['backandedit'])) {
1533
-            $post = (object)$gd_session->get('listing');
1533
+            $post = (object) $gd_session->get('listing');
1534 1534
             $term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : '';
1535 1535
         }
1536 1536
 
@@ -1544,7 +1544,7 @@  discard block
 block discarded – undo
1544 1544
                     echo 'checked="checked"';
1545 1545
                 } ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition"
1546 1546
                        class="geodir_textfield" value="1"
1547
-                       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>
1547
+                       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>
1548 1548
 				</span>
1549 1549
             </div>
1550 1550
             <span class="geodir_message_error"><?php if (isset($required_msg)) {
@@ -1584,7 +1584,7 @@  discard block
 block discarded – undo
1584 1584
         /** This action is documented in geodirectory_template_actions.php */
1585 1585
         $desc_limit = apply_filters('geodir_description_field_desc_limit', '');
1586 1586
         
1587
-        if (!($desc_limit === '' || (int)$desc_limit > 0)) {
1587
+        if (!($desc_limit === '' || (int) $desc_limit > 0)) {
1588 1588
             $is_display = false;
1589 1589
         }
1590 1590
     }
@@ -1632,16 +1632,16 @@  discard block
 block discarded – undo
1632 1632
     global $wpdb, $plugin_prefix;
1633 1633
 	
1634 1634
 	// Remove unused virtual page
1635
-	$listings_page_id = (int)get_option('geodir_listing_page');
1635
+	$listings_page_id = (int) get_option('geodir_listing_page');
1636 1636
 	if ($listings_page_id) {
1637
-		$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')));
1637
+		$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')));
1638 1638
         delete_option('geodir_listing_page');
1639 1639
 	}
1640 1640
 
1641 1641
     if (!get_option('geodir_changes_in_custom_fields_table')) {
1642 1642
         $wpdb->query(
1643 1643
             $wpdb->prepare(
1644
-                "UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s",
1644
+                "UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET is_default=%s, is_admin=%s WHERE is_default=%s",
1645 1645
                 array('1', '1', 'admin')
1646 1646
             )
1647 1647
         );
@@ -1649,9 +1649,9 @@  discard block
 block discarded – undo
1649 1649
 
1650 1650
         /* --- terms meta value set --- */
1651 1651
 
1652
-        update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
1652
+        update_option('geodir_default_marker_icon', geodir_plugin_url().'/geodirectory-functions/map-functions/icons/pin.png');
1653 1653
 
1654
-        $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
1654
+        $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".$wpdb->prefix."options WHERE option_name LIKE %s", array('%tax_meta_%')));
1655 1655
 
1656 1656
         if (!empty($options_data)) {
1657 1657
 
@@ -1659,7 +1659,7 @@  discard block
 block discarded – undo
1659 1659
 
1660 1660
                 $option_val = str_replace('tax_meta_', '', $optobj->option_name);
1661 1661
 
1662
-                $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)));
1662
+                $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)));
1663 1663
 
1664 1664
                 if (!empty($taxonomies_data)) {
1665 1665
 
@@ -1668,17 +1668,17 @@  discard block
 block discarded – undo
1668 1668
                         $taxObject = get_taxonomy($taxobj->taxonomy);
1669 1669
                         $post_type = $taxObject->object_type[0];
1670 1670
 
1671
-                        $opt_value = 'tax_meta_' . $post_type . '_' . $option_val;
1671
+                        $opt_value = 'tax_meta_'.$post_type.'_'.$option_val;
1672 1672
 
1673
-                        $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
1673
+                        $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM ".$wpdb->prefix."options WHERE option_name=%s", array('tax_meta_'.$option_val)));
1674 1674
 
1675 1675
                         if ($duplicate_data) {
1676 1676
 
1677
-                            $wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET	option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
1677
+                            $wpdb->query($wpdb->prepare("UPDATE ".$wpdb->prefix."options SET	option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
1678 1678
 
1679 1679
                         } else {
1680 1680
 
1681
-                            $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)));
1681
+                            $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)));
1682 1682
 
1683 1683
                         }
1684 1684
 
@@ -1712,14 +1712,14 @@  discard block
 block discarded – undo
1712 1712
 
1713 1713
     global $wpdb, $table_prefix;
1714 1714
 
1715
-    $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
1715
+    $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM ".$table_prefix."terms WHERE slug=%s", array($slug)));
1716 1716
 
1717 1717
     if ($slug_exists) {
1718 1718
 
1719 1719
         $suffix = 1;
1720 1720
         do {
1721
-            $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1722
-            $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
1721
+            $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1))."-$suffix";
1722
+            $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM ".$table_prefix."terms WHERE slug=%s", array($alt_location_name)));
1723 1723
             $suffix++;
1724 1724
         } while ($location_slug_check && $suffix < 100);
1725 1725
 
@@ -1773,7 +1773,7 @@  discard block
 block discarded – undo
1773 1773
 
1774 1774
         $suffix = 1;
1775 1775
         do {
1776
-            $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1776
+            $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1))."-$suffix";
1777 1777
 
1778 1778
             /** This action is documented in geodirectory_hooks_actions.php */
1779 1779
             $term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
@@ -1785,7 +1785,7 @@  discard block
 block discarded – undo
1785 1785
 
1786 1786
         //wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
1787 1787
 
1788
-        $wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
1788
+        $wpdb->query($wpdb->prepare("UPDATE ".$table_prefix."terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
1789 1789
 
1790 1790
     }
1791 1791
 	
@@ -1794,18 +1794,18 @@  discard block
 block discarded – undo
1794 1794
 	$post_type = !empty($taxonomy_obj) ? $taxonomy_obj->object_type[0] : NULL;
1795 1795
 	
1796 1796
 	$post_types = geodir_get_posttypes();
1797
-	if ($post_type && in_array($post_type, $post_types) && $post_type . '_tags' == $taxonomy) {		
1798
-		$posts_obj = $wpdb->get_results($wpdb->prepare("SELECT object_id FROM " . $wpdb->term_relationships . " WHERE term_taxonomy_id = %d", array($tt_id)));
1797
+	if ($post_type && in_array($post_type, $post_types) && $post_type.'_tags' == $taxonomy) {		
1798
+		$posts_obj = $wpdb->get_results($wpdb->prepare("SELECT object_id FROM ".$wpdb->term_relationships." WHERE term_taxonomy_id = %d", array($tt_id)));
1799 1799
 		
1800 1800
 		if (!empty($posts_obj)) {
1801 1801
 			foreach ($posts_obj as $post_obj) {
1802 1802
 				$post_id = $post_obj->object_id;
1803 1803
 				
1804
-				$raw_tags = wp_get_object_terms($post_id, $post_type . '_tags', array('fields' => 'names'));
1804
+				$raw_tags = wp_get_object_terms($post_id, $post_type.'_tags', array('fields' => 'names'));
1805 1805
 				$post_tags = !empty($raw_tags) ? implode(',', $raw_tags) : '';
1806 1806
 				
1807
-				$listing_table = $plugin_prefix . $post_type . '_detail';
1808
-				$wpdb->query($wpdb->prepare("UPDATE " . $listing_table . " SET post_tags=%s WHERE post_id =%d", array($post_tags, $post_id)));
1807
+				$listing_table = $plugin_prefix.$post_type.'_detail';
1808
+				$wpdb->query($wpdb->prepare("UPDATE ".$listing_table." SET post_tags=%s WHERE post_id =%d", array($post_tags, $post_id)));
1809 1809
 			}
1810 1810
 		}
1811 1811
 	}
@@ -1839,7 +1839,7 @@  discard block
 block discarded – undo
1839 1839
     if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug)
1840 1840
         return $slug_exists = true;
1841 1841
 
1842
-    if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
1842
+    if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM ".$table_prefix."terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
1843 1843
         return $slug_exists = true;
1844 1844
 
1845 1845
     return $slug_exists;
@@ -1879,43 +1879,43 @@  discard block
 block discarded – undo
1879 1879
 
1880 1880
 
1881 1881
     $gd_page = '';
1882
-    if(geodir_is_page('home')){
1882
+    if (geodir_is_page('home')) {
1883 1883
         $gd_page = 'home';
1884 1884
         $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
1885 1885
     }
1886
-    elseif(geodir_is_page('detail')){
1886
+    elseif (geodir_is_page('detail')) {
1887 1887
         $gd_page = 'detail';
1888 1888
         $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
1889 1889
     }
1890
-    elseif(geodir_is_page('pt')){
1890
+    elseif (geodir_is_page('pt')) {
1891 1891
         $gd_page = 'pt';
1892 1892
         $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
1893 1893
     }
1894
-    elseif(geodir_is_page('listing')){
1894
+    elseif (geodir_is_page('listing')) {
1895 1895
         $gd_page = 'listing';
1896 1896
         $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
1897 1897
     }
1898
-    elseif(geodir_is_page('location')){
1898
+    elseif (geodir_is_page('location')) {
1899 1899
         $gd_page = 'location';
1900 1900
         $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
1901 1901
     }
1902
-    elseif(geodir_is_page('search')){
1902
+    elseif (geodir_is_page('search')) {
1903 1903
         $gd_page = 'search';
1904 1904
         $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
1905 1905
     }
1906
-    elseif(geodir_is_page('add-listing')){
1906
+    elseif (geodir_is_page('add-listing')) {
1907 1907
         $gd_page = 'add-listing';
1908 1908
         $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
1909 1909
     }
1910
-    elseif(geodir_is_page('author')){
1910
+    elseif (geodir_is_page('author')) {
1911 1911
         $gd_page = 'author';
1912 1912
         $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
1913 1913
     }
1914
-    elseif(geodir_is_page('login')){
1914
+    elseif (geodir_is_page('login')) {
1915 1915
         $gd_page = 'login';
1916 1916
         $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
1917 1917
     }
1918
-    elseif(geodir_is_page('listing-success')){
1918
+    elseif (geodir_is_page('listing-success')) {
1919 1919
         $gd_page = 'listing-success';
1920 1920
         $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
1921 1921
     }
@@ -1947,12 +1947,12 @@  discard block
 block discarded – undo
1947 1947
 
1948 1948
     if (!get_option('geodir_set_post_attachments')) {
1949 1949
 
1950
-        require_once(ABSPATH . 'wp-admin/includes/image.php');
1951
-        require_once(ABSPATH . 'wp-admin/includes/file.php');
1950
+        require_once(ABSPATH.'wp-admin/includes/image.php');
1951
+        require_once(ABSPATH.'wp-admin/includes/file.php');
1952 1952
 
1953 1953
         $all_postypes = geodir_get_posttypes();
1954 1954
 
1955
-        foreach($all_postypes as $post_type){
1955
+        foreach ($all_postypes as $post_type) {
1956 1956
             $args = array(
1957 1957
                 'posts_per_page' => -1,
1958 1958
                 'post_type' => $post_type,
@@ -2046,7 +2046,7 @@  discard block
 block discarded – undo
2046 2046
 {
2047 2047
     $user_id = get_current_user_id();
2048 2048
 
2049
-    if(!$user_id){return $post;}
2049
+    if (!$user_id) {return $post; }
2050 2050
 
2051 2051
     $gd_post_types = geodir_get_posttypes();
2052 2052
 
@@ -2155,7 +2155,7 @@  discard block
 block discarded – undo
2155 2155
 
2156 2156
         if (array_key_exists('post_video', $tabs_arr)) {
2157 2157
 
2158
-            $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)));
2158
+            $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)));
2159 2159
 
2160 2160
             if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '')
2161 2161
                 $tabs_arr['post_video']['heading_text'] = $field_title;
@@ -2163,7 +2163,7 @@  discard block
 block discarded – undo
2163 2163
 
2164 2164
         if (array_key_exists('special_offers', $tabs_arr)) {
2165 2165
 
2166
-            $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)));
2166
+            $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)));
2167 2167
 
2168 2168
             if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '')
2169 2169
                 $tabs_arr['special_offers']['heading_text'] = $field_title;
@@ -2184,7 +2184,7 @@  discard block
 block discarded – undo
2184 2184
  */
2185 2185
 function geodir_remove_template_redirect_actions()
2186 2186
 {
2187
-    if (geodir_is_page('login')){
2187
+    if (geodir_is_page('login')) {
2188 2188
         remove_all_actions('template_redirect');
2189 2189
         remove_action('init', 'avia_modify_front', 10);
2190 2190
     }
@@ -2231,25 +2231,25 @@  discard block
 block discarded – undo
2231 2231
         $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
2232 2232
 
2233 2233
         $wpdb->query(
2234
-            $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
2234
+            $wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = %d AND file=%s ",
2235 2235
                 array($post_id, $split_img_file_path)
2236 2236
             )
2237 2237
         );
2238 2238
 
2239 2239
         $attachment_data = $wpdb->get_row(
2240
-            $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
2240
+            $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id=%d",
2241 2241
                 array($post_id)
2242 2242
             )
2243 2243
         );
2244 2244
 
2245 2245
         if (!empty($attachment_data)) {
2246
-            $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2246
+            $wpdb->query("UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order=1 WHERE ID=".$attachment_data->ID);
2247 2247
         }
2248 2248
 
2249 2249
 
2250
-        $table_name = $plugin_prefix . $post_type . '_detail';
2250
+        $table_name = $plugin_prefix.$post_type.'_detail';
2251 2251
 
2252
-        $wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
2252
+        $wpdb->query("UPDATE ".$table_name." SET featured_image='' WHERE post_id =".$post_id);
2253 2253
 
2254 2254
         geodir_set_wp_featured_image($post_id);
2255 2255
 
@@ -2277,9 +2277,9 @@  discard block
 block discarded – undo
2277 2277
 
2278 2278
     foreach ($all_postypes as $posttype) {
2279 2279
 
2280
-        $tablename = $plugin_prefix . $posttype . '_detail';
2280
+        $tablename = $plugin_prefix.$posttype.'_detail';
2281 2281
 
2282
-        $get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
2282
+        $get_post_data = $wpdb->get_results("SELECT post_id FROM ".$tablename);
2283 2283
 
2284 2284
         if (!empty($get_post_data)) {
2285 2285
 
@@ -2287,7 +2287,7 @@  discard block
 block discarded – undo
2287 2287
 
2288 2288
                 $post_id = $data->post_id;
2289 2289
 
2290
-                $attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
2290
+                $attachment_data = $wpdb->get_results("SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id =".$post_id." AND file!=''");
2291 2291
 
2292 2292
                 if (!empty($attachment_data)) {
2293 2293
 
@@ -2304,22 +2304,22 @@  discard block
 block discarded – undo
2304 2304
 
2305 2305
                         $file_name = $file_info['basename'];
2306 2306
 
2307
-                        $img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name;
2307
+                        $img_arr['path'] = $uploads_path.$sub_dir.'/'.$file_name;
2308 2308
 
2309 2309
                         if (!file_exists($img_arr['path'])) {
2310 2310
 
2311
-                            $wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
2311
+                            $wpdb->query("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE ID=".$attach->ID);
2312 2312
 
2313 2313
                         }
2314 2314
 
2315 2315
                     }
2316 2316
 
2317
-                    $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
2317
+                    $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id=".$post_id." GROUP BY post_id");
2318 2318
 
2319 2319
                     if (!empty($attachment_data)) {
2320 2320
 
2321 2321
                         if ($attachment_data->ID)
2322
-                            $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2322
+                            $wpdb->query("UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order=1 WHERE ID=".$attachment_data->ID);
2323 2323
 
2324 2324
                     } else {
2325 2325
 
@@ -2333,7 +2333,7 @@  discard block
 block discarded – undo
2333 2333
 
2334 2334
                     }
2335 2335
 
2336
-                    $wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
2336
+                    $wpdb->query("UPDATE ".$tablename." SET featured_image='' WHERE post_id =".$post_id);
2337 2337
 
2338 2338
                     geodir_set_wp_featured_image($post_id);
2339 2339
 
@@ -2362,7 +2362,7 @@  discard block
 block discarded – undo
2362 2362
 {
2363 2363
 
2364 2364
     if (!get_option('geodir_default_rating_star_icon')) {
2365
-        update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
2365
+        update_option('geodir_default_rating_star_icon', geodir_plugin_url().'/geodirectory-assets/images/stars.png');
2366 2366
     }
2367 2367
 
2368 2368
 }
@@ -2379,10 +2379,10 @@  discard block
 block discarded – undo
2379 2379
  * @global string $plugin_prefix Geodirectory plugin table prefix.
2380 2380
  * @return array User listing count for each post type.
2381 2381
  */
2382
-function geodir_user_post_listing_count($user_id=null)
2382
+function geodir_user_post_listing_count($user_id = null)
2383 2383
 {
2384 2384
     global $wpdb, $plugin_prefix, $current_user;
2385
-    if(!$user_id){
2385
+    if (!$user_id) {
2386 2386
         $user_id = $current_user->ID;
2387 2387
     }
2388 2388
 
@@ -2393,7 +2393,7 @@  discard block
 block discarded – undo
2393 2393
     $user_listing = array();
2394 2394
     if (is_array($all_posts) && !empty($all_posts)) {
2395 2395
         foreach ($all_posts as $ptype) {
2396
-            $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' )");
2396
+            $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' )");
2397 2397
 
2398 2398
             if ($total_posts > 0) {
2399 2399
                 $user_listing[$ptype] = $total_posts;
@@ -2435,19 +2435,19 @@  discard block
 block discarded – undo
2435 2435
         $custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location);
2436 2436
 
2437 2437
         //remove video and special offers if it is already set to show
2438
-        if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
2438
+        if (isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']) {
2439 2439
             $unset_video = true;
2440 2440
         }
2441 2441
 
2442
-        if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
2442
+        if (isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']) {
2443 2443
             $unset_special_offers = true;
2444 2444
         }
2445
-        if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
2446
-            foreach($custom_fields as $key => $custom_field){
2447
-                if($custom_field['name']=='geodir_video' && isset($unset_video)){
2445
+        if (isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)) {
2446
+            foreach ($custom_fields as $key => $custom_field) {
2447
+                if ($custom_field['name'] == 'geodir_video' && isset($unset_video)) {
2448 2448
                     unset($custom_fields[$key]);
2449 2449
                 }
2450
-                if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
2450
+                if ($custom_field['name'] == 'geodir_special_offers' && isset($unset_special_offers)) {
2451 2451
                     unset($custom_fields[$key]);
2452 2452
                 }
2453 2453
             }
@@ -2466,7 +2466,7 @@  discard block
 block discarded – undo
2466 2466
                     $post->{$field_name} = $_REQUEST[$field_name];
2467 2467
                 }
2468 2468
 
2469
-                if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false  && ((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'))) {
2469
+                if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((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'))) {
2470 2470
                     if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2471 2471
                         continue;
2472 2472
                     }
@@ -2515,11 +2515,11 @@  discard block
 block discarded – undo
2515 2515
                         $variables_array['label'] = __($type['site_title'], 'geodirectory');
2516 2516
                         $variables_array['value'] = '';
2517 2517
                         $variables_array['value'] = $post->{$type['htmlvar_name']};
2518
-                    }else{
2518
+                    } else {
2519 2519
                         $i = 0;
2520 2520
                         $fieldset_count++;
2521 2521
                         $field_set_start = 1;
2522
-                        $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count;
2522
+                        $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_'.$fieldset_count;
2523 2523
                         $fieldset_arr[$fieldset_count]['label'] = $label;
2524 2524
                     }
2525 2525
 
@@ -2527,7 +2527,7 @@  discard block
 block discarded – undo
2527 2527
                     $type = stripslashes_deep($type); // strip slashes
2528 2528
                     $html = '';
2529 2529
                     $html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : '';
2530
-                    if($html_var=='post'){$html_var='post_address';}
2530
+                    if ($html_var == 'post') {$html_var = 'post_address'; }
2531 2531
                     $field_icon = geodir_field_icon_proccess($type);
2532 2532
                     $filed_type = $type['type'];
2533 2533
 
@@ -2540,7 +2540,7 @@  discard block
 block discarded – undo
2540 2540
                      * @param string $fields_location The location the field is to be show.
2541 2541
                      * @param array $type The array of field values.
2542 2542
                      */
2543
-                    $html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
2543
+                    $html = apply_filters("geodir_custom_field_output_{$filed_type}", $html, $fields_location, $type);
2544 2544
 
2545 2545
 
2546 2546
                     /**
@@ -2586,7 +2586,7 @@  discard block
 block discarded – undo
2586 2586
                                  * @param string $htmlvar_name The field HTML var name.
2587 2587
                                  */
2588 2588
                                 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
2589
-                                'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>'
2589
+                                'tab_content' => '<div class="geodir-company_info field-group xxx">'.$fieldset_html.'</div>'
2590 2590
                             );
2591 2591
                         }
2592 2592
                     } else {
@@ -2646,7 +2646,7 @@  discard block
 block discarded – undo
2646 2646
             }
2647 2647
             $status .= ")</strong>";
2648 2648
 
2649
-            $html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
2649
+            $html = '<span class="geodir-post-status">'.$status_icon.' <font class="geodir-status-label">'.__('Status: ', 'geodirectory').'</font>'.$status.'</span>';
2650 2650
         }
2651 2651
     }
2652 2652
 
@@ -2726,7 +2726,7 @@  discard block
 block discarded – undo
2726 2726
 function geodir_no_rating_comment_text($content, $comment = '')
2727 2727
 {
2728 2728
     if (!is_admin()) {
2729
-        return '<div class="description">' . $content . '</div>';
2729
+        return '<div class="description">'.$content.'</div>';
2730 2730
     } else {
2731 2731
         return $content;
2732 2732
     }
@@ -2804,7 +2804,7 @@  discard block
 block discarded – undo
2804 2804
         $classes[] = 'gd-no-rating';
2805 2805
     }
2806 2806
     
2807
-    $classes[] = 'gd-map-' . geodir_map_name();
2807
+    $classes[] = 'gd-map-'.geodir_map_name();
2808 2808
 
2809 2809
     return $classes;
2810 2810
 }
@@ -2824,7 +2824,7 @@  discard block
 block discarded – undo
2824 2824
         $class .= ' gd-no-rating';
2825 2825
     }
2826 2826
     
2827
-    $class .= ' gd-map-' . geodir_map_name();
2827
+    $class .= ' gd-map-'.geodir_map_name();
2828 2828
 
2829 2829
     return $class;
2830 2830
 }
@@ -2859,7 +2859,7 @@  discard block
 block discarded – undo
2859 2859
  * @return array Translation texts.
2860 2860
  */
2861 2861
 function geodir_load_gd_options_text_translation($translation_texts = array()) {
2862
-    $translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array();
2862
+    $translation_texts = !empty($translation_texts) && is_array($translation_texts) ? $translation_texts : array();
2863 2863
 
2864 2864
     $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');
2865 2865
 
@@ -2925,14 +2925,14 @@  discard block
 block discarded – undo
2925 2925
  * @param array $args The array of menu arguments.
2926 2926
  * @return array The modified arguments.
2927 2927
  */
2928
-function geodir_add_nav_menu_class( $args )
2928
+function geodir_add_nav_menu_class($args)
2929 2929
 {
2930 2930
 
2931
-        if(isset($args['menu_class'])){
2931
+        if (isset($args['menu_class'])) {
2932 2932
             $args['menu_class'] = $args['menu_class']." gd-menu-z";
2933 2933
         }
2934 2934
     
2935 2935
     return $args;
2936 2936
 }
2937 2937
 
2938
-add_filter( 'wp_nav_menu_args', 'geodir_add_nav_menu_class' );
2939 2938
\ No newline at end of file
2939
+add_filter('wp_nav_menu_args', 'geodir_add_nav_menu_class');
2940 2940
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-templates/geodir-information.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -12,27 +12,27 @@
 block discarded – undo
12 12
         <div class="clearfix">
13 13
             <div id="geodir_content">
14 14
                 <?php
15
-                /** This action is documented in geodirectory-templates/geodir-home.php */
16
-                do_action('geodir_add_page_content', 'before', 'info-page');
17
-                global $information;
18
-                echo '<h5 class="geodir_information">';
19
-                echo $information;
20
-                echo '</h5>';
21
-                /** This action is documented in geodirectory-templates/geodir-home.php */
22
-                do_action('geodir_add_page_content', 'after', 'info-page');
23
-                ?>
15
+				/** This action is documented in geodirectory-templates/geodir-home.php */
16
+				do_action('geodir_add_page_content', 'before', 'info-page');
17
+				global $information;
18
+				echo '<h5 class="geodir_information">';
19
+				echo $information;
20
+				echo '</h5>';
21
+				/** This action is documented in geodirectory-templates/geodir-home.php */
22
+				do_action('geodir_add_page_content', 'after', 'info-page');
23
+				?>
24 24
             </div>
25 25
             <!-- geodir_content ends here-->
26 26
             <div id="gd-sidebar-wrapper">
27 27
                 <div class="geodir-sidebar-main">
28 28
                     <div class="geodir-gd-sidebar">
29 29
                         <?php
30
-                        /**
31
-                         * Calls the standard sidebar.
32
-                         *
33
-                         * @since 1.0.0
34
-                         */
35
-                        do_action('geodir_sidebar'); ?>
30
+						/**
31
+						 * Calls the standard sidebar.
32
+						 *
33
+						 * @since 1.0.0
34
+						 */
35
+						do_action('geodir_sidebar'); ?>
36 36
                     </div>
37 37
                 </div>
38 38
             </div>
Please login to merge, or discard this patch.
geodirectory_template_tags.php 3 patches
Braces   +37 added lines, -19 removed lines patch added patch discarded remove patch
@@ -245,13 +245,14 @@  discard block
 block discarded – undo
245 245
  */
246 246
 function geodir_add_async_forscript($url)
247 247
 {
248
-    if (strpos($url, '#asyncload')===false)
249
-        return $url;
250
-    else if (is_admin())
251
-        return str_replace('#asyncload', '', $url);
252
-    else
253
-        return str_replace('#asyncload', '', $url)."' async='async";
254
-}
248
+    if (strpos($url, '#asyncload')===false) {
249
+            return $url;
250
+    } else if (is_admin()) {
251
+            return str_replace('#asyncload', '', $url);
252
+    } else {
253
+            return str_replace('#asyncload', '', $url)."' async='async";
254
+    }
255
+    }
255 256
 add_filter('clean_url', 'geodir_add_async_forscript', 11, 1);
256 257
 
257 258
 /**
@@ -318,8 +319,10 @@  discard block
 block discarded – undo
318 319
 
319 320
     $half_pages_to_show = round($pages_to_show / 2);
320 321
 
321
-    if (geodir_is_page('home') || (get_option('geodir_set_as_home') && is_home())) // dont apply default  pagination for geodirectory home page.
322
-        return;
322
+    if (geodir_is_page('home') || (get_option('geodir_set_as_home') && is_home())) {
323
+    	// dont apply default  pagination for geodirectory home page.
324
+        return;
325
+    }
323 326
 
324 327
     if (!is_single()) {
325 328
         if (function_exists('geodir_location_geo_home_link')) {
@@ -439,11 +442,21 @@  discard block
 block discarded – undo
439 442
     }
440 443
     $dist_dif = 1000;
441 444
 
442
-    if ($dist <= 5000) $dist_dif = 500;
443
-    if ($dist <= 1000) $dist_dif = 100;
444
-    if ($dist <= 500) $dist_dif = 50;
445
-    if ($dist <= 100) $dist_dif = 10;
446
-    if ($dist <= 50) $dist_dif = 5;
445
+    if ($dist <= 5000) {
446
+    	$dist_dif = 500;
447
+    }
448
+    if ($dist <= 1000) {
449
+    	$dist_dif = 100;
450
+    }
451
+    if ($dist <= 500) {
452
+    	$dist_dif = 50;
453
+    }
454
+    if ($dist <= 100) {
455
+    	$dist_dif = 10;
456
+    }
457
+    if ($dist <= 50) {
458
+    	$dist_dif = 5;
459
+    }
447 460
 
448 461
     ?>
449 462
     <script type="text/javascript">
@@ -505,18 +518,23 @@  discard block
 block discarded – undo
505 518
 {
506 519
 
507 520
     $default_search_for_text = SEARCH_FOR_TEXT;
508
-    if (get_option('geodir_search_field_default_text'))
509
-        $default_search_for_text = __(get_option('geodir_search_field_default_text'), 'geodirectory');
521
+    if (get_option('geodir_search_field_default_text')) {
522
+            $default_search_for_text = __(get_option('geodir_search_field_default_text'), 'geodirectory');
523
+    }
510 524
 
511 525
     $default_near_text = NEAR_TEXT;
512
-    if (get_option('geodir_near_field_default_text'))
513
-        $default_near_text = __(get_option('geodir_near_field_default_text'), 'geodirectory');
526
+    if (get_option('geodir_near_field_default_text')) {
527
+            $default_near_text = __(get_option('geodir_near_field_default_text'), 'geodirectory');
528
+    }
514 529
 
515 530
     ?>
516 531
 
517 532
 
518 533
     <script type="text/javascript">
519
-        var default_location = '<?php if($search_location = geodir_get_default_location())  echo $search_location->city ;?>';
534
+        var default_location = '<?php if($search_location = geodir_get_default_location()) {
535
+	echo $search_location->city ;
536
+}
537
+?>';
520 538
         var latlng;
521 539
         var address;
522 540
         var dist = 0;
Please login to merge, or discard this patch.
Indentation   +328 added lines, -328 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
  */
23 23
 function geodir_core_dequeue_script()
24 24
 {
25
-    wp_dequeue_script('flexslider');
25
+	wp_dequeue_script('flexslider');
26 26
 }
27 27
 
28 28
 add_action('wp_print_scripts', 'geodir_core_dequeue_script', 100);
@@ -35,168 +35,168 @@  discard block
 block discarded – undo
35 35
  */
36 36
 function geodir_templates_scripts()
37 37
 {
38
-    $is_detail_page = false;
39
-    $geodir_map_name = geodir_map_name();
40
-
41
-    if((is_single() && geodir_is_geodir_page()) || (is_page() && geodir_is_page('preview') )) {
42
-        $is_detail_page = true;
43
-    }
44
-
45
-    wp_enqueue_script('jquery');
46
-
47
-    wp_register_script('geodirectory-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory.min.js#asyncload', array(), GEODIRECTORY_VERSION);
48
-    wp_enqueue_script('geodirectory-script');
49
-
50
-    $geodir_vars_data = array(
51
-        'siteurl' => get_option('siteurl'),
52
-        'geodir_plugin_url' => geodir_plugin_url(),
53
-        'geodir_lazy_load' => get_option('geodir_lazy_load',1),
54
-        'geodir_ajax_url' => geodir_get_ajax_url(),
55
-        'geodir_gd_modal' => (int)get_option('geodir_disable_gb_modal'),
56
-        'is_rtl' => is_rtl() ? 1 : 0 // fix rtl issue
57
-    );
58
-
59
-    /**
60
-     * Filter the `geodir_var` data array that outputs the  wp_localize_script() translations and variables.
61
-     *
62
-     * This is used by addons to add JS translatable variables.
63
-     *
64
-     * @since 1.4.4
65
-     * @param array $geodir_vars_data {
66
-     *    geodir var data used by addons to add JS translatable variables.
67
-     *
68
-     *    @type string $siteurl Site url.
69
-     *    @type string $geodir_plugin_url Geodirectory core plugin url.
70
-     *    @type string $geodir_ajax_url Geodirectory plugin ajax url.
71
-     *    @type int $geodir_gd_modal Disable GD modal that displays slideshow images in popup?.
72
-     *    @type int $is_rtl Checks if current locale is RTL.
73
-     *
74
-     * }
75
-     */
76
-    $geodir_vars_data = apply_filters('geodir_vars_data',$geodir_vars_data);
77
-
78
-    wp_localize_script('geodirectory-script', 'geodir_var', $geodir_vars_data);
79
-
80
-    wp_register_script('geodirectory-jquery-flexslider-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.flexslider.min.js', array(), GEODIRECTORY_VERSION,true);
81
-    if($is_detail_page){wp_enqueue_script('geodirectory-jquery-flexslider-js');}
82
-
83
-    wp_register_script('geodirectory-lightbox-jquery', geodir_plugin_url() . '/geodirectory-assets/js/jquery.lightbox-0.5.min.js', array(), GEODIRECTORY_VERSION,true);
84
-    wp_enqueue_script('geodirectory-lightbox-jquery');
85
-
86
-    wp_register_script('geodirectory-jquery-simplemodal', geodir_plugin_url() . '/geodirectory-assets/js/jquery.simplemodal.min.js', array(), GEODIRECTORY_VERSION,true);
87
-    if ($is_detail_page) {
88
-        wp_enqueue_script('geodirectory-jquery-simplemodal');
89
-    }
90
-
91
-    if (in_array($geodir_map_name, array('auto', 'google'))) {
92
-        $map_lang = "&language=" . geodir_get_map_default_language();
93
-        $map_key = "&key=" . geodir_get_map_api_key();
94
-        /**
95
-         * Filter the variables that are added to the end of the google maps script call.
96
-         *
97
-         * This i used to change things like google maps language etc.
98
-         *
99
-         * @since 1.0.0
100
-         * @param string $var The string to filter, default is empty string.
101
-         */
102
-        $map_extra = apply_filters('geodir_googlemap_script_extra', '');
103
-        wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra , '', NULL);
104
-    }
38
+	$is_detail_page = false;
39
+	$geodir_map_name = geodir_map_name();
40
+
41
+	if((is_single() && geodir_is_geodir_page()) || (is_page() && geodir_is_page('preview') )) {
42
+		$is_detail_page = true;
43
+	}
44
+
45
+	wp_enqueue_script('jquery');
46
+
47
+	wp_register_script('geodirectory-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory.min.js#asyncload', array(), GEODIRECTORY_VERSION);
48
+	wp_enqueue_script('geodirectory-script');
49
+
50
+	$geodir_vars_data = array(
51
+		'siteurl' => get_option('siteurl'),
52
+		'geodir_plugin_url' => geodir_plugin_url(),
53
+		'geodir_lazy_load' => get_option('geodir_lazy_load',1),
54
+		'geodir_ajax_url' => geodir_get_ajax_url(),
55
+		'geodir_gd_modal' => (int)get_option('geodir_disable_gb_modal'),
56
+		'is_rtl' => is_rtl() ? 1 : 0 // fix rtl issue
57
+	);
58
+
59
+	/**
60
+	 * Filter the `geodir_var` data array that outputs the  wp_localize_script() translations and variables.
61
+	 *
62
+	 * This is used by addons to add JS translatable variables.
63
+	 *
64
+	 * @since 1.4.4
65
+	 * @param array $geodir_vars_data {
66
+	 *    geodir var data used by addons to add JS translatable variables.
67
+	 *
68
+	 *    @type string $siteurl Site url.
69
+	 *    @type string $geodir_plugin_url Geodirectory core plugin url.
70
+	 *    @type string $geodir_ajax_url Geodirectory plugin ajax url.
71
+	 *    @type int $geodir_gd_modal Disable GD modal that displays slideshow images in popup?.
72
+	 *    @type int $is_rtl Checks if current locale is RTL.
73
+	 *
74
+	 * }
75
+	 */
76
+	$geodir_vars_data = apply_filters('geodir_vars_data',$geodir_vars_data);
77
+
78
+	wp_localize_script('geodirectory-script', 'geodir_var', $geodir_vars_data);
79
+
80
+	wp_register_script('geodirectory-jquery-flexslider-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.flexslider.min.js', array(), GEODIRECTORY_VERSION,true);
81
+	if($is_detail_page){wp_enqueue_script('geodirectory-jquery-flexslider-js');}
82
+
83
+	wp_register_script('geodirectory-lightbox-jquery', geodir_plugin_url() . '/geodirectory-assets/js/jquery.lightbox-0.5.min.js', array(), GEODIRECTORY_VERSION,true);
84
+	wp_enqueue_script('geodirectory-lightbox-jquery');
85
+
86
+	wp_register_script('geodirectory-jquery-simplemodal', geodir_plugin_url() . '/geodirectory-assets/js/jquery.simplemodal.min.js', array(), GEODIRECTORY_VERSION,true);
87
+	if ($is_detail_page) {
88
+		wp_enqueue_script('geodirectory-jquery-simplemodal');
89
+	}
90
+
91
+	if (in_array($geodir_map_name, array('auto', 'google'))) {
92
+		$map_lang = "&language=" . geodir_get_map_default_language();
93
+		$map_key = "&key=" . geodir_get_map_api_key();
94
+		/**
95
+		 * Filter the variables that are added to the end of the google maps script call.
96
+		 *
97
+		 * This i used to change things like google maps language etc.
98
+		 *
99
+		 * @since 1.0.0
100
+		 * @param string $var The string to filter, default is empty string.
101
+		 */
102
+		$map_extra = apply_filters('geodir_googlemap_script_extra', '');
103
+		wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra , '', NULL);
104
+	}
105 105
     
106
-    if ($geodir_map_name == 'osm') {
107
-        // Leaflet OpenStreetMap
108
-        wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
109
-        wp_enqueue_style('geodirectory-leaflet-style');
106
+	if ($geodir_map_name == 'osm') {
107
+		// Leaflet OpenStreetMap
108
+		wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
109
+		wp_enqueue_style('geodirectory-leaflet-style');
110 110
             
111
-        wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
112
-        wp_enqueue_script('geodirectory-leaflet-script');
111
+		wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
112
+		wp_enqueue_script('geodirectory-leaflet-script');
113 113
         
114
-        wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array(), GEODIRECTORY_VERSION);
115
-        wp_enqueue_script('geodirectory-leaflet-geo-script');
114
+		wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array(), GEODIRECTORY_VERSION);
115
+		wp_enqueue_script('geodirectory-leaflet-geo-script');
116 116
         
117
-        if ($is_detail_page) {
118
-            wp_register_style('geodirectory-leaflet-routing-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/routing/leaflet-routing-machine.css', array(), GEODIRECTORY_VERSION);
119
-            wp_enqueue_style('geodirectory-leaflet-routing-style');
117
+		if ($is_detail_page) {
118
+			wp_register_style('geodirectory-leaflet-routing-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/routing/leaflet-routing-machine.css', array(), GEODIRECTORY_VERSION);
119
+			wp_enqueue_style('geodirectory-leaflet-routing-style');
120 120
                 
121
-            wp_register_script('geodirectory-leaflet-routing-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/routing/leaflet-routing-machine.js', array(), GEODIRECTORY_VERSION);
122
-            wp_enqueue_script('geodirectory-leaflet-routing-script');
123
-        }
124
-    }
125
-    wp_enqueue_script( 'jquery-ui-autocomplete' );
121
+			wp_register_script('geodirectory-leaflet-routing-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/routing/leaflet-routing-machine.js', array(), GEODIRECTORY_VERSION);
122
+			wp_enqueue_script('geodirectory-leaflet-routing-script');
123
+		}
124
+	}
125
+	wp_enqueue_script( 'jquery-ui-autocomplete' );
126 126
     
127
-    wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
128
-    wp_enqueue_script('geodirectory-goMap-script');
129
-
130
-
131
-    wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.min.js', array(), GEODIRECTORY_VERSION);
132
-    wp_enqueue_script('chosen');
133
-
134
-    wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.min.js', array(), GEODIRECTORY_VERSION);
135
-    wp_enqueue_script('geodirectory-choose-ajax');
136
-
137
-    wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.min.js', array('jquery-ui-datepicker', 'jquery-ui-slider', 'jquery-effects-core', 'jquery-effects-slide'), '', true);
138
-
139
-    if (is_page() && geodir_is_page('add-listing')) {
140
-        // SCRIPT FOR UPLOAD
141
-        wp_enqueue_script('plupload-all');
142
-        wp_enqueue_script('jquery-ui-sortable');
143
-
144
-        wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.min.js#asyncload', array(), GEODIRECTORY_VERSION,true);
145
-        wp_enqueue_script('geodirectory-plupload-script');
146
-        // SCRIPT FOR UPLOAD END
147
-
148
-        // 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
149
-        if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
150
-            $ajax_url = admin_url('admin-ajax.php');
151
-        } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
152
-            $ajax_url = admin_url('admin-ajax.php');
153
-        } elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
154
-            $ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
155
-        } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
156
-            $ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
157
-        } else {
158
-            $ajax_url = admin_url('admin-ajax.php');
159
-        }
127
+	wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
128
+	wp_enqueue_script('geodirectory-goMap-script');
129
+
130
+
131
+	wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.min.js', array(), GEODIRECTORY_VERSION);
132
+	wp_enqueue_script('chosen');
133
+
134
+	wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.min.js', array(), GEODIRECTORY_VERSION);
135
+	wp_enqueue_script('geodirectory-choose-ajax');
136
+
137
+	wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.min.js', array('jquery-ui-datepicker', 'jquery-ui-slider', 'jquery-effects-core', 'jquery-effects-slide'), '', true);
138
+
139
+	if (is_page() && geodir_is_page('add-listing')) {
140
+		// SCRIPT FOR UPLOAD
141
+		wp_enqueue_script('plupload-all');
142
+		wp_enqueue_script('jquery-ui-sortable');
143
+
144
+		wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.min.js#asyncload', array(), GEODIRECTORY_VERSION,true);
145
+		wp_enqueue_script('geodirectory-plupload-script');
146
+		// SCRIPT FOR UPLOAD END
147
+
148
+		// 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
149
+		if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
150
+			$ajax_url = admin_url('admin-ajax.php');
151
+		} elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
152
+			$ajax_url = admin_url('admin-ajax.php');
153
+		} elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
154
+			$ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
155
+		} elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
156
+			$ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
157
+		} else {
158
+			$ajax_url = admin_url('admin-ajax.php');
159
+		}
160 160
 
161
-        // place js config array for plupload
162
-        $plupload_init = array(
163
-            'runtimes' => 'html5,silverlight,flash,browserplus,gears,html4',
164
-            'browse_button' => 'plupload-browse-button', // will be adjusted per uploader
165
-            'container' => 'plupload-upload-ui', // will be adjusted per uploader
166
-            'drop_element' => 'dropbox', // will be adjusted per uploader
167
-            'file_data_name' => 'async-upload', // will be adjusted per uploader
168
-            'multiple_queues' => true,
169
-            'max_file_size' => geodir_max_upload_size(),
170
-            'url' => $ajax_url,
171
-            'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
172
-            'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
173
-            'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')),
174
-            'multipart' => true,
175
-            'urlstream_upload' => true,
176
-            'multi_selection' => false, // will be added per uploader
177
-            // additional post data to send to our ajax hook
178
-            'multipart_params' => array(
179
-                '_ajax_nonce' => "", // will be added per uploader
180
-                'action' => 'plupload_action', // the ajax action name
181
-                'imgid' => 0 // will be added per uploader
182
-            )
183
-        );
184
-        $base_plupload_config = json_encode($plupload_init);
185
-
186
-        $gd_plupload_init = array('base_plupload_config' => $base_plupload_config,
187
-            'upload_img_size' => geodir_max_upload_size());
188
-
189
-        wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
190
-
191
-        wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation.min.js#asyncload');
192
-    } // End if for add place page
193
-
194
-    wp_register_script('geodirectory-post-custom-js', geodir_plugin_url() . '/geodirectory-assets/js/post.custom.min.js#asyncload', array(), GEODIRECTORY_VERSION, true);
195
-    if ($is_detail_page) {
161
+		// place js config array for plupload
162
+		$plupload_init = array(
163
+			'runtimes' => 'html5,silverlight,flash,browserplus,gears,html4',
164
+			'browse_button' => 'plupload-browse-button', // will be adjusted per uploader
165
+			'container' => 'plupload-upload-ui', // will be adjusted per uploader
166
+			'drop_element' => 'dropbox', // will be adjusted per uploader
167
+			'file_data_name' => 'async-upload', // will be adjusted per uploader
168
+			'multiple_queues' => true,
169
+			'max_file_size' => geodir_max_upload_size(),
170
+			'url' => $ajax_url,
171
+			'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
172
+			'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
173
+			'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')),
174
+			'multipart' => true,
175
+			'urlstream_upload' => true,
176
+			'multi_selection' => false, // will be added per uploader
177
+			// additional post data to send to our ajax hook
178
+			'multipart_params' => array(
179
+				'_ajax_nonce' => "", // will be added per uploader
180
+				'action' => 'plupload_action', // the ajax action name
181
+				'imgid' => 0 // will be added per uploader
182
+			)
183
+		);
184
+		$base_plupload_config = json_encode($plupload_init);
185
+
186
+		$gd_plupload_init = array('base_plupload_config' => $base_plupload_config,
187
+			'upload_img_size' => geodir_max_upload_size());
188
+
189
+		wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
190
+
191
+		wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation.min.js#asyncload');
192
+	} // End if for add place page
193
+
194
+	wp_register_script('geodirectory-post-custom-js', geodir_plugin_url() . '/geodirectory-assets/js/post.custom.min.js#asyncload', array(), GEODIRECTORY_VERSION, true);
195
+	if ($is_detail_page) {
196 196
 		wp_enqueue_script('geodirectory-post-custom-js');
197 197
 	}
198 198
 
199
-    // font awesome rating script
199
+	// font awesome rating script
200 200
 	if (get_option('geodir_reviewrating_enable_font_awesome')) {
201 201
 		wp_register_script('geodir-barrating-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION, true);
202 202
 		wp_enqueue_script('geodir-barrating-js');
@@ -205,11 +205,11 @@  discard block
 block discarded – undo
205 205
 		wp_enqueue_script('geodir-jRating-js');
206 206
 	}
207 207
 
208
-    wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.js#asyncload', array(), GEODIRECTORY_VERSION, true);
209
-    wp_enqueue_script('geodir-on-document-load');
208
+	wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.js#asyncload', array(), GEODIRECTORY_VERSION, true);
209
+	wp_enqueue_script('geodir-on-document-load');
210 210
 
211
-    wp_register_script('google-geometa', geodir_plugin_url() . '/geodirectory-assets/js/geometa.min.js#asyncload', array(), GEODIRECTORY_VERSION, true);
212
-    wp_enqueue_script('google-geometa');
211
+	wp_register_script('google-geometa', geodir_plugin_url() . '/geodirectory-assets/js/geometa.min.js#asyncload', array(), GEODIRECTORY_VERSION, true);
212
+	wp_enqueue_script('google-geometa');
213 213
 }
214 214
 
215 215
 /**
@@ -223,8 +223,8 @@  discard block
 block discarded – undo
223 223
  */
224 224
 function geodir_header_scripts()
225 225
 {
226
-    echo '<style>' . stripslashes(get_option('geodir_coustem_css')) . '</style>';
227
-    echo stripslashes(get_option('geodir_header_scripts'));
226
+	echo '<style>' . stripslashes(get_option('geodir_coustem_css')) . '</style>';
227
+	echo stripslashes(get_option('geodir_header_scripts'));
228 228
 }
229 229
 
230 230
 
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
 function geodir_footer_scripts()
241 241
 {	
242 242
 	echo stripslashes(get_option('geodir_ga_tracking_code'));
243
-    echo stripslashes(get_option('geodir_footer_scripts'));
243
+	echo stripslashes(get_option('geodir_footer_scripts'));
244 244
 }
245 245
 
246 246
 
@@ -254,12 +254,12 @@  discard block
 block discarded – undo
254 254
  */
255 255
 function geodir_add_async_forscript($url)
256 256
 {
257
-    if (strpos($url, '#asyncload')===false)
258
-        return $url;
259
-    else if (is_admin())
260
-        return str_replace('#asyncload', '', $url);
261
-    else
262
-        return str_replace('#asyncload', '', $url)."' async='async";
257
+	if (strpos($url, '#asyncload')===false)
258
+		return $url;
259
+	else if (is_admin())
260
+		return str_replace('#asyncload', '', $url);
261
+	else
262
+		return str_replace('#asyncload', '', $url)."' async='async";
263 263
 }
264 264
 add_filter('clean_url', 'geodir_add_async_forscript', 11, 1);
265 265
 
@@ -272,17 +272,17 @@  discard block
 block discarded – undo
272 272
 function geodir_templates_styles()
273 273
 {
274 274
 
275
-    wp_register_style('geodir-core-scss', geodir_plugin_url() . '/geodirectory-assets/css/gd_core_frontend.css', array(), GEODIRECTORY_VERSION);
276
-    wp_enqueue_style('geodir-core-scss');
277
-    wp_register_style('geodir-core-scss-footer', geodir_plugin_url() . '/geodirectory-assets/css/gd_core_frontend_footer.css', array(), GEODIRECTORY_VERSION);
275
+	wp_register_style('geodir-core-scss', geodir_plugin_url() . '/geodirectory-assets/css/gd_core_frontend.css', array(), GEODIRECTORY_VERSION);
276
+	wp_enqueue_style('geodir-core-scss');
277
+	wp_register_style('geodir-core-scss-footer', geodir_plugin_url() . '/geodirectory-assets/css/gd_core_frontend_footer.css', array(), GEODIRECTORY_VERSION);
278 278
 
279
-    if(is_rtl()){
280
-    wp_register_style('geodirectory-frontend-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl-frontend.css', array(), GEODIRECTORY_VERSION);
281
-    wp_enqueue_style('geodirectory-frontend-rtl-style');
282
-    }
279
+	if(is_rtl()){
280
+	wp_register_style('geodirectory-frontend-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl-frontend.css', array(), GEODIRECTORY_VERSION);
281
+	wp_enqueue_style('geodirectory-frontend-rtl-style');
282
+	}
283 283
 
284
-    wp_register_style('font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
285
-    wp_enqueue_style('font-awesome');
284
+	wp_register_style('font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
285
+	wp_enqueue_style('font-awesome');
286 286
 
287 287
 
288 288
 }
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
  */
297 297
 function geodir_get_sidebar()
298 298
 {
299
-    get_sidebar('geodirectory');
299
+	get_sidebar('geodirectory');
300 300
 }
301 301
 
302 302
 /**
@@ -315,122 +315,122 @@  discard block
 block discarded – undo
315 315
  * @param bool $always_show Do you want to show the pagination always? Default: false.
316 316
  */
317 317
 function geodir_pagination($before = '', $after = '', $prelabel = '', $nxtlabel = '', $pages_to_show = 5, $always_show = false) {
318
-    global $wp_query, $posts_per_page, $wpdb, $paged, $blog_id;
318
+	global $wp_query, $posts_per_page, $wpdb, $paged, $blog_id;
319 319
 
320
-    if (empty($prelabel)) {
321
-        $prelabel = '<strong>&laquo;</strong>';
322
-    }
320
+	if (empty($prelabel)) {
321
+		$prelabel = '<strong>&laquo;</strong>';
322
+	}
323 323
 
324
-    if (empty($nxtlabel)) {
325
-        $nxtlabel = '<strong>&raquo;</strong>';
326
-    }
324
+	if (empty($nxtlabel)) {
325
+		$nxtlabel = '<strong>&raquo;</strong>';
326
+	}
327 327
 
328
-    $half_pages_to_show = round($pages_to_show / 2);
328
+	$half_pages_to_show = round($pages_to_show / 2);
329 329
 
330
-    if (geodir_is_page('home') || (get_option('geodir_set_as_home') && is_home())) // dont apply default  pagination for geodirectory home page.
331
-        return;
330
+	if (geodir_is_page('home') || (get_option('geodir_set_as_home') && is_home())) // dont apply default  pagination for geodirectory home page.
331
+		return;
332 332
 
333
-    if (!is_single()) {
334
-        if (function_exists('geodir_location_geo_home_link')) {
335
-            remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
336
-        }
337
-        $numposts = $wp_query->found_posts;
333
+	if (!is_single()) {
334
+		if (function_exists('geodir_location_geo_home_link')) {
335
+			remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
336
+		}
337
+		$numposts = $wp_query->found_posts;
338 338
 
339
-        $max_page = ceil($numposts / $posts_per_page);
339
+		$max_page = ceil($numposts / $posts_per_page);
340 340
 
341
-        if (empty($paged)) {
342
-            $paged = 1;
343
-        }
341
+		if (empty($paged)) {
342
+			$paged = 1;
343
+		}
344 344
         
345
-        $post_type = geodir_get_current_posttype();
346
-        $listing_type_name = get_post_type_plural_label($post_type);
347
-        if (geodir_is_page('listing') || geodir_is_page('search')) {            
348
-            $term = array();
345
+		$post_type = geodir_get_current_posttype();
346
+		$listing_type_name = get_post_type_plural_label($post_type);
347
+		if (geodir_is_page('listing') || geodir_is_page('search')) {            
348
+			$term = array();
349 349
             
350
-            if (is_tax()) {
351
-                $term_id = get_queried_object_id();
352
-                $taxonomy = get_query_var('taxonomy');
350
+			if (is_tax()) {
351
+				$term_id = get_queried_object_id();
352
+				$taxonomy = get_query_var('taxonomy');
353 353
 
354
-                if ($term_id && $post_type && get_query_var('taxonomy') == $post_type . 'category' ) {
355
-                    $term = get_term($term_id, $post_type . 'category');
356
-                }
357
-            }
354
+				if ($term_id && $post_type && get_query_var('taxonomy') == $post_type . 'category' ) {
355
+					$term = get_term($term_id, $post_type . 'category');
356
+				}
357
+			}
358 358
             
359
-            if (geodir_is_page('search') && !empty($_REQUEST['s' . $post_type . 'category'])) {
360
-                $taxonomy_search = $_REQUEST['s' . $post_type . 'category'];
359
+			if (geodir_is_page('search') && !empty($_REQUEST['s' . $post_type . 'category'])) {
360
+				$taxonomy_search = $_REQUEST['s' . $post_type . 'category'];
361 361
                 
362
-                if (!is_array($taxonomy_search)) {
363
-                    $term = get_term((int)$taxonomy_search, $post_type . 'category');
364
-                } else if(is_array($taxonomy_search) && count($taxonomy_search) == 1) { // single category search
365
-                    $term = get_term((int)$taxonomy_search[0], $post_type . 'category');
366
-                }
367
-            }
362
+				if (!is_array($taxonomy_search)) {
363
+					$term = get_term((int)$taxonomy_search, $post_type . 'category');
364
+				} else if(is_array($taxonomy_search) && count($taxonomy_search) == 1) { // single category search
365
+					$term = get_term((int)$taxonomy_search[0], $post_type . 'category');
366
+				}
367
+			}
368 368
             
369
-            if (!empty($term) && !is_wp_error($term)) {
370
-                $listing_type_name = $term->name;
371
-            }
372
-        }
369
+			if (!empty($term) && !is_wp_error($term)) {
370
+				$listing_type_name = $term->name;
371
+			}
372
+		}
373 373
 
374
-        if ($max_page > 1 || $always_show) {            
375
-            // Extra pagination info
376
-            $geodir_pagination_more_info = get_option('geodir_pagination_advance_info');
377
-            $start_no = ( $paged - 1 ) * $posts_per_page + 1;
378
-            $end_no = min($paged * $posts_per_page, $numposts);
374
+		if ($max_page > 1 || $always_show) {            
375
+			// Extra pagination info
376
+			$geodir_pagination_more_info = get_option('geodir_pagination_advance_info');
377
+			$start_no = ( $paged - 1 ) * $posts_per_page + 1;
378
+			$end_no = min($paged * $posts_per_page, $numposts);
379 379
 
380
-            if ($geodir_pagination_more_info != '') {
381
-                if ($listing_type_name) {
382
-                    $listing_type_name = __($listing_type_name, 'geodirectory');
383
-                    $pegination_desc = wp_sprintf(__('Showing %s %d-%d of %d', 'geodirectory'), $listing_type_name, $start_no, $end_no, $numposts);
384
-                } else {
385
-                    $pegination_desc = wp_sprintf(__('Showing listings %d-%d of %d', 'geodirectory'), $start_no, $end_no, $numposts);
386
-                }
387
-                $pagination_info = '<div class="gd-pagination-details">' . $pegination_desc . '</div>';
388
-                /**
389
-                 * Adds an extra pagination info above/under pagination.
390
-                 *
391
-                 * @since 1.5.9
392
-                 *
393
-                 * @param string $pagination_info Extra pagination info content.
394
-                 * @param string $listing_type_name Listing results type.
395
-                 * @param string $start_no First result number.
396
-                 * @param string $end_no Last result number.
397
-                 * @param string $numposts Total number of listings.
398
-                 * @param string $post_type The post type.
399
-                 */
400
-                $pagination_info = apply_filters('geodir_pagination_advance_info', $pagination_info, $listing_type_name, $start_no, $end_no, $numposts, $post_type);
380
+			if ($geodir_pagination_more_info != '') {
381
+				if ($listing_type_name) {
382
+					$listing_type_name = __($listing_type_name, 'geodirectory');
383
+					$pegination_desc = wp_sprintf(__('Showing %s %d-%d of %d', 'geodirectory'), $listing_type_name, $start_no, $end_no, $numposts);
384
+				} else {
385
+					$pegination_desc = wp_sprintf(__('Showing listings %d-%d of %d', 'geodirectory'), $start_no, $end_no, $numposts);
386
+				}
387
+				$pagination_info = '<div class="gd-pagination-details">' . $pegination_desc . '</div>';
388
+				/**
389
+				 * Adds an extra pagination info above/under pagination.
390
+				 *
391
+				 * @since 1.5.9
392
+				 *
393
+				 * @param string $pagination_info Extra pagination info content.
394
+				 * @param string $listing_type_name Listing results type.
395
+				 * @param string $start_no First result number.
396
+				 * @param string $end_no Last result number.
397
+				 * @param string $numposts Total number of listings.
398
+				 * @param string $post_type The post type.
399
+				 */
400
+				$pagination_info = apply_filters('geodir_pagination_advance_info', $pagination_info, $listing_type_name, $start_no, $end_no, $numposts, $post_type);
401 401
                 
402
-                if ($geodir_pagination_more_info == 'before') {
403
-                    $before = $before . $pagination_info;
404
-                } else if ($geodir_pagination_more_info == 'after') {
405
-                    $after = $pagination_info . $after;
406
-                }
407
-            }
402
+				if ($geodir_pagination_more_info == 'before') {
403
+					$before = $before . $pagination_info;
404
+				} else if ($geodir_pagination_more_info == 'after') {
405
+					$after = $pagination_info . $after;
406
+				}
407
+			}
408 408
             
409
-            echo "$before <div class='Navi gd-navi'>";
410
-            if ($paged >= ($pages_to_show - 1)) {
411
-                echo '<a href="' . str_replace('&paged', '&amp;paged', get_pagenum_link()) . '">&laquo;</a>';
412
-            }
413
-            previous_posts_link($prelabel);
414
-            for ($i = $paged - $half_pages_to_show; $i <= $paged + $half_pages_to_show; $i++) {
415
-                if ($i >= 1 && $i <= $max_page) {
416
-                    if ($i == $paged) {
417
-                        echo "<strong class='on'>$i</strong>";
418
-                    } else {
419
-                        echo ' <a href="' . str_replace('&paged', '&amp;paged', get_pagenum_link($i)) . '">' . $i . '</a> ';
420
-                    }
421
-                }
422
-            }
423
-            next_posts_link($nxtlabel, $max_page);
424
-            if (($paged + $half_pages_to_show) < ($max_page)) {
425
-                echo '<a href="' . str_replace('&paged', '&amp;paged', get_pagenum_link($max_page)) . '">&raquo;</a>';
426
-            }
427
-            echo "</div> $after";
428
-        }
409
+			echo "$before <div class='Navi gd-navi'>";
410
+			if ($paged >= ($pages_to_show - 1)) {
411
+				echo '<a href="' . str_replace('&paged', '&amp;paged', get_pagenum_link()) . '">&laquo;</a>';
412
+			}
413
+			previous_posts_link($prelabel);
414
+			for ($i = $paged - $half_pages_to_show; $i <= $paged + $half_pages_to_show; $i++) {
415
+				if ($i >= 1 && $i <= $max_page) {
416
+					if ($i == $paged) {
417
+						echo "<strong class='on'>$i</strong>";
418
+					} else {
419
+						echo ' <a href="' . str_replace('&paged', '&amp;paged', get_pagenum_link($i)) . '">' . $i . '</a> ';
420
+					}
421
+				}
422
+			}
423
+			next_posts_link($nxtlabel, $max_page);
424
+			if (($paged + $half_pages_to_show) < ($max_page)) {
425
+				echo '<a href="' . str_replace('&paged', '&amp;paged', get_pagenum_link($max_page)) . '">&raquo;</a>';
426
+			}
427
+			echo "</div> $after";
428
+		}
429 429
         
430
-        if (function_exists('geodir_location_geo_home_link')) {
431
-            add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
432
-        }
433
-    }
430
+		if (function_exists('geodir_location_geo_home_link')) {
431
+			add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
432
+		}
433
+	}
434 434
 }
435 435
 
436 436
 /**
@@ -441,20 +441,20 @@  discard block
 block discarded – undo
441 441
  */
442 442
 function geodir_listingsearch_scripts()
443 443
 {
444
-    if (get_option('gd_search_dist') != '') {
445
-        $dist = get_option('gd_search_dist');
446
-    } else {
447
-        $dist = 500;
448
-    }
449
-    $dist_dif = 1000;
450
-
451
-    if ($dist <= 5000) $dist_dif = 500;
452
-    if ($dist <= 1000) $dist_dif = 100;
453
-    if ($dist <= 500) $dist_dif = 50;
454
-    if ($dist <= 100) $dist_dif = 10;
455
-    if ($dist <= 50) $dist_dif = 5;
456
-
457
-    ?>
444
+	if (get_option('gd_search_dist') != '') {
445
+		$dist = get_option('gd_search_dist');
446
+	} else {
447
+		$dist = 500;
448
+	}
449
+	$dist_dif = 1000;
450
+
451
+	if ($dist <= 5000) $dist_dif = 500;
452
+	if ($dist <= 1000) $dist_dif = 100;
453
+	if ($dist <= 500) $dist_dif = 50;
454
+	if ($dist <= 100) $dist_dif = 10;
455
+	if ($dist <= 50) $dist_dif = 5;
456
+
457
+	?>
458 458
     <script type="text/javascript">
459 459
 
460 460
         jQuery(function ($) {
@@ -513,15 +513,15 @@  discard block
 block discarded – undo
513 513
 function geodir_add_sharelocation_scripts()
514 514
 {
515 515
 
516
-    $default_search_for_text = SEARCH_FOR_TEXT;
517
-    if (get_option('geodir_search_field_default_text'))
518
-        $default_search_for_text = __(get_option('geodir_search_field_default_text'), 'geodirectory');
516
+	$default_search_for_text = SEARCH_FOR_TEXT;
517
+	if (get_option('geodir_search_field_default_text'))
518
+		$default_search_for_text = __(get_option('geodir_search_field_default_text'), 'geodirectory');
519 519
 
520
-    $default_near_text = NEAR_TEXT;
521
-    if (get_option('geodir_near_field_default_text'))
522
-        $default_near_text = __(get_option('geodir_near_field_default_text'), 'geodirectory');
520
+	$default_near_text = NEAR_TEXT;
521
+	if (get_option('geodir_near_field_default_text'))
522
+		$default_near_text = __(get_option('geodir_near_field_default_text'), 'geodirectory');
523 523
 
524
-    ?>
524
+	?>
525 525
 
526 526
 
527 527
     <script type="text/javascript">
@@ -602,14 +602,14 @@  discard block
 block discarded – undo
602 602
                     initialise2();
603 603
                 } else {
604 604
                     <?php
605
-                    $near_add = get_option('geodir_search_near_addition');
606
-                    /**
607
-                     * Adds any extra info to the near search box query when trying to geolocate it via google api.
608
-                     *
609
-                     * @since 1.0.0
610
-                     */
611
-                    $near_add2 = apply_filters('geodir_search_near_addition', '');
612
-                    ?>
605
+					$near_add = get_option('geodir_search_near_addition');
606
+					/**
607
+					 * Adds any extra info to the near search box query when trying to geolocate it via google api.
608
+					 *
609
+					 * @since 1.0.0
610
+					 */
611
+					$near_add2 = apply_filters('geodir_search_near_addition', '');
612
+					?>
613 613
                     if (window.gdMaps === 'google') {
614 614
                         Sgeocoder.geocode({'address': address<?php echo ($near_add ? '+", ' . $near_add . '"' : '') . $near_add2;?>},
615 615
                             function (results, status) {
@@ -712,30 +712,30 @@  discard block
 block discarded – undo
712 712
  */
713 713
 function geodir_show_badges_on_image($which, $post, $link)
714 714
 {
715
-    $return = '';
716
-    switch ($which) {
717
-        case 'featured':
718
-            /**
719
-             * Filter the featured image badge html that appears in the listings pages over the thumbnail.
720
-             *
721
-             * @since 1.0.0
722
-             * @param object $post The post object.
723
-             * @param string $link The link to the post.
724
-             */
725
-            $return = apply_filters('geodir_featured_badge_on_image', '<a href="' . $link . '"><span class="geodir_featured_img">&nbsp;</span></a>',$post,$link);
726
-            break;
727
-        case 'new' :
728
-            /**
729
-             * Filter the new image badge html that appears in the listings pages over the thumbnail.
730
-             *
731
-             * @since 1.0.0
732
-             * @param object $post The post object.
733
-             * @param string $link The link to the post.
734
-             */
735
-            $return = apply_filters('geodir_new_badge_on_image', '<a href="' . $link . '"><span class="geodir_new_listing">&nbsp;</span></a>',$post,$link);
736
-            break;
737
-
738
-    }
715
+	$return = '';
716
+	switch ($which) {
717
+		case 'featured':
718
+			/**
719
+			 * Filter the featured image badge html that appears in the listings pages over the thumbnail.
720
+			 *
721
+			 * @since 1.0.0
722
+			 * @param object $post The post object.
723
+			 * @param string $link The link to the post.
724
+			 */
725
+			$return = apply_filters('geodir_featured_badge_on_image', '<a href="' . $link . '"><span class="geodir_featured_img">&nbsp;</span></a>',$post,$link);
726
+			break;
727
+		case 'new' :
728
+			/**
729
+			 * Filter the new image badge html that appears in the listings pages over the thumbnail.
730
+			 *
731
+			 * @since 1.0.0
732
+			 * @param object $post The post object.
733
+			 * @param string $link The link to the post.
734
+			 */
735
+			$return = apply_filters('geodir_new_badge_on_image', '<a href="' . $link . '"><span class="geodir_new_listing">&nbsp;</span></a>',$post,$link);
736
+			break;
737
+
738
+	}
739 739
     
740
-    return $return;
740
+	return $return;
741 741
 }
Please login to merge, or discard this patch.
Spacing   +67 added lines, -67 removed lines patch added patch discarded remove patch
@@ -38,21 +38,21 @@  discard block
 block discarded – undo
38 38
     $is_detail_page = false;
39 39
     $geodir_map_name = geodir_map_name();
40 40
 
41
-    if((is_single() && geodir_is_geodir_page()) || (is_page() && geodir_is_page('preview') )) {
41
+    if ((is_single() && geodir_is_geodir_page()) || (is_page() && geodir_is_page('preview'))) {
42 42
         $is_detail_page = true;
43 43
     }
44 44
 
45 45
     wp_enqueue_script('jquery');
46 46
 
47
-    wp_register_script('geodirectory-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory.min.js#asyncload', array(), GEODIRECTORY_VERSION);
47
+    wp_register_script('geodirectory-script', geodir_plugin_url().'/geodirectory-assets/js/geodirectory.min.js#asyncload', array(), GEODIRECTORY_VERSION);
48 48
     wp_enqueue_script('geodirectory-script');
49 49
 
50 50
     $geodir_vars_data = array(
51 51
         'siteurl' => get_option('siteurl'),
52 52
         'geodir_plugin_url' => geodir_plugin_url(),
53
-        'geodir_lazy_load' => get_option('geodir_lazy_load',1),
53
+        'geodir_lazy_load' => get_option('geodir_lazy_load', 1),
54 54
         'geodir_ajax_url' => geodir_get_ajax_url(),
55
-        'geodir_gd_modal' => (int)get_option('geodir_disable_gb_modal'),
55
+        'geodir_gd_modal' => (int) get_option('geodir_disable_gb_modal'),
56 56
         'is_rtl' => is_rtl() ? 1 : 0 // fix rtl issue
57 57
     );
58 58
 
@@ -73,24 +73,24 @@  discard block
 block discarded – undo
73 73
      *
74 74
      * }
75 75
      */
76
-    $geodir_vars_data = apply_filters('geodir_vars_data',$geodir_vars_data);
76
+    $geodir_vars_data = apply_filters('geodir_vars_data', $geodir_vars_data);
77 77
 
78 78
     wp_localize_script('geodirectory-script', 'geodir_var', $geodir_vars_data);
79 79
 
80
-    wp_register_script('geodirectory-jquery-flexslider-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.flexslider.min.js', array(), GEODIRECTORY_VERSION,true);
81
-    if($is_detail_page){wp_enqueue_script('geodirectory-jquery-flexslider-js');}
80
+    wp_register_script('geodirectory-jquery-flexslider-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.flexslider.min.js', array(), GEODIRECTORY_VERSION, true);
81
+    if ($is_detail_page) {wp_enqueue_script('geodirectory-jquery-flexslider-js'); }
82 82
 
83
-    wp_register_script('geodirectory-lightbox-jquery', geodir_plugin_url() . '/geodirectory-assets/js/jquery.lightbox-0.5.min.js', array(), GEODIRECTORY_VERSION,true);
83
+    wp_register_script('geodirectory-lightbox-jquery', geodir_plugin_url().'/geodirectory-assets/js/jquery.lightbox-0.5.min.js', array(), GEODIRECTORY_VERSION, true);
84 84
     wp_enqueue_script('geodirectory-lightbox-jquery');
85 85
 
86
-    wp_register_script('geodirectory-jquery-simplemodal', geodir_plugin_url() . '/geodirectory-assets/js/jquery.simplemodal.min.js', array(), GEODIRECTORY_VERSION,true);
86
+    wp_register_script('geodirectory-jquery-simplemodal', geodir_plugin_url().'/geodirectory-assets/js/jquery.simplemodal.min.js', array(), GEODIRECTORY_VERSION, true);
87 87
     if ($is_detail_page) {
88 88
         wp_enqueue_script('geodirectory-jquery-simplemodal');
89 89
     }
90 90
 
91 91
     if (in_array($geodir_map_name, array('auto', 'google'))) {
92
-        $map_lang = "&language=" . geodir_get_map_default_language();
93
-        $map_key = "&key=" . geodir_get_map_api_key();
92
+        $map_lang = "&language=".geodir_get_map_default_language();
93
+        $map_key = "&key=".geodir_get_map_api_key();
94 94
         /**
95 95
          * Filter the variables that are added to the end of the google maps script call.
96 96
          *
@@ -100,48 +100,48 @@  discard block
 block discarded – undo
100 100
          * @param string $var The string to filter, default is empty string.
101 101
          */
102 102
         $map_extra = apply_filters('geodir_googlemap_script_extra', '');
103
-        wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra , '', NULL);
103
+        wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?'.$map_lang.$map_key.$map_extra, '', NULL);
104 104
     }
105 105
     
106 106
     if ($geodir_map_name == 'osm') {
107 107
         // Leaflet OpenStreetMap
108
-        wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
108
+        wp_register_style('geodirectory-leaflet-style', geodir_plugin_url().'/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
109 109
         wp_enqueue_style('geodirectory-leaflet-style');
110 110
             
111
-        wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
111
+        wp_register_script('geodirectory-leaflet-script', geodir_plugin_url().'/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
112 112
         wp_enqueue_script('geodirectory-leaflet-script');
113 113
         
114
-        wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array(), GEODIRECTORY_VERSION);
114
+        wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url().'/geodirectory-assets/leaflet/osm.geocode.js', array(), GEODIRECTORY_VERSION);
115 115
         wp_enqueue_script('geodirectory-leaflet-geo-script');
116 116
         
117 117
         if ($is_detail_page) {
118
-            wp_register_style('geodirectory-leaflet-routing-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/routing/leaflet-routing-machine.css', array(), GEODIRECTORY_VERSION);
118
+            wp_register_style('geodirectory-leaflet-routing-style', geodir_plugin_url().'/geodirectory-assets/leaflet/routing/leaflet-routing-machine.css', array(), GEODIRECTORY_VERSION);
119 119
             wp_enqueue_style('geodirectory-leaflet-routing-style');
120 120
                 
121
-            wp_register_script('geodirectory-leaflet-routing-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/routing/leaflet-routing-machine.js', array(), GEODIRECTORY_VERSION);
121
+            wp_register_script('geodirectory-leaflet-routing-script', geodir_plugin_url().'/geodirectory-assets/leaflet/routing/leaflet-routing-machine.js', array(), GEODIRECTORY_VERSION);
122 122
             wp_enqueue_script('geodirectory-leaflet-routing-script');
123 123
         }
124 124
     }
125
-    wp_enqueue_script( 'jquery-ui-autocomplete' );
125
+    wp_enqueue_script('jquery-ui-autocomplete');
126 126
     
127
-    wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
127
+    wp_register_script('geodirectory-goMap-script', geodir_plugin_url().'/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION, true);
128 128
     wp_enqueue_script('geodirectory-goMap-script');
129 129
 
130 130
 
131
-    wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.min.js', array(), GEODIRECTORY_VERSION);
131
+    wp_register_script('chosen', geodir_plugin_url().'/geodirectory-assets/js/chosen.jquery.min.js', array(), GEODIRECTORY_VERSION);
132 132
     wp_enqueue_script('chosen');
133 133
 
134
-    wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.min.js', array(), GEODIRECTORY_VERSION);
134
+    wp_register_script('geodirectory-choose-ajax', geodir_plugin_url().'/geodirectory-assets/js/ajax-chosen.min.js', array(), GEODIRECTORY_VERSION);
135 135
     wp_enqueue_script('geodirectory-choose-ajax');
136 136
 
137
-    wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.min.js', array('jquery-ui-datepicker', 'jquery-ui-slider', 'jquery-effects-core', 'jquery-effects-slide'), '', true);
137
+    wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.ui.timepicker.min.js', array('jquery-ui-datepicker', 'jquery-ui-slider', 'jquery-effects-core', 'jquery-effects-slide'), '', true);
138 138
 
139 139
     if (is_page() && geodir_is_page('add-listing')) {
140 140
         // SCRIPT FOR UPLOAD
141 141
         wp_enqueue_script('plupload-all');
142 142
         wp_enqueue_script('jquery-ui-sortable');
143 143
 
144
-        wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.min.js#asyncload', array(), GEODIRECTORY_VERSION,true);
144
+        wp_register_script('geodirectory-plupload-script', geodir_plugin_url().'/geodirectory-assets/js/geodirectory-plupload.min.js#asyncload', array(), GEODIRECTORY_VERSION, true);
145 145
         wp_enqueue_script('geodirectory-plupload-script');
146 146
         // SCRIPT FOR UPLOAD END
147 147
 
@@ -188,27 +188,27 @@  discard block
 block discarded – undo
188 188
 
189 189
         wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
190 190
 
191
-        wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation.min.js#asyncload');
191
+        wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url().'/geodirectory-assets/js/listing_validation.min.js#asyncload');
192 192
     } // End if for add place page
193 193
 
194
-    wp_register_script('geodirectory-post-custom-js', geodir_plugin_url() . '/geodirectory-assets/js/post.custom.min.js#asyncload', array(), GEODIRECTORY_VERSION, true);
194
+    wp_register_script('geodirectory-post-custom-js', geodir_plugin_url().'/geodirectory-assets/js/post.custom.min.js#asyncload', array(), GEODIRECTORY_VERSION, true);
195 195
     if ($is_detail_page) {
196 196
 		wp_enqueue_script('geodirectory-post-custom-js');
197 197
 	}
198 198
 
199 199
     // font awesome rating script
200 200
 	if (get_option('geodir_reviewrating_enable_font_awesome')) {
201
-		wp_register_script('geodir-barrating-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION, true);
201
+		wp_register_script('geodir-barrating-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION, true);
202 202
 		wp_enqueue_script('geodir-barrating-js');
203 203
 	} else { // default rating script
204
-		wp_register_script('geodir-jRating-js', geodir_plugin_url() . '/geodirectory-assets/js/jRating.jquery.min.js', array(), GEODIRECTORY_VERSION, true);
204
+		wp_register_script('geodir-jRating-js', geodir_plugin_url().'/geodirectory-assets/js/jRating.jquery.min.js', array(), GEODIRECTORY_VERSION, true);
205 205
 		wp_enqueue_script('geodir-jRating-js');
206 206
 	}
207 207
 
208
-    wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.js#asyncload', array(), GEODIRECTORY_VERSION, true);
208
+    wp_register_script('geodir-on-document-load', geodir_plugin_url().'/geodirectory-assets/js/on_document_load.js#asyncload', array(), GEODIRECTORY_VERSION, true);
209 209
     wp_enqueue_script('geodir-on-document-load');
210 210
 
211
-    wp_register_script('google-geometa', geodir_plugin_url() . '/geodirectory-assets/js/geometa.min.js#asyncload', array(), GEODIRECTORY_VERSION, true);
211
+    wp_register_script('google-geometa', geodir_plugin_url().'/geodirectory-assets/js/geometa.min.js#asyncload', array(), GEODIRECTORY_VERSION, true);
212 212
     wp_enqueue_script('google-geometa');
213 213
 }
214 214
 
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
  */
224 224
 function geodir_header_scripts()
225 225
 {
226
-    echo '<style>' . stripslashes(get_option('geodir_coustem_css')) . '</style>';
226
+    echo '<style>'.stripslashes(get_option('geodir_coustem_css')).'</style>';
227 227
     echo stripslashes(get_option('geodir_header_scripts'));
228 228
 }
229 229
 
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
  */
255 255
 function geodir_add_async_forscript($url)
256 256
 {
257
-    if (strpos($url, '#asyncload')===false)
257
+    if (strpos($url, '#asyncload') === false)
258 258
         return $url;
259 259
     else if (is_admin())
260 260
         return str_replace('#asyncload', '', $url);
@@ -272,12 +272,12 @@  discard block
 block discarded – undo
272 272
 function geodir_templates_styles()
273 273
 {
274 274
 
275
-    wp_register_style('geodir-core-scss', geodir_plugin_url() . '/geodirectory-assets/css/gd_core_frontend.css', array(), GEODIRECTORY_VERSION);
275
+    wp_register_style('geodir-core-scss', geodir_plugin_url().'/geodirectory-assets/css/gd_core_frontend.css', array(), GEODIRECTORY_VERSION);
276 276
     wp_enqueue_style('geodir-core-scss');
277
-    wp_register_style('geodir-core-scss-footer', geodir_plugin_url() . '/geodirectory-assets/css/gd_core_frontend_footer.css', array(), GEODIRECTORY_VERSION);
277
+    wp_register_style('geodir-core-scss-footer', geodir_plugin_url().'/geodirectory-assets/css/gd_core_frontend_footer.css', array(), GEODIRECTORY_VERSION);
278 278
 
279
-    if(is_rtl()){
280
-    wp_register_style('geodirectory-frontend-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl-frontend.css', array(), GEODIRECTORY_VERSION);
279
+    if (is_rtl()) {
280
+    wp_register_style('geodirectory-frontend-rtl-style', geodir_plugin_url().'/geodirectory-assets/css/rtl-frontend.css', array(), GEODIRECTORY_VERSION);
281 281
     wp_enqueue_style('geodirectory-frontend-rtl-style');
282 282
     }
283 283
 
@@ -351,18 +351,18 @@  discard block
 block discarded – undo
351 351
                 $term_id = get_queried_object_id();
352 352
                 $taxonomy = get_query_var('taxonomy');
353 353
 
354
-                if ($term_id && $post_type && get_query_var('taxonomy') == $post_type . 'category' ) {
355
-                    $term = get_term($term_id, $post_type . 'category');
354
+                if ($term_id && $post_type && get_query_var('taxonomy') == $post_type.'category') {
355
+                    $term = get_term($term_id, $post_type.'category');
356 356
                 }
357 357
             }
358 358
             
359
-            if (geodir_is_page('search') && !empty($_REQUEST['s' . $post_type . 'category'])) {
360
-                $taxonomy_search = $_REQUEST['s' . $post_type . 'category'];
359
+            if (geodir_is_page('search') && !empty($_REQUEST['s'.$post_type.'category'])) {
360
+                $taxonomy_search = $_REQUEST['s'.$post_type.'category'];
361 361
                 
362 362
                 if (!is_array($taxonomy_search)) {
363
-                    $term = get_term((int)$taxonomy_search, $post_type . 'category');
364
-                } else if(is_array($taxonomy_search) && count($taxonomy_search) == 1) { // single category search
365
-                    $term = get_term((int)$taxonomy_search[0], $post_type . 'category');
363
+                    $term = get_term((int) $taxonomy_search, $post_type.'category');
364
+                } else if (is_array($taxonomy_search) && count($taxonomy_search) == 1) { // single category search
365
+                    $term = get_term((int) $taxonomy_search[0], $post_type.'category');
366 366
                 }
367 367
             }
368 368
             
@@ -374,7 +374,7 @@  discard block
 block discarded – undo
374 374
         if ($max_page > 1 || $always_show) {            
375 375
             // Extra pagination info
376 376
             $geodir_pagination_more_info = get_option('geodir_pagination_advance_info');
377
-            $start_no = ( $paged - 1 ) * $posts_per_page + 1;
377
+            $start_no = ($paged - 1) * $posts_per_page + 1;
378 378
             $end_no = min($paged * $posts_per_page, $numposts);
379 379
 
380 380
             if ($geodir_pagination_more_info != '') {
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
                 } else {
385 385
                     $pegination_desc = wp_sprintf(__('Showing listings %d-%d of %d', 'geodirectory'), $start_no, $end_no, $numposts);
386 386
                 }
387
-                $pagination_info = '<div class="gd-pagination-details">' . $pegination_desc . '</div>';
387
+                $pagination_info = '<div class="gd-pagination-details">'.$pegination_desc.'</div>';
388 388
                 /**
389 389
                  * Adds an extra pagination info above/under pagination.
390 390
                  *
@@ -400,15 +400,15 @@  discard block
 block discarded – undo
400 400
                 $pagination_info = apply_filters('geodir_pagination_advance_info', $pagination_info, $listing_type_name, $start_no, $end_no, $numposts, $post_type);
401 401
                 
402 402
                 if ($geodir_pagination_more_info == 'before') {
403
-                    $before = $before . $pagination_info;
403
+                    $before = $before.$pagination_info;
404 404
                 } else if ($geodir_pagination_more_info == 'after') {
405
-                    $after = $pagination_info . $after;
405
+                    $after = $pagination_info.$after;
406 406
                 }
407 407
             }
408 408
             
409 409
             echo "$before <div class='Navi gd-navi'>";
410 410
             if ($paged >= ($pages_to_show - 1)) {
411
-                echo '<a href="' . str_replace('&paged', '&amp;paged', get_pagenum_link()) . '">&laquo;</a>';
411
+                echo '<a href="'.str_replace('&paged', '&amp;paged', get_pagenum_link()).'">&laquo;</a>';
412 412
             }
413 413
             previous_posts_link($prelabel);
414 414
             for ($i = $paged - $half_pages_to_show; $i <= $paged + $half_pages_to_show; $i++) {
@@ -416,13 +416,13 @@  discard block
 block discarded – undo
416 416
                     if ($i == $paged) {
417 417
                         echo "<strong class='on'>$i</strong>";
418 418
                     } else {
419
-                        echo ' <a href="' . str_replace('&paged', '&amp;paged', get_pagenum_link($i)) . '">' . $i . '</a> ';
419
+                        echo ' <a href="'.str_replace('&paged', '&amp;paged', get_pagenum_link($i)).'">'.$i.'</a> ';
420 420
                     }
421 421
                 }
422 422
             }
423 423
             next_posts_link($nxtlabel, $max_page);
424 424
             if (($paged + $half_pages_to_show) < ($max_page)) {
425
-                echo '<a href="' . str_replace('&paged', '&amp;paged', get_pagenum_link($max_page)) . '">&raquo;</a>';
425
+                echo '<a href="'.str_replace('&paged', '&amp;paged', get_pagenum_link($max_page)).'">&raquo;</a>';
426 426
             }
427 427
             echo "</div> $after";
428 428
         }
@@ -460,7 +460,7 @@  discard block
 block discarded – undo
460 460
         jQuery(function ($) {
461 461
             $("#distance_slider").slider({
462 462
                 range: true,
463
-                values: [0, <?php echo ($_REQUEST['sdist']!='') ? sanitize_text_field($_REQUEST['sdist']) : "0"; ?>],
463
+                values: [0, <?php echo ($_REQUEST['sdist'] != '') ? sanitize_text_field($_REQUEST['sdist']) : "0"; ?>],
464 464
                 min: 0,
465 465
                 max: <?php echo $dist; ?>,
466 466
                 step: <?php echo $dist_dif; ?>,
@@ -525,7 +525,7 @@  discard block
 block discarded – undo
525 525
 
526 526
 
527 527
     <script type="text/javascript">
528
-        var default_location = '<?php if($search_location = geodir_get_default_location())  echo $search_location->city ;?>';
528
+        var default_location = '<?php if ($search_location = geodir_get_default_location())  echo $search_location->city; ?>';
529 529
         var latlng;
530 530
         var address;
531 531
         var dist = 0;
@@ -538,7 +538,7 @@  discard block
 block discarded – undo
538 538
 				var $form = jQuery(this).closest('form');
539 539
 				
540 540
 				if (jQuery("#sdist input[type='radio']:checked").length != 0) dist = jQuery("#sdist input[type='radio']:checked").val();
541
-				if (jQuery('.search_text', $form).val() == '' || jQuery('.search_text', $form).val() == '<?php echo $default_search_for_text;?>') jQuery('.search_text', $form).val(s);
541
+				if (jQuery('.search_text', $form).val() == '' || jQuery('.search_text', $form).val() == '<?php echo $default_search_for_text; ?>') jQuery('.search_text', $form).val(s);
542 542
 				
543 543
 				// Disable location based search for disabled location post type.
544 544
 				if (jQuery('.search_by_post', $form).val() != '' && typeof gd_cpt_no_location == 'function') {
@@ -552,7 +552,7 @@  discard block
 block discarded – undo
552 552
 					}
553 553
 				}
554 554
 				
555
-				if (dist > 0 || (jQuery('select[name="sort_by"]').val() == 'nearest' || jQuery('select[name="sort_by"]', $form).val() == 'farthest') || (jQuery(".snear", $form).val() != '' && jQuery(".snear", $form).val() != '<?php echo $default_near_text;?>')) {
555
+				if (dist > 0 || (jQuery('select[name="sort_by"]').val() == 'nearest' || jQuery('select[name="sort_by"]', $form).val() == 'farthest') || (jQuery(".snear", $form).val() != '' && jQuery(".snear", $form).val() != '<?php echo $default_near_text; ?>')) {
556 556
 					geodir_setsearch($form);
557 557
 				} else {
558 558
 					jQuery(".snear", $form).val('');
@@ -571,7 +571,7 @@  discard block
 block discarded – undo
571 571
         });
572 572
         
573 573
 		function geodir_setsearch($form) {
574
-			if ((dist > 0 || (jQuery('select[name="sort_by"]', $form).val() == 'nearest' || jQuery('select[name="sort_by"]', $form).val() == 'farthest')) && (jQuery(".snear", $form).val() == '' || jQuery(".snear", $form).val() == '<?php echo $default_near_text;?>')) jQuery(".snear", $form).val(default_location);
574
+			if ((dist > 0 || (jQuery('select[name="sort_by"]', $form).val() == 'nearest' || jQuery('select[name="sort_by"]', $form).val() == 'farthest')) && (jQuery(".snear", $form).val() == '' || jQuery(".snear", $form).val() == '<?php echo $default_near_text; ?>')) jQuery(".snear", $form).val(default_location);
575 575
 			geocodeAddress($form);
576 576
 		}
577 577
 
@@ -590,15 +590,15 @@  discard block
 block discarded – undo
590 590
             // Call the geocode function
591 591
             Sgeocoder = window.gdMaps == 'google' ? new google.maps.Geocoder() : null;
592 592
 
593
-            if (jQuery('.snear', $form).val() == '' || ( jQuery('.sgeo_lat').val() != '' && jQuery('.sgeo_lon').val() != ''  ) || jQuery('.snear', $form).val().match("^<?php _e('In:','geodirectory');?>")) {
594
-                if (jQuery('.snear', $form).val().match("^<?php _e('In:','geodirectory');?>")) {
593
+            if (jQuery('.snear', $form).val() == '' || ( jQuery('.sgeo_lat').val() != '' && jQuery('.sgeo_lon').val() != ''  ) || jQuery('.snear', $form).val().match("^<?php _e('In:', 'geodirectory'); ?>")) {
594
+                if (jQuery('.snear', $form).val().match("^<?php _e('In:', 'geodirectory'); ?>")) {
595 595
                     jQuery(".snear", $form).val('');
596 596
                 }
597 597
                 jQuery($form).submit();
598 598
             } else {
599 599
                 var address = jQuery(".snear", $form).val();
600 600
 
601
-                if (jQuery('.snear', $form).val() == '<?php echo $default_near_text;?>') {
601
+                if (jQuery('.snear', $form).val() == '<?php echo $default_near_text; ?>') {
602 602
                     initialise2();
603 603
                 } else {
604 604
                     <?php
@@ -611,12 +611,12 @@  discard block
 block discarded – undo
611 611
                     $near_add2 = apply_filters('geodir_search_near_addition', '');
612 612
                     ?>
613 613
                     if (window.gdMaps === 'google') {
614
-                        Sgeocoder.geocode({'address': address<?php echo ($near_add ? '+", ' . $near_add . '"' : '') . $near_add2;?>},
614
+                        Sgeocoder.geocode({'address': address<?php echo ($near_add ? '+", '.$near_add.'"' : '').$near_add2; ?>},
615 615
                             function (results, status) {
616 616
                                 if (status == google.maps.GeocoderStatus.OK) {
617 617
                                     updateSearchPosition(results[0].geometry.location, $form);
618 618
                                 } else {
619
-                                    alert("<?php esc_attr_e('Search was not successful for the following reason:', 'geodirectory');?>" + status);
619
+                                    alert("<?php esc_attr_e('Search was not successful for the following reason:', 'geodirectory'); ?>" + status);
620 620
                                 }
621 621
                             });
622 622
                     } else if (window.gdMaps === 'osm') {
@@ -625,7 +625,7 @@  discard block
 block discarded – undo
625 625
                                 if (typeof geo !== 'undefined' && geo.lat && geo.lon) {
626 626
                                     updateSearchPosition(geo, $form);
627 627
                                 } else {
628
-                                    alert("<?php esc_attr_e('Search was not successful for the requested address.', 'geodirectory');?>");
628
+                                    alert("<?php esc_attr_e('Search was not successful for the requested address.', 'geodirectory'); ?>");
629 629
                                 }
630 630
                             });
631 631
                     } else {
@@ -671,19 +671,19 @@  discard block
 block discarded – undo
671 671
             var msg;
672 672
             switch (err.code) {
673 673
                 case err.UNKNOWN_ERROR:
674
-                    msg = "<?php _e('Unable to find your location','geodirectory');?>";
674
+                    msg = "<?php _e('Unable to find your location', 'geodirectory'); ?>";
675 675
                     break;
676 676
                 case err.PERMISSION_DENINED:
677
-                    msg = "<?php _e('Permission denied in finding your location','geodirectory');?>";
677
+                    msg = "<?php _e('Permission denied in finding your location', 'geodirectory'); ?>";
678 678
                     break;
679 679
                 case err.POSITION_UNAVAILABLE:
680
-                    msg = "<?php _e('Your location is currently unknown','geodirectory');?>";
680
+                    msg = "<?php _e('Your location is currently unknown', 'geodirectory'); ?>";
681 681
                     break;
682 682
                 case err.BREAK:
683
-                    msg = "<?php _e('Attempt to find location took too long','geodirectory');?>";
683
+                    msg = "<?php _e('Attempt to find location took too long', 'geodirectory'); ?>";
684 684
                     break;
685 685
                 default:
686
-                    msg = "<?php _e('Location detection not supported in browser','geodirectory');?>";
686
+                    msg = "<?php _e('Location detection not supported in browser', 'geodirectory'); ?>";
687 687
             }
688 688
             jQuery('#info').html(msg);
689 689
         }
@@ -722,7 +722,7 @@  discard block
 block discarded – undo
722 722
              * @param object $post The post object.
723 723
              * @param string $link The link to the post.
724 724
              */
725
-            $return = apply_filters('geodir_featured_badge_on_image', '<a href="' . $link . '"><span class="geodir_featured_img">&nbsp;</span></a>',$post,$link);
725
+            $return = apply_filters('geodir_featured_badge_on_image', '<a href="'.$link.'"><span class="geodir_featured_img">&nbsp;</span></a>', $post, $link);
726 726
             break;
727 727
         case 'new' :
728 728
             /**
@@ -732,7 +732,7 @@  discard block
 block discarded – undo
732 732
              * @param object $post The post object.
733 733
              * @param string $link The link to the post.
734 734
              */
735
-            $return = apply_filters('geodir_new_badge_on_image', '<a href="' . $link . '"><span class="geodir_new_listing">&nbsp;</span></a>',$post,$link);
735
+            $return = apply_filters('geodir_new_badge_on_image', '<a href="'.$link.'"><span class="geodir_new_listing">&nbsp;</span></a>', $post, $link);
736 736
             break;
737 737
 
738 738
     }
Please login to merge, or discard this patch.
language.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
 define('LISTING_DETAILS_TEXT', __('Enter Listing Details', 'geodirectory'));
42 42
 
43 43
 define('PLACE_TITLE_TEXT', __('Listing Title', 'geodirectory')); // depreciated @since 1.6.3
44
-define('PLACE_DESC_TEXT', __('Listing Description', 'geodirectory'));// depreciated @since 1.6.3
44
+define('PLACE_DESC_TEXT', __('Listing Description', 'geodirectory')); // depreciated @since 1.6.3
45 45
 
46 46
 define('LISTING_ADDRESS_TEXT', __('Listing Address:', 'geodirectory'));
47 47
 define('PLACE_ADDRESS', __('Address:', 'geodirectory'));
Please login to merge, or discard this patch.
geodirectory_shortcodes.php 2 patches
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -202,14 +202,14 @@  discard block
 block discarded – undo
202 202
 	// Add marker cluster
203 203
 	if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
204 204
         $map_args['enable_marker_cluster'] = true;
205
-        if(get_option('geodir_marker_cluster_type')) {
205
+        if (get_option('geodir_marker_cluster_type')) {
206 206
             if ($map_args['autozoom']) {
207 207
                 $map_args['enable_marker_cluster_no_reposition'] = false;
208 208
             } else {
209 209
                 $map_args['enable_marker_cluster_no_reposition'] = true;
210 210
             }
211 211
 
212
-            $map_args['enable_marker_cluster_server'] = true ;
212
+            $map_args['enable_marker_cluster_server'] = true;
213 213
 
214 214
         }
215 215
 	} else {
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
 	}
218 218
 
219 219
     // if lat and long set in shortcode, hack it so the map is not repositioned
220
-    if(!empty($params['latitude']) && !empty($params['longitude']) ){
220
+    if (!empty($params['latitude']) && !empty($params['longitude'])) {
221 221
         $map_args['enable_marker_cluster_no_reposition'] = true;
222 222
     }
223 223
 
@@ -890,20 +890,20 @@  discard block
 block discarded – undo
890 890
 	
891 891
 	$show_adv_search = isset($params['show_adv_search']) && in_array($params['show_adv_search'], array('default', 'always', 'searched')) ? $params['show_adv_search'] : '';
892 892
 	
893
-	if ($show_adv_search != '' ) {
894
-		$show_adv_class = 'geodir-advance-search-' . $show_adv_search . ' ';
893
+	if ($show_adv_search != '') {
894
+		$show_adv_class = 'geodir-advance-search-'.$show_adv_search.' ';
895 895
 		if ($show_adv_search == 'searched' && geodir_is_page('search')) {
896 896
 			$show_adv_search = 'search';
897 897
 		}
898
-		$show_adv_attrs = 'data-show-adv="' . $show_adv_search . '"';
898
+		$show_adv_attrs = 'data-show-adv="'.$show_adv_search.'"';
899 899
 		
900
-		$params['before_widget'] = str_replace('class="', $show_adv_attrs . ' class="' . $show_adv_class, $params['before_widget']);
900
+		$params['before_widget'] = str_replace('class="', $show_adv_attrs.' class="'.$show_adv_class, $params['before_widget']);
901 901
 	}
902 902
 	
903 903
 	ob_start();
904 904
 	
905 905
 	//geodir_get_template_part('listing', 'filter-form');
906
-	the_widget('geodir_advance_search_widget', $params, $params );
906
+	the_widget('geodir_advance_search_widget', $params, $params);
907 907
 	
908 908
 	$output = ob_get_contents();
909 909
     ob_end_clean();
@@ -1103,7 +1103,7 @@  discard block
 block discarded – undo
1103 1103
 
1104 1104
     // Validate character_count
1105 1105
     //todo: is this necessary?
1106
-    $params['character_count']  = $params['character_count'];
1106
+    $params['character_count'] = $params['character_count'];
1107 1107
 
1108 1108
     // Validate our layout choice
1109 1109
     // Outside of the norm, I added some more simple terms to match the existing
@@ -1115,7 +1115,7 @@  discard block
 block discarded – undo
1115 1115
 
1116 1116
     // Validate Listing width, used in the template widget-listing-listview.php
1117 1117
     // The context is in width=$listing_width% - So we need a positive number between 0 & 100
1118
-    $params['listing_width']    = gdsc_validate_listing_width($params['listing_width']);
1118
+    $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
1119 1119
 
1120 1120
     // Validate the checkboxes used on the widget
1121 1121
     $params['add_location_filter']  = gdsc_to_bool_val($params['add_location_filter']);
@@ -1131,7 +1131,7 @@  discard block
 block discarded – undo
1131 1131
     if (!empty($params['tags'])) {
1132 1132
         if (!is_array($params['tags'])) {
1133 1133
             $comma = _x(',', 'tag delimiter');
1134
-            if ( ',' !== $comma ) {
1134
+            if (',' !== $comma) {
1135 1135
                 $params['tags'] = str_replace($comma, ',', $params['tags']);
1136 1136
             }
1137 1137
             $params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,"));
@@ -1153,13 +1153,13 @@  discard block
 block discarded – undo
1153 1153
         unset($atts['pageno']);
1154 1154
     }
1155 1155
 
1156
-    if ( !empty($atts['shortcode_content']) ) {
1156
+    if (!empty($atts['shortcode_content'])) {
1157 1157
         $content = $atts['shortcode_content'];
1158 1158
     }
1159 1159
     $params['shortcode_content'] = trim($content);
1160 1160
     $atts['shortcode_content'] = trim($content);
1161 1161
     
1162
-    $params['shortcode_atts']       = $atts;
1162
+    $params['shortcode_atts'] = $atts;
1163 1163
 
1164 1164
     $output = geodir_sc_gd_listings_output($params);
1165 1165
 
@@ -1226,8 +1226,8 @@  discard block
 block discarded – undo
1226 1226
 	// Validate the checkboxes used on the widget
1227 1227
     $params['hide_empty'] 	= gdsc_to_bool_val($params['hide_empty']);
1228 1228
     $params['show_count'] 	= gdsc_to_bool_val($params['show_count']);
1229
-    $params['hide_icon'] 	= gdsc_to_bool_val($params['hide_icon']);
1230
-    $params['cpt_left'] 	= gdsc_to_bool_val($params['cpt_left']);
1229
+    $params['hide_icon'] = gdsc_to_bool_val($params['hide_icon']);
1230
+    $params['cpt_left'] = gdsc_to_bool_val($params['cpt_left']);
1231 1231
 	
1232 1232
 	if ($params['max_count'] != 'all') {
1233 1233
 		$params['max_count'] = absint($params['max_count']);
Please login to merge, or discard this patch.
Indentation   +710 added lines, -710 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  */
8 8
 // If this file is called directly, abort.
9 9
 if (!defined('WPINC')) {
10
-    die;
10
+	die;
11 11
 }
12 12
 require_once('geodirectory-functions/shortcode_functions.php');
13 13
 
@@ -32,43 +32,43 @@  discard block
 block discarded – undo
32 32
  */
33 33
 function geodir_sc_add_listing($atts)
34 34
 {
35
-    ob_start();
36
-    $defaults = array(
37
-        'pid' => '',
38
-        'listing_type' => 'gd_place',
39
-        'login_msg' => __('You must login to post.', 'geodirectory'),
40
-        'show_login' => false,
41
-    );
42
-    $params = shortcode_atts($defaults, $atts);
43
-
44
-    foreach ($params as $key => $value) {
45
-        $_REQUEST[$key] = $value;
46
-    }
47
-
48
-    $user_id = get_current_user_id();
49
-    if (!$user_id) {
50
-        echo $params['login_msg'];
51
-        if ($params['show_login']) {
52
-            echo "<br />";
53
-            $defaults = array(
54
-                'before_widget' => '',
55
-                'after_widget' => '',
56
-                'before_title' => '',
57
-                'after_title' => '',
58
-            );
59
-
60
-            geodir_loginwidget_output($defaults, $defaults);
61
-        }
62
-
63
-
64
-    } else {
65
-       // Add listing page will be used if shortcode is detected in page content, no need to call it here
66
-    }
67
-    $output = ob_get_contents();
68
-
69
-    ob_end_clean();
70
-
71
-    return $output;
35
+	ob_start();
36
+	$defaults = array(
37
+		'pid' => '',
38
+		'listing_type' => 'gd_place',
39
+		'login_msg' => __('You must login to post.', 'geodirectory'),
40
+		'show_login' => false,
41
+	);
42
+	$params = shortcode_atts($defaults, $atts);
43
+
44
+	foreach ($params as $key => $value) {
45
+		$_REQUEST[$key] = $value;
46
+	}
47
+
48
+	$user_id = get_current_user_id();
49
+	if (!$user_id) {
50
+		echo $params['login_msg'];
51
+		if ($params['show_login']) {
52
+			echo "<br />";
53
+			$defaults = array(
54
+				'before_widget' => '',
55
+				'after_widget' => '',
56
+				'before_title' => '',
57
+				'after_title' => '',
58
+			);
59
+
60
+			geodir_loginwidget_output($defaults, $defaults);
61
+		}
62
+
63
+
64
+	} else {
65
+	   // Add listing page will be used if shortcode is detected in page content, no need to call it here
66
+	}
67
+	$output = ob_get_contents();
68
+
69
+	ob_end_clean();
70
+
71
+	return $output;
72 72
 }
73 73
 
74 74
 /**
@@ -96,136 +96,136 @@  discard block
 block discarded – undo
96 96
  */
97 97
 function geodir_sc_home_map($atts)
98 98
 {
99
-    ob_start();
100
-    $defaults = array(
101
-        'width' => '960',
102
-        'height' => '425',
103
-        'maptype' => 'ROADMAP',
104
-        'zoom' => '13',
105
-        'autozoom' => '',
106
-        'child_collapse' => '0',
107
-        'scrollwheel' => '0',
99
+	ob_start();
100
+	$defaults = array(
101
+		'width' => '960',
102
+		'height' => '425',
103
+		'maptype' => 'ROADMAP',
104
+		'zoom' => '13',
105
+		'autozoom' => '',
106
+		'child_collapse' => '0',
107
+		'scrollwheel' => '0',
108 108
 		'marker_cluster' => false,
109
-        'latitude' => '',
110
-        'longitude' => ''
111
-    );
112
-
113
-    $params = shortcode_atts($defaults, $atts);
114
-
115
-    $params = gdsc_validate_map_args($params);
116
-
117
-    $map_args = array(
118
-        'map_canvas_name' => 'gd_home_map',
119
-        'latitude' => $params['latitude'],
120
-        'longitude' => $params['longitude'],
121
-
122
-        /**
123
-         * Filter the widget width of the map on home/listings page.
124
-         *
125
-         * @since 1.0.0
126
-         * @param mixed(string|int|float) $params['width'] The map width.
127
-         */
128
-        'width' => apply_filters('widget_width', $params['width']),
129
-        /**
130
-         * Filter the widget height of the map on home/listings page.
131
-         *
132
-         * @since 1.0.0
133
-         * @param mixed(string|int|float) $params['height'] The map height.
134
-         */
135
-        'height' => apply_filters('widget_heigh', $params['height']),
136
-        /**
137
-         * Filter the widget maptype of the map on home/listings page.
138
-         *
139
-         * @since 1.0.0
109
+		'latitude' => '',
110
+		'longitude' => ''
111
+	);
112
+
113
+	$params = shortcode_atts($defaults, $atts);
114
+
115
+	$params = gdsc_validate_map_args($params);
116
+
117
+	$map_args = array(
118
+		'map_canvas_name' => 'gd_home_map',
119
+		'latitude' => $params['latitude'],
120
+		'longitude' => $params['longitude'],
121
+
122
+		/**
123
+		 * Filter the widget width of the map on home/listings page.
124
+		 *
125
+		 * @since 1.0.0
126
+		 * @param mixed(string|int|float) $params['width'] The map width.
127
+		 */
128
+		'width' => apply_filters('widget_width', $params['width']),
129
+		/**
130
+		 * Filter the widget height of the map on home/listings page.
131
+		 *
132
+		 * @since 1.0.0
133
+		 * @param mixed(string|int|float) $params['height'] The map height.
134
+		 */
135
+		'height' => apply_filters('widget_heigh', $params['height']),
136
+		/**
137
+		 * Filter the widget maptype of the map on home/listings page.
138
+		 *
139
+		 * @since 1.0.0
140 140
 		 * @since 1.5.2 Added TERRAIN map type.
141
-         * @param string $params['maptype'] The map type. Can be ROADMAP | SATELLITE | HYBRID | TERRAIN.
142
-         */
143
-        'maptype' => apply_filters('widget_maptype', $params['maptype']),
144
-        /**
145
-         * Filter the widget scrollwheel value of the map on home/listings page.
146
-         *
147
-         * Should the scrollwheel zoom the map or not.
148
-         *
149
-         * @since 1.0.0
150
-         * @param bool $params['scrollwheel'] True to allow scroll wheel to scroll map or false if not.
151
-         */
152
-        'scrollwheel' => apply_filters('widget_scrollwheel', $params['scrollwheel']),
153
-        /**
154
-         * Filter the widget zoom level of the map on home/listings page.
155
-         *
156
-         * @since 1.0.0
157
-         * @param int $params['zoom'] The zoom level of the map. Between 1-19.
158
-         */
159
-        'zoom' => apply_filters('widget_zoom', $params['zoom']),
160
-        /**
161
-         * Filter the widget auto zoom value of the map on home/listings page.
162
-         *
163
-         * If the map should autozoom to fit the markers shown.
164
-         *
165
-         * @since 1.0.0
166
-         * @param bool $params['autozoom'] True if the map should autozoom, false if not.
167
-         */
168
-        'autozoom' => apply_filters('widget_autozoom', $params['autozoom']),
169
-        /**
170
-         * Filter the widget child_collapse value of the map on home/listings page.
171
-         *
172
-         * If the map should auto collapse the child categories if the category bar is present.
173
-         *
174
-         * @since 1.0.0
175
-         * @param bool $params['child_collapse'] True if the map should collapse the categories, false if not.
176
-         */
177
-        'child_collapse' => apply_filters('widget_child_collapse', $params['child_collapse']),
178
-        'enable_cat_filters' => true,
179
-        'enable_text_search' => true,
180
-        'enable_post_type_filters' => true,
181
-        /**
182
-         * Filter the widget enable_location_filters value of the map on home/listings page.
183
-         *
184
-         * This is used when the location addon is used.
185
-         *
186
-         * @since 1.0.0
187
-         * @param bool $val True if location filters should be used, false if not.
188
-         */
189
-        'enable_location_filters' => apply_filters('geodir_home_map_enable_location_filters', false),
190
-        'enable_jason_on_load' => false,
191
-        'enable_marker_cluster' => false,
192
-        'enable_map_resize_button' => true,
193
-        'map_class_name' => 'geodir-map-home-page',
194
-        'is_geodir_home_map_widget' => true,
195
-    );
141
+		 * @param string $params['maptype'] The map type. Can be ROADMAP | SATELLITE | HYBRID | TERRAIN.
142
+		 */
143
+		'maptype' => apply_filters('widget_maptype', $params['maptype']),
144
+		/**
145
+		 * Filter the widget scrollwheel value of the map on home/listings page.
146
+		 *
147
+		 * Should the scrollwheel zoom the map or not.
148
+		 *
149
+		 * @since 1.0.0
150
+		 * @param bool $params['scrollwheel'] True to allow scroll wheel to scroll map or false if not.
151
+		 */
152
+		'scrollwheel' => apply_filters('widget_scrollwheel', $params['scrollwheel']),
153
+		/**
154
+		 * Filter the widget zoom level of the map on home/listings page.
155
+		 *
156
+		 * @since 1.0.0
157
+		 * @param int $params['zoom'] The zoom level of the map. Between 1-19.
158
+		 */
159
+		'zoom' => apply_filters('widget_zoom', $params['zoom']),
160
+		/**
161
+		 * Filter the widget auto zoom value of the map on home/listings page.
162
+		 *
163
+		 * If the map should autozoom to fit the markers shown.
164
+		 *
165
+		 * @since 1.0.0
166
+		 * @param bool $params['autozoom'] True if the map should autozoom, false if not.
167
+		 */
168
+		'autozoom' => apply_filters('widget_autozoom', $params['autozoom']),
169
+		/**
170
+		 * Filter the widget child_collapse value of the map on home/listings page.
171
+		 *
172
+		 * If the map should auto collapse the child categories if the category bar is present.
173
+		 *
174
+		 * @since 1.0.0
175
+		 * @param bool $params['child_collapse'] True if the map should collapse the categories, false if not.
176
+		 */
177
+		'child_collapse' => apply_filters('widget_child_collapse', $params['child_collapse']),
178
+		'enable_cat_filters' => true,
179
+		'enable_text_search' => true,
180
+		'enable_post_type_filters' => true,
181
+		/**
182
+		 * Filter the widget enable_location_filters value of the map on home/listings page.
183
+		 *
184
+		 * This is used when the location addon is used.
185
+		 *
186
+		 * @since 1.0.0
187
+		 * @param bool $val True if location filters should be used, false if not.
188
+		 */
189
+		'enable_location_filters' => apply_filters('geodir_home_map_enable_location_filters', false),
190
+		'enable_jason_on_load' => false,
191
+		'enable_marker_cluster' => false,
192
+		'enable_map_resize_button' => true,
193
+		'map_class_name' => 'geodir-map-home-page',
194
+		'is_geodir_home_map_widget' => true,
195
+	);
196 196
 
197 197
 	// Add marker cluster
198 198
 	if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
199
-        $map_args['enable_marker_cluster'] = true;
200
-        if(get_option('geodir_marker_cluster_type')) {
201
-            if ($map_args['autozoom']) {
202
-                $map_args['enable_marker_cluster_no_reposition'] = false;
203
-            } else {
204
-                $map_args['enable_marker_cluster_no_reposition'] = true;
205
-            }
199
+		$map_args['enable_marker_cluster'] = true;
200
+		if(get_option('geodir_marker_cluster_type')) {
201
+			if ($map_args['autozoom']) {
202
+				$map_args['enable_marker_cluster_no_reposition'] = false;
203
+			} else {
204
+				$map_args['enable_marker_cluster_no_reposition'] = true;
205
+			}
206 206
 
207
-            $map_args['enable_marker_cluster_server'] = true ;
207
+			$map_args['enable_marker_cluster_server'] = true ;
208 208
 
209
-        }
209
+		}
210 210
 	} else {
211 211
 		$map_args['enable_marker_cluster'] = false;
212 212
 	}
213 213
 
214
-    // if lat and long set in shortcode, hack it so the map is not repositioned
215
-    if(!empty($params['latitude']) && !empty($params['longitude']) ){
216
-        $map_args['enable_marker_cluster_no_reposition'] = true;
217
-    }
214
+	// if lat and long set in shortcode, hack it so the map is not repositioned
215
+	if(!empty($params['latitude']) && !empty($params['longitude']) ){
216
+		$map_args['enable_marker_cluster_no_reposition'] = true;
217
+	}
218 218
 
219 219
 
220
-    geodir_draw_map($map_args);
220
+	geodir_draw_map($map_args);
221 221
 
222
-    add_action('wp_footer', 'geodir_home_map_add_script', 100);
222
+	add_action('wp_footer', 'geodir_home_map_add_script', 100);
223 223
 
224
-    $output = ob_get_contents();
224
+	$output = ob_get_contents();
225 225
 
226
-    ob_end_clean();
226
+	ob_end_clean();
227 227
 
228
-    return $output;
228
+	return $output;
229 229
 }
230 230
 add_shortcode('gd_homepage_map', 'geodir_sc_home_map');
231 231
 
@@ -259,77 +259,77 @@  discard block
 block discarded – undo
259 259
  */
260 260
 function geodir_sc_listing_map($atts)
261 261
 {
262
-    ob_start();
263
-    add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
264
-
265
-    add_action('the_post', 'create_list_jsondata'); // Add marker in json array
266
-
267
-    add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers
268
-
269
-    $defaults = array(
270
-        'width' => '294',
271
-        'height' => '370',
272
-        'zoom' => '13',
273
-        'autozoom' => '',
274
-        'sticky' => '',
275
-        'showall' => '0',
276
-        'scrollwheel' => '0',
277
-        'maptype' => 'ROADMAP',
278
-        'child_collapse' => 0,
262
+	ob_start();
263
+	add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
264
+
265
+	add_action('the_post', 'create_list_jsondata'); // Add marker in json array
266
+
267
+	add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers
268
+
269
+	$defaults = array(
270
+		'width' => '294',
271
+		'height' => '370',
272
+		'zoom' => '13',
273
+		'autozoom' => '',
274
+		'sticky' => '',
275
+		'showall' => '0',
276
+		'scrollwheel' => '0',
277
+		'maptype' => 'ROADMAP',
278
+		'child_collapse' => 0,
279 279
 		'marker_cluster' => false
280
-    );
281
-
282
-    $params = shortcode_atts($defaults, $atts);
283
-
284
-    $params = gdsc_validate_map_args($params);
285
-
286
-    $map_args = array(
287
-        'map_canvas_name' => 'gd_listing_map',
288
-        'width' => $params['width'],
289
-        'height' => $params['height'],
290
-        'zoom' => $params['zoom'],
291
-        'autozoom' => $params['autozoom'],
292
-        'sticky' => $params['sticky'],
293
-        'showall' => $params['showall'],
294
-        'scrollwheel' => $params['scrollwheel'],
295
-        'child_collapse' => 0,
296
-        'enable_cat_filters' => false,
297
-        'enable_text_search' => false,
298
-        'enable_post_type_filters' => false,
299
-        'enable_location_filters' => false,
300
-        'enable_jason_on_load' => true,
301
-    );
302
-
303
-    if (is_single()) {
304
-
305
-        global $post;
306
-        $map_default_lat = $address_latitude = $post->post_latitude;
307
-        $map_default_lng = $address_longitude = $post->post_longitude;
308
-        $mapview = $post->post_mapview;
309
-        $map_args['zoom'] = $post->post_mapzoom;
310
-        $map_args['map_class_name'] = 'geodir-map-listing-page-single';
311
-
312
-    } else {
313
-        $default_location = geodir_get_default_location();
314
-
315
-        $map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : '';
316
-        $map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : '';
317
-        $map_args['map_class_name'] = 'geodir-map-listing-page';
318
-    }
319
-
320
-    if (empty($mapview)) {
321
-        $mapview = 'ROADMAP';
322
-    }
323
-
324
-    // Set default map options
325
-    $map_args['ajax_url'] = geodir_get_ajax_url();
326
-    $map_args['latitude'] = $map_default_lat;
327
-    $map_args['longitude'] = $map_default_lng;
328
-    $map_args['streetViewControl'] = true;
329
-    $map_args['maptype'] = $mapview;
330
-    $map_args['showPreview'] = '0';
331
-    $map_args['maxZoom'] = 21;
332
-    $map_args['bubble_size'] = 'small';
280
+	);
281
+
282
+	$params = shortcode_atts($defaults, $atts);
283
+
284
+	$params = gdsc_validate_map_args($params);
285
+
286
+	$map_args = array(
287
+		'map_canvas_name' => 'gd_listing_map',
288
+		'width' => $params['width'],
289
+		'height' => $params['height'],
290
+		'zoom' => $params['zoom'],
291
+		'autozoom' => $params['autozoom'],
292
+		'sticky' => $params['sticky'],
293
+		'showall' => $params['showall'],
294
+		'scrollwheel' => $params['scrollwheel'],
295
+		'child_collapse' => 0,
296
+		'enable_cat_filters' => false,
297
+		'enable_text_search' => false,
298
+		'enable_post_type_filters' => false,
299
+		'enable_location_filters' => false,
300
+		'enable_jason_on_load' => true,
301
+	);
302
+
303
+	if (is_single()) {
304
+
305
+		global $post;
306
+		$map_default_lat = $address_latitude = $post->post_latitude;
307
+		$map_default_lng = $address_longitude = $post->post_longitude;
308
+		$mapview = $post->post_mapview;
309
+		$map_args['zoom'] = $post->post_mapzoom;
310
+		$map_args['map_class_name'] = 'geodir-map-listing-page-single';
311
+
312
+	} else {
313
+		$default_location = geodir_get_default_location();
314
+
315
+		$map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : '';
316
+		$map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : '';
317
+		$map_args['map_class_name'] = 'geodir-map-listing-page';
318
+	}
319
+
320
+	if (empty($mapview)) {
321
+		$mapview = 'ROADMAP';
322
+	}
323
+
324
+	// Set default map options
325
+	$map_args['ajax_url'] = geodir_get_ajax_url();
326
+	$map_args['latitude'] = $map_default_lat;
327
+	$map_args['longitude'] = $map_default_lng;
328
+	$map_args['streetViewControl'] = true;
329
+	$map_args['maptype'] = $mapview;
330
+	$map_args['showPreview'] = '0';
331
+	$map_args['maxZoom'] = 21;
332
+	$map_args['bubble_size'] = 'small';
333 333
 	
334 334
 	// Add marker cluster
335 335
 	if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
@@ -338,13 +338,13 @@  discard block
 block discarded – undo
338 338
 		$map_args['enable_marker_cluster'] = false;
339 339
 	}
340 340
 
341
-    geodir_draw_map($map_args);
341
+	geodir_draw_map($map_args);
342 342
 
343
-    $output = ob_get_contents();
343
+	$output = ob_get_contents();
344 344
 
345
-    ob_end_clean();
345
+	ob_end_clean();
346 346
 
347
-    return $output;
347
+	return $output;
348 348
 }
349 349
 
350 350
 add_shortcode('gd_listing_slider', 'geodir_sc_listing_slider');
@@ -377,120 +377,120 @@  discard block
 block discarded – undo
377 377
  */
378 378
 function geodir_sc_listing_slider($atts)
379 379
 {
380
-    ob_start();
381
-    $defaults = array(
382
-        'post_type' => 'gd_place',
383
-        'category' => '0',
384
-        'post_number' => '5',
385
-        'slideshow' => '0',
386
-        'animation_loop' => 0,
387
-        'direction_nav' => 0,
388
-        'slideshow_speed' => 5000,
389
-        'animation_speed' => 600,
390
-        'animation' => 'slide',
391
-        'order_by' => 'latest',
392
-        'show_title' => '',
393
-        'show_featured_only' => '',
394
-        'title' => '',
395
-    );
396
-
397
-    $params = shortcode_atts($defaults, $atts);
398
-
399
-
400
-    /*
380
+	ob_start();
381
+	$defaults = array(
382
+		'post_type' => 'gd_place',
383
+		'category' => '0',
384
+		'post_number' => '5',
385
+		'slideshow' => '0',
386
+		'animation_loop' => 0,
387
+		'direction_nav' => 0,
388
+		'slideshow_speed' => 5000,
389
+		'animation_speed' => 600,
390
+		'animation' => 'slide',
391
+		'order_by' => 'latest',
392
+		'show_title' => '',
393
+		'show_featured_only' => '',
394
+		'title' => '',
395
+	);
396
+
397
+	$params = shortcode_atts($defaults, $atts);
398
+
399
+
400
+	/*
401 401
      *
402 402
      * Now we begin the validation of the attributes.
403 403
      */
404
-    // Check we have a valid post_type
405
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
406
-        $params['post_type'] = 'gd_place';
407
-    }
408
-
409
-    // Check we have a valid sort_order
410
-    $params['order_by'] = gdsc_validate_sort_choice($params['order_by']);
411
-
412
-    // Match the chosen animation to our options
413
-    $animation_list = array('slide', 'fade');
414
-    if (!(in_array($params['animation'], $animation_list))) {
415
-        $params['animation'] = 'slide';
416
-    }
417
-
418
-    // Post_number needs to be a positive integer
419
-    $params['post_number'] = absint($params['post_number']);
420
-    if (0 == $params['post_number']) {
421
-        $params['post_number'] = 1;
422
-    }
423
-
424
-    // Manage the entered categories
425
-    if (0 != $params['category'] || '' != $params['category']) {
426
-        $params['category'] = gdsc_manage_category_choice($params['post_type'], $params['category']);
427
-    }
428
-    // Convert show_title to a bool
429
-    $params['show_title'] = intval(gdsc_to_bool_val($params['show_title']));
430
-
431
-    // Convert show_featured_only to a bool
432
-    $params['show_featured_only'] = intval(gdsc_to_bool_val($params['show_featured_only']));
433
-
434
-    /*
404
+	// Check we have a valid post_type
405
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
406
+		$params['post_type'] = 'gd_place';
407
+	}
408
+
409
+	// Check we have a valid sort_order
410
+	$params['order_by'] = gdsc_validate_sort_choice($params['order_by']);
411
+
412
+	// Match the chosen animation to our options
413
+	$animation_list = array('slide', 'fade');
414
+	if (!(in_array($params['animation'], $animation_list))) {
415
+		$params['animation'] = 'slide';
416
+	}
417
+
418
+	// Post_number needs to be a positive integer
419
+	$params['post_number'] = absint($params['post_number']);
420
+	if (0 == $params['post_number']) {
421
+		$params['post_number'] = 1;
422
+	}
423
+
424
+	// Manage the entered categories
425
+	if (0 != $params['category'] || '' != $params['category']) {
426
+		$params['category'] = gdsc_manage_category_choice($params['post_type'], $params['category']);
427
+	}
428
+	// Convert show_title to a bool
429
+	$params['show_title'] = intval(gdsc_to_bool_val($params['show_title']));
430
+
431
+	// Convert show_featured_only to a bool
432
+	$params['show_featured_only'] = intval(gdsc_to_bool_val($params['show_featured_only']));
433
+
434
+	/*
435 435
      * Hopefully all attributes are now valid, and safe to pass forward
436 436
      */
437 437
 
438
-    // redeclare vars after validation
439
-
440
-    if (isset($params['direction_nav'])) {
441
-        $params['directionNav'] = $params['direction_nav'];
442
-    }
443
-    if (isset($params['animation_loop'])) {
444
-        $params['animationLoop'] = $params['animation_loop'];
445
-    }
446
-    if (isset($params['slideshow_speed'])) {
447
-        $params['slideshowSpeed'] = $params['slideshow_speed'];
448
-    }
449
-    if (isset($params['animation_speed'])) {
450
-        $params['animationSpeed'] = $params['animation_speed'];
451
-    }
452
-    if (isset($params['order_by'])) {
453
-        $params['list_sort'] = $params['order_by'];
454
-    }
455
-
456
-    $query_args = array(
457
-        'post_number' => $params['post_number'],
458
-        'is_geodir_loop' => true,
459
-        'post_type' => $params['post_type'],
460
-        'order_by' => $params['order_by']
461
-    );
462
-
463
-    if (1 == $params['show_featured_only']) {
464
-        $query_args['show_featured_only'] = 1;
465
-    }
466
-
467
-    if (0 != $params['category'] && '' != $params['category']) {
468
-        $category_taxonomy = geodir_get_taxonomies($params['post_type']);
469
-        $tax_query = array(
470
-            'taxonomy' => $category_taxonomy[0],
471
-            'field' => 'id',
472
-            'terms' => $params['category'],
473
-        );
474
-
475
-        $query_args['tax_query'] = array($tax_query);
476
-    }
477
-
478
-    $defaults = array(
479
-        'before_widget' => '',
480
-        'after_widget' => '',
481
-        'before_title' => '',
482
-        'after_title' => '',
483
-    );
484
-
485
-    $query_args = array_merge($query_args, $params);
486
-
487
-    geodir_listing_slider_widget_output($defaults, $query_args);
488
-
489
-    $output = ob_get_contents();
490
-
491
-    ob_end_clean();
492
-
493
-    return $output;
438
+	// redeclare vars after validation
439
+
440
+	if (isset($params['direction_nav'])) {
441
+		$params['directionNav'] = $params['direction_nav'];
442
+	}
443
+	if (isset($params['animation_loop'])) {
444
+		$params['animationLoop'] = $params['animation_loop'];
445
+	}
446
+	if (isset($params['slideshow_speed'])) {
447
+		$params['slideshowSpeed'] = $params['slideshow_speed'];
448
+	}
449
+	if (isset($params['animation_speed'])) {
450
+		$params['animationSpeed'] = $params['animation_speed'];
451
+	}
452
+	if (isset($params['order_by'])) {
453
+		$params['list_sort'] = $params['order_by'];
454
+	}
455
+
456
+	$query_args = array(
457
+		'post_number' => $params['post_number'],
458
+		'is_geodir_loop' => true,
459
+		'post_type' => $params['post_type'],
460
+		'order_by' => $params['order_by']
461
+	);
462
+
463
+	if (1 == $params['show_featured_only']) {
464
+		$query_args['show_featured_only'] = 1;
465
+	}
466
+
467
+	if (0 != $params['category'] && '' != $params['category']) {
468
+		$category_taxonomy = geodir_get_taxonomies($params['post_type']);
469
+		$tax_query = array(
470
+			'taxonomy' => $category_taxonomy[0],
471
+			'field' => 'id',
472
+			'terms' => $params['category'],
473
+		);
474
+
475
+		$query_args['tax_query'] = array($tax_query);
476
+	}
477
+
478
+	$defaults = array(
479
+		'before_widget' => '',
480
+		'after_widget' => '',
481
+		'before_title' => '',
482
+		'after_title' => '',
483
+	);
484
+
485
+	$query_args = array_merge($query_args, $params);
486
+
487
+	geodir_listing_slider_widget_output($defaults, $query_args);
488
+
489
+	$output = ob_get_contents();
490
+
491
+	ob_end_clean();
492
+
493
+	return $output;
494 494
 }
495 495
 
496 496
 add_shortcode('gd_login_box', 'geodir_sc_login_box');
@@ -514,22 +514,22 @@  discard block
 block discarded – undo
514 514
  */
515 515
 function geodir_sc_login_box($atts)
516 516
 {
517
-    ob_start();
517
+	ob_start();
518 518
 
519
-    $defaults = array(
520
-        'before_widget' => '',
521
-        'after_widget' => '',
522
-        'before_title' => '',
523
-        'after_title' => '',
524
-    );
519
+	$defaults = array(
520
+		'before_widget' => '',
521
+		'after_widget' => '',
522
+		'before_title' => '',
523
+		'after_title' => '',
524
+	);
525 525
 
526
-    geodir_loginwidget_output($defaults, $defaults);
526
+	geodir_loginwidget_output($defaults, $defaults);
527 527
 
528
-    $output = ob_get_contents();
528
+	$output = ob_get_contents();
529 529
 
530
-    ob_end_clean();
530
+	ob_end_clean();
531 531
 
532
-    return $output;
532
+	return $output;
533 533
 }
534 534
 
535 535
 add_shortcode('gd_popular_post_category', 'geodir_sc_popular_post_category');
@@ -560,30 +560,30 @@  discard block
 block discarded – undo
560 560
  */
561 561
 function geodir_sc_popular_post_category($atts)
562 562
 {
563
-    ob_start();
564
-    global $geodir_post_category_str;
565
-    $defaults = array(
566
-        'category_limit' => 15,
567
-        'before_widget' => '',
568
-        'after_widget' => '',
569
-        'before_title' => '',
570
-        'after_title' => '',
571
-        'title' => '',
572
-        'default_post_type' => '',
573
-        'parent_only' => false,
574
-    );
575
-
576
-    $params = shortcode_atts($defaults, $atts, 'popular_post_category');
577
-    $params['category_limit'] = absint($params['category_limit']);
578
-    $params['default_post_type'] = gdsc_is_post_type_valid($params['default_post_type']) ? $params['default_post_type'] : '';
579
-    $params['parent_only'] = gdsc_to_bool_val($params['parent_only']);
580
-    geodir_popular_post_category_output($params, $params);
581
-
582
-    $output = ob_get_contents();
583
-
584
-    ob_end_clean();
585
-
586
-    return $output;
563
+	ob_start();
564
+	global $geodir_post_category_str;
565
+	$defaults = array(
566
+		'category_limit' => 15,
567
+		'before_widget' => '',
568
+		'after_widget' => '',
569
+		'before_title' => '',
570
+		'after_title' => '',
571
+		'title' => '',
572
+		'default_post_type' => '',
573
+		'parent_only' => false,
574
+	);
575
+
576
+	$params = shortcode_atts($defaults, $atts, 'popular_post_category');
577
+	$params['category_limit'] = absint($params['category_limit']);
578
+	$params['default_post_type'] = gdsc_is_post_type_valid($params['default_post_type']) ? $params['default_post_type'] : '';
579
+	$params['parent_only'] = gdsc_to_bool_val($params['parent_only']);
580
+	geodir_popular_post_category_output($params, $params);
581
+
582
+	$output = ob_get_contents();
583
+
584
+	ob_end_clean();
585
+
586
+	return $output;
587 587
 }
588 588
 
589 589
 add_shortcode('gd_popular_post_view', 'geodir_sc_popular_post_view');
@@ -623,97 +623,97 @@  discard block
 block discarded – undo
623 623
  */
624 624
 function geodir_sc_popular_post_view($atts)
625 625
 {
626
-    ob_start();
627
-    $defaults = array(
628
-        'post_type' => 'gd_place',
629
-        'category' => '0',
630
-        'post_number' => '5',
631
-        'layout' => 'gridview_onehalf',
632
-        'add_location_filter' => '0',
633
-        'list_sort' => 'latest',
634
-        'use_viewing_post_type' => '1',
635
-        'character_count' => '20',
636
-        'listing_width' => '',
637
-        'show_featured_only' => '0',
638
-        'show_special_only' => '0',
639
-        'with_pics_only' => '0',
640
-        'with_videos_only' => '0',
641
-        'before_widget' => '',
642
-        'after_widget' => '',
643
-        'before_title' => '<h3 class="widget-title">',
644
-        'after_title' => '</h3>',
645
-        'title' => '',
646
-        'category_title' => '',
647
-    );
648
-
649
-    $params = shortcode_atts($defaults, $atts);
650
-
651
-    /**
652
-     * Validate our incoming params
653
-     */
626
+	ob_start();
627
+	$defaults = array(
628
+		'post_type' => 'gd_place',
629
+		'category' => '0',
630
+		'post_number' => '5',
631
+		'layout' => 'gridview_onehalf',
632
+		'add_location_filter' => '0',
633
+		'list_sort' => 'latest',
634
+		'use_viewing_post_type' => '1',
635
+		'character_count' => '20',
636
+		'listing_width' => '',
637
+		'show_featured_only' => '0',
638
+		'show_special_only' => '0',
639
+		'with_pics_only' => '0',
640
+		'with_videos_only' => '0',
641
+		'before_widget' => '',
642
+		'after_widget' => '',
643
+		'before_title' => '<h3 class="widget-title">',
644
+		'after_title' => '</h3>',
645
+		'title' => '',
646
+		'category_title' => '',
647
+	);
654 648
 
655
-    // Validate the selected post type, default to gd_place on fail
656
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
657
-        $params['post_type'] = 'gd_place';
658
-    }
659
-
660
-    // Validate the selected category/ies - Grab the current list based on post_type
661
-    $category_taxonomy = geodir_get_taxonomies($params['post_type']);
662
-    $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
663
-
664
-    // Make sure we have an array
665
-    if (!(is_array($params['category']))) {
666
-        $params['category'] = explode(',', $params['category']);
667
-    }
668
-
669
-    // Array_intersect returns only the items in $params['category'] that are also in our category list
670
-    // Otherwise it becomes empty and later on that will mean "All"
671
-    $params['category'] = array_intersect($params['category'], $categories);
672
-
673
-    // Post_number needs to be a positive integer
674
-    $params['post_number'] = absint($params['post_number']);
675
-    if (0 == $params['post_number']) {
676
-        $params['post_number'] = 1;
677
-    }
678
-
679
-    // Validate our layout choice
680
-    // Outside of the norm, I added some more simple terms to match the existing
681
-    // So now I just run the switch to set it properly.
682
-    $params['layout'] = gdsc_validate_layout_choice($params['layout']);
683
-
684
-    // Validate our sorting choice
685
-    $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
686
-
687
-    // Validate character_count
688
-    $params['character_count'] = absint($params['character_count']);
689
-    if (20 > $params['character_count']) {
690
-        $params['character_count'] = 20;
691
-    }
692
-
693
-    // Validate Listing width, used in the template widget-listing-listview.php
694
-    // The context is in width=$listing_width% - So we need a positive number between 0 & 100
695
-    $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
696
-
697
-    // Validate the checkboxes used on the widget
698
-    $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
699
-    $params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']);
700
-    $params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']);
701
-    $params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']);
702
-    $params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']);
703
-    $params['use_viewing_post_type'] = gdsc_to_bool_val($params['use_viewing_post_type']);
704
-
705
-    /**
706
-     * End of validation
707
-     */
649
+	$params = shortcode_atts($defaults, $atts);
650
+
651
+	/**
652
+	 * Validate our incoming params
653
+	 */
654
+
655
+	// Validate the selected post type, default to gd_place on fail
656
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
657
+		$params['post_type'] = 'gd_place';
658
+	}
659
+
660
+	// Validate the selected category/ies - Grab the current list based on post_type
661
+	$category_taxonomy = geodir_get_taxonomies($params['post_type']);
662
+	$categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
708 663
 
709
-    geodir_popular_postview_output($params, $params);
664
+	// Make sure we have an array
665
+	if (!(is_array($params['category']))) {
666
+		$params['category'] = explode(',', $params['category']);
667
+	}
668
+
669
+	// Array_intersect returns only the items in $params['category'] that are also in our category list
670
+	// Otherwise it becomes empty and later on that will mean "All"
671
+	$params['category'] = array_intersect($params['category'], $categories);
672
+
673
+	// Post_number needs to be a positive integer
674
+	$params['post_number'] = absint($params['post_number']);
675
+	if (0 == $params['post_number']) {
676
+		$params['post_number'] = 1;
677
+	}
710 678
 
679
+	// Validate our layout choice
680
+	// Outside of the norm, I added some more simple terms to match the existing
681
+	// So now I just run the switch to set it properly.
682
+	$params['layout'] = gdsc_validate_layout_choice($params['layout']);
711 683
 
712
-    $output = ob_get_contents();
684
+	// Validate our sorting choice
685
+	$params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
713 686
 
714
-    ob_end_clean();
687
+	// Validate character_count
688
+	$params['character_count'] = absint($params['character_count']);
689
+	if (20 > $params['character_count']) {
690
+		$params['character_count'] = 20;
691
+	}
715 692
 
716
-    return $output;
693
+	// Validate Listing width, used in the template widget-listing-listview.php
694
+	// The context is in width=$listing_width% - So we need a positive number between 0 & 100
695
+	$params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
696
+
697
+	// Validate the checkboxes used on the widget
698
+	$params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
699
+	$params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']);
700
+	$params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']);
701
+	$params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']);
702
+	$params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']);
703
+	$params['use_viewing_post_type'] = gdsc_to_bool_val($params['use_viewing_post_type']);
704
+
705
+	/**
706
+	 * End of validation
707
+	 */
708
+
709
+	geodir_popular_postview_output($params, $params);
710
+
711
+
712
+	$output = ob_get_contents();
713
+
714
+	ob_end_clean();
715
+
716
+	return $output;
717 717
 }
718 718
 
719 719
 add_shortcode('gd_recent_reviews', 'geodir_sc_recent_reviews');
@@ -735,37 +735,37 @@  discard block
 block discarded – undo
735 735
  * @return string Recent reviews HTML.
736 736
  */
737 737
 function geodir_sc_recent_reviews($atts) {
738
-    ob_start();
739
-    $defaults = array(
738
+	ob_start();
739
+	$defaults = array(
740 740
 		'title' => '',
741 741
 		'count' => 5,
742
-    );
742
+	);
743 743
 
744
-    $params = shortcode_atts($defaults, $atts);
744
+	$params = shortcode_atts($defaults, $atts);
745 745
 
746
-    $count = absint($params['count']);
747
-    if (0 == $count) {
748
-        $count = 1;
749
-    }
746
+	$count = absint($params['count']);
747
+	if (0 == $count) {
748
+		$count = 1;
749
+	}
750 750
 	
751 751
 	$title = !empty($params['title']) ? __($params['title'], 'geodirectory') : '';
752 752
 
753
-    $comments_li = geodir_get_recent_reviews(30, $count, 100, false);
753
+	$comments_li = geodir_get_recent_reviews(30, $count, 100, false);
754 754
 
755
-    if ($comments_li) {
756
-        if ($title != '') { ?>
755
+	if ($comments_li) {
756
+		if ($title != '') { ?>
757 757
 		<h3 class="geodir-sc-recent-reviews-title widget-title"><?php echo $title; ?></h3>
758 758
 		<?php } ?>
759 759
         <div class="geodir_sc_recent_reviews_section">
760 760
             <ul class="geodir_sc_recent_reviews"><?php echo $comments_li; ?></ul>
761 761
         </div>
762 762
     <?php
763
-    }
764
-    $output = ob_get_contents();
763
+	}
764
+	$output = ob_get_contents();
765 765
 
766
-    ob_end_clean();
766
+	ob_end_clean();
767 767
 
768
-    return $output;
768
+	return $output;
769 769
 }
770 770
 
771 771
 add_shortcode('gd_related_listings', 'geodir_sc_related_listings');
@@ -795,64 +795,64 @@  discard block
 block discarded – undo
795 795
  */
796 796
 function geodir_sc_related_listings($atts)
797 797
 {
798
-    ob_start();
799
-    $defaults = array(
800
-        'post_number' => 5,
801
-        'relate_to' => 'category',
802
-        'layout' => 'gridview_onehalf',
803
-        'add_location_filter' => 0,
804
-        'listing_width' => '',
805
-        'list_sort' => 'latest',
806
-        'character_count' => 20,
807
-        'is_widget' => 1,
808
-        'before_title' => '<style type="text/css">.geodir_category_list_view li{margin:0px!important}</style>',
809
-    );
810
-    // The "before_title" code is an ugly & terrible hack. But it works for now. I should enqueue a new stylesheet.
811
-
812
-    $params = shortcode_atts($defaults, $atts);
813
-
814
-    /**
815
-     * Begin validating parameters
816
-     */
798
+	ob_start();
799
+	$defaults = array(
800
+		'post_number' => 5,
801
+		'relate_to' => 'category',
802
+		'layout' => 'gridview_onehalf',
803
+		'add_location_filter' => 0,
804
+		'listing_width' => '',
805
+		'list_sort' => 'latest',
806
+		'character_count' => 20,
807
+		'is_widget' => 1,
808
+		'before_title' => '<style type="text/css">.geodir_category_list_view li{margin:0px!important}</style>',
809
+	);
810
+	// The "before_title" code is an ugly & terrible hack. But it works for now. I should enqueue a new stylesheet.
811
+
812
+	$params = shortcode_atts($defaults, $atts);
813
+
814
+	/**
815
+	 * Begin validating parameters
816
+	 */
817 817
 
818
-    // Validate that post_number is a number and is 1 or higher
819
-    $params['post_number'] = absint($params['post_number']);
820
-    if (0 === $params['post_number']) {
821
-        $params['post_number'] = 1;
822
-    }
818
+	// Validate that post_number is a number and is 1 or higher
819
+	$params['post_number'] = absint($params['post_number']);
820
+	if (0 === $params['post_number']) {
821
+		$params['post_number'] = 1;
822
+	}
823 823
 
824
-    // Validate relate_to - only category or tags
825
-    $params['relate_to'] = geodir_strtolower($params['relate_to']);
826
-    if ('category' != $params['relate_to'] && 'tags' != $params['relate_to']) {
827
-        $params['relate_to'] = 'category';
828
-    }
824
+	// Validate relate_to - only category or tags
825
+	$params['relate_to'] = geodir_strtolower($params['relate_to']);
826
+	if ('category' != $params['relate_to'] && 'tags' != $params['relate_to']) {
827
+		$params['relate_to'] = 'category';
828
+	}
829 829
 
830
-    // Validate layout selection
831
-    $params['layout'] = gdsc_validate_layout_choice($params['layout']);
830
+	// Validate layout selection
831
+	$params['layout'] = gdsc_validate_layout_choice($params['layout']);
832 832
 
833
-    // Validate sorting option
834
-    $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
833
+	// Validate sorting option
834
+	$params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
835 835
 
836
-    // Validate add_location_filter
837
-    $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
836
+	// Validate add_location_filter
837
+	$params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
838 838
 
839
-    // Validate listing_width
840
-    $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
839
+	// Validate listing_width
840
+	$params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
841 841
 
842
-    // Validate character_count
843
-    $params['character_count'] = absint($params['character_count']);
844
-    if (20 > $params['character_count']) {
845
-        $params['character_count'] = 20;
846
-    }
842
+	// Validate character_count
843
+	$params['character_count'] = absint($params['character_count']);
844
+	if (20 > $params['character_count']) {
845
+		$params['character_count'] = 20;
846
+	}
847 847
 
848
-    if ($related_display = geodir_related_posts_display($params)) {
849
-        echo $related_display;
850
-    }
851
-    $output = ob_get_contents();
848
+	if ($related_display = geodir_related_posts_display($params)) {
849
+		echo $related_display;
850
+	}
851
+	$output = ob_get_contents();
852 852
 
853
-    ob_end_clean();
853
+	ob_end_clean();
854 854
 
855
-    return $output;
855
+	return $output;
856 856
 }
857 857
 
858 858
 /**
@@ -876,12 +876,12 @@  discard block
 block discarded – undo
876 876
  * @return string Advanced search widget HTML.
877 877
  */
878 878
 function geodir_sc_advanced_search($atts) {
879
-    $defaults = array(
879
+	$defaults = array(
880 880
 		'title' => '',
881 881
 		'before_widget' => '<section id="geodir_advanced_search-1" class="widget geodir-widget geodir_advance_search_widget">',
882
-        'after_widget' => '</section>',
883
-        'before_title' => '<h3 class="widget-title">',
884
-        'after_title' => '</h3>',
882
+		'after_widget' => '</section>',
883
+		'before_title' => '<h3 class="widget-title">',
884
+		'after_title' => '</h3>',
885 885
 		'show_adv_search' => 'default'
886 886
 	);
887 887
 	
@@ -905,9 +905,9 @@  discard block
 block discarded – undo
905 905
 	the_widget('geodir_advance_search_widget', $params, $params );
906 906
 	
907 907
 	$output = ob_get_contents();
908
-    ob_end_clean();
908
+	ob_end_clean();
909 909
 
910
-    return $output;
910
+	return $output;
911 911
 }
912 912
 add_shortcode('gd_advanced_search', 'geodir_sc_advanced_search');
913 913
 
@@ -953,48 +953,48 @@  discard block
 block discarded – undo
953 953
 		'add_location_filter' => '1',
954 954
 		'tab_layout' => 'bestof-tabs-on-top',
955 955
 		'before_widget' => '<section id="bestof_widget-1" class="widget geodir-widget geodir_bestof_widget geodir_sc_bestof_widget">',
956
-        'after_widget' => '</section>',
957
-        'before_title' => '<h3 class="widget-title">',
958
-        'after_title' => '</h3>',
956
+		'after_widget' => '</section>',
957
+		'before_title' => '<h3 class="widget-title">',
958
+		'after_title' => '</h3>',
959 959
 	);
960 960
 	$params = shortcode_atts($defaults, $atts);
961 961
 
962
-    /**
963
-     * Validate our incoming params
964
-     */
962
+	/**
963
+	 * Validate our incoming params
964
+	 */
965 965
 
966
-    // Validate the selected post type, default to gd_place on fail
967
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
968
-        $params['post_type'] = 'gd_place';
969
-    }
966
+	// Validate the selected post type, default to gd_place on fail
967
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
968
+		$params['post_type'] = 'gd_place';
969
+	}
970 970
 	
971 971
 	// Post limit needs to be a positive integer
972
-    $params['post_limit'] = absint($params['post_limit']);
973
-    if (0 == $params['post_limit']) {
974
-        $params['post_limit'] = 5;
975
-    }
972
+	$params['post_limit'] = absint($params['post_limit']);
973
+	if (0 == $params['post_limit']) {
974
+		$params['post_limit'] = 5;
975
+	}
976 976
 	
977 977
 	// Category limit needs to be a positive integer
978
-    $params['categ_limit'] = absint($params['categ_limit']);
979
-    if (0 == $params['categ_limit']) {
980
-        $params['categ_limit'] = 3;
981
-    }
978
+	$params['categ_limit'] = absint($params['categ_limit']);
979
+	if (0 == $params['categ_limit']) {
980
+		$params['categ_limit'] = 3;
981
+	}
982 982
 	
983 983
 	// Tab layout validation
984
-    $params['tab_layout'] = $params['tab_layout'];
985
-    if (!in_array($params['tab_layout'], array('bestof-tabs-on-top', 'bestof-tabs-on-left', 'bestof-tabs-as-dropdown'))) {
986
-        $params['tab_layout'] = 'bestof-tabs-on-top';
987
-    }
984
+	$params['tab_layout'] = $params['tab_layout'];
985
+	if (!in_array($params['tab_layout'], array('bestof-tabs-on-top', 'bestof-tabs-on-left', 'bestof-tabs-as-dropdown'))) {
986
+		$params['tab_layout'] = 'bestof-tabs-on-top';
987
+	}
988 988
 	
989 989
 	// Validate character_count
990
-    $params['character_count'] = $params['character_count'];
990
+	$params['character_count'] = $params['character_count'];
991 991
 
992 992
 	ob_start();
993 993
 	the_widget('geodir_bestof_widget', $params, $params);
994
-    $output = ob_get_contents();
995
-    ob_end_clean();
994
+	$output = ob_get_contents();
995
+	ob_end_clean();
996 996
 
997
-    return $output;
997
+	return $output;
998 998
 }
999 999
 add_shortcode('gd_bestof_widget', 'geodir_sc_bestof_widget');
1000 1000
 
@@ -1042,127 +1042,127 @@  discard block
 block discarded – undo
1042 1042
  * @return string HTML content to display geodirectory listings.
1043 1043
  */
1044 1044
 function geodir_sc_gd_listings($atts, $content = '') {
1045
-    global $post;
1046
-    $defaults = array(
1047
-        'title'                 => '',
1048
-        'post_type'             => 'gd_place',
1049
-        'category'              => 0,
1050
-        'list_sort'             => 'latest',
1051
-        'event_type'            => '',
1052
-        'post_number'           => 10,
1053
-        'post_author'           => '',
1054
-        'layout'                => 'gridview_onehalf',
1055
-        'listing_width'         => '',
1056
-        'character_count'       => 20,
1057
-        'add_location_filter'   => 1,
1058
-        'show_featured_only'    => '',
1059
-        'show_special_only'     => '',
1060
-        'with_pics_only'        => '',
1061
-        'with_videos_only'      => '',
1062
-        'with_pagination'       => '1',
1063
-        'top_pagination'        => '0',
1064
-        'bottom_pagination'     => '1',
1065
-        'without_no_results'    => 0,
1066
-        'tags'                  => ''
1067
-    );
1068
-    $params = shortcode_atts($defaults, $atts);
1069
-
1070
-    $params['title']        = wp_strip_all_tags($params['title']);
1071
-    $params['post_type']    = gdsc_is_post_type_valid($params['post_type']) ? $params['post_type'] : 'gd_place';
1072
-
1073
-    // Validate the selected category/ies - Grab the current list based on post_type
1074
-    $category_taxonomy      = geodir_get_taxonomies($params['post_type']);
1075
-    $categories             = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
1076
-
1077
-    // Make sure we have an array
1078
-    if (!(is_array($params['category']))) {
1079
-        $params['category'] = explode(',', $params['category']);
1080
-    }
1081
-
1082
-    // Array_intersect returns only the items in $params['category'] that are also in our category list
1083
-    // Otherwise it becomes empty and later on that will mean "All"
1084
-    $params['category']     = array_intersect($params['category'], $categories);
1085
-
1086
-    // Post_number needs to be a positive integer
1087
-    $params['post_number']  = absint($params['post_number']);
1088
-    $params['post_number']  = $params['post_number'] > 0 ? $params['post_number'] : 10;
1045
+	global $post;
1046
+	$defaults = array(
1047
+		'title'                 => '',
1048
+		'post_type'             => 'gd_place',
1049
+		'category'              => 0,
1050
+		'list_sort'             => 'latest',
1051
+		'event_type'            => '',
1052
+		'post_number'           => 10,
1053
+		'post_author'           => '',
1054
+		'layout'                => 'gridview_onehalf',
1055
+		'listing_width'         => '',
1056
+		'character_count'       => 20,
1057
+		'add_location_filter'   => 1,
1058
+		'show_featured_only'    => '',
1059
+		'show_special_only'     => '',
1060
+		'with_pics_only'        => '',
1061
+		'with_videos_only'      => '',
1062
+		'with_pagination'       => '1',
1063
+		'top_pagination'        => '0',
1064
+		'bottom_pagination'     => '1',
1065
+		'without_no_results'    => 0,
1066
+		'tags'                  => ''
1067
+	);
1068
+	$params = shortcode_atts($defaults, $atts);
1069
+
1070
+	$params['title']        = wp_strip_all_tags($params['title']);
1071
+	$params['post_type']    = gdsc_is_post_type_valid($params['post_type']) ? $params['post_type'] : 'gd_place';
1072
+
1073
+	// Validate the selected category/ies - Grab the current list based on post_type
1074
+	$category_taxonomy      = geodir_get_taxonomies($params['post_type']);
1075
+	$categories             = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
1076
+
1077
+	// Make sure we have an array
1078
+	if (!(is_array($params['category']))) {
1079
+		$params['category'] = explode(',', $params['category']);
1080
+	}
1081
+
1082
+	// Array_intersect returns only the items in $params['category'] that are also in our category list
1083
+	// Otherwise it becomes empty and later on that will mean "All"
1084
+	$params['category']     = array_intersect($params['category'], $categories);
1085
+
1086
+	// Post_number needs to be a positive integer
1087
+	$params['post_number']  = absint($params['post_number']);
1088
+	$params['post_number']  = $params['post_number'] > 0 ? $params['post_number'] : 10;
1089 1089
     
1090
-    // Post_number needs to be a positive integer
1091
-    if (!empty($atts['post_author'])) {
1092
-        if ($atts['post_author'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1093
-            $params['post_author'] = $post->post_author;
1094
-        } else if ($atts['post_author'] != 'current' && absint($atts['post_author']) > 0) {
1095
-            $params['post_author'] = absint($atts['post_author']);
1096
-        } else {
1097
-            unset($params['post_author']);
1098
-        }
1099
-    } else {
1100
-        unset($params['post_author']);
1101
-    }
1102
-
1103
-    // Validate character_count
1104
-    //todo: is this necessary?
1105
-    $params['character_count']  = $params['character_count'];
1106
-
1107
-    // Validate our layout choice
1108
-    // Outside of the norm, I added some more simple terms to match the existing
1109
-    // So now I just run the switch to set it properly.
1110
-    $params['layout']           = gdsc_validate_layout_choice($params['layout']);
1111
-
1112
-    // Validate our sorting choice
1113
-    $params['list_sort']        = gdsc_validate_sort_choice($params['list_sort']);
1114
-
1115
-    // Validate Listing width, used in the template widget-listing-listview.php
1116
-    // The context is in width=$listing_width% - So we need a positive number between 0 & 100
1117
-    $params['listing_width']    = gdsc_validate_listing_width($params['listing_width']);
1118
-
1119
-    // Validate the checkboxes used on the widget
1120
-    $params['add_location_filter']  = gdsc_to_bool_val($params['add_location_filter']);
1121
-    $params['show_featured_only']   = gdsc_to_bool_val($params['show_featured_only']);
1122
-    $params['show_special_only']    = gdsc_to_bool_val($params['show_special_only']);
1123
-    $params['with_pics_only']       = gdsc_to_bool_val($params['with_pics_only']);
1124
-    $params['with_videos_only']     = gdsc_to_bool_val($params['with_videos_only']);
1125
-    $params['with_pagination']      = gdsc_to_bool_val($params['with_pagination']);
1126
-    $params['top_pagination']       = gdsc_to_bool_val($params['top_pagination']);
1127
-    $params['bottom_pagination']    = gdsc_to_bool_val($params['bottom_pagination']);
1128
-
1129
-    // Clean tags
1130
-    if (!empty($params['tags'])) {
1131
-        if (!is_array($params['tags'])) {
1132
-            $comma = _x(',', 'tag delimiter');
1133
-            if ( ',' !== $comma ) {
1134
-                $params['tags'] = str_replace($comma, ',', $params['tags']);
1135
-            }
1136
-            $params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,"));
1137
-            $params['tags'] = array_map('trim', $params['tags']);
1138
-        }
1139
-    } else {
1140
-        $params['tags'] = array();
1141
-    }
1142
-
1143
-    /**
1144
-     * End of validation
1145
-     */
1146
-    if (isset($atts['geodir_ajax'])) {
1147
-        $params['geodir_ajax'] = $atts['geodir_ajax'];
1148
-        unset($atts['geodir_ajax']);
1149
-    }
1150
-    if (isset($atts['pageno'])) {
1151
-        $params['pageno'] = $atts['pageno'];
1152
-        unset($atts['pageno']);
1153
-    }
1154
-
1155
-    if ( !empty($atts['shortcode_content']) ) {
1156
-        $content = $atts['shortcode_content'];
1157
-    }
1158
-    $params['shortcode_content'] = trim($content);
1159
-    $atts['shortcode_content'] = trim($content);
1090
+	// Post_number needs to be a positive integer
1091
+	if (!empty($atts['post_author'])) {
1092
+		if ($atts['post_author'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1093
+			$params['post_author'] = $post->post_author;
1094
+		} else if ($atts['post_author'] != 'current' && absint($atts['post_author']) > 0) {
1095
+			$params['post_author'] = absint($atts['post_author']);
1096
+		} else {
1097
+			unset($params['post_author']);
1098
+		}
1099
+	} else {
1100
+		unset($params['post_author']);
1101
+	}
1102
+
1103
+	// Validate character_count
1104
+	//todo: is this necessary?
1105
+	$params['character_count']  = $params['character_count'];
1106
+
1107
+	// Validate our layout choice
1108
+	// Outside of the norm, I added some more simple terms to match the existing
1109
+	// So now I just run the switch to set it properly.
1110
+	$params['layout']           = gdsc_validate_layout_choice($params['layout']);
1111
+
1112
+	// Validate our sorting choice
1113
+	$params['list_sort']        = gdsc_validate_sort_choice($params['list_sort']);
1114
+
1115
+	// Validate Listing width, used in the template widget-listing-listview.php
1116
+	// The context is in width=$listing_width% - So we need a positive number between 0 & 100
1117
+	$params['listing_width']    = gdsc_validate_listing_width($params['listing_width']);
1118
+
1119
+	// Validate the checkboxes used on the widget
1120
+	$params['add_location_filter']  = gdsc_to_bool_val($params['add_location_filter']);
1121
+	$params['show_featured_only']   = gdsc_to_bool_val($params['show_featured_only']);
1122
+	$params['show_special_only']    = gdsc_to_bool_val($params['show_special_only']);
1123
+	$params['with_pics_only']       = gdsc_to_bool_val($params['with_pics_only']);
1124
+	$params['with_videos_only']     = gdsc_to_bool_val($params['with_videos_only']);
1125
+	$params['with_pagination']      = gdsc_to_bool_val($params['with_pagination']);
1126
+	$params['top_pagination']       = gdsc_to_bool_val($params['top_pagination']);
1127
+	$params['bottom_pagination']    = gdsc_to_bool_val($params['bottom_pagination']);
1128
+
1129
+	// Clean tags
1130
+	if (!empty($params['tags'])) {
1131
+		if (!is_array($params['tags'])) {
1132
+			$comma = _x(',', 'tag delimiter');
1133
+			if ( ',' !== $comma ) {
1134
+				$params['tags'] = str_replace($comma, ',', $params['tags']);
1135
+			}
1136
+			$params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,"));
1137
+			$params['tags'] = array_map('trim', $params['tags']);
1138
+		}
1139
+	} else {
1140
+		$params['tags'] = array();
1141
+	}
1142
+
1143
+	/**
1144
+	 * End of validation
1145
+	 */
1146
+	if (isset($atts['geodir_ajax'])) {
1147
+		$params['geodir_ajax'] = $atts['geodir_ajax'];
1148
+		unset($atts['geodir_ajax']);
1149
+	}
1150
+	if (isset($atts['pageno'])) {
1151
+		$params['pageno'] = $atts['pageno'];
1152
+		unset($atts['pageno']);
1153
+	}
1154
+
1155
+	if ( !empty($atts['shortcode_content']) ) {
1156
+		$content = $atts['shortcode_content'];
1157
+	}
1158
+	$params['shortcode_content'] = trim($content);
1159
+	$atts['shortcode_content'] = trim($content);
1160 1160
     
1161
-    $params['shortcode_atts']       = $atts;
1161
+	$params['shortcode_atts']       = $atts;
1162 1162
 
1163
-    $output = geodir_sc_gd_listings_output($params);
1163
+	$output = geodir_sc_gd_listings_output($params);
1164 1164
 
1165
-    return $output;
1165
+	return $output;
1166 1166
 }
1167 1167
 add_shortcode('gd_listings', 'geodir_sc_gd_listings');
1168 1168
 
@@ -1202,56 +1202,56 @@  discard block
 block discarded – undo
1202 1202
  * @return string HTML content to display CPT categories.
1203 1203
  */
1204 1204
 function geodir_sc_cpt_categories_widget($atts, $content = '') {
1205
-    $defaults = array(
1206
-        'title' => '',
1207
-        'post_type' => '', // NULL for all
1208
-        'hide_empty' => '',
1209
-        'show_count' => '',
1210
-        'hide_icon' => '',
1211
-        'cpt_left' => '',
1212
-        'sort_by' => 'count',
1213
-        'max_count' => 'all',
1214
-        'max_level' => '1',
1215
-        'no_cpt_filter' => '',
1216
-        'no_cat_filter' => '',
1217
-        'before_widget' => '<section id="geodir_cpt_categories_widget-1" class="widget geodir-widget geodir_cpt_categories_widget geodir_sc_cpt_categories_widget">',
1218
-        'after_widget' => '</section>',
1219
-        'before_title' => '<h3 class="widget-title">',
1220
-        'after_title' => '</h3>',
1221
-    );
1222
-    $params = shortcode_atts($defaults, $atts);
1223
-
1224
-    /**
1225
-     * Validate our incoming params
1226
-     */
1227
-    // Make sure we have an array
1228
-    $params['post_type'] = !is_array($params['post_type']) && trim($params['post_type']) != '' ? explode(',', trim($params['post_type'])) : array();
1229
-     
1230
-    // Validate the checkboxes used on the widget
1231
-    $params['hide_empty'] 	= gdsc_to_bool_val($params['hide_empty']);
1232
-    $params['show_count'] 	= gdsc_to_bool_val($params['show_count']);
1233
-    $params['hide_icon'] 	= gdsc_to_bool_val($params['hide_icon']);
1234
-    $params['cpt_left'] 	= gdsc_to_bool_val($params['cpt_left']);
1205
+	$defaults = array(
1206
+		'title' => '',
1207
+		'post_type' => '', // NULL for all
1208
+		'hide_empty' => '',
1209
+		'show_count' => '',
1210
+		'hide_icon' => '',
1211
+		'cpt_left' => '',
1212
+		'sort_by' => 'count',
1213
+		'max_count' => 'all',
1214
+		'max_level' => '1',
1215
+		'no_cpt_filter' => '',
1216
+		'no_cat_filter' => '',
1217
+		'before_widget' => '<section id="geodir_cpt_categories_widget-1" class="widget geodir-widget geodir_cpt_categories_widget geodir_sc_cpt_categories_widget">',
1218
+		'after_widget' => '</section>',
1219
+		'before_title' => '<h3 class="widget-title">',
1220
+		'after_title' => '</h3>',
1221
+	);
1222
+	$params = shortcode_atts($defaults, $atts);
1235 1223
 
1236
-    if ($params['max_count'] != 'all') {
1237
-        $params['max_count'] = absint($params['max_count']);
1238
-    }
1224
+	/**
1225
+	 * Validate our incoming params
1226
+	 */
1227
+	// Make sure we have an array
1228
+	$params['post_type'] = !is_array($params['post_type']) && trim($params['post_type']) != '' ? explode(',', trim($params['post_type'])) : array();
1229
+     
1230
+	// Validate the checkboxes used on the widget
1231
+	$params['hide_empty'] 	= gdsc_to_bool_val($params['hide_empty']);
1232
+	$params['show_count'] 	= gdsc_to_bool_val($params['show_count']);
1233
+	$params['hide_icon'] 	= gdsc_to_bool_val($params['hide_icon']);
1234
+	$params['cpt_left'] 	= gdsc_to_bool_val($params['cpt_left']);
1235
+
1236
+	if ($params['max_count'] != 'all') {
1237
+		$params['max_count'] = absint($params['max_count']);
1238
+	}
1239 1239
 
1240
-    if ($params['max_level'] != 'all') {
1241
-        $params['max_level'] = absint($params['max_level']);
1242
-    }
1240
+	if ($params['max_level'] != 'all') {
1241
+		$params['max_level'] = absint($params['max_level']);
1242
+	}
1243 1243
 
1244
-    $params['no_cpt_filter'] = gdsc_to_bool_val($params['no_cpt_filter']);
1245
-    $params['no_cat_filter'] = gdsc_to_bool_val($params['no_cat_filter']);
1244
+	$params['no_cpt_filter'] = gdsc_to_bool_val($params['no_cpt_filter']);
1245
+	$params['no_cat_filter'] = gdsc_to_bool_val($params['no_cat_filter']);
1246 1246
 
1247
-    $params['sort_by'] = $params['sort_by'] == 'az' ? 'az' : 'count';
1247
+	$params['sort_by'] = $params['sort_by'] == 'az' ? 'az' : 'count';
1248 1248
 
1249
-    ob_start();
1250
-    the_widget('geodir_cpt_categories_widget', $params, $params);
1251
-    $output = ob_get_contents();
1252
-    ob_end_clean();
1249
+	ob_start();
1250
+	the_widget('geodir_cpt_categories_widget', $params, $params);
1251
+	$output = ob_get_contents();
1252
+	ob_end_clean();
1253 1253
 
1254
-    return $output;
1254
+	return $output;
1255 1255
 }
1256 1256
 add_shortcode('gd_cpt_categories', 'geodir_sc_cpt_categories_widget');
1257 1257
 
@@ -1266,7 +1266,7 @@  discard block
 block discarded – undo
1266 1266
  * @return string HTML code.
1267 1267
  */
1268 1268
 function geodir_sc_responsive_videos($atts, $content) {
1269
-    return '<div class="geodir-video-wrapper">'.$content.'</div>';
1269
+	return '<div class="geodir-video-wrapper">'.$content.'</div>';
1270 1270
 }
1271 1271
 add_shortcode('gd_video', 'geodir_sc_responsive_videos');
1272 1272
 ?>
1273 1273
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-admin/place_dummy_post.php 3 patches
Indentation   +1220 added lines, -1220 removed lines patch added patch discarded remove patch
@@ -12,32 +12,32 @@  discard block
 block discarded – undo
12 12
 $post_meta = array();
13 13
 
14 14
 if (geodir_dummy_folder_exists())
15
-    $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy";
15
+	$dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy";
16 16
 else
17
-    $dummy_image_url = 'http://www.wpgeodirectory.com/dummy';
17
+	$dummy_image_url = 'http://www.wpgeodirectory.com/dummy';
18 18
 
19 19
 $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url);
20 20
 
21 21
 switch ($dummy_post_index) {
22 22
 
23
-    case(1):
24
-        $image_array[] = "$dummy_image_url/a1.jpg";
25
-        $image_array[] = "$dummy_image_url/a2.jpg";
26
-        $image_array[] = "$dummy_image_url/a3.jpg";
27
-        $image_array[] = "$dummy_image_url/a4.jpg";
28
-        $image_array[] = "$dummy_image_url/a5.jpg";
29
-        $image_array[] = "$dummy_image_url/a6.jpg";
30
-        $image_array[] = "$dummy_image_url/a7.jpg";
31
-        $image_array[] = "$dummy_image_url/a8.jpg";
32
-        $image_array[] = "$dummy_image_url/a9.jpg";
33
-        $image_array[] = "$dummy_image_url/a10.jpg";
34
-        $image_array[] = "$dummy_image_url/a11.jpg";
35
-
36
-
37
-        $post_info[] = array(
38
-            "listing_type" => 'gd_place',
39
-            "post_title" => 'Franklin Square',
40
-            "post_desc" => ' <h3> Location </h3>
23
+	case(1):
24
+		$image_array[] = "$dummy_image_url/a1.jpg";
25
+		$image_array[] = "$dummy_image_url/a2.jpg";
26
+		$image_array[] = "$dummy_image_url/a3.jpg";
27
+		$image_array[] = "$dummy_image_url/a4.jpg";
28
+		$image_array[] = "$dummy_image_url/a5.jpg";
29
+		$image_array[] = "$dummy_image_url/a6.jpg";
30
+		$image_array[] = "$dummy_image_url/a7.jpg";
31
+		$image_array[] = "$dummy_image_url/a8.jpg";
32
+		$image_array[] = "$dummy_image_url/a9.jpg";
33
+		$image_array[] = "$dummy_image_url/a10.jpg";
34
+		$image_array[] = "$dummy_image_url/a11.jpg";
35
+
36
+
37
+		$post_info[] = array(
38
+			"listing_type" => 'gd_place',
39
+			"post_title" => 'Franklin Square',
40
+			"post_desc" => ' <h3> Location </h3>
41 41
 		
42 42
 		6th and Race Streets in Historic Philadelphia
43 43
 		<h3>The Experience</h3>
@@ -72,42 +72,42 @@  discard block
 block discarded – undo
72 72
 		Just in time for summer, Franklin Square has opened SquareBurger, a Stephen Starr-run “burger shack” selling summer staples: hot dogs, fries, milkshakes (made with Tasty Kakes) and, of course, hamburgers and cheeseburgers.
73 73
 		
74 74
 		SquareBurger is open until October - perfect for a couple bites between rounds of miniature golf!',
75
-            "post_images" => $image_array,
76
-            "post_category" => array('gd_placecategory' => array('Attractions', 'Feature')),
77
-            "post_tags" => array('Tags', 'Sample Tags'),
78
-            "geodir_video" => '',
79
-            "geodir_timing" => 'Open today until 1 p.m., Sunday 10 am to 9 pm',
80
-            "geodir_contact" => '(111) 677-4444',
81
-            "geodir_email" => '[email protected]',
82
-            "geodir_website" => 'http://franklinsquare.com',
83
-            "geodir_twitter" => 'http://twitter.com/franklinsquare',
84
-            "geodir_facebook" => 'http://facebook.com/franklinsquare',
85
-            "post_dummy" => '1'
86
-        );
87
-
88
-
89
-        break;
90
-    case 2:
91
-        $image_array = array();
92
-        $post_meta = array();
93
-
94
-        /// Attractions ////post start 2///
95
-        $image_array[] = "$dummy_image_url/a6.jpg";
96
-        $image_array[] = "$dummy_image_url/a1.jpg";
97
-        $image_array[] = "$dummy_image_url/a3.jpg";
98
-        $image_array[] = "$dummy_image_url/a4.jpg";
99
-        $image_array[] = "$dummy_image_url/a5.jpg";
100
-        $image_array[] = "$dummy_image_url/a2.jpg";
101
-        $image_array[] = "$dummy_image_url/a7.jpg";
102
-        $image_array[] = "$dummy_image_url/a8.jpg";
103
-        $image_array[] = "$dummy_image_url/a9.jpg";
104
-        $image_array[] = "$dummy_image_url/a10.jpg";
105
-        $image_array[] = "$dummy_image_url/a11.jpg";
106
-
107
-        $post_info[] = array(
108
-            "listing_type" => 'gd_place',
109
-            "post_title" => 'Please Touch Museum',
110
-            "post_desc" => '<h3>New Location! </h3>
75
+			"post_images" => $image_array,
76
+			"post_category" => array('gd_placecategory' => array('Attractions', 'Feature')),
77
+			"post_tags" => array('Tags', 'Sample Tags'),
78
+			"geodir_video" => '',
79
+			"geodir_timing" => 'Open today until 1 p.m., Sunday 10 am to 9 pm',
80
+			"geodir_contact" => '(111) 677-4444',
81
+			"geodir_email" => '[email protected]',
82
+			"geodir_website" => 'http://franklinsquare.com',
83
+			"geodir_twitter" => 'http://twitter.com/franklinsquare',
84
+			"geodir_facebook" => 'http://facebook.com/franklinsquare',
85
+			"post_dummy" => '1'
86
+		);
87
+
88
+
89
+		break;
90
+	case 2:
91
+		$image_array = array();
92
+		$post_meta = array();
93
+
94
+		/// Attractions ////post start 2///
95
+		$image_array[] = "$dummy_image_url/a6.jpg";
96
+		$image_array[] = "$dummy_image_url/a1.jpg";
97
+		$image_array[] = "$dummy_image_url/a3.jpg";
98
+		$image_array[] = "$dummy_image_url/a4.jpg";
99
+		$image_array[] = "$dummy_image_url/a5.jpg";
100
+		$image_array[] = "$dummy_image_url/a2.jpg";
101
+		$image_array[] = "$dummy_image_url/a7.jpg";
102
+		$image_array[] = "$dummy_image_url/a8.jpg";
103
+		$image_array[] = "$dummy_image_url/a9.jpg";
104
+		$image_array[] = "$dummy_image_url/a10.jpg";
105
+		$image_array[] = "$dummy_image_url/a11.jpg";
106
+
107
+		$post_info[] = array(
108
+			"listing_type" => 'gd_place',
109
+			"post_title" => 'Please Touch Museum',
110
+			"post_desc" => '<h3>New Location! </h3>
111 111
 		
112 112
 		Who doesn&acute;t love the Please Touch Museum? And now, taking kids to the Museum is better than ever. The nation&acute;s premier children&acute;s museum - which has been a beloved landmark since it opened in 1976 - has a new home in Fairmount Park, opening its doors to a world of educational, hands-on fun.
113 113
 		
@@ -139,42 +139,42 @@  discard block
 block discarded – undo
139 139
 		
140 140
 		You can buy admission tickets to the Please Touch Museum online through our partners at the Independence Visitor Center. Just click the button below.',
141 141
 
142
-            "post_images" => $image_array,
143
-            "post_category" => array('gd_placecategory' => array('Attractions', 'Feature')),
144
-            "post_tags" => array('Tags', 'Sample Tags'),
145
-            "geodir_video" => '',
146
-            "geodir_timing" => 'Open today until 1 p.m., Sunday 10 am to 9 pm',
147
-            "geodir_contact" => '(222) 777-1111',
148
-            "geodir_email" => '[email protected]',
149
-            "geodir_website" => 'http://pleasetouchmuseum.com',
150
-            "geodir_twitter" => 'http://twitter.com/pleasetouchmuseum',
151
-            "geodir_facebook" => 'http://facebook.com/pleasetouchmuseum',
152
-            "post_dummy" => '1'
153
-        );
154
-
155
-        break;
156
-    case 3:
157
-        $image_array = array();
158
-        $post_meta = array();
159
-
160
-        ////post end///
161
-        /// Attractions ////post start 3///
162
-        $image_array[] = "$dummy_image_url/a9.jpg";
163
-        $image_array[] = "$dummy_image_url/a10.jpg";
164
-        $image_array[] = "$dummy_image_url/a3.jpg";
165
-        $image_array[] = "$dummy_image_url/a4.jpg";
166
-        $image_array[] = "$dummy_image_url/a5.jpg";
167
-        $image_array[] = "$dummy_image_url/a2.jpg";
168
-        $image_array[] = "$dummy_image_url/a7.jpg";
169
-        $image_array[] = "$dummy_image_url/a8.jpg";
170
-        $image_array[] = "$dummy_image_url/a6.jpg";
171
-        $image_array[] = "$dummy_image_url/a1.jpg";
172
-        $image_array[] = "$dummy_image_url/a11.jpg";
173
-
174
-        $post_info[] = array(
175
-            "listing_type" => 'gd_place',
176
-            "post_title" => 'Longwood Gardens',
177
-            "post_desc" => '<h3>The Experience </h3>
142
+			"post_images" => $image_array,
143
+			"post_category" => array('gd_placecategory' => array('Attractions', 'Feature')),
144
+			"post_tags" => array('Tags', 'Sample Tags'),
145
+			"geodir_video" => '',
146
+			"geodir_timing" => 'Open today until 1 p.m., Sunday 10 am to 9 pm',
147
+			"geodir_contact" => '(222) 777-1111',
148
+			"geodir_email" => '[email protected]',
149
+			"geodir_website" => 'http://pleasetouchmuseum.com',
150
+			"geodir_twitter" => 'http://twitter.com/pleasetouchmuseum',
151
+			"geodir_facebook" => 'http://facebook.com/pleasetouchmuseum',
152
+			"post_dummy" => '1'
153
+		);
154
+
155
+		break;
156
+	case 3:
157
+		$image_array = array();
158
+		$post_meta = array();
159
+
160
+		////post end///
161
+		/// Attractions ////post start 3///
162
+		$image_array[] = "$dummy_image_url/a9.jpg";
163
+		$image_array[] = "$dummy_image_url/a10.jpg";
164
+		$image_array[] = "$dummy_image_url/a3.jpg";
165
+		$image_array[] = "$dummy_image_url/a4.jpg";
166
+		$image_array[] = "$dummy_image_url/a5.jpg";
167
+		$image_array[] = "$dummy_image_url/a2.jpg";
168
+		$image_array[] = "$dummy_image_url/a7.jpg";
169
+		$image_array[] = "$dummy_image_url/a8.jpg";
170
+		$image_array[] = "$dummy_image_url/a6.jpg";
171
+		$image_array[] = "$dummy_image_url/a1.jpg";
172
+		$image_array[] = "$dummy_image_url/a11.jpg";
173
+
174
+		$post_info[] = array(
175
+			"listing_type" => 'gd_place',
176
+			"post_title" => 'Longwood Gardens',
177
+			"post_desc" => '<h3>The Experience </h3>
178 178
 		
179 179
 		When you&acute;re at Longwood Gardens, it&acute;s easy to imagine that you&acute;re at a giant, royal garden in Europe. Stroll along the many paths through acres of exquisitely maintained grounds featuring 11,000 different types of plants.
180 180
 		
@@ -199,42 +199,42 @@  discard block
 block discarded – undo
199 199
 		<h3>Buy Tickets Online In Advance </h3>
200 200
 		
201 201
 		You can buy admission tickets to Longwood Gardens online through our partners at the Independence Visitor Center. Just click the button below.',
202
-            "post_images" => $image_array,
203
-            "post_category" => array('gd_placecategory' => array('Attractions')),
204
-            "post_tags" => array('wood', 'garden'),
205
-            "geodir_video" => '',
206
-            "geodir_timing" => 'Open today until 1 p.m., Sunday 10 am to 9 pm',
207
-            "geodir_contact" => '(111) 888-1111',
208
-            "geodir_email" => '[email protected]',
209
-            "geodir_website" => 'http://longwoodgardens.com',
210
-            "geodir_twitter" => 'http://twitter.com/longwoodgardens',
211
-            "geodir_facebook" => 'http://facebook.com/longwoodgardens',
212
-            "post_dummy" => '1'
213
-        );
214
-        break;
215
-    ////post end///
216
-    /// Attractions ////post start 4///
217
-
218
-    case 4:
219
-
220
-        $image_array = array();
221
-        $post_meta = array();
222
-        $image_array[] = "$dummy_image_url/a11.jpg";
223
-        $image_array[] = "$dummy_image_url/a10.jpg";
224
-        $image_array[] = "$dummy_image_url/a3.jpg";
225
-        $image_array[] = "$dummy_image_url/a4.jpg";
226
-        $image_array[] = "$dummy_image_url/a5.jpg";
227
-        $image_array[] = "$dummy_image_url/a2.jpg";
228
-        $image_array[] = "$dummy_image_url/a7.jpg";
229
-        $image_array[] = "$dummy_image_url/a8.jpg";
230
-        $image_array[] = "$dummy_image_url/a6.jpg";
231
-        $image_array[] = "$dummy_image_url/a1.jpg";
232
-        $image_array[] = "$dummy_image_url/a9.jpg";
233
-
234
-        $post_info[] = array(
235
-            "listing_type" => 'gd_place',
236
-            "post_title" => 'The Philadelphia Zoo',
237
-            "post_desc" => '<h3>The Zoo 150th Birthday</h3>
202
+			"post_images" => $image_array,
203
+			"post_category" => array('gd_placecategory' => array('Attractions')),
204
+			"post_tags" => array('wood', 'garden'),
205
+			"geodir_video" => '',
206
+			"geodir_timing" => 'Open today until 1 p.m., Sunday 10 am to 9 pm',
207
+			"geodir_contact" => '(111) 888-1111',
208
+			"geodir_email" => '[email protected]',
209
+			"geodir_website" => 'http://longwoodgardens.com',
210
+			"geodir_twitter" => 'http://twitter.com/longwoodgardens',
211
+			"geodir_facebook" => 'http://facebook.com/longwoodgardens',
212
+			"post_dummy" => '1'
213
+		);
214
+		break;
215
+	////post end///
216
+	/// Attractions ////post start 4///
217
+
218
+	case 4:
219
+
220
+		$image_array = array();
221
+		$post_meta = array();
222
+		$image_array[] = "$dummy_image_url/a11.jpg";
223
+		$image_array[] = "$dummy_image_url/a10.jpg";
224
+		$image_array[] = "$dummy_image_url/a3.jpg";
225
+		$image_array[] = "$dummy_image_url/a4.jpg";
226
+		$image_array[] = "$dummy_image_url/a5.jpg";
227
+		$image_array[] = "$dummy_image_url/a2.jpg";
228
+		$image_array[] = "$dummy_image_url/a7.jpg";
229
+		$image_array[] = "$dummy_image_url/a8.jpg";
230
+		$image_array[] = "$dummy_image_url/a6.jpg";
231
+		$image_array[] = "$dummy_image_url/a1.jpg";
232
+		$image_array[] = "$dummy_image_url/a9.jpg";
233
+
234
+		$post_info[] = array(
235
+			"listing_type" => 'gd_place',
236
+			"post_title" => 'The Philadelphia Zoo',
237
+			"post_desc" => '<h3>The Zoo 150th Birthday</h3>
238 238
 		
239 239
 		The Philadelphia Zoo celebrated its 150th anniversary in 2009. So stop by and celebrate this major achievement at America&acute;s first zoo!
240 240
 		
@@ -269,45 +269,45 @@  discard block
 block discarded – undo
269 269
 		The nation&acute;s oldest zoo was chartered in 1859, but the impending Civil War delayed its opening until 1874. In addition to its animals, the zoo is known for its historic architecture, which includes the country home of William Penn&acute;s grandson; its botanical collections of over 500 plant species; its groundbreaking research and its fine veterinary facilities.
270 270
 		
271 271
 		The Primate Reserve, Carnivore Kingdom, and Rare Animal Conservation Center, with its tree kangaroos and blue-eyed lemurs, are brand new, but there&acute;s still fun to be had in the historic, old-style bird, pachyderm and carnivore houses. In the Treehouse, kids can investigate the world from an animal&acute;s perspective; outdoors, the Zoo Balloon lifts passengers 400 feet into the air for a bird&acute;s-eye view of the zoo.',
272
-            "post_images" => $image_array,
273
-            "post_category" => array('gd_placecategory' => array('Attractions')),
274
-            "post_tags" => array('wood', 'garden'),
275
-            "geodir_video" => '',
276
-            "geodir_timing" => 'Open today until 11.30 a.m., Sunday 11 am to 7 pm',
277
-            "geodir_contact" => '(211) 143-1900',
278
-            "geodir_email" => '[email protected]',
279
-            "geodir_website" => 'http://philadelphiazoo.com',
280
-            "geodir_twitter" => 'http://twitter.com/philadelphiazoo',
281
-            "geodir_facebook" => 'http://facebook.com/philadelphiazoo',
282
-            "post_dummy" => '1'
283
-        );
284
-
285
-        ////post end///
286
-        /// Attractions ////post start 4///
287
-        break;
288
-    case 5:
289
-
290
-
291
-        $image_array = array();
292
-        $post_meta = array();
293
-
294
-        /// Attractions ////post start 5///
295
-        $image_array[] = "$dummy_image_url/a12.jpg";
296
-        $image_array[] = "$dummy_image_url/a13.jpg";
297
-        $image_array[] = "$dummy_image_url/a3.jpg";
298
-        $image_array[] = "$dummy_image_url/a4.jpg";
299
-        $image_array[] = "$dummy_image_url/a5.jpg";
300
-        $image_array[] = "$dummy_image_url/a2.jpg";
301
-        $image_array[] = "$dummy_image_url/a7.jpg";
302
-        $image_array[] = "$dummy_image_url/a8.jpg";
303
-        $image_array[] = "$dummy_image_url/a6.jpg";
304
-        $image_array[] = "$dummy_image_url/a1.jpg";
305
-        $image_array[] = "$dummy_image_url/a9.jpg";
306
-
307
-        $post_info[] = array(
308
-            "listing_type" => 'gd_place',
309
-            "post_title" => 'National Constitution Center',
310
-            "post_desc" => '<h3>The Experience</h3>
272
+			"post_images" => $image_array,
273
+			"post_category" => array('gd_placecategory' => array('Attractions')),
274
+			"post_tags" => array('wood', 'garden'),
275
+			"geodir_video" => '',
276
+			"geodir_timing" => 'Open today until 11.30 a.m., Sunday 11 am to 7 pm',
277
+			"geodir_contact" => '(211) 143-1900',
278
+			"geodir_email" => '[email protected]',
279
+			"geodir_website" => 'http://philadelphiazoo.com',
280
+			"geodir_twitter" => 'http://twitter.com/philadelphiazoo',
281
+			"geodir_facebook" => 'http://facebook.com/philadelphiazoo',
282
+			"post_dummy" => '1'
283
+		);
284
+
285
+		////post end///
286
+		/// Attractions ////post start 4///
287
+		break;
288
+	case 5:
289
+
290
+
291
+		$image_array = array();
292
+		$post_meta = array();
293
+
294
+		/// Attractions ////post start 5///
295
+		$image_array[] = "$dummy_image_url/a12.jpg";
296
+		$image_array[] = "$dummy_image_url/a13.jpg";
297
+		$image_array[] = "$dummy_image_url/a3.jpg";
298
+		$image_array[] = "$dummy_image_url/a4.jpg";
299
+		$image_array[] = "$dummy_image_url/a5.jpg";
300
+		$image_array[] = "$dummy_image_url/a2.jpg";
301
+		$image_array[] = "$dummy_image_url/a7.jpg";
302
+		$image_array[] = "$dummy_image_url/a8.jpg";
303
+		$image_array[] = "$dummy_image_url/a6.jpg";
304
+		$image_array[] = "$dummy_image_url/a1.jpg";
305
+		$image_array[] = "$dummy_image_url/a9.jpg";
306
+
307
+		$post_info[] = array(
308
+			"listing_type" => 'gd_place',
309
+			"post_title" => 'National Constitution Center',
310
+			"post_desc" => '<h3>The Experience</h3>
311 311
 	
312 312
 	It only four pages long, but the U.S. Constitution is among the most influential and important documents in the history of the world.
313 313
 	
@@ -329,45 +329,45 @@  discard block
 block discarded – undo
329 329
 	<h3>Kids Stuff </h3>
330 330
 	
331 331
 	The Center frequently hosts special events with a focus on children that include informative and engaging hands-on activities. For specific information, check out the Center website.',
332
-            "post_images" => $image_array,
333
-            "post_category" => array('gd_placecategory' => array('Attractions', 'Feature')),
334
-            "post_tags" => array('Tag', 'Center'),
335
-            "geodir_video" => '',
336
-            "geodir_timing" => 'Open today until 9.30 a.m., Sunday 11 am to 7 pm',
337
-            "geodir_contact" => '(111) 111-1111',
338
-            "geodir_email" => '[email protected]',
339
-            "geodir_website" => 'http://ncc.com',
340
-            "geodir_twitter" => 'http://twitter.com/ncc',
341
-            "geodir_facebook" => 'http://facebook.com/ncc',
342
-            "post_dummy" => '1'
343
-        );
344
-
345
-        ////post end///
346
-        /// Attractions ////post start 5///
347
-        break;
348
-    case 6:
349
-
350
-
351
-        $image_array = array();
352
-        $post_meta = array();
353
-
354
-        /// Attractions ////post start 6///
355
-        $image_array[] = "$dummy_image_url/a14.jpg";
356
-        $image_array[] = "$dummy_image_url/a13.jpg";
357
-        $image_array[] = "$dummy_image_url/a3.jpg";
358
-        $image_array[] = "$dummy_image_url/a4.jpg";
359
-        $image_array[] = "$dummy_image_url/a5.jpg";
360
-        $image_array[] = "$dummy_image_url/a2.jpg";
361
-        $image_array[] = "$dummy_image_url/a7.jpg";
362
-        $image_array[] = "$dummy_image_url/a8.jpg";
363
-        $image_array[] = "$dummy_image_url/a6.jpg";
364
-        $image_array[] = "$dummy_image_url/a1.jpg";
365
-        $image_array[] = "$dummy_image_url/a9.jpg";
366
-
367
-        $post_info[] = array(
368
-            "listing_type" => 'gd_place',
369
-            "post_title" => 'Sadsbury Woods Preserve',
370
-            "post_desc" => 'A more than 500-acre nature preserve ideal for walking and hiking, Sadsbury Woods is also an important habitat for interior nesting birds and small mammals. An increasingly rare area of interior woodlands, defined as an area at least 300 feet from any road, lawn or meadow, provides a critical habitat for many species of birds, especially neo-tropical migrant songbirds.
332
+			"post_images" => $image_array,
333
+			"post_category" => array('gd_placecategory' => array('Attractions', 'Feature')),
334
+			"post_tags" => array('Tag', 'Center'),
335
+			"geodir_video" => '',
336
+			"geodir_timing" => 'Open today until 9.30 a.m., Sunday 11 am to 7 pm',
337
+			"geodir_contact" => '(111) 111-1111',
338
+			"geodir_email" => '[email protected]',
339
+			"geodir_website" => 'http://ncc.com',
340
+			"geodir_twitter" => 'http://twitter.com/ncc',
341
+			"geodir_facebook" => 'http://facebook.com/ncc',
342
+			"post_dummy" => '1'
343
+		);
344
+
345
+		////post end///
346
+		/// Attractions ////post start 5///
347
+		break;
348
+	case 6:
349
+
350
+
351
+		$image_array = array();
352
+		$post_meta = array();
353
+
354
+		/// Attractions ////post start 6///
355
+		$image_array[] = "$dummy_image_url/a14.jpg";
356
+		$image_array[] = "$dummy_image_url/a13.jpg";
357
+		$image_array[] = "$dummy_image_url/a3.jpg";
358
+		$image_array[] = "$dummy_image_url/a4.jpg";
359
+		$image_array[] = "$dummy_image_url/a5.jpg";
360
+		$image_array[] = "$dummy_image_url/a2.jpg";
361
+		$image_array[] = "$dummy_image_url/a7.jpg";
362
+		$image_array[] = "$dummy_image_url/a8.jpg";
363
+		$image_array[] = "$dummy_image_url/a6.jpg";
364
+		$image_array[] = "$dummy_image_url/a1.jpg";
365
+		$image_array[] = "$dummy_image_url/a9.jpg";
366
+
367
+		$post_info[] = array(
368
+			"listing_type" => 'gd_place',
369
+			"post_title" => 'Sadsbury Woods Preserve',
370
+			"post_desc" => 'A more than 500-acre nature preserve ideal for walking and hiking, Sadsbury Woods is also an important habitat for interior nesting birds and small mammals. An increasingly rare area of interior woodlands, defined as an area at least 300 feet from any road, lawn or meadow, provides a critical habitat for many species of birds, especially neo-tropical migrant songbirds.
371 371
 	
372 372
 	Situated on the western edge of Chester County, the land remains much as it did centuries ago, and now serves as a permanent refuge in an area facing dramatically increasing development pressure.
373 373
 	
@@ -383,45 +383,45 @@  discard block
 block discarded – undo
383 383
 	Outsider Tip
384 384
 	
385 385
 	The deep forest is a great place for spotting neo-tropical songbirds in the spring and summer months',
386
-            "post_images" => $image_array,
387
-            "post_category" => array('gd_placecategory' => array('Attractions')),
388
-            "post_tags" => array('sample', 'tags'),
389
-            "geodir_video" => '',
390
-            "geodir_timing" => 'Open today until 12.30 p.m., Sunday 12 pm to 7 pm',
391
-            "geodir_contact" => '(222) 999-9999',
392
-            "geodir_email" => '[email protected]',
393
-            "geodir_website" => 'http://swp.com',
394
-            "geodir_twitter" => 'http://twitter.com/swp',
395
-            "geodir_facebook" => 'http://facebook.com/swp',
396
-            "post_dummy" => '1'
397
-        );
398
-
399
-        ////post end///
400
-        /// Attractions ////post start 6///
401
-
402
-        break;
403
-    case 7:
404
-
405
-        $image_array = array();
406
-        $post_meta = array();
407
-
408
-        /// Attractions ////post start 7///
409
-        $image_array[] = "$dummy_image_url/a15.jpg";
410
-        $image_array[] = "$dummy_image_url/a16.jpg";
411
-        $image_array[] = "$dummy_image_url/a17.jpg";
412
-        $image_array[] = "$dummy_image_url/a4.jpg";
413
-        $image_array[] = "$dummy_image_url/a5.jpg";
414
-        $image_array[] = "$dummy_image_url/a2.jpg";
415
-        $image_array[] = "$dummy_image_url/a7.jpg";
416
-        $image_array[] = "$dummy_image_url/a8.jpg";
417
-        $image_array[] = "$dummy_image_url/a6.jpg";
418
-        $image_array[] = "$dummy_image_url/a1.jpg";
419
-        $image_array[] = "$dummy_image_url/a9.jpg";
420
-
421
-        $post_info[] = array(
422
-            "listing_type" => 'gd_place',
423
-            "post_title" => 'Museum Without Walls',
424
-            "post_desc" => '<h3>The Experience </h3>
386
+			"post_images" => $image_array,
387
+			"post_category" => array('gd_placecategory' => array('Attractions')),
388
+			"post_tags" => array('sample', 'tags'),
389
+			"geodir_video" => '',
390
+			"geodir_timing" => 'Open today until 12.30 p.m., Sunday 12 pm to 7 pm',
391
+			"geodir_contact" => '(222) 999-9999',
392
+			"geodir_email" => '[email protected]',
393
+			"geodir_website" => 'http://swp.com',
394
+			"geodir_twitter" => 'http://twitter.com/swp',
395
+			"geodir_facebook" => 'http://facebook.com/swp',
396
+			"post_dummy" => '1'
397
+		);
398
+
399
+		////post end///
400
+		/// Attractions ////post start 6///
401
+
402
+		break;
403
+	case 7:
404
+
405
+		$image_array = array();
406
+		$post_meta = array();
407
+
408
+		/// Attractions ////post start 7///
409
+		$image_array[] = "$dummy_image_url/a15.jpg";
410
+		$image_array[] = "$dummy_image_url/a16.jpg";
411
+		$image_array[] = "$dummy_image_url/a17.jpg";
412
+		$image_array[] = "$dummy_image_url/a4.jpg";
413
+		$image_array[] = "$dummy_image_url/a5.jpg";
414
+		$image_array[] = "$dummy_image_url/a2.jpg";
415
+		$image_array[] = "$dummy_image_url/a7.jpg";
416
+		$image_array[] = "$dummy_image_url/a8.jpg";
417
+		$image_array[] = "$dummy_image_url/a6.jpg";
418
+		$image_array[] = "$dummy_image_url/a1.jpg";
419
+		$image_array[] = "$dummy_image_url/a9.jpg";
420
+
421
+		$post_info[] = array(
422
+			"listing_type" => 'gd_place',
423
+			"post_title" => 'Museum Without Walls',
424
+			"post_desc" => '<h3>The Experience </h3>
425 425
 	
426 426
 	Museum Without Walls: AUDIO is a multi-platform, interactive audio tour, designed to allow locals and visitors alike to experience Philadelphia extensive collection of public art and outdoor sculpture along the Benjamin Franklin Parkway and Kelly Drive. This innovative program invites passersby to stop, look, listen and see this city public art in a new way. Discover the untold histories of the 51 outdoor sculptures at 35 stops through these professionally produced three-minute interpretive audio segments. The many narratives have been spoken by more than 100 individuals, all with personal connections to the pieces of art.
427 427
 	
@@ -431,45 +431,45 @@  discard block
 block discarded – undo
431 431
 	<h3>History </h3>
432 432
 	
433 433
 	Philadelphia has more outdoor sculpture than any other American city, yet this extensive collection often goes unnoticed. This program is intended to reveal the distinct stories behind each of these works, that have become visual white noise for so many of the city residents and visitors. ',
434
-            "post_images" => $image_array,
435
-            "post_category" => array('gd_placecategory' => array('Attractions')),
436
-            "post_tags" => array('Museum'),
437
-            "geodir_video" => '',
438
-            "geodir_timing" => 'Open today until 10.30 a.m., Sunday 10 am to 7 pm',
439
-            "geodir_contact" => '(222) 999-9999',
440
-            "geodir_email" => '[email protected]',
441
-            "geodir_website" => 'http://museumwithoutwallsaudio.org/',
442
-            "geodir_twitter" => 'http://twitter.com/mwwalls',
443
-            "geodir_facebook" => 'http://facebook.com/mwwalls',
444
-            "post_dummy" => '1'
445
-        );
446
-
447
-        ////post end///
448
-        /// Attractions ////post start 7///
449
-
450
-        break;
451
-    case 8:
452
-
453
-        $image_array = array();
454
-        $post_meta = array();
455
-
456
-        /// Attractions ////post start 8///
457
-        $image_array[] = "$dummy_image_url/a18.jpg";
458
-        $image_array[] = "$dummy_image_url/a10.jpg";
459
-        $image_array[] = "$dummy_image_url/a3.jpg";
460
-        $image_array[] = "$dummy_image_url/a4.jpg";
461
-        $image_array[] = "$dummy_image_url/a5.jpg";
462
-        $image_array[] = "$dummy_image_url/a2.jpg";
463
-        $image_array[] = "$dummy_image_url/a7.jpg";
464
-        $image_array[] = "$dummy_image_url/a8.jpg";
465
-        $image_array[] = "$dummy_image_url/a6.jpg";
466
-        $image_array[] = "$dummy_image_url/a1.jpg";
467
-        $image_array[] = "$dummy_image_url/a9.jpg";
468
-
469
-        $post_info[] = array(
470
-            "listing_type" => 'gd_place',
471
-            "post_title" => 'Audacious Freedom',
472
-            "post_desc" => 'Audacious Freedom, the major, new exhibit at the African American Museum in Philadelphia , explores the lives of people of African descent living in Philadelphia between 1776 and 1876.
434
+			"post_images" => $image_array,
435
+			"post_category" => array('gd_placecategory' => array('Attractions')),
436
+			"post_tags" => array('Museum'),
437
+			"geodir_video" => '',
438
+			"geodir_timing" => 'Open today until 10.30 a.m., Sunday 10 am to 7 pm',
439
+			"geodir_contact" => '(222) 999-9999',
440
+			"geodir_email" => '[email protected]',
441
+			"geodir_website" => 'http://museumwithoutwallsaudio.org/',
442
+			"geodir_twitter" => 'http://twitter.com/mwwalls',
443
+			"geodir_facebook" => 'http://facebook.com/mwwalls',
444
+			"post_dummy" => '1'
445
+		);
446
+
447
+		////post end///
448
+		/// Attractions ////post start 7///
449
+
450
+		break;
451
+	case 8:
452
+
453
+		$image_array = array();
454
+		$post_meta = array();
455
+
456
+		/// Attractions ////post start 8///
457
+		$image_array[] = "$dummy_image_url/a18.jpg";
458
+		$image_array[] = "$dummy_image_url/a10.jpg";
459
+		$image_array[] = "$dummy_image_url/a3.jpg";
460
+		$image_array[] = "$dummy_image_url/a4.jpg";
461
+		$image_array[] = "$dummy_image_url/a5.jpg";
462
+		$image_array[] = "$dummy_image_url/a2.jpg";
463
+		$image_array[] = "$dummy_image_url/a7.jpg";
464
+		$image_array[] = "$dummy_image_url/a8.jpg";
465
+		$image_array[] = "$dummy_image_url/a6.jpg";
466
+		$image_array[] = "$dummy_image_url/a1.jpg";
467
+		$image_array[] = "$dummy_image_url/a9.jpg";
468
+
469
+		$post_info[] = array(
470
+			"listing_type" => 'gd_place',
471
+			"post_title" => 'Audacious Freedom',
472
+			"post_desc" => 'Audacious Freedom, the major, new exhibit at the African American Museum in Philadelphia , explores the lives of people of African descent living in Philadelphia between 1776 and 1876.
473 473
 	
474 474
 	Discover how African Americans in Philadelphia lived and worked while helping to shape the young nation in its formative stages.
475 475
 	
@@ -477,45 +477,45 @@  discard block
 block discarded – undo
477 477
 	
478 478
 	The groundbreaking exhibit allows visitors to “walk the streets” of Historic Philadelphia using a large-scale map. Young children can join the action with Children&acute;s Corner, which highlights the daily lives of children during that period.
479 479
 	',
480
-            "post_images" => $image_array,
481
-            "post_category" => array('gd_placecategory' => array('Attractions')),
482
-            "post_tags" => array('Tag1'),
483
-            "geodir_video" => '',
484
-            "geodir_timing" => 'Open today until 11.30 a.m., Sunday 1 pm to 7 pm',
485
-            "geodir_contact" => '(777) 777-7777',
486
-            "geodir_email" => '[email protected]',
487
-            "geodir_website" => 'http://www.aampmuseum.org/',
488
-            "geodir_twitter" => 'http://twitter.com/aampmuseum',
489
-            "geodir_facebook" => 'http://facebook.com/aampmuseum',
490
-            "post_dummy" => '1'
491
-        );
492
-
493
-        ////post end///
494
-        /// Attractions ////post start 8///
495
-
496
-
497
-        break;
498
-    case 9:
499
-        $image_array = array();
500
-        $post_meta = array();
501
-
502
-        /// Attractions ////post start 9///
503
-        $image_array[] = "$dummy_image_url/a19.jpg";
504
-        $image_array[] = "$dummy_image_url/a20.jpg";
505
-        $image_array[] = "$dummy_image_url/a3.jpg";
506
-        $image_array[] = "$dummy_image_url/a4.jpg";
507
-        $image_array[] = "$dummy_image_url/a5.jpg";
508
-        $image_array[] = "$dummy_image_url/a2.jpg";
509
-        $image_array[] = "$dummy_image_url/a7.jpg";
510
-        $image_array[] = "$dummy_image_url/a8.jpg";
511
-        $image_array[] = "$dummy_image_url/a6.jpg";
512
-        $image_array[] = "$dummy_image_url/a1.jpg";
513
-        $image_array[] = "$dummy_image_url/a9.jpg";
514
-
515
-        $post_info[] = array(
516
-            "listing_type" => 'gd_place',
517
-            "post_title" => 'The Liberty Bell Center',
518
-            "post_desc" => '<h3>The Experience </h3>
480
+			"post_images" => $image_array,
481
+			"post_category" => array('gd_placecategory' => array('Attractions')),
482
+			"post_tags" => array('Tag1'),
483
+			"geodir_video" => '',
484
+			"geodir_timing" => 'Open today until 11.30 a.m., Sunday 1 pm to 7 pm',
485
+			"geodir_contact" => '(777) 777-7777',
486
+			"geodir_email" => '[email protected]',
487
+			"geodir_website" => 'http://www.aampmuseum.org/',
488
+			"geodir_twitter" => 'http://twitter.com/aampmuseum',
489
+			"geodir_facebook" => 'http://facebook.com/aampmuseum',
490
+			"post_dummy" => '1'
491
+		);
492
+
493
+		////post end///
494
+		/// Attractions ////post start 8///
495
+
496
+
497
+		break;
498
+	case 9:
499
+		$image_array = array();
500
+		$post_meta = array();
501
+
502
+		/// Attractions ////post start 9///
503
+		$image_array[] = "$dummy_image_url/a19.jpg";
504
+		$image_array[] = "$dummy_image_url/a20.jpg";
505
+		$image_array[] = "$dummy_image_url/a3.jpg";
506
+		$image_array[] = "$dummy_image_url/a4.jpg";
507
+		$image_array[] = "$dummy_image_url/a5.jpg";
508
+		$image_array[] = "$dummy_image_url/a2.jpg";
509
+		$image_array[] = "$dummy_image_url/a7.jpg";
510
+		$image_array[] = "$dummy_image_url/a8.jpg";
511
+		$image_array[] = "$dummy_image_url/a6.jpg";
512
+		$image_array[] = "$dummy_image_url/a1.jpg";
513
+		$image_array[] = "$dummy_image_url/a9.jpg";
514
+
515
+		$post_info[] = array(
516
+			"listing_type" => 'gd_place',
517
+			"post_title" => 'The Liberty Bell Center',
518
+			"post_desc" => '<h3>The Experience </h3>
519 519
 	
520 520
 	The Liberty Bell has a new home, and it is as powerful and dramatic as the Bell itself. Throughout the expansive, light-filled Center, larger-than-life historic documents and graphic images explore the facts and the myths surrounding the Bell.
521 521
 	
@@ -536,45 +536,45 @@  discard block
 block discarded – undo
536 536
 	The Bell is suspended from what is believed to be its original yoke, made of American elm.
537 537
 	
538 538
 	The Liberty Bell weighs 2,080 pounds. The yoke weighs about 100 pounds.',
539
-            "post_images" => $image_array,
540
-            "post_category" => array('gd_placecategory' => array('Attractions', 'Feature')),
541
-            "post_tags" => array(''),
542
-            "geodir_video" => '',
543
-            "geodir_timing" => 'The center is open year round, 9 a.m. – 5 p.m., with extended hours in the summer.',
544
-            "geodir_contact" => '(777) 666-6666',
545
-            "geodir_email" => '[email protected]',
546
-            "geodir_website" => 'http://www.nps.gov/inde',
547
-            "geodir_twitter" => 'http://twitter.com/nps',
548
-            "geodir_facebook" => 'http://facebook.com/nps',
549
-            "post_dummy" => '1'
550
-        );
551
-
552
-        ////post end///
553
-        /// Attractions ////post start 9///
554
-        break;
555
-    case 10:
556
-
557
-
558
-        $image_array = array();
559
-        $post_meta = array();
560
-
561
-        /// Attractions ////post start 10///
562
-        $image_array[] = "$dummy_image_url/a19.jpg";
563
-        $image_array[] = "$dummy_image_url/a20.jpg";
564
-        $image_array[] = "$dummy_image_url/a3.jpg";
565
-        $image_array[] = "$dummy_image_url/a4.jpg";
566
-        $image_array[] = "$dummy_image_url/a5.jpg";
567
-        $image_array[] = "$dummy_image_url/a2.jpg";
568
-        $image_array[] = "$dummy_image_url/a7.jpg";
569
-        $image_array[] = "$dummy_image_url/a8.jpg";
570
-        $image_array[] = "$dummy_image_url/a6.jpg";
571
-        $image_array[] = "$dummy_image_url/a1.jpg";
572
-        $image_array[] = "$dummy_image_url/a9.jpg";
573
-
574
-        $post_info[] = array(
575
-            "listing_type" => 'gd_place',
576
-            "post_title" => 'Rittenhouse Square',
577
-            "post_desc" => '
539
+			"post_images" => $image_array,
540
+			"post_category" => array('gd_placecategory' => array('Attractions', 'Feature')),
541
+			"post_tags" => array(''),
542
+			"geodir_video" => '',
543
+			"geodir_timing" => 'The center is open year round, 9 a.m. – 5 p.m., with extended hours in the summer.',
544
+			"geodir_contact" => '(777) 666-6666',
545
+			"geodir_email" => '[email protected]',
546
+			"geodir_website" => 'http://www.nps.gov/inde',
547
+			"geodir_twitter" => 'http://twitter.com/nps',
548
+			"geodir_facebook" => 'http://facebook.com/nps',
549
+			"post_dummy" => '1'
550
+		);
551
+
552
+		////post end///
553
+		/// Attractions ////post start 9///
554
+		break;
555
+	case 10:
556
+
557
+
558
+		$image_array = array();
559
+		$post_meta = array();
560
+
561
+		/// Attractions ////post start 10///
562
+		$image_array[] = "$dummy_image_url/a19.jpg";
563
+		$image_array[] = "$dummy_image_url/a20.jpg";
564
+		$image_array[] = "$dummy_image_url/a3.jpg";
565
+		$image_array[] = "$dummy_image_url/a4.jpg";
566
+		$image_array[] = "$dummy_image_url/a5.jpg";
567
+		$image_array[] = "$dummy_image_url/a2.jpg";
568
+		$image_array[] = "$dummy_image_url/a7.jpg";
569
+		$image_array[] = "$dummy_image_url/a8.jpg";
570
+		$image_array[] = "$dummy_image_url/a6.jpg";
571
+		$image_array[] = "$dummy_image_url/a1.jpg";
572
+		$image_array[] = "$dummy_image_url/a9.jpg";
573
+
574
+		$post_info[] = array(
575
+			"listing_type" => 'gd_place',
576
+			"post_title" => 'Rittenhouse Square',
577
+			"post_desc" => '
578 578
 	
579 579
 	Unlike the other squares, the early Southwest Square was never used as a burial ground, although it offered pasturage for local livestock and a convenient dumping spot for “night soil”.
580 580
 	<h3> History </h3>
@@ -607,45 +607,45 @@  discard block
 block discarded – undo
607 607
 	
608 608
 	Meanwhile, several more restaurants, bars and clubs have opened along the surrounding blocks in recent years, like Parc, Tria, Continental Midtown, Alfa, Walnut Room, and Twenty Manning just to name a few.
609 609
 	',
610
-            "post_images" => $image_array,
611
-            "post_category" => array('gd_placecategory' => array('Attractions')),
612
-            "post_tags" => array('Museum'),
613
-            "geodir_video" => '',
614
-            "geodir_timing" => 'The center is open year round, 9 a.m. – 5 p.m., with extended hours in the summer.',
615
-            "geodir_contact" => '(777) 666-6666',
616
-            "geodir_email" => '[email protected]',
617
-            "geodir_website" => 'http://www.fairmountpark.org/rittenhousesquare.asp',
618
-            "geodir_twitter" => 'http://twitter.com/fairmountpark',
619
-            "geodir_facebook" => 'http://facebook.com/fairmountpark',
620
-            "post_dummy" => '1'
621
-        );
622
-
623
-        ////post end///
624
-        /// Attractions ////post start 10///
625
-        break;
626
-    case 11:
627
-
628
-
629
-        $image_array = array();
630
-        $post_meta = array();
631
-
632
-        /// Hotels ////post start 1///
633
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
634
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
635
-        $image_array[] = "$dummy_image_url/hotels3.jpg";
636
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
637
-        $image_array[] = "$dummy_image_url/hotels5.jpg";
638
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
639
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
640
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
641
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
642
-        $image_array[] = "$dummy_image_url/hotels10.jpg";
643
-        $image_array[] = "$dummy_image_url/hotels11.jpg";
644
-
645
-        $post_info[] = array(
646
-            "listing_type" => 'gd_place',
647
-            "post_title" => 'Loews Philadelphia Hotel',
648
-            "post_desc" => '
610
+			"post_images" => $image_array,
611
+			"post_category" => array('gd_placecategory' => array('Attractions')),
612
+			"post_tags" => array('Museum'),
613
+			"geodir_video" => '',
614
+			"geodir_timing" => 'The center is open year round, 9 a.m. – 5 p.m., with extended hours in the summer.',
615
+			"geodir_contact" => '(777) 666-6666',
616
+			"geodir_email" => '[email protected]',
617
+			"geodir_website" => 'http://www.fairmountpark.org/rittenhousesquare.asp',
618
+			"geodir_twitter" => 'http://twitter.com/fairmountpark',
619
+			"geodir_facebook" => 'http://facebook.com/fairmountpark',
620
+			"post_dummy" => '1'
621
+		);
622
+
623
+		////post end///
624
+		/// Attractions ////post start 10///
625
+		break;
626
+	case 11:
627
+
628
+
629
+		$image_array = array();
630
+		$post_meta = array();
631
+
632
+		/// Hotels ////post start 1///
633
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
634
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
635
+		$image_array[] = "$dummy_image_url/hotels3.jpg";
636
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
637
+		$image_array[] = "$dummy_image_url/hotels5.jpg";
638
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
639
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
640
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
641
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
642
+		$image_array[] = "$dummy_image_url/hotels10.jpg";
643
+		$image_array[] = "$dummy_image_url/hotels11.jpg";
644
+
645
+		$post_info[] = array(
646
+			"listing_type" => 'gd_place',
647
+			"post_title" => 'Loews Philadelphia Hotel',
648
+			"post_desc" => '
649 649
 	
650 650
 	<h3>OVERVIEW </h3>
651 651
 	
@@ -712,45 +712,45 @@  discard block
 block discarded – undo
712 712
 	
713 713
 	SoleFood Restaurant is proud to be serving Starbucks. Come in and enjoy a fresh cup of coffee during your morning rush. The Coffee Bar also offer small breakfast items for your enjoyment.
714 714
 	',
715
-            "post_images" => $image_array,
716
-            "post_category" => array('gd_placecategory' => array('Hotels', 'Feature')),
717
-            "post_tags" => array(''),
718
-            "geodir_video" => '',
719
-            "geodir_timing" => 'Daily, 6:30 am – 12:00 pm',
720
-            "geodir_contact" => '(111) 111-0000',
721
-            "geodir_email" => '[email protected]',
722
-            "geodir_website" => 'http://www.loewshotels.com/en/hotels/philadelphia-hotel/overview.aspx',
723
-            "geodir_twitter" => 'http://twitter.com/loewshotels',
724
-            "geodir_facebook" => 'http://facebook.com/loewshotels',
725
-            "post_dummy" => '1'
726
-        );
727
-
728
-        ////post end///
729
-        /// Hotels ////post start 1///
730
-        break;
731
-    case 12:
732
-
733
-
734
-        $image_array = array();
735
-        $post_meta = array();
736
-
737
-        /// Hotels ////post start 2///
738
-        $image_array[] = "$dummy_image_url/hotels5.jpg";
739
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
740
-        $image_array[] = "$dummy_image_url/hotels3.jpg";
741
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
742
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
743
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
744
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
745
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
746
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
747
-        $image_array[] = "$dummy_image_url/hotels10.jpg";
748
-        $image_array[] = "$dummy_image_url/hotels11.jpg";
749
-
750
-        $post_info[] = array(
751
-            "listing_type" => 'gd_place',
752
-            "post_title" => 'Embassy Suites Philadelphia',
753
-            "post_desc" => '
715
+			"post_images" => $image_array,
716
+			"post_category" => array('gd_placecategory' => array('Hotels', 'Feature')),
717
+			"post_tags" => array(''),
718
+			"geodir_video" => '',
719
+			"geodir_timing" => 'Daily, 6:30 am – 12:00 pm',
720
+			"geodir_contact" => '(111) 111-0000',
721
+			"geodir_email" => '[email protected]',
722
+			"geodir_website" => 'http://www.loewshotels.com/en/hotels/philadelphia-hotel/overview.aspx',
723
+			"geodir_twitter" => 'http://twitter.com/loewshotels',
724
+			"geodir_facebook" => 'http://facebook.com/loewshotels',
725
+			"post_dummy" => '1'
726
+		);
727
+
728
+		////post end///
729
+		/// Hotels ////post start 1///
730
+		break;
731
+	case 12:
732
+
733
+
734
+		$image_array = array();
735
+		$post_meta = array();
736
+
737
+		/// Hotels ////post start 2///
738
+		$image_array[] = "$dummy_image_url/hotels5.jpg";
739
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
740
+		$image_array[] = "$dummy_image_url/hotels3.jpg";
741
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
742
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
743
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
744
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
745
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
746
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
747
+		$image_array[] = "$dummy_image_url/hotels10.jpg";
748
+		$image_array[] = "$dummy_image_url/hotels11.jpg";
749
+
750
+		$post_info[] = array(
751
+			"listing_type" => 'gd_place',
752
+			"post_title" => 'Embassy Suites Philadelphia',
753
+			"post_desc" => '
754 754
 	The newly renovated Embassy Suites Philadelphia – Center City hotel is conveniently situated in the heart of downtown Philadelphia, Pennsylvania and Philadelphia&acute;s Center City business district. This hotel in Philadelphia is located only eight miles from Philadelphia International Airport and just minutes from top Philadelphia attractions, including:
755 755
 	
756 756
 	Philadelphia Museum of Art
@@ -766,45 +766,45 @@  discard block
 block discarded – undo
766 766
 	
767 767
 	A delicious, complimentary cooked-to-order breakfast is offered each morning, and a hotel Manager&acute;s Reception every night – featuring complimentary refreshments and great company.
768 768
 	',
769
-            "post_images" => $image_array,
770
-            "post_category" => array('gd_placecategory' => array('Hotels')),
771
-            "post_tags" => array(''),
772
-            "geodir_video" => '',
773
-            "geodir_timing" => 'Daily, 10:30 am – 10 pm',
774
-            "geodir_contact" => '(111) 111-0000',
775
-            "geodir_email" => '[email protected]',
776
-            "geodir_website" => 'http://embassysuites1.hilton.com/en_US/es/hotel/PHLDTES-Embassy-Suites-Philadelphia-Center-City-Pennsylvania/index.do',
777
-            "geodir_twitter" => 'http://twitter.com/embassysuites1',
778
-            "geodir_facebook" => 'http://facebook.com/embassysuites1',
779
-            "post_dummy" => '1'
780
-        );
781
-
782
-        ////post end///
783
-        /// Hotels ////post start 2///
784
-
785
-        break;
786
-    case 13:
787
-
788
-        $image_array = array();
789
-        $post_meta = array();
790
-
791
-        /// Hotels ////post start 3///
792
-        $image_array[] = "$dummy_image_url/hotels10.jpg";
793
-        $image_array[] = "$dummy_image_url/hotels11.jpg";
794
-        $image_array[] = "$dummy_image_url/hotels12.jpg";
795
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
796
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
797
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
798
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
799
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
800
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
801
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
802
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
803
-
804
-        $post_info[] = array(
805
-            "listing_type" => 'gd_place',
806
-            "post_title" => 'Doubletree Hotel Philadelphia',
807
-            "post_desc" => '
769
+			"post_images" => $image_array,
770
+			"post_category" => array('gd_placecategory' => array('Hotels')),
771
+			"post_tags" => array(''),
772
+			"geodir_video" => '',
773
+			"geodir_timing" => 'Daily, 10:30 am – 10 pm',
774
+			"geodir_contact" => '(111) 111-0000',
775
+			"geodir_email" => '[email protected]',
776
+			"geodir_website" => 'http://embassysuites1.hilton.com/en_US/es/hotel/PHLDTES-Embassy-Suites-Philadelphia-Center-City-Pennsylvania/index.do',
777
+			"geodir_twitter" => 'http://twitter.com/embassysuites1',
778
+			"geodir_facebook" => 'http://facebook.com/embassysuites1',
779
+			"post_dummy" => '1'
780
+		);
781
+
782
+		////post end///
783
+		/// Hotels ////post start 2///
784
+
785
+		break;
786
+	case 13:
787
+
788
+		$image_array = array();
789
+		$post_meta = array();
790
+
791
+		/// Hotels ////post start 3///
792
+		$image_array[] = "$dummy_image_url/hotels10.jpg";
793
+		$image_array[] = "$dummy_image_url/hotels11.jpg";
794
+		$image_array[] = "$dummy_image_url/hotels12.jpg";
795
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
796
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
797
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
798
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
799
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
800
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
801
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
802
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
803
+
804
+		$post_info[] = array(
805
+			"listing_type" => 'gd_place',
806
+			"post_title" => 'Doubletree Hotel Philadelphia',
807
+			"post_desc" => '
808 808
 	With 434 rooms, the Doubletree Hotel is a great option for your upcoming stay in Philadelphia.
809 809
 	
810 810
 	<h3>Location </h3>
@@ -834,47 +834,47 @@  discard block
 block discarded – undo
834 834
 	Stop in the restaurant - which serves lunch and dinner daily - for a drink and some light fare. With its location right on Broad Street, you&acute;re close to everything you could ever want in a night on the town.
835 835
 	',
836 836
 
837
-            "post_images" => $image_array,
838
-
839
-            "post_category" => array('gd_placecategory' => array('Hotels')),
840
-            "post_tags" => array(''),
841
-            "geodir_video" => '',
842
-            "geodir_timing" => 'Daily, 10:30 am – 10 pm',
843
-            "geodir_contact" => '(111) 111-0000',
844
-            "geodir_email" => '[email protected]',
845
-            "geodir_website" => 'http://doubletree1.hilton.com/en_US/dt/hotel/PHLBLDT-Doubletree-Hotel-Philadelphia-Pennsylvania/index.do',
846
-            "geodir_twitter" => 'http://twitter.com/doubletree1',
847
-            "geodir_facebook" => 'http://facebook.com/doubletree1',
848
-            "post_dummy" => '1'
849
-        );
850
-
851
-        ////post end///
852
-        /// Hotels ////post start 3///
853
-
854
-        break;
855
-    case 14:
856
-
857
-
858
-        $image_array = array();
859
-        $post_meta = array();
860
-
861
-        /// Hotels ////post start 4///
862
-        $image_array[] = "$dummy_image_url/hotels15.jpg";
863
-        $image_array[] = "$dummy_image_url/hotels16.jpg";
864
-        $image_array[] = "$dummy_image_url/hotels12.jpg";
865
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
866
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
867
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
868
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
869
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
870
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
871
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
872
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
873
-
874
-        $post_info[] = array(
875
-            "listing_type" => 'gd_place',
876
-            "post_title" => 'Philadelphia Marriott Downtown',
877
-            "post_desc" => '
837
+			"post_images" => $image_array,
838
+
839
+			"post_category" => array('gd_placecategory' => array('Hotels')),
840
+			"post_tags" => array(''),
841
+			"geodir_video" => '',
842
+			"geodir_timing" => 'Daily, 10:30 am – 10 pm',
843
+			"geodir_contact" => '(111) 111-0000',
844
+			"geodir_email" => '[email protected]',
845
+			"geodir_website" => 'http://doubletree1.hilton.com/en_US/dt/hotel/PHLBLDT-Doubletree-Hotel-Philadelphia-Pennsylvania/index.do',
846
+			"geodir_twitter" => 'http://twitter.com/doubletree1',
847
+			"geodir_facebook" => 'http://facebook.com/doubletree1',
848
+			"post_dummy" => '1'
849
+		);
850
+
851
+		////post end///
852
+		/// Hotels ////post start 3///
853
+
854
+		break;
855
+	case 14:
856
+
857
+
858
+		$image_array = array();
859
+		$post_meta = array();
860
+
861
+		/// Hotels ////post start 4///
862
+		$image_array[] = "$dummy_image_url/hotels15.jpg";
863
+		$image_array[] = "$dummy_image_url/hotels16.jpg";
864
+		$image_array[] = "$dummy_image_url/hotels12.jpg";
865
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
866
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
867
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
868
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
869
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
870
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
871
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
872
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
873
+
874
+		$post_info[] = array(
875
+			"listing_type" => 'gd_place',
876
+			"post_title" => 'Philadelphia Marriott Downtown',
877
+			"post_desc" => '
878 878
 	Get ready to stay and play at the new aloft Philadelphia Airport!
879 879
 	
880 880
 	This incredibly modern hotel is located just five minutes from Philadelphia International Airport, offering a great convenience to travelers looking for fresh and fun accommodations.
@@ -901,45 +901,45 @@  discard block
 block discarded – undo
901 901
 	
902 902
 	Aahh…breathe deep at Aloft. This hotel is smoke-free.
903 903
 	',
904
-            "post_images" => $image_array,
905
-            "post_category" => array('gd_placecategory' => array('Hotels', 'Feature')),
906
-            "post_tags" => array(''),
907
-            "geodir_video" => '',
908
-            "geodir_timing" => '24 Hours',
909
-            "geodir_contact" => '(123) 111-2222',
910
-            "geodir_email" => '[email protected]',
911
-            "geodir_website" => 'http://www.marriott.com/hotels/travel/phldt-philadelphia-marriott-downtown/',
912
-            "geodir_twitter" => 'http://twitter.com/marriott',
913
-            "geodir_facebook" => 'http://facebook.com/marriott',
914
-            "post_dummy" => '1'
915
-        );
916
-
917
-        ////post end///
918
-        /// Hotels ////post start 4///
919
-        break;
920
-    case 15:
921
-
922
-
923
-        $image_array = array();
924
-        $post_meta = array();
925
-
926
-        /// Hotels ////post start 5///
927
-        $image_array[] = "$dummy_image_url/hotels10.jpg";
928
-        $image_array[] = "$dummy_image_url/hotels16.jpg";
929
-        $image_array[] = "$dummy_image_url/hotels12.jpg";
930
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
931
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
932
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
933
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
934
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
935
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
936
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
937
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
938
-
939
-        $post_info[] = array(
940
-            "listing_type" => 'gd_place',
941
-            "post_title" => 'Hilton Inn at Penn',
942
-            "post_desc" => '
904
+			"post_images" => $image_array,
905
+			"post_category" => array('gd_placecategory' => array('Hotels', 'Feature')),
906
+			"post_tags" => array(''),
907
+			"geodir_video" => '',
908
+			"geodir_timing" => '24 Hours',
909
+			"geodir_contact" => '(123) 111-2222',
910
+			"geodir_email" => '[email protected]',
911
+			"geodir_website" => 'http://www.marriott.com/hotels/travel/phldt-philadelphia-marriott-downtown/',
912
+			"geodir_twitter" => 'http://twitter.com/marriott',
913
+			"geodir_facebook" => 'http://facebook.com/marriott',
914
+			"post_dummy" => '1'
915
+		);
916
+
917
+		////post end///
918
+		/// Hotels ////post start 4///
919
+		break;
920
+	case 15:
921
+
922
+
923
+		$image_array = array();
924
+		$post_meta = array();
925
+
926
+		/// Hotels ////post start 5///
927
+		$image_array[] = "$dummy_image_url/hotels10.jpg";
928
+		$image_array[] = "$dummy_image_url/hotels16.jpg";
929
+		$image_array[] = "$dummy_image_url/hotels12.jpg";
930
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
931
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
932
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
933
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
934
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
935
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
936
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
937
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
938
+
939
+		$post_info[] = array(
940
+			"listing_type" => 'gd_place',
941
+			"post_title" => 'Hilton Inn at Penn',
942
+			"post_desc" => '
943 943
 	Located in the heart of Penn&acute;s campus in the beautiful University City neighborhood of Philadelphia, The Hilton Inn at Penn is a great choice for accommodations during your upcoming visit to Philadelphia.
944 944
 	
945 945
 	The location puts you right in the middle of the prestigious University of Pennsylvania and its many nearby educational, medical and corporate centers. And Center City Philadelphia is only a short cab ride away. So if you want to get out and explore the city, you are set.
@@ -955,45 +955,45 @@  discard block
 block discarded – undo
955 955
 	
956 956
 	The pasta is handmade right in front of you and then dished up along side delectable entrées such as grilled veal tenderloin and honey glazed sea scallops. And the wine bar offers more than 30 varieties by the glass and more than 100 by the bottle.  
957 957
 	',
958
-            "post_images" => $image_array,
959
-            "post_category" => array('gd_placecategory' => array('Hotels', 'Food Nightlife')),
960
-            "post_tags" => array(''),
961
-            "geodir_video" => '',
962
-            "geodir_timing" => 'Daily : 11 am to 11 pm',
963
-            "geodir_contact" => '(888) 888-8888',
964
-            "geodir_email" => '[email protected]',
965
-            "geodir_website" => 'http://www.theinnatpenn.com/',
966
-            "geodir_twitter" => 'http://twitter.com/theinnatpenn',
967
-            "geodir_facebook" => 'http://facebook.com/theinnatpenn',
968
-            "post_dummy" => '1'
969
-        );
970
-
971
-        ////post end///
972
-        /// Hotels ////post start 5///
973
-        break;
974
-    case 16:
975
-
976
-
977
-        $image_array = array();
978
-        $post_meta = array();
979
-
980
-        /// Hotels ////post start 6///
981
-        $image_array[] = "$dummy_image_url/hotels17.jpg";
982
-        $image_array[] = "$dummy_image_url/hotels18.jpg";
983
-        $image_array[] = "$dummy_image_url/hotels12.jpg";
984
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
985
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
986
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
987
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
988
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
989
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
990
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
991
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
992
-
993
-        $post_info[] = array(
994
-            "listing_type" => 'gd_place',
995
-            "post_title" => 'Courtyard Philadelphia Downtown',
996
-            "post_desc" => '
958
+			"post_images" => $image_array,
959
+			"post_category" => array('gd_placecategory' => array('Hotels', 'Food Nightlife')),
960
+			"post_tags" => array(''),
961
+			"geodir_video" => '',
962
+			"geodir_timing" => 'Daily : 11 am to 11 pm',
963
+			"geodir_contact" => '(888) 888-8888',
964
+			"geodir_email" => '[email protected]',
965
+			"geodir_website" => 'http://www.theinnatpenn.com/',
966
+			"geodir_twitter" => 'http://twitter.com/theinnatpenn',
967
+			"geodir_facebook" => 'http://facebook.com/theinnatpenn',
968
+			"post_dummy" => '1'
969
+		);
970
+
971
+		////post end///
972
+		/// Hotels ////post start 5///
973
+		break;
974
+	case 16:
975
+
976
+
977
+		$image_array = array();
978
+		$post_meta = array();
979
+
980
+		/// Hotels ////post start 6///
981
+		$image_array[] = "$dummy_image_url/hotels17.jpg";
982
+		$image_array[] = "$dummy_image_url/hotels18.jpg";
983
+		$image_array[] = "$dummy_image_url/hotels12.jpg";
984
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
985
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
986
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
987
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
988
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
989
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
990
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
991
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
992
+
993
+		$post_info[] = array(
994
+			"listing_type" => 'gd_place',
995
+			"post_title" => 'Courtyard Philadelphia Downtown',
996
+			"post_desc" => '
997 997
 	<h3>Overview </h3>
998 998
 	
999 999
 	The Philadelphia Downtown Courtyard opened it&acute;s doors after a grand $75 million restoration, recapturing the grandeur of its 1926 origins while incorporating state of the art systems throughout.
@@ -1023,45 +1023,45 @@  discard block
 block discarded – undo
1023 1023
 	
1024 1024
 	Recently featured on WE TV&acute;s “My Fair Wedding”, the Courtyard Marriott Philadelphia is one of the city&acute;s leading venues for corporate and social affairs with over 10,000 sq ft of flexible meeting space, including two Grand Ballrooms each with over 3,000 square feet accommodating up to 250 people. In addition, the hotel has a total of 11 meeting rooms making it an ideal home for all occasions. The hotel boasts an experienced full-service Event and Culinary Teams, ready to take care of all the details and ensure your event is not only a success, but a lasting memory. 
1025 1025
 	',
1026
-            "post_images" => $image_array,
1027
-            "post_category" => array('gd_placecategory' => array('Hotels', 'Food Nightlife')),
1028
-            "post_tags" => array(''),
1029
-            "geodir_video" => '',
1030
-            "geodir_timing" => 'Daily : 11 am to 11 pm',
1031
-            "geodir_contact" => '(888) 888-8888',
1032
-            "geodir_email" => '[email protected]',
1033
-            "geodir_website" => 'http://www.theinnatpenn.com/',
1034
-            "geodir_twitter" => 'http://twitter.com/theinnatpenn',
1035
-            "geodir_facebook" => 'http://facebook.com/theinnatpenn',
1036
-            "post_dummy" => '1'
1037
-        );
1038
-
1039
-        ////post end///
1040
-        /// Hotels ////post start 6///
1041
-
1042
-        break;
1043
-    case 17:
1044
-
1045
-        $image_array = array();
1046
-        $post_meta = array();
1047
-
1048
-        /// Hotels ////post start 7///
1049
-        $image_array[] = "$dummy_image_url/hotels11.jpg";
1050
-        $image_array[] = "$dummy_image_url/hotels10.jpg";
1051
-        $image_array[] = "$dummy_image_url/hotels12.jpg";
1052
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
1053
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
1054
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
1055
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
1056
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
1057
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
1058
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
1059
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
1060
-
1061
-        $post_info[] = array(
1062
-            "listing_type" => 'gd_place',
1063
-            "post_title" => 'Four Seasons Philadelphia',
1064
-            "post_desc" => '
1026
+			"post_images" => $image_array,
1027
+			"post_category" => array('gd_placecategory' => array('Hotels', 'Food Nightlife')),
1028
+			"post_tags" => array(''),
1029
+			"geodir_video" => '',
1030
+			"geodir_timing" => 'Daily : 11 am to 11 pm',
1031
+			"geodir_contact" => '(888) 888-8888',
1032
+			"geodir_email" => '[email protected]',
1033
+			"geodir_website" => 'http://www.theinnatpenn.com/',
1034
+			"geodir_twitter" => 'http://twitter.com/theinnatpenn',
1035
+			"geodir_facebook" => 'http://facebook.com/theinnatpenn',
1036
+			"post_dummy" => '1'
1037
+		);
1038
+
1039
+		////post end///
1040
+		/// Hotels ////post start 6///
1041
+
1042
+		break;
1043
+	case 17:
1044
+
1045
+		$image_array = array();
1046
+		$post_meta = array();
1047
+
1048
+		/// Hotels ////post start 7///
1049
+		$image_array[] = "$dummy_image_url/hotels11.jpg";
1050
+		$image_array[] = "$dummy_image_url/hotels10.jpg";
1051
+		$image_array[] = "$dummy_image_url/hotels12.jpg";
1052
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
1053
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
1054
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
1055
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
1056
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
1057
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
1058
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
1059
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
1060
+
1061
+		$post_info[] = array(
1062
+			"listing_type" => 'gd_place',
1063
+			"post_title" => 'Four Seasons Philadelphia',
1064
+			"post_desc" => '
1065 1065
 	<h3>Overview </h3>
1066 1066
 	
1067 1067
 	The Philadelphia Downtown Courtyard opened it&acute;s doors after a grand $75 million restoration, recapturing the grandeur of its 1926 origins while incorporating state of the art systems throughout.
@@ -1091,45 +1091,45 @@  discard block
 block discarded – undo
1091 1091
 	
1092 1092
 	Recently featured on WE TV&acute;s “My Fair Wedding”, the Courtyard Marriott Philadelphia is one of the city&acute;s leading venues for corporate and social affairs with over 10,000 sq ft of flexible meeting space, including two Grand Ballrooms each with over 3,000 square feet accommodating up to 250 people. In addition, the hotel has a total of 11 meeting rooms making it an ideal home for all occasions. The hotel boasts an experienced full-service Event and Culinary Teams, ready to take care of all the details and ensure your event is not only a success, but a lasting memory. 
1093 1093
 	',
1094
-            "post_images" => $image_array,
1095
-            "post_category" => array('gd_placecategory' => array('Hotels', 'Food Nightlife')),
1096
-            "post_tags" => array(''),
1097
-            "geodir_video" => '',
1098
-            "geodir_timing" => 'Daily : 11 am to 11 pm',
1099
-            "geodir_contact" => '(143) 888-8888',
1100
-            "geodir_email" => '[email protected]',
1101
-            "geodir_website" => 'http://www.fourseasons.com/philadelphia/',
1102
-            "geodir_twitter" => 'http://twitter.com/fourseasons',
1103
-            "geodir_facebook" => 'http://facebook.com/fourseasons',
1104
-            "post_dummy" => '1'
1105
-        );
1106
-
1107
-        ////post end///
1108
-        /// Hotels ////post start 7///
1109
-        break;
1110
-    case 18:
1111
-
1112
-
1113
-        $image_array = array();
1114
-        $post_meta = array();
1115
-
1116
-        /// Hotels ////post start 8///
1117
-        $image_array[] = "$dummy_image_url/hotels11.jpg";
1118
-        $image_array[] = "$dummy_image_url/hotels10.jpg";
1119
-        $image_array[] = "$dummy_image_url/hotels12.jpg";
1120
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
1121
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
1122
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
1123
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
1124
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
1125
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
1126
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
1127
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
1128
-
1129
-        $post_info[] = array(
1130
-            "listing_type" => 'gd_place',
1131
-            "post_title" => 'Alexander Inn',
1132
-            "post_desc" => '
1094
+			"post_images" => $image_array,
1095
+			"post_category" => array('gd_placecategory' => array('Hotels', 'Food Nightlife')),
1096
+			"post_tags" => array(''),
1097
+			"geodir_video" => '',
1098
+			"geodir_timing" => 'Daily : 11 am to 11 pm',
1099
+			"geodir_contact" => '(143) 888-8888',
1100
+			"geodir_email" => '[email protected]',
1101
+			"geodir_website" => 'http://www.fourseasons.com/philadelphia/',
1102
+			"geodir_twitter" => 'http://twitter.com/fourseasons',
1103
+			"geodir_facebook" => 'http://facebook.com/fourseasons',
1104
+			"post_dummy" => '1'
1105
+		);
1106
+
1107
+		////post end///
1108
+		/// Hotels ////post start 7///
1109
+		break;
1110
+	case 18:
1111
+
1112
+
1113
+		$image_array = array();
1114
+		$post_meta = array();
1115
+
1116
+		/// Hotels ////post start 8///
1117
+		$image_array[] = "$dummy_image_url/hotels11.jpg";
1118
+		$image_array[] = "$dummy_image_url/hotels10.jpg";
1119
+		$image_array[] = "$dummy_image_url/hotels12.jpg";
1120
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
1121
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
1122
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
1123
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
1124
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
1125
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
1126
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
1127
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
1128
+
1129
+		$post_info[] = array(
1130
+			"listing_type" => 'gd_place',
1131
+			"post_title" => 'Alexander Inn',
1132
+			"post_desc" => '
1133 1133
 	The Alexander Inn is one of Philadelphia&acute;s most popular and reasonably priced small hotels.
1134 1134
 	
1135 1135
 	Conveniently located in the heart of the Washington Square West neighborhood in Center City Philadelphia, the Alexander Inn is a great place to base your stay in Philadelphia.
@@ -1138,45 +1138,45 @@  discard block
 block discarded – undo
1138 1138
 	
1139 1139
 	Rooms are also fitted with DirecTV (including many complimentary channels like CNN, ESPN, eight movie channels, etc.) and telephones with modem ports and direct dial. You will also have access to the hotel&acute;s free 24-hour fitness and e-mail centers.  
1140 1140
 	',
1141
-            "post_images" => $image_array,
1142
-            "post_category" => array('gd_placecategory' => array('Hotels')),
1143
-            "post_tags" => array(''),
1144
-            "geodir_video" => '',
1145
-            "geodir_timing" => 'Daily : 11 am to 11 pm',
1146
-            "geodir_contact" => '(143) 888-8888',
1147
-            "geodir_email" => '[email protected]',
1148
-            "geodir_website" => 'http://www.alexanderinn.com/',
1149
-            "geodir_twitter" => 'http://twitter.com/alexanderinn',
1150
-            "geodir_facebook" => 'http://facebook.com/alexanderinn',
1151
-            "post_dummy" => '1'
1152
-        );
1153
-
1154
-        ////post end///
1155
-        /// Hotels ////post start 8///
1156
-        break;
1157
-    case 19:
1158
-
1159
-
1160
-        $image_array = array();
1161
-        $post_meta = array();
1162
-
1163
-        /// Hotels ////post start 9///
1164
-        $image_array[] = "$dummy_image_url/hotels5.jpg";
1165
-        $image_array[] = "$dummy_image_url/hotels10.jpg";
1166
-        $image_array[] = "$dummy_image_url/hotels12.jpg";
1167
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
1168
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
1169
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
1170
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
1171
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
1172
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
1173
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
1174
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
1175
-
1176
-        $post_info[] = array(
1177
-            "listing_type" => 'gd_place',
1178
-            "post_title" => 'Best Western Center City Hotel',
1179
-            "post_desc" => '
1141
+			"post_images" => $image_array,
1142
+			"post_category" => array('gd_placecategory' => array('Hotels')),
1143
+			"post_tags" => array(''),
1144
+			"geodir_video" => '',
1145
+			"geodir_timing" => 'Daily : 11 am to 11 pm',
1146
+			"geodir_contact" => '(143) 888-8888',
1147
+			"geodir_email" => '[email protected]',
1148
+			"geodir_website" => 'http://www.alexanderinn.com/',
1149
+			"geodir_twitter" => 'http://twitter.com/alexanderinn',
1150
+			"geodir_facebook" => 'http://facebook.com/alexanderinn',
1151
+			"post_dummy" => '1'
1152
+		);
1153
+
1154
+		////post end///
1155
+		/// Hotels ////post start 8///
1156
+		break;
1157
+	case 19:
1158
+
1159
+
1160
+		$image_array = array();
1161
+		$post_meta = array();
1162
+
1163
+		/// Hotels ////post start 9///
1164
+		$image_array[] = "$dummy_image_url/hotels5.jpg";
1165
+		$image_array[] = "$dummy_image_url/hotels10.jpg";
1166
+		$image_array[] = "$dummy_image_url/hotels12.jpg";
1167
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
1168
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
1169
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
1170
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
1171
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
1172
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
1173
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
1174
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
1175
+
1176
+		$post_info[] = array(
1177
+			"listing_type" => 'gd_place',
1178
+			"post_title" => 'Best Western Center City Hotel',
1179
+			"post_desc" => '
1180 1180
 	The Alexander Inn is one of Philadelphia&acute;s most popular and reasonably priced small hotels.
1181 1181
 	
1182 1182
 	Conveniently located in the heart of the Washington Square West neighborhood in Center City Philadelphia, the Alexander Inn is a great place to base your stay in Philadelphia.
@@ -1185,91 +1185,91 @@  discard block
 block discarded – undo
1185 1185
 	
1186 1186
 	Rooms are also fitted with DirecTV (including many complimentary channels like CNN, ESPN, eight movie channels, etc.) and telephones with modem ports and direct dial. You will also have access to the hotel&acute;s free 24-hour fitness and e-mail centers.  
1187 1187
 	',
1188
-            "post_images" => $image_array,
1189
-            "post_category" => array('gd_placecategory' => array('Hotels', 'Food Nightlife')),
1190
-            "post_tags" => array(''),
1191
-            "geodir_video" => '',
1192
-            "geodir_timing" => 'Daily : 10 am to 11 pm',
1193
-            "geodir_contact" => '(243) 222-12344',
1194
-            "geodir_email" => '[email protected]',
1195
-            "geodir_website" => 'http://book.bestwestern.com/bestwestern/productInfo.do?propertyCode=39087',
1196
-            "geodir_twitter" => 'http://twitter.com/bestwestern',
1197
-            "geodir_facebook" => 'http://facebook.com/bestwestern',
1198
-            "post_dummy" => '1'
1199
-        );
1200
-
1201
-        ////post end///
1202
-        /// Hotels ////post start 9///
1203
-        break;
1204
-    case 20:
1205
-
1206
-
1207
-        $image_array = array();
1208
-        $post_meta = array();
1209
-
1210
-        /// Hotels ////post start 10///
1211
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
1212
-        $image_array[] = "$dummy_image_url/hotels10.jpg";
1213
-        $image_array[] = "$dummy_image_url/hotels12.jpg";
1214
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
1215
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
1216
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
1217
-        $image_array[] = "$dummy_image_url/hotels12.jpg";
1218
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
1219
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
1220
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
1221
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
1222
-
1223
-        $post_info[] = array(
1224
-            "listing_type" => 'gd_place',
1225
-            "post_title" => 'Chestnut Hill Hotel',
1226
-            "post_desc" => '
1188
+			"post_images" => $image_array,
1189
+			"post_category" => array('gd_placecategory' => array('Hotels', 'Food Nightlife')),
1190
+			"post_tags" => array(''),
1191
+			"geodir_video" => '',
1192
+			"geodir_timing" => 'Daily : 10 am to 11 pm',
1193
+			"geodir_contact" => '(243) 222-12344',
1194
+			"geodir_email" => '[email protected]',
1195
+			"geodir_website" => 'http://book.bestwestern.com/bestwestern/productInfo.do?propertyCode=39087',
1196
+			"geodir_twitter" => 'http://twitter.com/bestwestern',
1197
+			"geodir_facebook" => 'http://facebook.com/bestwestern',
1198
+			"post_dummy" => '1'
1199
+		);
1200
+
1201
+		////post end///
1202
+		/// Hotels ////post start 9///
1203
+		break;
1204
+	case 20:
1205
+
1206
+
1207
+		$image_array = array();
1208
+		$post_meta = array();
1209
+
1210
+		/// Hotels ////post start 10///
1211
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
1212
+		$image_array[] = "$dummy_image_url/hotels10.jpg";
1213
+		$image_array[] = "$dummy_image_url/hotels12.jpg";
1214
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
1215
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
1216
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
1217
+		$image_array[] = "$dummy_image_url/hotels12.jpg";
1218
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
1219
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
1220
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
1221
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
1222
+
1223
+		$post_info[] = array(
1224
+			"listing_type" => 'gd_place',
1225
+			"post_title" => 'Chestnut Hill Hotel',
1226
+			"post_desc" => '
1227 1227
 	The Chestnut Hill Hotel is located in the historic community of Chestnut Hill, approximately nine miles northwest from Center City Philadelphia. Although Chestnut Hill is close to Center City by today&acute;s standards, it was originally a distant “suburb” on the outskirts of the Philadelphia countryside.
1228 1228
 	
1229 1229
 	Today, it is one of the region&acute;s most charming neighborhoods. Tree-lined streets and grand estates surround its main street, Germantown Avenue, where you can stroll and shop at more than 200 specialty shops and restaurants, along with trendy salons and other modern boutiques.
1230 1230
 	
1231 1231
 	The Chestnut Hill Hotel fits perfectly in this setting - the hotel&acute;s 36 rooms and suites, decorated in an 18th-century style, hold the hotel to its boutique roots. It&acute;s a perfect place at which to enjoy a romantic getaway in Philadelphia. 
1232 1232
 	',
1233
-            "post_images" => $image_array,
1234
-            "post_category" => array('gd_placecategory' => array('Hotels', 'Feature')),
1235
-            "post_tags" => array(''),
1236
-            "geodir_video" => '',
1237
-            "geodir_timing" => 'Daily : 10 am to 11 pm',
1238
-            "geodir_contact" => '(243) 222-12344',
1239
-            "geodir_email" => '[email protected]',
1240
-            "geodir_website" => 'http://www.chestnuthillhotel.com/',
1241
-            "geodir_twitter" => 'http://twitter.com/chestnuthillhotel',
1242
-            "geodir_facebook" => 'http://facebook.com/chestnuthillhotel',
1243
-            "post_dummy" => '1'
1244
-        );
1245
-
1246
-        ////post end///
1247
-        /// Hotels ////post start 10///
1248
-
1249
-        break;
1250
-    case 21:
1251
-
1252
-
1253
-        $image_array = array();
1254
-        $post_meta = array();
1255
-
1256
-        /// Restaurants ////post start 1//
1257
-        $image_array[] = "$dummy_image_url/restaurants1.jpg";
1258
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1259
-        $image_array[] = "$dummy_image_url/restaurants3.jpg";
1260
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1261
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1262
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1263
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1264
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1265
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1266
-        $image_array[] = "$dummy_image_url/restaurants10.jpg";
1267
-        $image_array[] = "$dummy_image_url/restaurants11.jpg";
1268
-
1269
-        $post_info[] = array(
1270
-            "listing_type" => 'gd_place',
1271
-            "post_title" => 'Village Whiskey',
1272
-            "post_desc" => '
1233
+			"post_images" => $image_array,
1234
+			"post_category" => array('gd_placecategory' => array('Hotels', 'Feature')),
1235
+			"post_tags" => array(''),
1236
+			"geodir_video" => '',
1237
+			"geodir_timing" => 'Daily : 10 am to 11 pm',
1238
+			"geodir_contact" => '(243) 222-12344',
1239
+			"geodir_email" => '[email protected]',
1240
+			"geodir_website" => 'http://www.chestnuthillhotel.com/',
1241
+			"geodir_twitter" => 'http://twitter.com/chestnuthillhotel',
1242
+			"geodir_facebook" => 'http://facebook.com/chestnuthillhotel',
1243
+			"post_dummy" => '1'
1244
+		);
1245
+
1246
+		////post end///
1247
+		/// Hotels ////post start 10///
1248
+
1249
+		break;
1250
+	case 21:
1251
+
1252
+
1253
+		$image_array = array();
1254
+		$post_meta = array();
1255
+
1256
+		/// Restaurants ////post start 1//
1257
+		$image_array[] = "$dummy_image_url/restaurants1.jpg";
1258
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1259
+		$image_array[] = "$dummy_image_url/restaurants3.jpg";
1260
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1261
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1262
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1263
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1264
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1265
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1266
+		$image_array[] = "$dummy_image_url/restaurants10.jpg";
1267
+		$image_array[] = "$dummy_image_url/restaurants11.jpg";
1268
+
1269
+		$post_info[] = array(
1270
+			"listing_type" => 'gd_place',
1271
+			"post_title" => 'Village Whiskey',
1272
+			"post_desc" => '
1273 1273
 	
1274 1274
 	
1275 1275
 	Located in a Rittenhouse Square space evoking the free-wheeling spirit of a speakeasy, Village Whiskey is prolific Chef Jose Garces’ intimate, 30-seat tribute to the time-honored liquor.
@@ -1295,45 +1295,45 @@  discard block
 block discarded – undo
1295 1295
 	
1296 1296
 	During the warmer months, diners can sit at large, wooden tables placed along Sansom Street for whiskey alfresco.
1297 1297
 	',
1298
-            "post_images" => $image_array,
1299
-            "post_category" => array('gd_placecategory' => array('Restaurants', 'Feature')),
1300
-            "post_tags" => array('Sample Tag1'),
1301
-            "geodir_video" => '',
1302
-            "geodir_timing" => 'Daily : 10 am to 11 pm',
1303
-            "geodir_contact" => '(243) 222-12344',
1304
-            "geodir_email" => '[email protected]',
1305
-            "geodir_website" => 'http://www.villagewhiskey.com/',
1306
-            "geodir_twitter" => 'http://twitter.com/villagewhiskey',
1307
-            "geodir_facebook" => 'http://facebook.com/villagewhiskey',
1308
-            "post_dummy" => '1'
1309
-        );
1310
-
1311
-        ////post end///
1312
-        /// Restaurants ////post start 1///
1313
-        break;
1314
-    case 22:
1315
-
1316
-
1317
-        $image_array = array();
1318
-        $post_meta = array();
1319
-
1320
-        /// Restaurants ////post start 2//
1321
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1322
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1323
-        $image_array[] = "$dummy_image_url/restaurants3.jpg";
1324
-        $image_array[] = "$dummy_image_url/restaurants1.jpg";
1325
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1326
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1327
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1328
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1329
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1330
-        $image_array[] = "$dummy_image_url/restaurants10.jpg";
1331
-        $image_array[] = "$dummy_image_url/restaurants11.jpg";
1332
-
1333
-        $post_info[] = array(
1334
-            "listing_type" => 'gd_place',
1335
-            "post_title" => 'Zavino Pizzeria and Wine Bar',
1336
-            "post_desc" => '
1298
+			"post_images" => $image_array,
1299
+			"post_category" => array('gd_placecategory' => array('Restaurants', 'Feature')),
1300
+			"post_tags" => array('Sample Tag1'),
1301
+			"geodir_video" => '',
1302
+			"geodir_timing" => 'Daily : 10 am to 11 pm',
1303
+			"geodir_contact" => '(243) 222-12344',
1304
+			"geodir_email" => '[email protected]',
1305
+			"geodir_website" => 'http://www.villagewhiskey.com/',
1306
+			"geodir_twitter" => 'http://twitter.com/villagewhiskey',
1307
+			"geodir_facebook" => 'http://facebook.com/villagewhiskey',
1308
+			"post_dummy" => '1'
1309
+		);
1310
+
1311
+		////post end///
1312
+		/// Restaurants ////post start 1///
1313
+		break;
1314
+	case 22:
1315
+
1316
+
1317
+		$image_array = array();
1318
+		$post_meta = array();
1319
+
1320
+		/// Restaurants ////post start 2//
1321
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1322
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1323
+		$image_array[] = "$dummy_image_url/restaurants3.jpg";
1324
+		$image_array[] = "$dummy_image_url/restaurants1.jpg";
1325
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1326
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1327
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1328
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1329
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1330
+		$image_array[] = "$dummy_image_url/restaurants10.jpg";
1331
+		$image_array[] = "$dummy_image_url/restaurants11.jpg";
1332
+
1333
+		$post_info[] = array(
1334
+			"listing_type" => 'gd_place',
1335
+			"post_title" => 'Zavino Pizzeria and Wine Bar',
1336
+			"post_desc" => '
1337 1337
 	Zavino is a new pizzeria and wine bar located at the epicenter of the city&acute;s trendy Midtown Village neighborhood. The restaurant features a seasonal menu, classic cocktails, an approachable selection of wine and beer and some of the best late night menu offerings in the area.
1338 1338
 	
1339 1339
 	The restaurant&acute;s interior looks great - it has a simple, rustic feel with an original brick wall, large picture windows, a long bar and a large outdoor cafe coming this spring.
@@ -1352,46 +1352,46 @@  discard block
 block discarded – undo
1352 1352
 	
1353 1353
 	Pizzas vary in price from $8 to $12.
1354 1354
 	',
1355
-            "post_images" => $image_array,
1356
-            "post_category" => array('gd_placecategory' => array('Restaurants')),
1357
-            "post_tags" => array('Sample Tag1'),
1358
-            "geodir_video" => '',
1359
-            "geodir_timing" => 'Daily : 10 am to 11 pm',
1360
-            "geodir_contact" => '(243) 222-12344',
1361
-            "geodir_email" => '[email protected]',
1362
-            "geodir_website" => 'http://www.villagewhiskey.com/',
1363
-            "geodir_twitter" => 'http://twitter.com/villagewhiskey',
1364
-            "geodir_facebook" => 'http://facebook.com/villagewhiskey',
1365
-            "post_dummy" => '1'
1366
-        );
1367
-
1368
-        ////post end///
1369
-        /// Restaurants ////post start 2///
1370
-
1371
-        break;
1372
-    case 23:
1373
-
1374
-
1375
-        $image_array = array();
1376
-        $post_meta = array();
1377
-
1378
-        /// Restaurants ////post start 3//
1379
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1380
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1381
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1382
-        $image_array[] = "$dummy_image_url/restaurants1.jpg";
1383
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1384
-        $image_array[] = "$dummy_image_url/restaurants3.jpg";
1385
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1386
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1387
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1388
-        $image_array[] = "$dummy_image_url/restaurants10.jpg";
1389
-        $image_array[] = "$dummy_image_url/restaurants11.jpg";
1390
-
1391
-        $post_info[] = array(
1392
-            "listing_type" => 'gd_place',
1393
-            "post_title" => 'Parc',
1394
-            "post_desc" => '
1355
+			"post_images" => $image_array,
1356
+			"post_category" => array('gd_placecategory' => array('Restaurants')),
1357
+			"post_tags" => array('Sample Tag1'),
1358
+			"geodir_video" => '',
1359
+			"geodir_timing" => 'Daily : 10 am to 11 pm',
1360
+			"geodir_contact" => '(243) 222-12344',
1361
+			"geodir_email" => '[email protected]',
1362
+			"geodir_website" => 'http://www.villagewhiskey.com/',
1363
+			"geodir_twitter" => 'http://twitter.com/villagewhiskey',
1364
+			"geodir_facebook" => 'http://facebook.com/villagewhiskey',
1365
+			"post_dummy" => '1'
1366
+		);
1367
+
1368
+		////post end///
1369
+		/// Restaurants ////post start 2///
1370
+
1371
+		break;
1372
+	case 23:
1373
+
1374
+
1375
+		$image_array = array();
1376
+		$post_meta = array();
1377
+
1378
+		/// Restaurants ////post start 3//
1379
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1380
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1381
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1382
+		$image_array[] = "$dummy_image_url/restaurants1.jpg";
1383
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1384
+		$image_array[] = "$dummy_image_url/restaurants3.jpg";
1385
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1386
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1387
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1388
+		$image_array[] = "$dummy_image_url/restaurants10.jpg";
1389
+		$image_array[] = "$dummy_image_url/restaurants11.jpg";
1390
+
1391
+		$post_info[] = array(
1392
+			"listing_type" => 'gd_place',
1393
+			"post_title" => 'Parc',
1394
+			"post_desc" => '
1395 1395
 	If you love Paris in the springtime, Parc is a veritable grand cru.
1396 1396
 	
1397 1397
 	With Parc, famed restaurateur Stephen Starr brings a certain je ne sais quoi to Rittenhouse Square. Parc offers an authentic French bistro experience, fully equipped with a chic Parisian ambiance and gorgeous sidewalk seating overlooking the Square.
@@ -1419,45 +1419,45 @@  discard block
 block discarded – undo
1419 1419
 	
1420 1420
 	To put it simply, Parc is nothing short of an authentic Parisian dining experience - right here in the heart of Rittenhouse Square.
1421 1421
 	',
1422
-            "post_images" => $image_array,
1423
-            "post_category" => array('gd_placecategory' => array('Restaurants')),
1424
-            "post_tags" => array('Sample Tag1'),
1425
-            "geodir_video" => '',
1426
-            "geodir_timing" => 'Daily : 10 am to 12 pm',
1427
-            "geodir_contact" => '(143) 222-12344',
1428
-            "geodir_email" => '[email protected]',
1429
-            "geodir_website" => 'http://www.parc-restaurant.com/',
1430
-            "geodir_twitter" => 'http://twitter.com/parc-restaurant',
1431
-            "geodir_facebook" => 'http://facebook.com/parc-restaurant',
1432
-            "post_dummy" => '1'
1433
-        );
1434
-
1435
-        ////post end///
1436
-        /// Restaurants ////post start 3///
1437
-        break;
1438
-    case 24:
1439
-
1440
-
1441
-        $image_array = array();
1442
-        $post_meta = array();
1443
-
1444
-        /// Restaurants ////post start 4//
1445
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1446
-        $image_array[] = "$dummy_image_url/restaurants10.jpg";
1447
-        $image_array[] = "$dummy_image_url/restaurants3.jpg";
1448
-        $image_array[] = "$dummy_image_url/restaurants1.jpg";
1449
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1450
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1451
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1452
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1453
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1454
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1455
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1456
-
1457
-        $post_info[] = array(
1458
-            "listing_type" => 'gd_place',
1459
-            "post_title" => 'Percy Street Barbecue',
1460
-            "post_desc" => '
1422
+			"post_images" => $image_array,
1423
+			"post_category" => array('gd_placecategory' => array('Restaurants')),
1424
+			"post_tags" => array('Sample Tag1'),
1425
+			"geodir_video" => '',
1426
+			"geodir_timing" => 'Daily : 10 am to 12 pm',
1427
+			"geodir_contact" => '(143) 222-12344',
1428
+			"geodir_email" => '[email protected]',
1429
+			"geodir_website" => 'http://www.parc-restaurant.com/',
1430
+			"geodir_twitter" => 'http://twitter.com/parc-restaurant',
1431
+			"geodir_facebook" => 'http://facebook.com/parc-restaurant',
1432
+			"post_dummy" => '1'
1433
+		);
1434
+
1435
+		////post end///
1436
+		/// Restaurants ////post start 3///
1437
+		break;
1438
+	case 24:
1439
+
1440
+
1441
+		$image_array = array();
1442
+		$post_meta = array();
1443
+
1444
+		/// Restaurants ////post start 4//
1445
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1446
+		$image_array[] = "$dummy_image_url/restaurants10.jpg";
1447
+		$image_array[] = "$dummy_image_url/restaurants3.jpg";
1448
+		$image_array[] = "$dummy_image_url/restaurants1.jpg";
1449
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1450
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1451
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1452
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1453
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1454
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1455
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1456
+
1457
+		$post_info[] = array(
1458
+			"listing_type" => 'gd_place',
1459
+			"post_title" => 'Percy Street Barbecue',
1460
+			"post_desc" => '
1461 1461
 	Percy Street Barbecue sees the South Street debut of restaurateurs Steven Cook and Michael Solomonov (Zahav, Xochitl).
1462 1462
 	
1463 1463
 	Serving a straightforward selection of slowly smoked meats and homey side dishes alongside craft beers and tasty cocktails, Percy Street is an ideal venue for Chef Erin OShea much-lauded Southern cooking, and is on its way to become the city top spot for barbecue.
@@ -1483,46 +1483,46 @@  discard block
 block discarded – undo
1483 1483
 	
1484 1484
 	Seating in the form of repurposed church pews, and bare light bulbs overhead in the dining room lend to the restaurant Texas-esque aesthetic.
1485 1485
 	',
1486
-            "post_images" => $image_array,
1487
-            "post_category" => array('gd_placecategory' => array('Restaurants', 'Feature')),
1488
-            "post_tags" => array('Sample Tag1'),
1489
-            "geodir_video" => '',
1490
-            "geodir_timing" => 'Percy Street is closed on Mondays. The restaurant is also open for weekend lunch/brunch from 11:30 a.m. to 2:30 p.m.',
1491
-            "geodir_contact" => '(143) 222-12344',
1492
-            "geodir_email" => '[email protected]',
1493
-            "geodir_website" => 'http://www.percystreet.com/',
1494
-            "geodir_twitter" => 'http://twitter.com/percystreet',
1495
-            "geodir_facebook" => 'http://facebook.com/percystreet',
1496
-            "post_dummy" => '1'
1497
-        );
1498
-
1499
-        ////post end///
1500
-        /// Restaurants ////post start 4///
1501
-
1502
-        break;
1503
-    case 25:
1504
-
1505
-
1506
-        $image_array = array();
1507
-        $post_meta = array();
1508
-
1509
-        /// Restaurants ////post start 5//
1510
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1511
-        $image_array[] = "$dummy_image_url/restaurants10.jpg";
1512
-        $image_array[] = "$dummy_image_url/restaurants3.jpg";
1513
-        $image_array[] = "$dummy_image_url/restaurants1.jpg";
1514
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1515
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1516
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1517
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1518
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1519
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1520
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1521
-
1522
-        $post_info[] = array(
1523
-            "listing_type" => 'gd_place',
1524
-            "post_title" => 'The Fountain Restaurant',
1525
-            "post_desc" => '
1486
+			"post_images" => $image_array,
1487
+			"post_category" => array('gd_placecategory' => array('Restaurants', 'Feature')),
1488
+			"post_tags" => array('Sample Tag1'),
1489
+			"geodir_video" => '',
1490
+			"geodir_timing" => 'Percy Street is closed on Mondays. The restaurant is also open for weekend lunch/brunch from 11:30 a.m. to 2:30 p.m.',
1491
+			"geodir_contact" => '(143) 222-12344',
1492
+			"geodir_email" => '[email protected]',
1493
+			"geodir_website" => 'http://www.percystreet.com/',
1494
+			"geodir_twitter" => 'http://twitter.com/percystreet',
1495
+			"geodir_facebook" => 'http://facebook.com/percystreet',
1496
+			"post_dummy" => '1'
1497
+		);
1498
+
1499
+		////post end///
1500
+		/// Restaurants ////post start 4///
1501
+
1502
+		break;
1503
+	case 25:
1504
+
1505
+
1506
+		$image_array = array();
1507
+		$post_meta = array();
1508
+
1509
+		/// Restaurants ////post start 5//
1510
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1511
+		$image_array[] = "$dummy_image_url/restaurants10.jpg";
1512
+		$image_array[] = "$dummy_image_url/restaurants3.jpg";
1513
+		$image_array[] = "$dummy_image_url/restaurants1.jpg";
1514
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1515
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1516
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1517
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1518
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1519
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1520
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1521
+
1522
+		$post_info[] = array(
1523
+			"listing_type" => 'gd_place',
1524
+			"post_title" => 'The Fountain Restaurant',
1525
+			"post_desc" => '
1526 1526
 	The Fountain Restaurant in the Four Seasons Hotel Philadelphia has received seemingly every type of accolade there is, from top honors in Gourmet magazine to Forbes Travel Guide&acute;s 2010 Five Star award to a perfect Five Diamond rating from AAA. It&acute;s been a Philadelphia favorite for special occasion meals for decades.
1527 1527
 	
1528 1528
 	Additionally rated as the best restaurant in Philadelphia by Zagat&acute;s, the Fountain Restaurant overlooks the majestic Swann Memorial Fountain sculpture by Alexander Stirling Calder in the center of Logan Square. You&acute;ll also enjoy sweeping views of the grand Benjamin Franklin Parkway and its gorgeous Beaux Arts architecture.
@@ -1532,45 +1532,45 @@  discard block
 block discarded – undo
1532 1532
 	You can order a la carte or select the prix fix option to enjoy the “spontaneous tastes” menu which gives the chef control of a few courses. The menu changes regularly, but you can expect to see globaly influenced items like Pan-fried Veal Sweetbreads, Braised Dover Sole Roulade, Sautéed Venison Medallions and Roasted Australian Lamb Saddle.
1533 1533
 	
1534 1534
 	',
1535
-            "post_images" => $image_array,
1536
-            "post_category" => array('gd_placecategory' => array('Restaurants')),
1537
-            "post_tags" => array('food'),
1538
-            "geodir_video" => '',
1539
-            "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 11:30 a.m. to 2:30 p.m.',
1540
-            "geodir_contact" => '(103) 100-12344',
1541
-            "geodir_email" => '[email protected]',
1542
-            "geodir_website" => 'http://www.fourseasons.com/philadelphia/dining',
1543
-            "geodir_twitter" => 'http://twitter.com/fourseasons',
1544
-            "geodir_facebook" => 'http://facebook.com/fourseasons',
1545
-            "post_dummy" => '1'
1546
-        );
1547
-
1548
-        ////post end///
1549
-        /// Restaurants ////post start 5///
1550
-        break;
1551
-    case 26:
1552
-
1553
-
1554
-        $image_array = array();
1555
-        $post_meta = array();
1556
-
1557
-        /// Restaurants ////post start 6//
1558
-        $image_array[] = "$dummy_image_url/restaurants11.jpg";
1559
-        $image_array[] = "$dummy_image_url/restaurants10.jpg";
1560
-        $image_array[] = "$dummy_image_url/restaurants3.jpg";
1561
-        $image_array[] = "$dummy_image_url/restaurants1.jpg";
1562
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1563
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1564
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1565
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1566
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1567
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1568
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1569
-
1570
-        $post_info[] = array(
1571
-            "listing_type" => 'gd_place',
1572
-            "post_title" => 'Lacroix at The Rittenhouse',
1573
-            "post_desc" => '
1535
+			"post_images" => $image_array,
1536
+			"post_category" => array('gd_placecategory' => array('Restaurants')),
1537
+			"post_tags" => array('food'),
1538
+			"geodir_video" => '',
1539
+			"geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 11:30 a.m. to 2:30 p.m.',
1540
+			"geodir_contact" => '(103) 100-12344',
1541
+			"geodir_email" => '[email protected]',
1542
+			"geodir_website" => 'http://www.fourseasons.com/philadelphia/dining',
1543
+			"geodir_twitter" => 'http://twitter.com/fourseasons',
1544
+			"geodir_facebook" => 'http://facebook.com/fourseasons',
1545
+			"post_dummy" => '1'
1546
+		);
1547
+
1548
+		////post end///
1549
+		/// Restaurants ////post start 5///
1550
+		break;
1551
+	case 26:
1552
+
1553
+
1554
+		$image_array = array();
1555
+		$post_meta = array();
1556
+
1557
+		/// Restaurants ////post start 6//
1558
+		$image_array[] = "$dummy_image_url/restaurants11.jpg";
1559
+		$image_array[] = "$dummy_image_url/restaurants10.jpg";
1560
+		$image_array[] = "$dummy_image_url/restaurants3.jpg";
1561
+		$image_array[] = "$dummy_image_url/restaurants1.jpg";
1562
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1563
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1564
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1565
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1566
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1567
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1568
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1569
+
1570
+		$post_info[] = array(
1571
+			"listing_type" => 'gd_place',
1572
+			"post_title" => 'Lacroix at The Rittenhouse',
1573
+			"post_desc" => '
1574 1574
 	A deluxe hotel like The Rittenhouse deserves a deluxe restaurant, a fitting description for Lacroix, named “Restaurant of the Year” in 2003 by Esquire magazine.
1575 1575
 	
1576 1576
 	Located on the second floor of the Rittenhouse Hotel, Lacroix features elegant décor and a broad view of Rittenhouse Square, which combine to make the ambiance at Lacroix as enjoyable as the meal itself.
@@ -1581,46 +1581,46 @@  discard block
 block discarded – undo
1581 1581
 	
1582 1582
 	Sunday Brunch at Lacroix - which features such delectable dishes as baby lamb chops with garlic crust and banyuls sauce, niman ranch smoked bacon, quail eggs with artichoke, golden beet and shiitakes, and french baguette toast with apple, raspberry and rosemary jam - is also highly recommended.
1583 1583
 	',
1584
-            "post_images" => $image_array,
1585
-            "post_category" => array('gd_placecategory' => array('Restaurants')),
1586
-            "post_tags" => array('food'),
1587
-            "geodir_video" => '',
1588
-            "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1589
-            "geodir_contact" => '(113) 121-12344',
1590
-            "geodir_email" => '[email protected]',
1591
-            "geodir_website" => 'http://www.rittenhousehotel.com/lacroix.cfm',
1592
-            "geodir_twitter" => 'http://twitter.com/rittenhousehotel',
1593
-            "geodir_facebook" => 'http://facebook.com/rittenhousehotel',
1594
-            "post_dummy" => '1'
1595
-        );
1596
-
1597
-        ////post end///
1598
-        /// Restaurants ////post start 6///
1599
-
1600
-        break;
1601
-    case 27:
1602
-
1603
-
1604
-        $image_array = array();
1605
-        $post_meta = array();
1606
-
1607
-        /// Restaurants ////post start 7//
1608
-        $image_array[] = "$dummy_image_url/restaurants12.jpg";
1609
-        $image_array[] = "$dummy_image_url/restaurants13.jpg";
1610
-        $image_array[] = "$dummy_image_url/restaurants14.jpg";
1611
-        $image_array[] = "$dummy_image_url/restaurants15.jpg";
1612
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1613
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1614
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1615
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1616
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1617
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1618
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1619
-
1620
-        $post_info[] = array(
1621
-            "listing_type" => 'gd_place',
1622
-            "post_title" => 'Lacroix at The Rittenhouse',
1623
-            "post_desc" => '
1584
+			"post_images" => $image_array,
1585
+			"post_category" => array('gd_placecategory' => array('Restaurants')),
1586
+			"post_tags" => array('food'),
1587
+			"geodir_video" => '',
1588
+			"geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1589
+			"geodir_contact" => '(113) 121-12344',
1590
+			"geodir_email" => '[email protected]',
1591
+			"geodir_website" => 'http://www.rittenhousehotel.com/lacroix.cfm',
1592
+			"geodir_twitter" => 'http://twitter.com/rittenhousehotel',
1593
+			"geodir_facebook" => 'http://facebook.com/rittenhousehotel',
1594
+			"post_dummy" => '1'
1595
+		);
1596
+
1597
+		////post end///
1598
+		/// Restaurants ////post start 6///
1599
+
1600
+		break;
1601
+	case 27:
1602
+
1603
+
1604
+		$image_array = array();
1605
+		$post_meta = array();
1606
+
1607
+		/// Restaurants ////post start 7//
1608
+		$image_array[] = "$dummy_image_url/restaurants12.jpg";
1609
+		$image_array[] = "$dummy_image_url/restaurants13.jpg";
1610
+		$image_array[] = "$dummy_image_url/restaurants14.jpg";
1611
+		$image_array[] = "$dummy_image_url/restaurants15.jpg";
1612
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1613
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1614
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1615
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1616
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1617
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1618
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1619
+
1620
+		$post_info[] = array(
1621
+			"listing_type" => 'gd_place',
1622
+			"post_title" => 'Lacroix at The Rittenhouse',
1623
+			"post_desc" => '
1624 1624
 	A deluxe hotel like The Rittenhouse deserves a deluxe restaurant, a fitting description for Lacroix, named “Restaurant of the Year” in 2003 by Esquire magazine.
1625 1625
 	
1626 1626
 	Located on the second floor of the Rittenhouse Hotel, Lacroix features elegant décor and a broad view of Rittenhouse Square, which combine to make the ambiance at Lacroix as enjoyable as the meal itself.
@@ -1631,45 +1631,45 @@  discard block
 block discarded – undo
1631 1631
 	
1632 1632
 	Sunday Brunch at Lacroix - which features such delectable dishes as baby lamb chops with garlic crust and banyuls sauce, niman ranch smoked bacon, quail eggs with artichoke, golden beet and shiitakes, and french baguette toast with apple, raspberry and rosemary jam - is also highly recommended.
1633 1633
 	',
1634
-            "post_images" => $image_array,
1635
-            "post_category" => array('gd_placecategory' => array('Restaurants', 'Food Nightlife')),
1636
-            "post_tags" => array('food'),
1637
-            "geodir_video" => '',
1638
-            "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1639
-            "geodir_contact" => '(113) 121-12344',
1640
-            "geodir_email" => '[email protected]',
1641
-            "geodir_website" => 'http://www.zamarestaurant.com/',
1642
-            "geodir_twitter" => 'http://twitter.com/zamarestaurant',
1643
-            "geodir_facebook" => 'http://facebook.com/zamarestaurant',
1644
-            "post_dummy" => '1'
1645
-        );
1646
-
1647
-        ////post end///
1648
-        /// Restaurants ////post start 7///
1649
-
1650
-        break;
1651
-    case 28:
1652
-
1653
-        $image_array = array();
1654
-        $post_meta = array();
1655
-
1656
-        /// Restaurants ////post start 8//
1657
-        $image_array[] = "$dummy_image_url/restaurants16.jpg";
1658
-        $image_array[] = "$dummy_image_url/restaurants17.jpg";
1659
-        $image_array[] = "$dummy_image_url/restaurants18.jpg";
1660
-        $image_array[] = "$dummy_image_url/restaurants19.jpg";
1661
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1662
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1663
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1664
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1665
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1666
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1667
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1668
-
1669
-        $post_info[] = array(
1670
-            "listing_type" => 'gd_place',
1671
-            "post_title" => 'Sampan',
1672
-            "post_desc" => '
1634
+			"post_images" => $image_array,
1635
+			"post_category" => array('gd_placecategory' => array('Restaurants', 'Food Nightlife')),
1636
+			"post_tags" => array('food'),
1637
+			"geodir_video" => '',
1638
+			"geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1639
+			"geodir_contact" => '(113) 121-12344',
1640
+			"geodir_email" => '[email protected]',
1641
+			"geodir_website" => 'http://www.zamarestaurant.com/',
1642
+			"geodir_twitter" => 'http://twitter.com/zamarestaurant',
1643
+			"geodir_facebook" => 'http://facebook.com/zamarestaurant',
1644
+			"post_dummy" => '1'
1645
+		);
1646
+
1647
+		////post end///
1648
+		/// Restaurants ////post start 7///
1649
+
1650
+		break;
1651
+	case 28:
1652
+
1653
+		$image_array = array();
1654
+		$post_meta = array();
1655
+
1656
+		/// Restaurants ////post start 8//
1657
+		$image_array[] = "$dummy_image_url/restaurants16.jpg";
1658
+		$image_array[] = "$dummy_image_url/restaurants17.jpg";
1659
+		$image_array[] = "$dummy_image_url/restaurants18.jpg";
1660
+		$image_array[] = "$dummy_image_url/restaurants19.jpg";
1661
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1662
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1663
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1664
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1665
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1666
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1667
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1668
+
1669
+		$post_info[] = array(
1670
+			"listing_type" => 'gd_place',
1671
+			"post_title" => 'Sampan',
1672
+			"post_desc" => '
1673 1673
 	Chef and charismatic television star Michael Schulson returns to Philadelphia with the opening of Sampan, a modern Asian restaurant where he serves the acclaimed cuisine that has made him one of the country&acute;s highly sought-after culinary talents.
1674 1674
 	
1675 1675
 	Schulson returns to Philadelphia after having opened Buddakan in New York City for Stephen Starr and Izakaya at the Borgata in Atlantic City and then having gone on to star in Style network&acute;s popular series Pantry Raid and TLC Ultimate Cake Off.
@@ -1688,45 +1688,45 @@  discard block
 block discarded – undo
1688 1688
 	
1689 1689
 	Prices range from $5 to $19.
1690 1690
 	',
1691
-            "post_images" => $image_array,
1692
-            "post_category" => array('gd_placecategory' => array('Restaurants', 'Food Nightlife')),
1693
-            "post_tags" => array('restaurant'),
1694
-            "geodir_video" => '',
1695
-            "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1696
-            "geodir_contact" => '(000) 111-2222',
1697
-            "geodir_email" => '[email protected]',
1698
-            "geodir_website" => 'http://www.sampanphilly.com/',
1699
-            "geodir_twitter" => 'http://twitter.com/sampanphilly',
1700
-            "geodir_facebook" => 'http://facebook.com/sampanphilly',
1701
-            "post_dummy" => '1'
1702
-        );
1703
-
1704
-        ////post end///
1705
-        /// Restaurants ////post start 8///
1706
-
1707
-        break;
1708
-    case 29:
1709
-
1710
-        $image_array = array();
1711
-        $post_meta = array();
1712
-
1713
-        /// Restaurants ////post start 9//
1714
-        $image_array[] = "$dummy_image_url/restaurants17.jpg";
1715
-        $image_array[] = "$dummy_image_url/restaurants16.jpg";
1716
-        $image_array[] = "$dummy_image_url/restaurants18.jpg";
1717
-        $image_array[] = "$dummy_image_url/restaurants19.jpg";
1718
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1719
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1720
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1721
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1722
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1723
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1724
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1725
-
1726
-        $post_info[] = array(
1727
-            "listing_type" => 'gd_place',
1728
-            "post_title" => 'Morimoto',
1729
-            "post_desc" => '
1691
+			"post_images" => $image_array,
1692
+			"post_category" => array('gd_placecategory' => array('Restaurants', 'Food Nightlife')),
1693
+			"post_tags" => array('restaurant'),
1694
+			"geodir_video" => '',
1695
+			"geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1696
+			"geodir_contact" => '(000) 111-2222',
1697
+			"geodir_email" => '[email protected]',
1698
+			"geodir_website" => 'http://www.sampanphilly.com/',
1699
+			"geodir_twitter" => 'http://twitter.com/sampanphilly',
1700
+			"geodir_facebook" => 'http://facebook.com/sampanphilly',
1701
+			"post_dummy" => '1'
1702
+		);
1703
+
1704
+		////post end///
1705
+		/// Restaurants ////post start 8///
1706
+
1707
+		break;
1708
+	case 29:
1709
+
1710
+		$image_array = array();
1711
+		$post_meta = array();
1712
+
1713
+		/// Restaurants ////post start 9//
1714
+		$image_array[] = "$dummy_image_url/restaurants17.jpg";
1715
+		$image_array[] = "$dummy_image_url/restaurants16.jpg";
1716
+		$image_array[] = "$dummy_image_url/restaurants18.jpg";
1717
+		$image_array[] = "$dummy_image_url/restaurants19.jpg";
1718
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1719
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1720
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1721
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1722
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1723
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1724
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1725
+
1726
+		$post_info[] = array(
1727
+			"listing_type" => 'gd_place',
1728
+			"post_title" => 'Morimoto',
1729
+			"post_desc" => '
1730 1730
 	Stephen Starr creative Japanese restaurant has garnered all kinds of national and international attention since opening a few years back. Located a block from Independence Hall on Chestnut Street, Morimoto has an interior - awash in glass and colors - that is both striking and serene in its design.
1731 1731
 	
1732 1732
 	The restaurant&acute;s namesake and head chef, Morimoto (of Food Network&acute;s Iron Chef fame), has created a menu offering the very best in contemporary Japanese cusine. While regulars flock here for the exquisitely prepared sushi, Morimoto offers diners a broad spectrum of flavors that delve beyond nigiri and sashimi.
@@ -1739,45 +1739,45 @@  discard block
 block discarded – undo
1739 1739
 	
1740 1740
 	The mezzanine level lounge is a great spot to have a pre-meal cocktail while waiting for your table. You can enjoy a sake or try a “Sakura” - a cosmo made with Sake - in the sleek space that overlooks the brilliant restaurant below.
1741 1741
 	',
1742
-            "post_images" => $image_array,
1743
-            "post_category" => array('gd_placecategory' => array('Restaurants', 'Food Nightlife', 'Feature')),
1744
-            "post_tags" => array('America'),
1745
-            "geodir_video" => '',
1746
-            "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1747
-            "geodir_contact" => '(000) 111-2222',
1748
-            "geodir_email" => '[email protected]',
1749
-            "geodir_website" => 'http://www.morimotorestaurant.com/',
1750
-            "geodir_twitter" => 'http://twitter.com/morimotorestaurant',
1751
-            "geodir_facebook" => 'http://facebook.com/morimotorestaurant',
1752
-            "post_dummy" => '1'
1753
-        );
1754
-
1755
-        ////post end///
1756
-        /// Restaurants ////post start 9///
1757
-        break;
1758
-    case 30:
1759
-
1760
-
1761
-        $image_array = array();
1762
-        $post_meta = array();
1763
-
1764
-        /// Restaurants ////post start 10//
1765
-        $image_array[] = "$dummy_image_url/restaurants19.jpg";
1766
-        $image_array[] = "$dummy_image_url/restaurants17.jpg";
1767
-        $image_array[] = "$dummy_image_url/restaurants18.jpg";
1768
-        $image_array[] = "$dummy_image_url/restaurants16.jpg";
1769
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1770
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1771
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1772
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1773
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1774
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1775
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1776
-
1777
-        $post_info[] = array(
1778
-            "listing_type" => 'gd_place',
1779
-            "post_title" => 'Buddakan',
1780
-            "post_desc" => '
1742
+			"post_images" => $image_array,
1743
+			"post_category" => array('gd_placecategory' => array('Restaurants', 'Food Nightlife', 'Feature')),
1744
+			"post_tags" => array('America'),
1745
+			"geodir_video" => '',
1746
+			"geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1747
+			"geodir_contact" => '(000) 111-2222',
1748
+			"geodir_email" => '[email protected]',
1749
+			"geodir_website" => 'http://www.morimotorestaurant.com/',
1750
+			"geodir_twitter" => 'http://twitter.com/morimotorestaurant',
1751
+			"geodir_facebook" => 'http://facebook.com/morimotorestaurant',
1752
+			"post_dummy" => '1'
1753
+		);
1754
+
1755
+		////post end///
1756
+		/// Restaurants ////post start 9///
1757
+		break;
1758
+	case 30:
1759
+
1760
+
1761
+		$image_array = array();
1762
+		$post_meta = array();
1763
+
1764
+		/// Restaurants ////post start 10//
1765
+		$image_array[] = "$dummy_image_url/restaurants19.jpg";
1766
+		$image_array[] = "$dummy_image_url/restaurants17.jpg";
1767
+		$image_array[] = "$dummy_image_url/restaurants18.jpg";
1768
+		$image_array[] = "$dummy_image_url/restaurants16.jpg";
1769
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1770
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1771
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1772
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1773
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1774
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1775
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1776
+
1777
+		$post_info[] = array(
1778
+			"listing_type" => 'gd_place',
1779
+			"post_title" => 'Buddakan',
1780
+			"post_desc" => '
1781 1781
 	<h3>The Experience </h3>
1782 1782
 	
1783 1783
 	A towering gilded statue of the Buddha generates elegant calm in this 175-seat, Pan Asian restaurant with sleek, modern decor. Immensely popular, Buddakan is a restaurant that is great for both large parties and intimate dinners.
@@ -1788,86 +1788,86 @@  discard block
 block discarded – undo
1788 1788
 	
1789 1789
 	Be sure to make your reservation before coming to town as Buddakan fills up quickly especially on weekends. Better yet, make your reservation right now .
1790 1790
 	',
1791
-            "post_images" => $image_array,
1792
-            "post_category" => array('gd_placecategory' => array('Restaurants', 'Food Nightlife')),
1793
-            "post_tags" => array('America'),
1794
-            "geodir_video" => '',
1795
-            "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1796
-            "geodir_contact" => '(000) 111-2222',
1797
-            "geodir_email" => '[email protected]',
1798
-            "geodir_website" => 'http://www.buddakan.com/',
1799
-            "geodir_twitter" => 'http://twitter.com/buddakan',
1800
-            "geodir_facebook" => 'http://facebook.com/buddakan',
1801
-            "post_dummy" => '1'
1802
-        );
1803
-        break;
1804
-
1805
-    ////post end///
1806
-    /// Restaurants ////post start 10///
1791
+			"post_images" => $image_array,
1792
+			"post_category" => array('gd_placecategory' => array('Restaurants', 'Food Nightlife')),
1793
+			"post_tags" => array('America'),
1794
+			"geodir_video" => '',
1795
+			"geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1796
+			"geodir_contact" => '(000) 111-2222',
1797
+			"geodir_email" => '[email protected]',
1798
+			"geodir_website" => 'http://www.buddakan.com/',
1799
+			"geodir_twitter" => 'http://twitter.com/buddakan',
1800
+			"geodir_facebook" => 'http://facebook.com/buddakan',
1801
+			"post_dummy" => '1'
1802
+		);
1803
+		break;
1804
+
1805
+	////post end///
1806
+	/// Restaurants ////post start 10///
1807 1807
 } // end of switch
1808 1808
 
1809 1809
 
1810 1810
 foreach ($post_info as $post_info) {
1811
-    $default_location = geodir_get_default_location();
1812
-    if ($city_bound_lat1 > $city_bound_lat2)
1813
-        $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1));
1814
-    else
1815
-        $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2));
1811
+	$default_location = geodir_get_default_location();
1812
+	if ($city_bound_lat1 > $city_bound_lat2)
1813
+		$dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1));
1814
+	else
1815
+		$dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2));
1816 1816
 
1817 1817
 
1818
-    if ($city_bound_lng1 > $city_bound_lng2)
1819
-        $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1));
1820
-    else
1821
-        $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2));
1818
+	if ($city_bound_lng1 > $city_bound_lng2)
1819
+		$dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1));
1820
+	else
1821
+		$dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2));
1822 1822
 
1823
-    $load_map = get_option('geodir_load_map');
1823
+	$load_map = get_option('geodir_load_map');
1824 1824
     
1825
-    if ($load_map == 'osm') {
1826
-        $post_address = geodir_get_osm_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude);
1827
-    } else {
1828
-        $post_address = geodir_get_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude);
1829
-    }
1830
-
1831
-    $postal_code = '';
1832
-    if (!empty($post_address)) {
1833
-        if ($load_map == 'osm') {
1834
-            $address = !empty($post_address->formatted_address) ? $post_address->formatted_address : '';
1835
-            $postal_code = !empty($post_address->address->postcode) ? $post_address->address->postcode : '';
1836
-        } else {
1837
-            $addresses = array();
1838
-            $addresses_default = array();
1825
+	if ($load_map == 'osm') {
1826
+		$post_address = geodir_get_osm_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude);
1827
+	} else {
1828
+		$post_address = geodir_get_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude);
1829
+	}
1830
+
1831
+	$postal_code = '';
1832
+	if (!empty($post_address)) {
1833
+		if ($load_map == 'osm') {
1834
+			$address = !empty($post_address->formatted_address) ? $post_address->formatted_address : '';
1835
+			$postal_code = !empty($post_address->address->postcode) ? $post_address->address->postcode : '';
1836
+		} else {
1837
+			$addresses = array();
1838
+			$addresses_default = array();
1839 1839
             
1840
-            foreach ($post_address as $add_key => $add_value) {
1841
-                if ($add_key < 2 && !empty($add_value->long_name)) {
1842
-                    $addresses_default[] = $add_value->long_name;
1843
-                }
1844
-                if ($add_value->types[0] == 'postal_code') {
1845
-                    $postal_code = $add_value->long_name;
1846
-                }
1847
-                if ($add_value->types[0] == 'street_number') {
1848
-                    $addresses[] = $add_value->long_name;
1849
-                }
1850
-                if ($add_value->types[0] == 'route') {
1851
-                    $addresses[] = $add_value->long_name;
1852
-                }
1853
-                if ($add_value->types[0] == 'neighborhood') {
1854
-                    $addresses[] = $add_value->long_name;
1855
-                }
1856
-                if ($add_value->types[0] == 'sublocality') {
1857
-                    $addresses[] = $add_value->long_name;
1858
-                }
1859
-            }
1860
-            $address = !empty($addresses) ? implode(', ', $addresses) : (!empty($addresses_default) ? implode(', ', $addresses_default) : '');
1861
-        }
1862
-
1863
-        $post_info['post_address'] = !empty($address) ? $address : $default_location->city;
1864
-        $post_info['post_city'] = $default_location->city;
1865
-        $post_info['post_region'] = $default_location->region;
1866
-        $post_info['post_country'] = $default_location->country;
1867
-        $post_info['post_zip'] = $postal_code;
1868
-        $post_info['post_latitude'] = $dummy_post_latitude;
1869
-        $post_info['post_longitude'] = $dummy_post_longitude;
1870
-    }
1840
+			foreach ($post_address as $add_key => $add_value) {
1841
+				if ($add_key < 2 && !empty($add_value->long_name)) {
1842
+					$addresses_default[] = $add_value->long_name;
1843
+				}
1844
+				if ($add_value->types[0] == 'postal_code') {
1845
+					$postal_code = $add_value->long_name;
1846
+				}
1847
+				if ($add_value->types[0] == 'street_number') {
1848
+					$addresses[] = $add_value->long_name;
1849
+				}
1850
+				if ($add_value->types[0] == 'route') {
1851
+					$addresses[] = $add_value->long_name;
1852
+				}
1853
+				if ($add_value->types[0] == 'neighborhood') {
1854
+					$addresses[] = $add_value->long_name;
1855
+				}
1856
+				if ($add_value->types[0] == 'sublocality') {
1857
+					$addresses[] = $add_value->long_name;
1858
+				}
1859
+			}
1860
+			$address = !empty($addresses) ? implode(', ', $addresses) : (!empty($addresses_default) ? implode(', ', $addresses_default) : '');
1861
+		}
1862
+
1863
+		$post_info['post_address'] = !empty($address) ? $address : $default_location->city;
1864
+		$post_info['post_city'] = $default_location->city;
1865
+		$post_info['post_region'] = $default_location->region;
1866
+		$post_info['post_country'] = $default_location->country;
1867
+		$post_info['post_zip'] = $postal_code;
1868
+		$post_info['post_latitude'] = $dummy_post_latitude;
1869
+		$post_info['post_longitude'] = $dummy_post_longitude;
1870
+	}
1871 1871
     
1872
-    geodir_save_listing($post_info, true);
1872
+	geodir_save_listing($post_info, true);
1873 1873
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 $post_meta = array();
13 13
 
14 14
 if (geodir_dummy_folder_exists())
15
-    $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy";
15
+    $dummy_image_url = geodir_plugin_url()."/geodirectory-admin/dummy";
16 16
 else
17 17
     $dummy_image_url = 'http://www.wpgeodirectory.com/dummy';
18 18
 
Please login to merge, or discard this patch.
Braces   +17 added lines, -14 removed lines patch added patch discarded remove patch
@@ -11,10 +11,11 @@  discard block
 block discarded – undo
11 11
 $image_array = array();
12 12
 $post_meta = array();
13 13
 
14
-if (geodir_dummy_folder_exists())
15
-    $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy";
16
-else
17
-    $dummy_image_url = 'http://www.wpgeodirectory.com/dummy';
14
+if (geodir_dummy_folder_exists()) {
15
+    $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy";
16
+} else {
17
+    $dummy_image_url = 'http://www.wpgeodirectory.com/dummy';
18
+}
18 19
 
19 20
 $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url);
20 21
 
@@ -1809,16 +1810,18 @@  discard block
 block discarded – undo
1809 1810
 
1810 1811
 foreach ($post_info as $post_info) {
1811 1812
     $default_location = geodir_get_default_location();
1812
-    if ($city_bound_lat1 > $city_bound_lat2)
1813
-        $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1));
1814
-    else
1815
-        $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2));
1816
-
1817
-
1818
-    if ($city_bound_lng1 > $city_bound_lng2)
1819
-        $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1));
1820
-    else
1821
-        $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2));
1813
+    if ($city_bound_lat1 > $city_bound_lat2) {
1814
+            $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1));
1815
+    } else {
1816
+            $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2));
1817
+    }
1818
+
1819
+
1820
+    if ($city_bound_lng1 > $city_bound_lng2) {
1821
+            $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1));
1822
+    } else {
1823
+            $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2));
1824
+    }
1822 1825
 
1823 1826
     $load_map = get_option('geodir_load_map');
1824 1827
     
Please login to merge, or discard this patch.
geodirectory-templates/listing-detail.php 2 patches
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 
12 12
 // We are submitting iframes etc so we turn this off to allow them to show on preview.
13 13
 if(geodir_is_page('preview')){
14
-    header("X-XSS-Protection: 0");
14
+	header("X-XSS-Protection: 0");
15 15
 }
16 16
 
17 17
 
@@ -38,12 +38,12 @@  discard block
 block discarded – undo
38 38
 
39 39
 ###### SIDEBAR ON LEFT ######
40 40
 if (get_option('geodir_detail_sidebar_left_section')) {
41
-    /**
42
-     * Adds the details page sidebar to the details template page.
43
-     *
44
-     * @since 1.1.0
45
-     */
46
-    do_action('geodir_detail_sidebar');
41
+	/**
42
+	 * Adds the details page sidebar to the details template page.
43
+	 *
44
+	 * @since 1.1.0
45
+	 */
46
+	do_action('geodir_detail_sidebar');
47 47
 }
48 48
 
49 49
 ###### MAIN CONTENT WRAPPERS OPEN ######
@@ -72,29 +72,29 @@  discard block
 block discarded – undo
72 72
 // this call the main page content
73 73
 global $preview;
74 74
 if (have_posts() && !$preview) {
75
-    the_post();
76
-    global $post, $post_images;
77
-    /**
78
-     * Calls the details page main content on the details template page.
79
-     *
80
-     * @since 1.1.0
81
-     * @param object $post The current post object.
82
-     */
83
-    do_action('geodir_details_main_content', $post);
75
+	the_post();
76
+	global $post, $post_images;
77
+	/**
78
+	 * Calls the details page main content on the details template page.
79
+	 *
80
+	 * @since 1.1.0
81
+	 * @param object $post The current post object.
82
+	 */
83
+	do_action('geodir_details_main_content', $post);
84 84
 } elseif ($preview) {
85
-    /**
86
-     * Called on the details page if the page is being previewed.
87
-     *
88
-     * This sets the value of `$post` to the preview values before the main content is called.
89
-     *
90
-     * @since 1.1.0
91
-     */
92
-    do_action('geodir_action_geodir_set_preview_post'); // set the $post to the preview values
93
-    if (defined( 'GD_TESTING_MODE' )) {
94
-        global $post;
95
-    }
96
-    /** This action is documented in geodirectory-templates/listing-detail.php */
97
-    do_action('geodir_details_main_content', $post);
85
+	/**
86
+	 * Called on the details page if the page is being previewed.
87
+	 *
88
+	 * This sets the value of `$post` to the preview values before the main content is called.
89
+	 *
90
+	 * @since 1.1.0
91
+	 */
92
+	do_action('geodir_action_geodir_set_preview_post'); // set the $post to the preview values
93
+	if (defined( 'GD_TESTING_MODE' )) {
94
+		global $post;
95
+	}
96
+	/** This action is documented in geodirectory-templates/listing-detail.php */
97
+	do_action('geodir_details_main_content', $post);
98 98
 }
99 99
 
100 100
 /** This action is documented in geodirectory-templates/geodir-home.php */
@@ -118,8 +118,8 @@  discard block
 block discarded – undo
118 118
 
119 119
 ###### SIDEBAR ON RIGHT ######
120 120
 if (!get_option('geodir_detail_sidebar_left_section')) {
121
-    /** This action is documented in geodirectory-templates/listing-detail.php */
122
-    do_action('geodir_detail_sidebar');
121
+	/** This action is documented in geodirectory-templates/listing-detail.php */
122
+	do_action('geodir_detail_sidebar');
123 123
 }
124 124
 
125 125
 
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // We are submitting iframes etc so we turn this off to allow them to show on preview.
13
-if(geodir_is_page('preview')){
13
+if (geodir_is_page('preview')) {
14 14
     header("X-XSS-Protection: 0");
15 15
 }
16 16
 
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
  * @param string $itemtype The itemtype value of the HTML element.
64 64
  * @see 'geodir_article_close'
65 65
  */
66
-do_action('geodir_article_open', 'details-page', 'post-' . get_the_ID(), get_post_class(), '');
66
+do_action('geodir_article_open', 'details-page', 'post-'.get_the_ID(), get_post_class(), '');
67 67
 
68 68
 ###### MAIN CONTENT ######
69 69
 /** This action is documented in geodirectory-templates/geodir-home.php */
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      * @since 1.1.0
91 91
      */
92 92
     do_action('geodir_action_geodir_set_preview_post'); // set the $post to the preview values
93
-    if (defined( 'GD_TESTING_MODE' )) {
93
+    if (defined('GD_TESTING_MODE')) {
94 94
         global $post;
95 95
     }
96 96
     /** This action is documented in geodirectory-templates/listing-detail.php */
Please login to merge, or discard this patch.
geodirectory-functions/general_functions.php 4 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2301,7 +2301,7 @@  discard block
 block discarded – undo
2301 2301
  * @global string $table_prefix  WordPress Database Table prefix.
2302 2302
  *
2303 2303
  * @param array $query_args      The query array.
2304
- * @param  int|bool $count_only  If true returns listings count only, otherwise returns array
2304
+ * @param  boolean $count_only  If true returns listings count only, otherwise returns array
2305 2305
  *
2306 2306
  * @return mixed Result object.
2307 2307
  */
@@ -3958,7 +3958,7 @@  discard block
 block discarded – undo
3958 3958
  * @since   1.0.0
3959 3959
  * @since   1.6.1 Fixed add listing page load time.
3960 3960
  * @package GeoDirectory
3961
- * @return bool
3961
+ * @return null|boolean
3962 3962
  */
3963 3963
 function geodir_term_review_count_force_update( $new_status, $old_status = '', $post = '' ) {
3964 3964
 	if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'geodir_import_export' ) {
Please login to merge, or discard this patch.
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
 			break;
302 302
 		case 'preview':
303 303
 			if ( ( is_page() && get_query_var( 'page_id' ) == geodir_preview_page_id() ) && isset( $_REQUEST['listing_type'] )
304
-			     && in_array( $_REQUEST['listing_type'], geodir_get_posttypes() )
304
+				 && in_array( $_REQUEST['listing_type'], geodir_get_posttypes() )
305 305
 			) {
306 306
 				return true;
307 307
 			}
@@ -505,9 +505,9 @@  discard block
 block discarded – undo
505 505
 
506 506
 //check if homepage
507 507
 		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] )
508
-		     && ! isset( $wp->query_vars['page_id'] )
509
-		     && ! isset( $wp->query_vars['pagename'] )
510
-		     && is_page_geodir_home()
508
+			 && ! isset( $wp->query_vars['page_id'] )
509
+			 && ! isset( $wp->query_vars['pagename'] )
510
+			 && is_page_geodir_home()
511 511
 		) {
512 512
 			$wp->query_vars['gd_is_geodir_page'] = true;
513 513
 		}
@@ -692,8 +692,8 @@  discard block
 block discarded – undo
692 692
 		$deltaLatitude  = deg2rad( (float) $point2['latitude'] - (float) $point1['latitude'] );
693 693
 		$deltaLongitude = deg2rad( (float) $point2['longitude'] - (float) $point1['longitude'] );
694 694
 		$a              = sin( $deltaLatitude / 2 ) * sin( $deltaLatitude / 2 ) +
695
-		                  cos( deg2rad( (float) $point1['latitude'] ) ) * cos( deg2rad( (float) $point2['latitude'] ) ) *
696
-		                  sin( $deltaLongitude / 2 ) * sin( $deltaLongitude / 2 );
695
+						  cos( deg2rad( (float) $point1['latitude'] ) ) * cos( deg2rad( (float) $point2['latitude'] ) ) *
696
+						  sin( $deltaLongitude / 2 ) * sin( $deltaLongitude / 2 );
697 697
 		$c              = 2 * atan2( sqrt( $a ), sqrt( 1 - $a ) );
698 698
 		$distance       = $earthMeanRadius * $c;
699 699
 
Please login to merge, or discard this patch.
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,8 +29,10 @@  discard block
 block discarded – undo
29 29
 
30 30
 	if ( is_ssl() ) :
31 31
 		return str_replace( 'http://', 'https://', WP_PLUGIN_URL ) . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
32
-	else :
33
-		return WP_PLUGIN_URL . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
32
+	else {
33
+		:
34
+		return WP_PLUGIN_URL . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
35
+	}
34 36
 	endif;
35 37
 }
36 38
 
@@ -1496,12 +1498,14 @@  discard block
 block discarded – undo
1496 1498
 	 */
1497 1499
 	function geodir_allow_wpadmin() {
1498 1500
 		global $wpdb;
1499
-		if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) // checking action in request to allow ajax request go through
1501
+		if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) {
1502
+			// checking action in request to allow ajax request go through
1500 1503
 		{
1501 1504
 			if ( current_user_can( 'administrator' ) ) {
1502 1505
 			} else {
1503 1506
 
1504
-				wp_redirect( home_url() );
1507
+				wp_redirect( home_url() );
1508
+		}
1505 1509
 				exit;
1506 1510
 			}
1507 1511
 
Please login to merge, or discard this patch.
Spacing   +1325 added lines, -1325 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 /**
11 11
  * Get All Plugin functions from WordPress
12 12
  */
13
-include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
13
+include_once(ABSPATH.'wp-admin/includes/plugin.php');
14 14
 
15 15
 /*-----------------------------------------------------------------------------------*/
16 16
 /* Helper functions */
@@ -27,10 +27,10 @@  discard block
 block discarded – undo
27 27
  */
28 28
 function geodir_plugin_url() {
29 29
 
30
-	if ( is_ssl() ) :
31
-		return str_replace( 'http://', 'https://', WP_PLUGIN_URL ) . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
30
+	if (is_ssl()) :
31
+		return str_replace('http://', 'https://', WP_PLUGIN_URL)."/".plugin_basename(dirname(dirname(__FILE__)));
32 32
 	else :
33
-		return WP_PLUGIN_URL . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
33
+		return WP_PLUGIN_URL."/".plugin_basename(dirname(dirname(__FILE__)));
34 34
 	endif;
35 35
 }
36 36
 
@@ -45,10 +45,10 @@  discard block
 block discarded – undo
45 45
  * @return string example url eg: /home/geo/public_html/wp-content/plugins/geodirectory
46 46
  */
47 47
 function geodir_plugin_path() {
48
-	if ( defined( 'GD_TESTING_MODE' ) && GD_TESTING_MODE ) {
49
-		return dirname( dirname( __FILE__ ) );
48
+	if (defined('GD_TESTING_MODE') && GD_TESTING_MODE) {
49
+		return dirname(dirname(__FILE__));
50 50
 	} else {
51
-		return WP_PLUGIN_DIR . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
51
+		return WP_PLUGIN_DIR."/".plugin_basename(dirname(dirname(__FILE__)));
52 52
 	}
53 53
 }
54 54
 
@@ -63,10 +63,10 @@  discard block
 block discarded – undo
63 63
  * @return bool true or false.
64 64
  * @todo    check if this is faster than normal WP check and remove if not.
65 65
  */
66
-function geodir_is_plugin_active( $plugin ) {
67
-	$active_plugins = get_option( 'active_plugins' );
68
-	foreach ( $active_plugins as $key => $active_plugin ) {
69
-		if ( strstr( $active_plugin, $plugin ) ) {
66
+function geodir_is_plugin_active($plugin) {
67
+	$active_plugins = get_option('active_plugins');
68
+	foreach ($active_plugins as $key => $active_plugin) {
69
+		if (strstr($active_plugin, $plugin)) {
70 70
 			return true;
71 71
 		}
72 72
 	}
@@ -88,8 +88,8 @@  discard block
 block discarded – undo
88 88
  *
89 89
  * @return bool|int|string the formatted date.
90 90
  */
91
-function geodir_get_formated_date( $date ) {
92
-	return mysql2date( get_option( 'date_format' ), $date );
91
+function geodir_get_formated_date($date) {
92
+	return mysql2date(get_option('date_format'), $date);
93 93
 }
94 94
 
95 95
 /**
@@ -105,8 +105,8 @@  discard block
 block discarded – undo
105 105
  *
106 106
  * @return bool|int|string the formatted time.
107 107
  */
108
-function geodir_get_formated_time( $time ) {
109
-	return mysql2date( get_option( 'time_format' ), $time, $translate = true );
108
+function geodir_get_formated_time($time) {
109
+	return mysql2date(get_option('time_format'), $time, $translate = true);
110 110
 }
111 111
 
112 112
 
@@ -124,35 +124,35 @@  discard block
 block discarded – undo
124 124
  *
125 125
  * @return string Formatted link.
126 126
  */
127
-function geodir_getlink( $url, $params = array(), $use_existing_arguments = false ) {
128
-	if ( $use_existing_arguments ) {
127
+function geodir_getlink($url, $params = array(), $use_existing_arguments = false) {
128
+	if ($use_existing_arguments) {
129 129
 		$params = $params + $_GET;
130 130
 	}
131
-	if ( ! $params ) {
131
+	if (!$params) {
132 132
 		return $url;
133 133
 	}
134 134
 	$link = $url;
135
-	if ( strpos( $link, '?' ) === false ) {
135
+	if (strpos($link, '?') === false) {
136 136
 		$link .= '?';
137 137
 	} //If there is no '?' add one at the end
138
-	elseif ( strpos( $link, '//maps.google.com/maps/api/js?language=' ) ) {
138
+	elseif (strpos($link, '//maps.google.com/maps/api/js?language=')) {
139 139
 		$link .= '&amp;';
140 140
 	} //If there is no '&' at the END, add one.
141
-	elseif ( ! preg_match( '/(\?|\&(amp;)?)$/', $link ) ) {
141
+	elseif (!preg_match('/(\?|\&(amp;)?)$/', $link)) {
142 142
 		$link .= '&';
143 143
 	} //If there is no '&' at the END, add one.
144 144
 
145 145
 	$params_arr = array();
146
-	foreach ( $params as $key => $value ) {
147
-		if ( gettype( $value ) == 'array' ) { //Handle array data properly
148
-			foreach ( $value as $val ) {
149
-				$params_arr[] = $key . '[]=' . urlencode( $val );
146
+	foreach ($params as $key => $value) {
147
+		if (gettype($value) == 'array') { //Handle array data properly
148
+			foreach ($value as $val) {
149
+				$params_arr[] = $key.'[]='.urlencode($val);
150 150
 			}
151 151
 		} else {
152
-			$params_arr[] = $key . '=' . urlencode( $value );
152
+			$params_arr[] = $key.'='.urlencode($value);
153 153
 		}
154 154
 	}
155
-	$link .= implode( '&', $params_arr );
155
+	$link .= implode('&', $params_arr);
156 156
 
157 157
 	return $link;
158 158
 }
@@ -169,18 +169,18 @@  discard block
 block discarded – undo
169 169
  *
170 170
  * @return string Listing page url if valid. Otherwise home url will be returned.
171 171
  */
172
-function geodir_get_addlisting_link( $post_type = '' ) {
172
+function geodir_get_addlisting_link($post_type = '') {
173 173
 	global $wpdb;
174 174
 
175 175
 	//$check_pkg  = $wpdb->get_var("SELECT pid FROM ".GEODIR_PRICE_TABLE." WHERE post_type='".$post_type."' and status != '0'");
176 176
 	$check_pkg = 1;
177
-	if ( post_type_exists( $post_type ) && $check_pkg ) {
177
+	if (post_type_exists($post_type) && $check_pkg) {
178 178
 
179
-		$add_listing_link = get_page_link( geodir_add_listing_page_id() );
179
+		$add_listing_link = get_page_link(geodir_add_listing_page_id());
180 180
 
181
-		return esc_url( add_query_arg( array( 'listing_type' => $post_type ), $add_listing_link ) );
181
+		return esc_url(add_query_arg(array('listing_type' => $post_type), $add_listing_link));
182 182
 	} else {
183
-		return get_bloginfo( 'url' );
183
+		return get_bloginfo('url');
184 184
 	}
185 185
 }
186 186
 
@@ -194,11 +194,11 @@  discard block
 block discarded – undo
194 194
  */
195 195
 function geodir_curPageURL() {
196 196
 	$pageURL = 'http';
197
-	if ( isset( $_SERVER["HTTPS"] ) && $_SERVER["HTTPS"] == "on" ) {
197
+	if (isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == "on") {
198 198
 		$pageURL .= "s";
199 199
 	}
200 200
 	$pageURL .= "://";
201
-	$pageURL .= $_SERVER["SERVER_NAME"] . $_SERVER["REQUEST_URI"];
201
+	$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
202 202
 
203 203
 	/**
204 204
 	 * Filter the current page URL returned by function geodir_curPageURL().
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
 	 *
208 208
 	 * @param string $pageURL The URL of the current page.
209 209
 	 */
210
-	return apply_filters( 'geodir_curPageURL', $pageURL );
210
+	return apply_filters('geodir_curPageURL', $pageURL);
211 211
 }
212 212
 
213 213
 
@@ -223,12 +223,12 @@  discard block
 block discarded – undo
223 223
  *
224 224
  * @return string Cleaned variable.
225 225
  */
226
-function geodir_clean( $string ) {
226
+function geodir_clean($string) {
227 227
 
228
-	$string = trim( strip_tags( stripslashes( $string ) ) );
229
-	$string = str_replace( " ", "-", $string ); // Replaces all spaces with hyphens.
230
-	$string = preg_replace( '/[^A-Za-z0-9\-\_]/', '', $string ); // Removes special chars.
231
-	$string = preg_replace( '/-+/', '-', $string ); // Replaces multiple hyphens with single one.
228
+	$string = trim(strip_tags(stripslashes($string)));
229
+	$string = str_replace(" ", "-", $string); // Replaces all spaces with hyphens.
230
+	$string = preg_replace('/[^A-Za-z0-9\-\_]/', '', $string); // Removes special chars.
231
+	$string = preg_replace('/-+/', '-', $string); // Replaces multiple hyphens with single one.
232 232
 
233 233
 	return $string;
234 234
 }
@@ -242,13 +242,13 @@  discard block
 block discarded – undo
242 242
  */
243 243
 function geodir_get_weekday() {
244 244
 	return array(
245
-		__( 'Sunday', 'geodirectory' ),
246
-		__( 'Monday', 'geodirectory' ),
247
-		__( 'Tuesday', 'geodirectory' ),
248
-		__( 'Wednesday', 'geodirectory' ),
249
-		__( 'Thursday', 'geodirectory' ),
250
-		__( 'Friday', 'geodirectory' ),
251
-		__( 'Saturday', 'geodirectory' )
245
+		__('Sunday', 'geodirectory'),
246
+		__('Monday', 'geodirectory'),
247
+		__('Tuesday', 'geodirectory'),
248
+		__('Wednesday', 'geodirectory'),
249
+		__('Thursday', 'geodirectory'),
250
+		__('Friday', 'geodirectory'),
251
+		__('Saturday', 'geodirectory')
252 252
 	);
253 253
 }
254 254
 
@@ -261,11 +261,11 @@  discard block
 block discarded – undo
261 261
  */
262 262
 function geodir_get_weeks() {
263 263
 	return array(
264
-		__( 'First', 'geodirectory' ),
265
-		__( 'Second', 'geodirectory' ),
266
-		__( 'Third', 'geodirectory' ),
267
-		__( 'Fourth', 'geodirectory' ),
268
-		__( 'Last', 'geodirectory' )
264
+		__('First', 'geodirectory'),
265
+		__('Second', 'geodirectory'),
266
+		__('Third', 'geodirectory'),
267
+		__('Fourth', 'geodirectory'),
268
+		__('Last', 'geodirectory')
269 269
 	);
270 270
 }
271 271
 
@@ -284,112 +284,112 @@  discard block
 block discarded – undo
284 284
  *
285 285
  * @return bool If valid returns true. Otherwise false.
286 286
  */
287
-function geodir_is_page( $gdpage = '' ) {
287
+function geodir_is_page($gdpage = '') {
288 288
 
289 289
 	global $wp_query, $post, $wp;
290 290
 	//if(!is_admin()):
291 291
 
292
-	switch ( $gdpage ):
292
+	switch ($gdpage):
293 293
 		case 'add-listing':
294 294
 
295
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_add_listing_page_id() ) {
295
+			if (is_page() && get_query_var('page_id') == geodir_add_listing_page_id()) {
296 296
 				return true;
297
-			} elseif ( is_page() && isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
297
+			} elseif (is_page() && isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
298 298
 				return true;
299 299
 			}
300 300
 
301 301
 			break;
302 302
 		case 'preview':
303
-			if ( ( is_page() && get_query_var( 'page_id' ) == geodir_preview_page_id() ) && isset( $_REQUEST['listing_type'] )
304
-			     && in_array( $_REQUEST['listing_type'], geodir_get_posttypes() )
303
+			if ((is_page() && get_query_var('page_id') == geodir_preview_page_id()) && isset($_REQUEST['listing_type'])
304
+			     && in_array($_REQUEST['listing_type'], geodir_get_posttypes())
305 305
 			) {
306 306
 				return true;
307 307
 			}
308 308
 			break;
309 309
 		case 'listing-success':
310
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_success_page_id() ) {
310
+			if (is_page() && get_query_var('page_id') == geodir_success_page_id()) {
311 311
 				return true;
312 312
 			}
313 313
 			break;
314 314
 		case 'detail':
315
-			$post_type = get_query_var( 'post_type' );
316
-			if ( is_array( $post_type ) ) {
317
-				$post_type = reset( $post_type );
315
+			$post_type = get_query_var('post_type');
316
+			if (is_array($post_type)) {
317
+				$post_type = reset($post_type);
318 318
 			}
319
-			if ( is_single() && in_array( $post_type, geodir_get_posttypes() ) ) {
319
+			if (is_single() && in_array($post_type, geodir_get_posttypes())) {
320 320
 				return true;
321 321
 			}
322 322
 			break;
323 323
 		case 'pt':
324
-			$post_type = get_query_var( 'post_type' );
325
-			if ( is_array( $post_type ) ) {
326
-				$post_type = reset( $post_type );
324
+			$post_type = get_query_var('post_type');
325
+			if (is_array($post_type)) {
326
+				$post_type = reset($post_type);
327 327
 			}
328
-			if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) && ! is_tax() ) {
328
+			if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes()) && !is_tax()) {
329 329
 				return true;
330 330
 			}
331 331
 
332 332
 			break;
333 333
 		case 'listing':
334
-			if ( is_tax() && geodir_get_taxonomy_posttype() ) {
334
+			if (is_tax() && geodir_get_taxonomy_posttype()) {
335 335
 				global $current_term, $taxonomy, $term;
336 336
 
337 337
 				return true;
338 338
 			}
339
-			$post_type = get_query_var( 'post_type' );
340
-			if ( is_array( $post_type ) ) {
341
-				$post_type = reset( $post_type );
339
+			$post_type = get_query_var('post_type');
340
+			if (is_array($post_type)) {
341
+				$post_type = reset($post_type);
342 342
 			}
343
-			if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) ) {
343
+			if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes())) {
344 344
 				return true;
345 345
 			}
346 346
 
347 347
 			break;
348 348
 		case 'home':
349 349
 
350
-			if ( ( is_page() && get_query_var( 'page_id' ) == geodir_home_page_id() ) || is_page_geodir_home() ) {
350
+			if ((is_page() && get_query_var('page_id') == geodir_home_page_id()) || is_page_geodir_home()) {
351 351
 				return true;
352 352
 			}
353 353
 
354 354
 			break;
355 355
 		case 'location':
356
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_location_page_id() ) {
356
+			if (is_page() && get_query_var('page_id') == geodir_location_page_id()) {
357 357
 				return true;
358 358
 			}
359 359
 			break;
360 360
 		case 'author':
361
-			if ( is_author() && isset( $_REQUEST['geodir_dashbord'] ) ) {
361
+			if (is_author() && isset($_REQUEST['geodir_dashbord'])) {
362 362
 				return true;
363 363
 			}
364 364
 
365
-			if ( function_exists( 'bp_loggedin_user_id' ) && function_exists( 'bp_displayed_user_id' ) && $my_id = (int) bp_loggedin_user_id() ) {
366
-				if ( ( (bool) bp_is_current_component( 'listings' ) || (bool) bp_is_current_component( 'favorites' ) ) && $my_id > 0 && $my_id == (int) bp_displayed_user_id() ) {
365
+			if (function_exists('bp_loggedin_user_id') && function_exists('bp_displayed_user_id') && $my_id = (int) bp_loggedin_user_id()) {
366
+				if (((bool) bp_is_current_component('listings') || (bool) bp_is_current_component('favorites')) && $my_id > 0 && $my_id == (int) bp_displayed_user_id()) {
367 367
 					return true;
368 368
 				}
369 369
 			}
370 370
 			break;
371 371
 		case 'search':
372
-			if ( is_search() && isset( $_REQUEST['geodir_search'] ) ) {
372
+			if (is_search() && isset($_REQUEST['geodir_search'])) {
373 373
 				return true;
374 374
 			}
375 375
 			break;
376 376
 		case 'info':
377
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_info_page_id() ) {
377
+			if (is_page() && get_query_var('page_id') == geodir_info_page_id()) {
378 378
 				return true;
379 379
 			}
380 380
 			break;
381 381
 		case 'login':
382
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_login_page_id() ) {
382
+			if (is_page() && get_query_var('page_id') == geodir_login_page_id()) {
383 383
 				return true;
384 384
 			}
385 385
 			break;
386 386
 		case 'checkout':
387
-			if ( is_page() && function_exists( 'geodir_payment_checkout_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_checkout_page_id() ) {
387
+			if (is_page() && function_exists('geodir_payment_checkout_page_id') && get_query_var('page_id') == geodir_payment_checkout_page_id()) {
388 388
 				return true;
389 389
 			}
390 390
 			break;
391 391
 		case 'invoices':
392
-			if ( is_page() && function_exists( 'geodir_payment_invoices_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_invoices_page_id() ) {
392
+			if (is_page() && function_exists('geodir_payment_invoices_page_id') && get_query_var('page_id') == geodir_payment_invoices_page_id()) {
393 393
 				return true;
394 394
 			}
395 395
 			break;
@@ -414,28 +414,28 @@  discard block
 block discarded – undo
414 414
  *
415 415
  * @param object $wp WordPress object.
416 416
  */
417
-function geodir_set_is_geodir_page( $wp ) {
418
-	if ( ! is_admin() ) {
417
+function geodir_set_is_geodir_page($wp) {
418
+	if (!is_admin()) {
419 419
 		//$wp->query_vars['gd_is_geodir_page'] = false;
420 420
 		//print_r()
421
-		if ( empty( $wp->query_vars ) || ! array_diff( array_keys( $wp->query_vars ), array(
421
+		if (empty($wp->query_vars) || !array_diff(array_keys($wp->query_vars), array(
422 422
 				'preview',
423 423
 				'page',
424 424
 				'paged',
425 425
 				'cpage'
426
-			) )
426
+			))
427 427
 		) {
428
-			if ( get_option( 'geodir_set_as_home' ) ) {
428
+			if (get_option('geodir_set_as_home')) {
429 429
 				$wp->query_vars['gd_is_geodir_page'] = true;
430 430
 			}
431
-			if ( geodir_is_page( 'home' ) ) {
431
+			if (geodir_is_page('home')) {
432 432
 				$wp->query_vars['gd_is_geodir_page'] = true;
433 433
 			}
434 434
 
435 435
 
436 436
 		}
437 437
 
438
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['page_id'] ) ) {
438
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['page_id'])) {
439 439
 			if (
440 440
 				$wp->query_vars['page_id'] == geodir_add_listing_page_id()
441 441
 				|| $wp->query_vars['page_id'] == geodir_preview_page_id()
@@ -444,26 +444,26 @@  discard block
 block discarded – undo
444 444
 				|| $wp->query_vars['page_id'] == geodir_home_page_id()
445 445
 				|| $wp->query_vars['page_id'] == geodir_info_page_id()
446 446
 				|| $wp->query_vars['page_id'] == geodir_login_page_id()
447
-				|| ( function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() )
448
-				|| ( function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() )
447
+				|| (function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
448
+				|| (function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
449 449
 			) {
450 450
 				$wp->query_vars['gd_is_geodir_page'] = true;
451 451
 			}
452 452
 		}
453 453
 
454
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['pagename'] ) ) {
455
-			$page = get_page_by_path( $wp->query_vars['pagename'] );
454
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['pagename'])) {
455
+			$page = get_page_by_path($wp->query_vars['pagename']);
456 456
 
457
-			if ( ! empty( $page ) && (
457
+			if (!empty($page) && (
458 458
 					$page->ID == geodir_add_listing_page_id()
459 459
 					|| $page->ID == geodir_preview_page_id()
460 460
 					|| $page->ID == geodir_success_page_id()
461 461
 					|| $page->ID == geodir_location_page_id()
462
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_home_page_id() )
463
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_info_page_id() )
464
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_login_page_id() )
465
-					|| ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() )
466
-					|| ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() )
462
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_home_page_id())
463
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_info_page_id())
464
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_login_page_id())
465
+					|| (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
466
+					|| (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
467 467
 				)
468 468
 			) {
469 469
 				$wp->query_vars['gd_is_geodir_page'] = true;
@@ -471,20 +471,20 @@  discard block
 block discarded – undo
471 471
 		}
472 472
 
473 473
 
474
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['post_type'] ) && $wp->query_vars['post_type'] != '' ) {
474
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['post_type']) && $wp->query_vars['post_type'] != '') {
475 475
 			$requested_post_type = $wp->query_vars['post_type'];
476 476
 			// check if this post type is geodirectory post types
477 477
 			$post_type_array = geodir_get_posttypes();
478
-			if ( in_array( $requested_post_type, $post_type_array ) ) {
478
+			if (in_array($requested_post_type, $post_type_array)) {
479 479
 				$wp->query_vars['gd_is_geodir_page'] = true;
480 480
 			}
481 481
 		}
482 482
 
483
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) ) {
484
-			$geodir_taxonomis = geodir_get_taxonomies( '', true );
485
-			if ( ! empty( $geodir_taxonomis ) ) {
486
-				foreach ( $geodir_taxonomis as $taxonomy ) {
487
-					if ( array_key_exists( $taxonomy, $wp->query_vars ) ) {
483
+		if (!isset($wp->query_vars['gd_is_geodir_page'])) {
484
+			$geodir_taxonomis = geodir_get_taxonomies('', true);
485
+			if (!empty($geodir_taxonomis)) {
486
+				foreach ($geodir_taxonomis as $taxonomy) {
487
+					if (array_key_exists($taxonomy, $wp->query_vars)) {
488 488
 						$wp->query_vars['gd_is_geodir_page'] = true;
489 489
 						break;
490 490
 					}
@@ -493,20 +493,20 @@  discard block
 block discarded – undo
493 493
 
494 494
 		}
495 495
 
496
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['author_name'] ) && isset( $_REQUEST['geodir_dashbord'] ) ) {
496
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['author_name']) && isset($_REQUEST['geodir_dashbord'])) {
497 497
 			$wp->query_vars['gd_is_geodir_page'] = true;
498 498
 		}
499 499
 
500 500
 
501
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $_REQUEST['geodir_search'] ) ) {
501
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($_REQUEST['geodir_search'])) {
502 502
 			$wp->query_vars['gd_is_geodir_page'] = true;
503 503
 		}
504 504
 
505 505
 
506 506
 //check if homepage
507
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] )
508
-		     && ! isset( $wp->query_vars['page_id'] )
509
-		     && ! isset( $wp->query_vars['pagename'] )
507
+		if (!isset($wp->query_vars['gd_is_geodir_page'])
508
+		     && !isset($wp->query_vars['page_id'])
509
+		     && !isset($wp->query_vars['pagename'])
510 510
 		     && is_page_geodir_home()
511 511
 		) {
512 512
 			$wp->query_vars['gd_is_geodir_page'] = true;
@@ -530,14 +530,14 @@  discard block
 block discarded – undo
530 530
  */
531 531
 function geodir_is_geodir_page() {
532 532
 	global $wp;
533
-	if ( isset( $wp->query_vars['gd_is_geodir_page'] ) && $wp->query_vars['gd_is_geodir_page'] ) {
533
+	if (isset($wp->query_vars['gd_is_geodir_page']) && $wp->query_vars['gd_is_geodir_page']) {
534 534
 		return true;
535 535
 	} else {
536 536
 		return false;
537 537
 	}
538 538
 }
539 539
 
540
-if ( ! function_exists( 'geodir_get_imagesize' ) ) {
540
+if (!function_exists('geodir_get_imagesize')) {
541 541
 	/**
542 542
 	 * Get image size using the size key .
543 543
 	 *
@@ -548,13 +548,13 @@  discard block
 block discarded – undo
548 548
 	 *
549 549
 	 * @return array|mixed|void|WP_Error If valid returns image size. Else returns error.
550 550
 	 */
551
-	function geodir_get_imagesize( $size = '' ) {
551
+	function geodir_get_imagesize($size = '') {
552 552
 
553 553
 		$imagesizes = array(
554
-			'list-thumb'   => array( 'w' => 283, 'h' => 188 ),
555
-			'thumbnail'    => array( 'w' => 125, 'h' => 125 ),
556
-			'widget-thumb' => array( 'w' => 50, 'h' => 50 ),
557
-			'slider-thumb' => array( 'w' => 100, 'h' => 100 )
554
+			'list-thumb'   => array('w' => 283, 'h' => 188),
555
+			'thumbnail'    => array('w' => 125, 'h' => 125),
556
+			'widget-thumb' => array('w' => 50, 'h' => 50),
557
+			'slider-thumb' => array('w' => 100, 'h' => 100)
558 558
 		);
559 559
 
560 560
 		/**
@@ -564,9 +564,9 @@  discard block
 block discarded – undo
564 564
 		 *
565 565
 		 * @param array $imagesizes Image size array.
566 566
 		 */
567
-		$imagesizes = apply_filters( 'geodir_imagesizes', $imagesizes );
567
+		$imagesizes = apply_filters('geodir_imagesizes', $imagesizes);
568 568
 
569
-		if ( ! empty( $size ) && array_key_exists( $size, $imagesizes ) ) {
569
+		if (!empty($size) && array_key_exists($size, $imagesizes)) {
570 570
 			/**
571 571
 			 * Filters image size of the passed key.
572 572
 			 *
@@ -574,11 +574,11 @@  discard block
 block discarded – undo
574 574
 			 *
575 575
 			 * @param array $imagesizes [$size] Image size array of the passed key.
576 576
 			 */
577
-			return apply_filters( 'geodir_get_imagesize_' . $size, $imagesizes[ $size ] );
577
+			return apply_filters('geodir_get_imagesize_'.$size, $imagesizes[$size]);
578 578
 
579
-		} elseif ( ! empty( $size ) ) {
579
+		} elseif (!empty($size)) {
580 580
 
581
-			return new WP_Error( 'geodir_no_imagesize', __( "Given image size is not valid", 'geodirectory' ) );
581
+			return new WP_Error('geodir_no_imagesize', __("Given image size is not valid", 'geodirectory'));
582 582
 
583 583
 		}
584 584
 
@@ -602,7 +602,7 @@  discard block
 block discarded – undo
602 602
 */
603 603
 
604 604
 
605
-if ( ! function_exists( 'createRandomString' ) ) {
605
+if (!function_exists('createRandomString')) {
606 606
 	/**
607 607
 	 * Creates random string.
608 608
 	 *
@@ -612,21 +612,21 @@  discard block
 block discarded – undo
612 612
 	 */
613 613
 	function createRandomString() {
614 614
 		$chars = "abcdefghijkmlnopqrstuvwxyz1023456789";
615
-		srand( (double) microtime() * 1000000 );
615
+		srand((double) microtime() * 1000000);
616 616
 		$i       = 0;
617 617
 		$rstring = '';
618
-		while ( $i <= 25 ) {
618
+		while ($i <= 25) {
619 619
 			$num     = rand() % 33;
620
-			$tmp     = substr( $chars, $num, 1 );
621
-			$rstring = $rstring . $tmp;
622
-			$i ++;
620
+			$tmp     = substr($chars, $num, 1);
621
+			$rstring = $rstring.$tmp;
622
+			$i++;
623 623
 		}
624 624
 
625 625
 		return $rstring;
626 626
 	}
627 627
 }
628 628
 
629
-if ( ! function_exists( 'geodir_getDistanceRadius' ) ) {
629
+if (!function_exists('geodir_getDistanceRadius')) {
630 630
 	/**
631 631
 	 * Calculates the distance radius.
632 632
 	 *
@@ -637,9 +637,9 @@  discard block
 block discarded – undo
637 637
 	 *
638 638
 	 * @return float The mean radius.
639 639
 	 */
640
-	function geodir_getDistanceRadius( $uom = 'km' ) {
640
+	function geodir_getDistanceRadius($uom = 'km') {
641 641
 //	Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude
642
-		switch ( geodir_strtolower( $uom ) ):
642
+		switch (geodir_strtolower($uom)):
643 643
 			case 'km'    :
644 644
 				$earthMeanRadius = 6371.009; // km
645 645
 				break;
@@ -671,7 +671,7 @@  discard block
 block discarded – undo
671 671
 }
672 672
 
673 673
 
674
-if ( ! function_exists( 'geodir_calculateDistanceFromLatLong' ) ) {
674
+if (!function_exists('geodir_calculateDistanceFromLatLong')) {
675 675
 	/**
676 676
 	 * Calculate the great circle distance between two points identified by longitude and latitude.
677 677
 	 *
@@ -684,17 +684,17 @@  discard block
 block discarded – undo
684 684
 	 *
685 685
 	 * @return float The distance.
686 686
 	 */
687
-	function geodir_calculateDistanceFromLatLong( $point1, $point2, $uom = 'km' ) {
687
+	function geodir_calculateDistanceFromLatLong($point1, $point2, $uom = 'km') {
688 688
 //	Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude
689 689
 
690
-		$earthMeanRadius = geodir_getDistanceRadius( $uom );
690
+		$earthMeanRadius = geodir_getDistanceRadius($uom);
691 691
 
692
-		$deltaLatitude  = deg2rad( (float) $point2['latitude'] - (float) $point1['latitude'] );
693
-		$deltaLongitude = deg2rad( (float) $point2['longitude'] - (float) $point1['longitude'] );
694
-		$a              = sin( $deltaLatitude / 2 ) * sin( $deltaLatitude / 2 ) +
695
-		                  cos( deg2rad( (float) $point1['latitude'] ) ) * cos( deg2rad( (float) $point2['latitude'] ) ) *
696
-		                  sin( $deltaLongitude / 2 ) * sin( $deltaLongitude / 2 );
697
-		$c              = 2 * atan2( sqrt( $a ), sqrt( 1 - $a ) );
692
+		$deltaLatitude  = deg2rad((float) $point2['latitude'] - (float) $point1['latitude']);
693
+		$deltaLongitude = deg2rad((float) $point2['longitude'] - (float) $point1['longitude']);
694
+		$a              = sin($deltaLatitude / 2) * sin($deltaLatitude / 2) +
695
+		                  cos(deg2rad((float) $point1['latitude'])) * cos(deg2rad((float) $point2['latitude'])) *
696
+		                  sin($deltaLongitude / 2) * sin($deltaLongitude / 2);
697
+		$c              = 2 * atan2(sqrt($a), sqrt(1 - $a));
698 698
 		$distance       = $earthMeanRadius * $c;
699 699
 
700 700
 		return $distance;
@@ -703,7 +703,7 @@  discard block
 block discarded – undo
703 703
 }
704 704
 
705 705
 
706
-if ( ! function_exists( 'geodir_sendEmail' ) ) {
706
+if (!function_exists('geodir_sendEmail')) {
707 707
 	/**
708 708
 	 * The main function that send transactional emails using the args provided.
709 709
 	 *
@@ -722,83 +722,83 @@  discard block
 block discarded – undo
722 722
 	 * @param string $post_id       The post ID.
723 723
 	 * @param string $user_id       The user ID.
724 724
 	 */
725
-	function geodir_sendEmail( $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '' ) {
725
+	function geodir_sendEmail($fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '') {
726 726
 		$login_details = '';
727 727
 
728 728
 		// strip slashes from subject & message text
729
-		$to_subject = stripslashes_deep( $to_subject );
730
-		$to_message = stripslashes_deep( $to_message );
731
-
732
-		if ( $message_type == 'send_friend' ) {
733
-			$subject = get_option( 'geodir_email_friend_subject' );
734
-			$message = get_option( 'geodir_email_friend_content' );
735
-		} elseif ( $message_type == 'send_enquiry' ) {
736
-			$subject = get_option( 'geodir_email_enquiry_subject' );
737
-			$message = get_option( 'geodir_email_enquiry_content' );
738
-		} elseif ( $message_type == 'forgot_password' ) {
739
-			$subject       = get_option( 'geodir_forgot_password_subject' );
740
-			$message       = get_option( 'geodir_forgot_password_content' );
729
+		$to_subject = stripslashes_deep($to_subject);
730
+		$to_message = stripslashes_deep($to_message);
731
+
732
+		if ($message_type == 'send_friend') {
733
+			$subject = get_option('geodir_email_friend_subject');
734
+			$message = get_option('geodir_email_friend_content');
735
+		} elseif ($message_type == 'send_enquiry') {
736
+			$subject = get_option('geodir_email_enquiry_subject');
737
+			$message = get_option('geodir_email_enquiry_content');
738
+		} elseif ($message_type == 'forgot_password') {
739
+			$subject       = get_option('geodir_forgot_password_subject');
740
+			$message       = get_option('geodir_forgot_password_content');
741 741
 			$login_details = $to_message;
742
-		} elseif ( $message_type == 'registration' ) {
743
-			$subject       = get_option( 'geodir_registration_success_email_subject' );
744
-			$message       = get_option( 'geodir_registration_success_email_content' );
742
+		} elseif ($message_type == 'registration') {
743
+			$subject       = get_option('geodir_registration_success_email_subject');
744
+			$message       = get_option('geodir_registration_success_email_content');
745 745
 			$login_details = $to_message;
746
-		} elseif ( $message_type == 'post_submit' ) {
747
-			$subject = get_option( 'geodir_post_submited_success_email_subject' );
748
-			$message = get_option( 'geodir_post_submited_success_email_content' );
749
-		} elseif ( $message_type == 'listing_published' ) {
750
-			$subject = get_option( 'geodir_post_published_email_subject' );
751
-			$message = get_option( 'geodir_post_published_email_content' );
752
-		} elseif ( $message_type == 'listing_edited' ) {
753
-			$subject = get_option( 'geodir_post_edited_email_subject_admin' );
754
-			$message = get_option( 'geodir_post_edited_email_content_admin' );
746
+		} elseif ($message_type == 'post_submit') {
747
+			$subject = get_option('geodir_post_submited_success_email_subject');
748
+			$message = get_option('geodir_post_submited_success_email_content');
749
+		} elseif ($message_type == 'listing_published') {
750
+			$subject = get_option('geodir_post_published_email_subject');
751
+			$message = get_option('geodir_post_published_email_content');
752
+		} elseif ($message_type == 'listing_edited') {
753
+			$subject = get_option('geodir_post_edited_email_subject_admin');
754
+			$message = get_option('geodir_post_edited_email_content_admin');
755 755
 		}
756 756
 
757
-		if ( ! empty( $subject ) ) {
758
-			$subject = __( stripslashes_deep( $subject ), 'geodirectory' );
757
+		if (!empty($subject)) {
758
+			$subject = __(stripslashes_deep($subject), 'geodirectory');
759 759
 		}
760 760
 
761
-		if ( ! empty( $message ) ) {
762
-			$message = __( stripslashes_deep( $message ), 'geodirectory' );
761
+		if (!empty($message)) {
762
+			$message = __(stripslashes_deep($message), 'geodirectory');
763 763
 		}
764 764
 
765
-		$to_message        = nl2br( $to_message );
766
-		$sitefromEmail     = get_option( 'site_email' );
765
+		$to_message        = nl2br($to_message);
766
+		$sitefromEmail     = get_option('site_email');
767 767
 		$sitefromEmailName = get_site_emailName();
768
-		$productlink       = get_permalink( $post_id );
768
+		$productlink       = get_permalink($post_id);
769 769
 
770 770
 		$user_login = '';
771
-		if ( $user_id > 0 && $user_info = get_userdata( $user_id ) ) {
771
+		if ($user_id > 0 && $user_info = get_userdata($user_id)) {
772 772
 			$user_login = $user_info->user_login;
773 773
 		}
774 774
 
775 775
 		$posted_date = '';
776 776
 		$listingLink = '';
777 777
 
778
-		$post_info = get_post( $post_id );
778
+		$post_info = get_post($post_id);
779 779
 
780
-		if ( $post_info ) {
780
+		if ($post_info) {
781 781
 			$posted_date = $post_info->post_date;
782
-			$listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
782
+			$listingLink = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>';
783 783
 		}
784 784
 		$siteurl       = home_url();
785
-		$siteurl_link  = '<a href="' . $siteurl . '">' . $siteurl . '</a>';
785
+		$siteurl_link  = '<a href="'.$siteurl.'">'.$siteurl.'</a>';
786 786
 		$loginurl      = geodir_login_url();
787
-		$loginurl_link = '<a href="' . $loginurl . '">login</a>';
787
+		$loginurl_link = '<a href="'.$loginurl.'">login</a>';
788 788
 
789
-		$post_author_id   = ! empty( $post_info ) ? $post_info->post_author : 0;
790
-		$post_author_name = geodir_get_client_name( $post_author_id );
791
-		$current_date     = date_i18n( 'Y-m-d H:i:s', current_time( 'timestamp' ) );
789
+		$post_author_id   = !empty($post_info) ? $post_info->post_author : 0;
790
+		$post_author_name = geodir_get_client_name($post_author_id);
791
+		$current_date     = date_i18n('Y-m-d H:i:s', current_time('timestamp'));
792 792
 
793
-		if ( $fromEmail == '' ) {
794
-			$fromEmail = get_option( 'site_email' );
793
+		if ($fromEmail == '') {
794
+			$fromEmail = get_option('site_email');
795 795
 		}
796 796
 
797
-		if ( $fromEmailName == '' ) {
798
-			$fromEmailName = get_option( 'site_email_name' );
797
+		if ($fromEmailName == '') {
798
+			$fromEmailName = get_option('site_email_name');
799 799
 		}
800 800
 
801
-		$search_array  = array(
801
+		$search_array = array(
802 802
 			'[#listing_link#]',
803 803
 			'[#site_name_url#]',
804 804
 			'[#post_id#]',
@@ -838,7 +838,7 @@  discard block
 block discarded – undo
838 838
 			$post_author_name,
839 839
 			$current_date
840 840
 		);
841
-		$message       = str_replace( $search_array, $replace_array, $message );
841
+		$message       = str_replace($search_array, $replace_array, $message);
842 842
 
843 843
 		$search_array  = array(
844 844
 			'[#listing_link#]',
@@ -874,12 +874,12 @@  discard block
 block discarded – undo
874 874
 			$post_author_name,
875 875
 			$current_date
876 876
 		);
877
-		$subject       = str_replace( $search_array, $replace_array, $subject );
877
+		$subject = str_replace($search_array, $replace_array, $subject);
878 878
 
879
-		$headers = 'MIME-Version: 1.0' . "\r\n";
880
-		$headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n";
881
-		$headers .= "Reply-To: " . $fromEmail . "\r\n";
882
-		$headers .= 'From: ' . $sitefromEmailName . ' <' . $sitefromEmail . '>' . "\r\n";
879
+		$headers = 'MIME-Version: 1.0'."\r\n";
880
+		$headers .= 'Content-type: text/html; charset=UTF-8'."\r\n";
881
+		$headers .= "Reply-To: ".$fromEmail."\r\n";
882
+		$headers .= 'From: '.$sitefromEmailName.' <'.$sitefromEmail.'>'."\r\n";
883 883
 
884 884
 		$to = $toEmail;
885 885
 
@@ -901,7 +901,7 @@  discard block
 block discarded – undo
901 901
 		 * @param string $post_id       The post ID.
902 902
 		 * @param string $user_id       The user ID.
903 903
 		 */
904
-		$to = apply_filters( 'geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
904
+		$to = apply_filters('geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
905 905
 		/**
906 906
 		 * Filter the client email subject.
907 907
 		 *
@@ -920,7 +920,7 @@  discard block
 block discarded – undo
920 920
 		 * @param string $post_id       The post ID.
921 921
 		 * @param string $user_id       The user ID.
922 922
 		 */
923
-		$subject = apply_filters( 'geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
923
+		$subject = apply_filters('geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
924 924
 		/**
925 925
 		 * Filter the client email message.
926 926
 		 *
@@ -939,7 +939,7 @@  discard block
 block discarded – undo
939 939
 		 * @param string $post_id       The post ID.
940 940
 		 * @param string $user_id       The user ID.
941 941
 		 */
942
-		$message = apply_filters( 'geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
942
+		$message = apply_filters('geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
943 943
 		/**
944 944
 		 * Filter the client email headers.
945 945
 		 *
@@ -958,39 +958,39 @@  discard block
 block discarded – undo
958 958
 		 * @param string $post_id       The post ID.
959 959
 		 * @param string $user_id       The user ID.
960 960
 		 */
961
-		$headers = apply_filters( 'geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
961
+		$headers = apply_filters('geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
962 962
 
963
-		$sent = wp_mail( $to, $subject, $message, $headers );
963
+		$sent = wp_mail($to, $subject, $message, $headers);
964 964
 
965
-		if ( ! $sent ) {
966
-			if ( is_array( $to ) ) {
967
-				$to = implode( ',', $to );
965
+		if (!$sent) {
966
+			if (is_array($to)) {
967
+				$to = implode(',', $to);
968 968
 			}
969 969
 			$log_message = sprintf(
970
-				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
970
+				__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
971 971
 				$message_type,
972
-				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
972
+				date_i18n('F j Y H:i:s', current_time('timestamp')),
973 973
 				$to,
974 974
 				$subject
975 975
 			);
976
-			geodir_error_log( $log_message );
976
+			geodir_error_log($log_message);
977 977
 		}
978 978
 
979 979
 		///////// ADMIN BCC EMIALS
980
-		$adminEmail = get_bloginfo( 'admin_email' );
980
+		$adminEmail = get_bloginfo('admin_email');
981 981
 		$to         = $adminEmail;
982 982
 
983 983
 		$admin_bcc = false;
984
-		if ( $message_type == 'registration' ) {
985
-			$message_raw  = explode( __( "Password:", 'geodirectory' ), $message );
986
-			$message_raw2 = explode( "</p>", $message_raw[1], 2 );
987
-			$message      = $message_raw[0] . __( 'Password:', 'geodirectory' ) . ' **********</p>' . $message_raw2[1];
984
+		if ($message_type == 'registration') {
985
+			$message_raw  = explode(__("Password:", 'geodirectory'), $message);
986
+			$message_raw2 = explode("</p>", $message_raw[1], 2);
987
+			$message      = $message_raw[0].__('Password:', 'geodirectory').' **********</p>'.$message_raw2[1];
988 988
 		}
989
-		if ( $message_type == 'post_submit' ) {
990
-			$subject = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_subject_admin' ) ), 'geodirectory' );
991
-			$message = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_content_admin' ) ), 'geodirectory' );
989
+		if ($message_type == 'post_submit') {
990
+			$subject = __(stripslashes_deep(get_option('geodir_post_submited_success_email_subject_admin')), 'geodirectory');
991
+			$message = __(stripslashes_deep(get_option('geodir_post_submited_success_email_content_admin')), 'geodirectory');
992 992
 
993
-			$search_array  = array(
993
+			$search_array = array(
994 994
 				'[#listing_link#]',
995 995
 				'[#site_name_url#]',
996 996
 				'[#post_id#]',
@@ -1022,7 +1022,7 @@  discard block
 block discarded – undo
1022 1022
 				$user_login,
1023 1023
 				$user_login
1024 1024
 			);
1025
-			$message       = str_replace( $search_array, $replace_array, $message );
1025
+			$message       = str_replace($search_array, $replace_array, $message);
1026 1026
 
1027 1027
 			$search_array  = array(
1028 1028
 				'[#listing_link#]',
@@ -1050,40 +1050,40 @@  discard block
 block discarded – undo
1050 1050
 				$user_login,
1051 1051
 				$user_login
1052 1052
 			);
1053
-			$subject       = str_replace( $search_array, $replace_array, $subject );
1053
+			$subject = str_replace($search_array, $replace_array, $subject);
1054 1054
 
1055 1055
 			$subject .= ' - ADMIN BCC COPY';
1056 1056
 			$admin_bcc = true;
1057 1057
 
1058
-		} elseif ( $message_type == 'registration' && get_option( 'geodir_bcc_new_user' ) ) {
1058
+		} elseif ($message_type == 'registration' && get_option('geodir_bcc_new_user')) {
1059 1059
 			$subject .= ' - ADMIN BCC COPY';
1060 1060
 			$admin_bcc = true;
1061
-		} elseif ( $message_type == 'send_friend' && get_option( 'geodir_bcc_friend' ) ) {
1061
+		} elseif ($message_type == 'send_friend' && get_option('geodir_bcc_friend')) {
1062 1062
 			$subject .= ' - ADMIN BCC COPY';
1063 1063
 			$admin_bcc = true;
1064
-		} elseif ( $message_type == 'send_enquiry' && get_option( 'geodir_bcc_enquiry' ) ) {
1064
+		} elseif ($message_type == 'send_enquiry' && get_option('geodir_bcc_enquiry')) {
1065 1065
 			$subject .= ' - ADMIN BCC COPY';
1066 1066
 			$admin_bcc = true;
1067
-		} elseif ( $message_type == 'listing_published' && get_option( 'geodir_bcc_listing_published' ) ) {
1067
+		} elseif ($message_type == 'listing_published' && get_option('geodir_bcc_listing_published')) {
1068 1068
 			$subject .= ' - ADMIN BCC COPY';
1069 1069
 			$admin_bcc = true;
1070 1070
 		}
1071 1071
 
1072
-		if ( $admin_bcc === true ) {
1073
-			$sent = wp_mail( $to, $subject, $message, $headers );
1072
+		if ($admin_bcc === true) {
1073
+			$sent = wp_mail($to, $subject, $message, $headers);
1074 1074
 
1075
-			if ( ! $sent ) {
1076
-				if ( is_array( $to ) ) {
1077
-					$to = implode( ',', $to );
1075
+			if (!$sent) {
1076
+				if (is_array($to)) {
1077
+					$to = implode(',', $to);
1078 1078
 				}
1079 1079
 				$log_message = sprintf(
1080
-					__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1080
+					__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1081 1081
 					$message_type,
1082
-					date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1082
+					date_i18n('F j Y H:i:s', current_time('timestamp')),
1083 1083
 					$to,
1084 1084
 					$subject
1085 1085
 				);
1086
-				geodir_error_log( $log_message );
1086
+				geodir_error_log($log_message);
1087 1087
 			}
1088 1088
 		}
1089 1089
 
@@ -1099,27 +1099,27 @@  discard block
 block discarded – undo
1099 1099
  */
1100 1100
 function geodir_taxonomy_breadcrumb() {
1101 1101
 
1102
-	$term   = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
1102
+	$term   = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy'));
1103 1103
 	$parent = $term->parent;
1104 1104
 
1105
-	while ( $parent ):
1105
+	while ($parent):
1106 1106
 		$parents[]  = $parent;
1107
-		$new_parent = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
1107
+		$new_parent = get_term_by('id', $parent, get_query_var('taxonomy'));
1108 1108
 		$parent     = $new_parent->parent;
1109 1109
 	endwhile;
1110 1110
 
1111
-	if ( ! empty( $parents ) ):
1112
-		$parents = array_reverse( $parents );
1111
+	if (!empty($parents)):
1112
+		$parents = array_reverse($parents);
1113 1113
 
1114
-		foreach ( $parents as $parent ):
1115
-			$item = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
1116
-			$url  = get_term_link( $item, get_query_var( 'taxonomy' ) );
1117
-			echo '<li> > <a href="' . $url . '">' . $item->name . '</a></li>';
1114
+		foreach ($parents as $parent):
1115
+			$item = get_term_by('id', $parent, get_query_var('taxonomy'));
1116
+			$url  = get_term_link($item, get_query_var('taxonomy'));
1117
+			echo '<li> > <a href="'.$url.'">'.$item->name.'</a></li>';
1118 1118
 		endforeach;
1119 1119
 
1120 1120
 	endif;
1121 1121
 
1122
-	echo '<li> > ' . $term->name . '</li>';
1122
+	echo '<li> > '.$term->name.'</li>';
1123 1123
 }
1124 1124
 
1125 1125
 
@@ -1141,9 +1141,9 @@  discard block
 block discarded – undo
1141 1141
 	 *
1142 1142
 	 * @since 1.0.0
1143 1143
 	 */
1144
-	$separator = apply_filters( 'geodir_breadcrumb_separator', ' > ' );
1144
+	$separator = apply_filters('geodir_breadcrumb_separator', ' > ');
1145 1145
 
1146
-	if ( ! geodir_is_page( 'home' ) ) {
1146
+	if (!geodir_is_page('home')) {
1147 1147
 		$breadcrumb    = '';
1148 1148
 		$url_categoris = '';
1149 1149
 		$breadcrumb .= '<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">';
@@ -1152,162 +1152,162 @@  discard block
 block discarded – undo
1152 1152
 		 *
1153 1153
 		 * @since 1.0.0
1154 1154
 		 */
1155
-		$breadcrumb .= '<li>' . apply_filters( 'geodir_breadcrumb_first_link', '<a href="' . home_url() . '">' . __( 'Home', 'geodirectory' ) . '</a>' ) . '</li>';
1155
+		$breadcrumb .= '<li>'.apply_filters('geodir_breadcrumb_first_link', '<a href="'.home_url().'">'.__('Home', 'geodirectory').'</a>').'</li>';
1156 1156
 
1157 1157
 		$gd_post_type   = geodir_get_current_posttype();
1158
-		$post_type_info = get_post_type_object( $gd_post_type );
1158
+		$post_type_info = get_post_type_object($gd_post_type);
1159 1159
 
1160
-		remove_filter( 'post_type_archive_link', 'geodir_get_posttype_link' );
1160
+		remove_filter('post_type_archive_link', 'geodir_get_posttype_link');
1161 1161
 
1162
-		$listing_link = get_post_type_archive_link( $gd_post_type );
1162
+		$listing_link = get_post_type_archive_link($gd_post_type);
1163 1163
 
1164
-		add_filter( 'post_type_archive_link', 'geodir_get_posttype_link', 10, 2 );
1165
-		$listing_link = rtrim( $listing_link, '/' );
1164
+		add_filter('post_type_archive_link', 'geodir_get_posttype_link', 10, 2);
1165
+		$listing_link = rtrim($listing_link, '/');
1166 1166
 		$listing_link .= '/';
1167 1167
 
1168 1168
 		$post_type_for_location_link = $listing_link;
1169
-		$location_terms              = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
1169
+		$location_terms              = geodir_get_current_location_terms('query_vars', $gd_post_type);
1170 1170
 
1171 1171
 		global $wp, $gd_session;
1172 1172
 		$location_link = $post_type_for_location_link;
1173 1173
 
1174
-		if ( geodir_is_page( 'detail' ) || geodir_is_page( 'listing' ) ) {
1174
+		if (geodir_is_page('detail') || geodir_is_page('listing')) {
1175 1175
 			global $post;
1176
-			$location_manager     = defined( 'POST_LOCATION_TABLE' ) ? true : false;
1177
-			$neighbourhood_active = $location_manager && get_option( 'location_neighbourhoods' ) ? true : false;
1176
+			$location_manager     = defined('POST_LOCATION_TABLE') ? true : false;
1177
+			$neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
1178 1178
 
1179
-			if ( geodir_is_page( 'detail' ) && isset( $post->country_slug ) ) {
1179
+			if (geodir_is_page('detail') && isset($post->country_slug)) {
1180 1180
 				$location_terms = array(
1181 1181
 					'gd_country' => $post->country_slug,
1182 1182
 					'gd_region'  => $post->region_slug,
1183 1183
 					'gd_city'    => $post->city_slug
1184 1184
 				);
1185 1185
 
1186
-				if ( $neighbourhood_active && ! empty( $location_terms['gd_city'] ) && $gd_ses_neighbourhood = $gd_session->get( 'gd_neighbourhood' ) ) {
1186
+				if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
1187 1187
 					$location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood;
1188 1188
 				}
1189 1189
 			}
1190 1190
 
1191
-			$geodir_show_location_url = get_option( 'geodir_show_location_url' );
1191
+			$geodir_show_location_url = get_option('geodir_show_location_url');
1192 1192
 
1193 1193
 			$hide_url_part = array();
1194
-			if ( $location_manager ) {
1195
-				$hide_country_part = get_option( 'geodir_location_hide_country_part' );
1196
-				$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
1197
-
1198
-				if ( $hide_region_part && $hide_country_part ) {
1199
-					$hide_url_part = array( 'gd_country', 'gd_region' );
1200
-				} else if ( $hide_region_part && ! $hide_country_part ) {
1201
-					$hide_url_part = array( 'gd_region' );
1202
-				} else if ( ! $hide_region_part && $hide_country_part ) {
1203
-					$hide_url_part = array( 'gd_country' );
1194
+			if ($location_manager) {
1195
+				$hide_country_part = get_option('geodir_location_hide_country_part');
1196
+				$hide_region_part  = get_option('geodir_location_hide_region_part');
1197
+
1198
+				if ($hide_region_part && $hide_country_part) {
1199
+					$hide_url_part = array('gd_country', 'gd_region');
1200
+				} else if ($hide_region_part && !$hide_country_part) {
1201
+					$hide_url_part = array('gd_region');
1202
+				} else if (!$hide_region_part && $hide_country_part) {
1203
+					$hide_url_part = array('gd_country');
1204 1204
 				}
1205 1205
 			}
1206 1206
 
1207 1207
 			$hide_text_part = array();
1208
-			if ( $geodir_show_location_url == 'country_city' ) {
1209
-				$hide_text_part = array( 'gd_region' );
1208
+			if ($geodir_show_location_url == 'country_city') {
1209
+				$hide_text_part = array('gd_region');
1210 1210
 
1211
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1212
-					unset( $location_terms['gd_region'] );
1211
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1212
+					unset($location_terms['gd_region']);
1213 1213
 				}
1214
-			} else if ( $geodir_show_location_url == 'region_city' ) {
1215
-				$hide_text_part = array( 'gd_country' );
1214
+			} else if ($geodir_show_location_url == 'region_city') {
1215
+				$hide_text_part = array('gd_country');
1216 1216
 
1217
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1218
-					unset( $location_terms['gd_country'] );
1217
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1218
+					unset($location_terms['gd_country']);
1219 1219
 				}
1220
-			} else if ( $geodir_show_location_url == 'city' ) {
1221
-				$hide_text_part = array( 'gd_country', 'gd_region' );
1220
+			} else if ($geodir_show_location_url == 'city') {
1221
+				$hide_text_part = array('gd_country', 'gd_region');
1222 1222
 
1223
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1224
-					unset( $location_terms['gd_country'] );
1223
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1224
+					unset($location_terms['gd_country']);
1225 1225
 				}
1226
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1227
-					unset( $location_terms['gd_region'] );
1226
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1227
+					unset($location_terms['gd_region']);
1228 1228
 				}
1229 1229
 			}
1230 1230
 
1231 1231
 			$is_location_last = '';
1232 1232
 			$is_taxonomy_last = '';
1233 1233
 			$breadcrumb .= '<li>';
1234
-			if ( get_query_var( $gd_post_type . 'category' ) ) {
1235
-				$gd_taxonomy = $gd_post_type . 'category';
1236
-			} elseif ( get_query_var( $gd_post_type . '_tags' ) ) {
1237
-				$gd_taxonomy = $gd_post_type . '_tags';
1234
+			if (get_query_var($gd_post_type.'category')) {
1235
+				$gd_taxonomy = $gd_post_type.'category';
1236
+			} elseif (get_query_var($gd_post_type.'_tags')) {
1237
+				$gd_taxonomy = $gd_post_type.'_tags';
1238 1238
 			}
1239 1239
 
1240
-			$breadcrumb .= $separator . '<a href="' . $listing_link . '">' . __( ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1241
-			if ( ! empty( $gd_taxonomy ) || geodir_is_page( 'detail' ) ) {
1240
+			$breadcrumb .= $separator.'<a href="'.$listing_link.'">'.__(ucfirst($post_type_info->label), 'geodirectory').'</a>';
1241
+			if (!empty($gd_taxonomy) || geodir_is_page('detail')) {
1242 1242
 				$is_location_last = false;
1243 1243
 			} else {
1244 1244
 				$is_location_last = true;
1245 1245
 			}
1246 1246
 
1247
-			if ( ! empty( $gd_taxonomy ) && geodir_is_page( 'listing' ) ) {
1247
+			if (!empty($gd_taxonomy) && geodir_is_page('listing')) {
1248 1248
 				$is_taxonomy_last = true;
1249 1249
 			} else {
1250 1250
 				$is_taxonomy_last = false;
1251 1251
 			}
1252 1252
 
1253
-			if ( ! empty( $location_terms ) ) {
1254
-				$geodir_get_locations = function_exists( 'get_actual_location_name' ) ? true : false;
1253
+			if (!empty($location_terms)) {
1254
+				$geodir_get_locations = function_exists('get_actual_location_name') ? true : false;
1255 1255
 
1256
-				foreach ( $location_terms as $key => $location_term ) {
1257
-					if ( $location_term != '' ) {
1258
-						if ( ! empty( $hide_url_part ) && in_array( $key, $hide_url_part ) ) { // Hide location part from url & breadcrumb.
1256
+				foreach ($location_terms as $key => $location_term) {
1257
+					if ($location_term != '') {
1258
+						if (!empty($hide_url_part) && in_array($key, $hide_url_part)) { // Hide location part from url & breadcrumb.
1259 1259
 							continue;
1260 1260
 						}
1261 1261
 
1262
-						$gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location_term );
1263
-						$gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text );
1264
-						$gd_location_link_text = ucfirst( $gd_location_link_text );
1262
+						$gd_location_link_text = preg_replace('/-(\d+)$/', '', $location_term);
1263
+						$gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
1264
+						$gd_location_link_text = ucfirst($gd_location_link_text);
1265 1265
 
1266 1266
 						$location_term_actual_country = '';
1267 1267
 						$location_term_actual_region  = '';
1268 1268
 						$location_term_actual_city    = '';
1269
-						if ( $geodir_get_locations ) {
1270
-							if ( $key == 'gd_country' ) {
1271
-								$location_term_actual_country = get_actual_location_name( 'country', $location_term, true );
1272
-							} else if ( $key == 'gd_region' ) {
1273
-								$location_term_actual_region = get_actual_location_name( 'region', $location_term, true );
1274
-							} else if ( $key == 'gd_city' ) {
1275
-								$location_term_actual_city = get_actual_location_name( 'city', $location_term, true );
1269
+						if ($geodir_get_locations) {
1270
+							if ($key == 'gd_country') {
1271
+								$location_term_actual_country = get_actual_location_name('country', $location_term, true);
1272
+							} else if ($key == 'gd_region') {
1273
+								$location_term_actual_region = get_actual_location_name('region', $location_term, true);
1274
+							} else if ($key == 'gd_city') {
1275
+								$location_term_actual_city = get_actual_location_name('city', $location_term, true);
1276 1276
 							}
1277 1277
 						} else {
1278 1278
 							$location_info = geodir_get_location();
1279 1279
 
1280
-							if ( ! empty( $location_info ) && isset( $location_info->location_id ) ) {
1281
-								if ( $key == 'gd_country' ) {
1282
-									$location_term_actual_country = __( $location_info->country, 'geodirectory' );
1283
-								} else if ( $key == 'gd_region' ) {
1284
-									$location_term_actual_region = __( $location_info->region, 'geodirectory' );
1285
-								} else if ( $key == 'gd_city' ) {
1286
-									$location_term_actual_city = __( $location_info->city, 'geodirectory' );
1280
+							if (!empty($location_info) && isset($location_info->location_id)) {
1281
+								if ($key == 'gd_country') {
1282
+									$location_term_actual_country = __($location_info->country, 'geodirectory');
1283
+								} else if ($key == 'gd_region') {
1284
+									$location_term_actual_region = __($location_info->region, 'geodirectory');
1285
+								} else if ($key == 'gd_city') {
1286
+									$location_term_actual_city = __($location_info->city, 'geodirectory');
1287 1287
 								}
1288 1288
 							}
1289 1289
 						}
1290 1290
 
1291
-						if ( $is_location_last && $key == 'gd_country' && ! ( isset( $location_terms['gd_region'] ) && $location_terms['gd_region'] != '' ) && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
1292
-							$breadcrumb .= $location_term_actual_country != '' ? $separator . $location_term_actual_country : $separator . $gd_location_link_text;
1293
-						} else if ( $is_location_last && $key == 'gd_region' && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
1294
-							$breadcrumb .= $location_term_actual_region != '' ? $separator . $location_term_actual_region : $separator . $gd_location_link_text;
1295
-						} else if ( $is_location_last && $key == 'gd_city' && empty( $location_terms['gd_neighbourhood'] ) ) {
1296
-							$breadcrumb .= $location_term_actual_city != '' ? $separator . $location_term_actual_city : $separator . $gd_location_link_text;
1297
-						} else if ( $is_location_last && $key == 'gd_neighbourhood' ) {
1298
-							$breadcrumb .= $separator . $gd_location_link_text;
1291
+						if ($is_location_last && $key == 'gd_country' && !(isset($location_terms['gd_region']) && $location_terms['gd_region'] != '') && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
1292
+							$breadcrumb .= $location_term_actual_country != '' ? $separator.$location_term_actual_country : $separator.$gd_location_link_text;
1293
+						} else if ($is_location_last && $key == 'gd_region' && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
1294
+							$breadcrumb .= $location_term_actual_region != '' ? $separator.$location_term_actual_region : $separator.$gd_location_link_text;
1295
+						} else if ($is_location_last && $key == 'gd_city' && empty($location_terms['gd_neighbourhood'])) {
1296
+							$breadcrumb .= $location_term_actual_city != '' ? $separator.$location_term_actual_city : $separator.$gd_location_link_text;
1297
+						} else if ($is_location_last && $key == 'gd_neighbourhood') {
1298
+							$breadcrumb .= $separator.$gd_location_link_text;
1299 1299
 						} else {
1300
-							if ( get_option( 'permalink_structure' ) != '' ) {
1301
-								$location_link .= $location_term . '/';
1300
+							if (get_option('permalink_structure') != '') {
1301
+								$location_link .= $location_term.'/';
1302 1302
 							} else {
1303
-								$location_link .= "&$key=" . $location_term;
1303
+								$location_link .= "&$key=".$location_term;
1304 1304
 							}
1305 1305
 
1306
-							if ( $key == 'gd_country' && $location_term_actual_country != '' ) {
1306
+							if ($key == 'gd_country' && $location_term_actual_country != '') {
1307 1307
 								$gd_location_link_text = $location_term_actual_country;
1308
-							} else if ( $key == 'gd_region' && $location_term_actual_region != '' ) {
1308
+							} else if ($key == 'gd_region' && $location_term_actual_region != '') {
1309 1309
 								$gd_location_link_text = $location_term_actual_region;
1310
-							} else if ( $key == 'gd_city' && $location_term_actual_city != '' ) {
1310
+							} else if ($key == 'gd_city' && $location_term_actual_city != '') {
1311 1311
 								$gd_location_link_text = $location_term_actual_city;
1312 1312
 							}
1313 1313
 
@@ -1317,76 +1317,76 @@  discard block
 block discarded – undo
1317 1317
                             }
1318 1318
                             */
1319 1319
 
1320
-							$breadcrumb .= $separator . '<a href="' . $location_link . '">' . $gd_location_link_text . '</a>';
1320
+							$breadcrumb .= $separator.'<a href="'.$location_link.'">'.$gd_location_link_text.'</a>';
1321 1321
 						}
1322 1322
 					}
1323 1323
 				}
1324 1324
 			}
1325 1325
 
1326
-			if ( ! empty( $gd_taxonomy ) ) {
1326
+			if (!empty($gd_taxonomy)) {
1327 1327
 				$term_index = 1;
1328 1328
 
1329 1329
 				//if(get_option('geodir_add_categories_url'))
1330 1330
 				{
1331
-					if ( get_query_var( $gd_post_type . '_tags' ) ) {
1332
-						$cat_link = $listing_link . 'tags/';
1331
+					if (get_query_var($gd_post_type.'_tags')) {
1332
+						$cat_link = $listing_link.'tags/';
1333 1333
 					} else {
1334 1334
 						$cat_link = $listing_link;
1335 1335
 					}
1336 1336
 
1337
-					foreach ( $location_terms as $key => $location_term ) {
1338
-						if ( $location_manager && in_array( $key, $hide_url_part ) ) {
1337
+					foreach ($location_terms as $key => $location_term) {
1338
+						if ($location_manager && in_array($key, $hide_url_part)) {
1339 1339
 							continue;
1340 1340
 						}
1341 1341
 
1342
-						if ( $location_term != '' ) {
1343
-							if ( get_option( 'permalink_structure' ) != '' ) {
1344
-								$cat_link .= $location_term . '/';
1342
+						if ($location_term != '') {
1343
+							if (get_option('permalink_structure') != '') {
1344
+								$cat_link .= $location_term.'/';
1345 1345
 							}
1346 1346
 						}
1347 1347
 					}
1348 1348
 
1349
-					$term_array = explode( "/", trim( $wp_query->query[ $gd_taxonomy ], "/" ) );
1350
-					foreach ( $term_array as $term ) {
1351
-						$term_link_text = preg_replace( '/-(\d+)$/', '', $term );
1352
-						$term_link_text = preg_replace( '/[_-]/', ' ', $term_link_text );
1349
+					$term_array = explode("/", trim($wp_query->query[$gd_taxonomy], "/"));
1350
+					foreach ($term_array as $term) {
1351
+						$term_link_text = preg_replace('/-(\d+)$/', '', $term);
1352
+						$term_link_text = preg_replace('/[_-]/', ' ', $term_link_text);
1353 1353
 
1354 1354
 						// get term actual name
1355
-						$term_info = get_term_by( 'slug', $term, $gd_taxonomy, 'ARRAY_A' );
1356
-						if ( ! empty( $term_info ) && isset( $term_info['name'] ) && $term_info['name'] != '' ) {
1357
-							$term_link_text = urldecode( $term_info['name'] );
1355
+						$term_info = get_term_by('slug', $term, $gd_taxonomy, 'ARRAY_A');
1356
+						if (!empty($term_info) && isset($term_info['name']) && $term_info['name'] != '') {
1357
+							$term_link_text = urldecode($term_info['name']);
1358 1358
 						} else {
1359 1359
 							continue;
1360 1360
 							//$term_link_text = wp_strip_all_tags(geodir_ucwords(urldecode($term_link_text)));
1361 1361
 						}
1362 1362
 
1363
-						if ( $term_index == count( $term_array ) && $is_taxonomy_last ) {
1364
-							$breadcrumb .= $separator . $term_link_text;
1363
+						if ($term_index == count($term_array) && $is_taxonomy_last) {
1364
+							$breadcrumb .= $separator.$term_link_text;
1365 1365
 						} else {
1366
-							$cat_link .= $term . '/';
1367
-							$breadcrumb .= $separator . '<a href="' . $cat_link . '">' . $term_link_text . '</a>';
1366
+							$cat_link .= $term.'/';
1367
+							$breadcrumb .= $separator.'<a href="'.$cat_link.'">'.$term_link_text.'</a>';
1368 1368
 						}
1369
-						$term_index ++;
1369
+						$term_index++;
1370 1370
 					}
1371 1371
 				}
1372 1372
 
1373 1373
 
1374 1374
 			}
1375 1375
 
1376
-			if ( geodir_is_page( 'detail' ) ) {
1377
-				$breadcrumb .= $separator . get_the_title();
1376
+			if (geodir_is_page('detail')) {
1377
+				$breadcrumb .= $separator.get_the_title();
1378 1378
 			}
1379 1379
 
1380 1380
 			$breadcrumb .= '</li>';
1381 1381
 
1382 1382
 
1383
-		} elseif ( geodir_is_page( 'author' ) ) {
1383
+		} elseif (geodir_is_page('author')) {
1384 1384
 			$user_id             = get_current_user_id();
1385
-			$author_link         = get_author_posts_url( $user_id );
1386
-			$default_author_link = geodir_getlink( $author_link, array(
1385
+			$author_link         = get_author_posts_url($user_id);
1386
+			$default_author_link = geodir_getlink($author_link, array(
1387 1387
 				'geodir_dashbord' => 'true',
1388 1388
 				'stype'           => 'gd_place'
1389
-			), false );
1389
+			), false);
1390 1390
 
1391 1391
 			/**
1392 1392
 			 * Filter author page link.
@@ -1396,16 +1396,16 @@  discard block
 block discarded – undo
1396 1396
 			 * @param string $default_author_link Default author link.
1397 1397
 			 * @param int $user_id                Author ID.
1398 1398
 			 */
1399
-			$default_author_link = apply_filters( 'geodir_dashboard_author_link', $default_author_link, $user_id );
1399
+			$default_author_link = apply_filters('geodir_dashboard_author_link', $default_author_link, $user_id);
1400 1400
 
1401 1401
 			$breadcrumb .= '<li>';
1402
-			$breadcrumb .= $separator . '<a href="' . $default_author_link . '">' . __( 'My Dashboard', 'geodirectory' ) . '</a>';
1402
+			$breadcrumb .= $separator.'<a href="'.$default_author_link.'">'.__('My Dashboard', 'geodirectory').'</a>';
1403 1403
 
1404
-			if ( isset( $_REQUEST['list'] ) ) {
1405
-				$author_link = geodir_getlink( $author_link, array(
1404
+			if (isset($_REQUEST['list'])) {
1405
+				$author_link = geodir_getlink($author_link, array(
1406 1406
 					'geodir_dashbord' => 'true',
1407 1407
 					'stype'           => $_REQUEST['stype']
1408
-				), false );
1408
+				), false);
1409 1409
 
1410 1410
 				/**
1411 1411
 				 * Filter author page link.
@@ -1416,61 +1416,61 @@  discard block
 block discarded – undo
1416 1416
 				 * @param int $user_id        Author ID.
1417 1417
 				 * @param string $_REQUEST    ['stype'] Post type.
1418 1418
 				 */
1419
-				$author_link = apply_filters( 'geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype'] );
1419
+				$author_link = apply_filters('geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype']);
1420 1420
 
1421
-				$breadcrumb .= $separator . '<a href="' . $author_link . '">' . __( ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1422
-				$breadcrumb .= $separator . ucfirst( __( 'My', 'geodirectory' ) . ' ' . $_REQUEST['list'] );
1421
+				$breadcrumb .= $separator.'<a href="'.$author_link.'">'.__(ucfirst($post_type_info->label), 'geodirectory').'</a>';
1422
+				$breadcrumb .= $separator.ucfirst(__('My', 'geodirectory').' '.$_REQUEST['list']);
1423 1423
 			} else {
1424
-				$breadcrumb .= $separator . __( ucfirst( $post_type_info->label ), 'geodirectory' );
1424
+				$breadcrumb .= $separator.__(ucfirst($post_type_info->label), 'geodirectory');
1425 1425
 			}
1426 1426
 
1427 1427
 			$breadcrumb .= '</li>';
1428
-		} elseif ( is_category() || is_single() ) {
1428
+		} elseif (is_category() || is_single()) {
1429 1429
 			$category = get_the_category();
1430
-			if ( is_category() ) {
1431
-				$breadcrumb .= '<li>' . $separator . $category[0]->cat_name . '</li>';
1430
+			if (is_category()) {
1431
+				$breadcrumb .= '<li>'.$separator.$category[0]->cat_name.'</li>';
1432 1432
 			}
1433
-			if ( is_single() ) {
1434
-				$breadcrumb .= '<li>' . $separator . '<a href="' . get_category_link( $category[0]->term_id ) . '">' . $category[0]->cat_name . '</a></li>';
1435
-				$breadcrumb .= '<li>' . $separator . get_the_title() . '</li>';
1433
+			if (is_single()) {
1434
+				$breadcrumb .= '<li>'.$separator.'<a href="'.get_category_link($category[0]->term_id).'">'.$category[0]->cat_name.'</a></li>';
1435
+				$breadcrumb .= '<li>'.$separator.get_the_title().'</li>';
1436 1436
 			}
1437 1437
 			/* End of my version ##################################################### */
1438
-		} else if ( is_page() ) {
1438
+		} else if (is_page()) {
1439 1439
 			$page_title = get_the_title();
1440 1440
 
1441
-			if ( geodir_is_page( 'location' ) ) {
1441
+			if (geodir_is_page('location')) {
1442 1442
 				$location_page_id = geodir_location_page_id();
1443
-				$loc_post         = get_post( $location_page_id );
1443
+				$loc_post         = get_post($location_page_id);
1444 1444
 				$post_name        = $loc_post->post_name;
1445
-				$slug             = ucwords( str_replace( '-', ' ', $post_name ) );
1446
-				$page_title       = ! empty( $slug ) ? $slug : __( 'Location', 'geodirectory' );
1445
+				$slug             = ucwords(str_replace('-', ' ', $post_name));
1446
+				$page_title       = !empty($slug) ? $slug : __('Location', 'geodirectory');
1447 1447
 			}
1448 1448
 
1449
-			$breadcrumb .= '<li>' . $separator;
1450
-			$breadcrumb .= stripslashes_deep( $page_title );
1449
+			$breadcrumb .= '<li>'.$separator;
1450
+			$breadcrumb .= stripslashes_deep($page_title);
1451 1451
 			$breadcrumb .= '</li>';
1452
-		} else if ( is_tag() ) {
1453
-			$breadcrumb .= "<li> " . $separator . single_tag_title( '', false ) . '</li>';
1454
-		} else if ( is_day() ) {
1455
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1456
-			the_time( 'F jS, Y' );
1452
+		} else if (is_tag()) {
1453
+			$breadcrumb .= "<li> ".$separator.single_tag_title('', false).'</li>';
1454
+		} else if (is_day()) {
1455
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1456
+			the_time('F jS, Y');
1457 1457
 			$breadcrumb .= '</li>';
1458
-		} else if ( is_month() ) {
1459
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1460
-			the_time( 'F, Y' );
1458
+		} else if (is_month()) {
1459
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1460
+			the_time('F, Y');
1461 1461
 			$breadcrumb .= '</li>';
1462
-		} else if ( is_year() ) {
1463
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1464
-			the_time( 'Y' );
1462
+		} else if (is_year()) {
1463
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1464
+			the_time('Y');
1465 1465
 			$breadcrumb .= '</li>';
1466
-		} else if ( is_author() ) {
1467
-			$breadcrumb .= "<li> " . $separator . __( " Author Archive", 'geodirectory' );
1466
+		} else if (is_author()) {
1467
+			$breadcrumb .= "<li> ".$separator.__(" Author Archive", 'geodirectory');
1468 1468
 			$breadcrumb .= '</li>';
1469
-		} else if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) ) {
1470
-			$breadcrumb .= "<li>" . $separator . __( "Blog Archives", 'geodirectory' );
1469
+		} else if (isset($_GET['paged']) && !empty($_GET['paged'])) {
1470
+			$breadcrumb .= "<li>".$separator.__("Blog Archives", 'geodirectory');
1471 1471
 			$breadcrumb .= '</li>';
1472
-		} else if ( is_search() ) {
1473
-			$breadcrumb .= "<li> " . $separator . __( " Search Results", 'geodirectory' );
1472
+		} else if (is_search()) {
1473
+			$breadcrumb .= "<li> ".$separator.__(" Search Results", 'geodirectory');
1474 1474
 			$breadcrumb .= '</li>';
1475 1475
 		}
1476 1476
 		$breadcrumb .= '</ul></div>';
@@ -1483,13 +1483,13 @@  discard block
 block discarded – undo
1483 1483
 		 * @param string $breadcrumb Breadcrumb HTML.
1484 1484
 		 * @param string $separator  Breadcrumb separator.
1485 1485
 		 */
1486
-		echo $breadcrumb = apply_filters( 'geodir_breadcrumb', $breadcrumb, $separator );
1486
+		echo $breadcrumb = apply_filters('geodir_breadcrumb', $breadcrumb, $separator);
1487 1487
 	}
1488 1488
 }
1489 1489
 
1490 1490
 
1491
-add_action( "admin_init", "geodir_allow_wpadmin" ); // check user is admin
1492
-if ( ! function_exists( 'geodir_allow_wpadmin' ) ) {
1491
+add_action("admin_init", "geodir_allow_wpadmin"); // check user is admin
1492
+if (!function_exists('geodir_allow_wpadmin')) {
1493 1493
 	/**
1494 1494
 	 * Allow only admins to access wp-admin.
1495 1495
 	 *
@@ -1501,12 +1501,12 @@  discard block
 block discarded – undo
1501 1501
 	 */
1502 1502
 	function geodir_allow_wpadmin() {
1503 1503
 		global $wpdb;
1504
-		if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) // checking action in request to allow ajax request go through
1504
+		if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && (!defined('DOING_AJAX'))) // checking action in request to allow ajax request go through
1505 1505
 		{
1506
-			if ( current_user_can( 'administrator' ) ) {
1506
+			if (current_user_can('administrator')) {
1507 1507
 			} else {
1508 1508
 
1509
-				wp_redirect( home_url() );
1509
+				wp_redirect(home_url());
1510 1510
 				exit;
1511 1511
 			}
1512 1512
 
@@ -1525,23 +1525,23 @@  discard block
 block discarded – undo
1525 1525
  *
1526 1526
  * @return array|WP_Error The uploaded data as array. When failure returns error.
1527 1527
  */
1528
-function fetch_remote_file( $url ) {
1528
+function fetch_remote_file($url) {
1529 1529
 	// extract the file name and extension from the url
1530
-	require_once( ABSPATH . 'wp-includes/pluggable.php' );
1531
-	$file_name = basename( $url );
1532
-	if ( strpos( $file_name, '?' ) !== false ) {
1533
-		list( $file_name ) = explode( '?', $file_name );
1530
+	require_once(ABSPATH.'wp-includes/pluggable.php');
1531
+	$file_name = basename($url);
1532
+	if (strpos($file_name, '?') !== false) {
1533
+		list($file_name) = explode('?', $file_name);
1534 1534
 	}
1535 1535
 	$dummy        = false;
1536 1536
 	$add_to_cache = false;
1537 1537
 	$key          = null;
1538
-	if ( strpos( $url, '/dummy/' ) !== false ) {
1538
+	if (strpos($url, '/dummy/') !== false) {
1539 1539
 		$dummy = true;
1540
-		$key   = "dummy_" . str_replace( '.', '_', $file_name );
1541
-		$value = get_transient( 'cached_dummy_images' );
1542
-		if ( $value ) {
1543
-			if ( isset( $value[ $key ] ) ) {
1544
-				return $value[ $key ];
1540
+		$key   = "dummy_".str_replace('.', '_', $file_name);
1541
+		$value = get_transient('cached_dummy_images');
1542
+		if ($value) {
1543
+			if (isset($value[$key])) {
1544
+				return $value[$key];
1545 1545
 			} else {
1546 1546
 				$add_to_cache = true;
1547 1547
 			}
@@ -1552,58 +1552,58 @@  discard block
 block discarded – undo
1552 1552
 
1553 1553
 	// get placeholder file in the upload dir with a unique, sanitized filename
1554 1554
 
1555
-	$post_upload_date = isset( $post['upload_date'] ) ? $post['upload_date'] : '';
1555
+	$post_upload_date = isset($post['upload_date']) ? $post['upload_date'] : '';
1556 1556
 
1557
-	$upload = wp_upload_bits( $file_name, 0, '', $post_upload_date );
1558
-	if ( $upload['error'] ) {
1559
-		return new WP_Error( 'upload_dir_error', $upload['error'] );
1557
+	$upload = wp_upload_bits($file_name, 0, '', $post_upload_date);
1558
+	if ($upload['error']) {
1559
+		return new WP_Error('upload_dir_error', $upload['error']);
1560 1560
 	}
1561 1561
 
1562 1562
 
1563
-	sleep( 0.3 );// if multiple remote file this can cause the remote server to timeout so we add a slight delay
1563
+	sleep(0.3); // if multiple remote file this can cause the remote server to timeout so we add a slight delay
1564 1564
 
1565 1565
 	// fetch the remote url and write it to the placeholder file
1566
-	$headers = wp_remote_get( $url, array( 'stream' => true, 'filename' => $upload['file'] ) );
1566
+	$headers = wp_remote_get($url, array('stream' => true, 'filename' => $upload['file']));
1567 1567
 
1568 1568
 	$log_message = '';
1569
-	if ( is_wp_error( $headers ) ) {
1570
-		echo 'file: ' . $url;
1569
+	if (is_wp_error($headers)) {
1570
+		echo 'file: '.$url;
1571 1571
 
1572
-		return new WP_Error( 'import_file_error', $headers->get_error_message() );
1572
+		return new WP_Error('import_file_error', $headers->get_error_message());
1573 1573
 	}
1574 1574
 
1575
-	$filesize = filesize( $upload['file'] );
1575
+	$filesize = filesize($upload['file']);
1576 1576
 	// request failed
1577
-	if ( ! $headers ) {
1578
-		$log_message = __( 'Remote server did not respond', 'geodirectory' );
1577
+	if (!$headers) {
1578
+		$log_message = __('Remote server did not respond', 'geodirectory');
1579 1579
 	} // make sure the fetch was successful
1580
-	elseif ( $headers['response']['code'] != '200' ) {
1581
-		$log_message = sprintf( __( 'Remote server returned error response %1$d %2$s', 'geodirectory' ), esc_html( $headers['response'] ), get_status_header_desc( $headers['response'] ) );
1582
-	} elseif ( isset( $headers['headers']['content-length'] ) && $filesize != $headers['headers']['content-length'] ) {
1583
-		$log_message = __( 'Remote file is incorrect size', 'geodirectory' );
1584
-	} elseif ( 0 == $filesize ) {
1585
-		$log_message = __( 'Zero size file downloaded', 'geodirectory' );
1586
-	}
1587
-
1588
-	if ( $log_message ) {
1589
-		$del = unlink( $upload['file'] );
1590
-		if ( ! $del ) {
1591
-			geodir_error_log( __( 'GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory' ) );
1580
+	elseif ($headers['response']['code'] != '200') {
1581
+		$log_message = sprintf(__('Remote server returned error response %1$d %2$s', 'geodirectory'), esc_html($headers['response']), get_status_header_desc($headers['response']));
1582
+	} elseif (isset($headers['headers']['content-length']) && $filesize != $headers['headers']['content-length']) {
1583
+		$log_message = __('Remote file is incorrect size', 'geodirectory');
1584
+	} elseif (0 == $filesize) {
1585
+		$log_message = __('Zero size file downloaded', 'geodirectory');
1586
+	}
1587
+
1588
+	if ($log_message) {
1589
+		$del = unlink($upload['file']);
1590
+		if (!$del) {
1591
+			geodir_error_log(__('GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory'));
1592 1592
 		}
1593 1593
 
1594
-		return new WP_Error( 'import_file_error', $log_message );
1594
+		return new WP_Error('import_file_error', $log_message);
1595 1595
 	}
1596 1596
 
1597
-	if ( $dummy && $add_to_cache && is_array( $upload ) ) {
1598
-		$images = get_transient( 'cached_dummy_images' );
1599
-		if ( is_array( $images ) ) {
1600
-			$images[ $key ] = $upload;
1597
+	if ($dummy && $add_to_cache && is_array($upload)) {
1598
+		$images = get_transient('cached_dummy_images');
1599
+		if (is_array($images)) {
1600
+			$images[$key] = $upload;
1601 1601
 		} else {
1602
-			$images = array( $key => $upload );
1602
+			$images = array($key => $upload);
1603 1603
 		}
1604 1604
 
1605 1605
 		//setting the cache using the WP Transient API
1606
-		set_transient( 'cached_dummy_images', $images, 60 * 10 ); //10 minutes cache
1606
+		set_transient('cached_dummy_images', $images, 60 * 10); //10 minutes cache
1607 1607
 	}
1608 1608
 
1609 1609
 	return $upload;
@@ -1617,12 +1617,12 @@  discard block
 block discarded – undo
1617 1617
  * @return string|void Max upload size.
1618 1618
  */
1619 1619
 function geodir_max_upload_size() {
1620
-	$max_filesize = (float) get_option( 'geodir_upload_max_filesize', 2 );
1620
+	$max_filesize = (float) get_option('geodir_upload_max_filesize', 2);
1621 1621
 
1622
-	if ( $max_filesize > 0 && $max_filesize < 1 ) {
1623
-		$max_filesize = (int) ( $max_filesize * 1024 ) . 'kb';
1622
+	if ($max_filesize > 0 && $max_filesize < 1) {
1623
+		$max_filesize = (int) ($max_filesize * 1024).'kb';
1624 1624
 	} else {
1625
-		$max_filesize = $max_filesize > 0 ? $max_filesize . 'mb' : '2mb';
1625
+		$max_filesize = $max_filesize > 0 ? $max_filesize.'mb' : '2mb';
1626 1626
 	}
1627 1627
 
1628 1628
 	/**
@@ -1632,7 +1632,7 @@  discard block
 block discarded – undo
1632 1632
 	 *
1633 1633
 	 * @param string $max_filesize Max file upload size. Ex. 10mb, 512kb.
1634 1634
 	 */
1635
-	return apply_filters( 'geodir_default_image_upload_size_limit', $max_filesize );
1635
+	return apply_filters('geodir_default_image_upload_size_limit', $max_filesize);
1636 1636
 }
1637 1637
 
1638 1638
 /**
@@ -1645,8 +1645,8 @@  discard block
 block discarded – undo
1645 1645
  * @return bool If dummy folder exists returns true, else false.
1646 1646
  */
1647 1647
 function geodir_dummy_folder_exists() {
1648
-	$path = geodir_plugin_path() . '/geodirectory-admin/dummy/';
1649
-	if ( ! is_dir( $path ) ) {
1648
+	$path = geodir_plugin_path().'/geodirectory-admin/dummy/';
1649
+	if (!is_dir($path)) {
1650 1650
 		return false;
1651 1651
 	} else {
1652 1652
 		return true;
@@ -1665,17 +1665,17 @@  discard block
 block discarded – undo
1665 1665
  *
1666 1666
  * @return object Author info.
1667 1667
  */
1668
-function geodir_get_author_info( $aid ) {
1668
+function geodir_get_author_info($aid) {
1669 1669
 	global $wpdb;
1670 1670
 	/*$infosql = "select * from $wpdb->users where ID=$aid";*/
1671
-	$infosql = $wpdb->prepare( "select * from $wpdb->users where ID=%d", array( $aid ) );
1672
-	$info    = $wpdb->get_results( $infosql );
1673
-	if ( $info ) {
1671
+	$infosql = $wpdb->prepare("select * from $wpdb->users where ID=%d", array($aid));
1672
+	$info    = $wpdb->get_results($infosql);
1673
+	if ($info) {
1674 1674
 		return $info[0];
1675 1675
 	}
1676 1676
 }
1677 1677
 
1678
-if ( ! function_exists( 'adminEmail' ) ) {
1678
+if (!function_exists('adminEmail')) {
1679 1679
 	/**
1680 1680
 	 * Send emails to client on post submission, renew etc.
1681 1681
 	 *
@@ -1688,67 +1688,67 @@  discard block
 block discarded – undo
1688 1688
 	 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1689 1689
 	 * @param string $custom_1     Custom data to be sent.
1690 1690
 	 */
1691
-	function adminEmail( $page_id, $user_id, $message_type, $custom_1 = '' ) {
1691
+	function adminEmail($page_id, $user_id, $message_type, $custom_1 = '') {
1692 1692
 		global $wpdb;
1693
-		if ( $message_type == 'expiration' ) {
1694
-			$subject        = stripslashes( __( get_option( 'renew_email_subject' ), 'geodirectory' ) );
1695
-			$client_message = stripslashes( __( get_option( 'renew_email_content' ), 'geodirectory' ) );
1696
-		} elseif ( $message_type == 'post_submited' ) {
1697
-			$subject        = __( get_option( 'post_submited_success_email_subject_admin' ), 'geodirectory' );
1698
-			$client_message = __( get_option( 'post_submited_success_email_content_admin' ), 'geodirectory' );
1699
-		} elseif ( $message_type == 'renew' ) {
1700
-			$subject        = __( get_option( 'post_renew_success_email_subject_admin' ), 'geodirectory' );
1701
-			$client_message = __( get_option( 'post_renew_success_email_content_admin' ), 'geodirectory' );
1702
-		} elseif ( $message_type == 'upgrade' ) {
1703
-			$subject        = __( get_option( 'post_upgrade_success_email_subject_admin' ), 'geodirectory' );
1704
-			$client_message = __( get_option( 'post_upgrade_success_email_content_admin' ), 'geodirectory' );
1705
-		} elseif ( $message_type == 'claim_approved' ) {
1706
-			$subject        = __( get_option( 'claim_approved_email_subject' ), 'geodirectory' );
1707
-			$client_message = __( get_option( 'claim_approved_email_content' ), 'geodirectory' );
1708
-		} elseif ( $message_type == 'claim_rejected' ) {
1709
-			$subject        = __( get_option( 'claim_rejected_email_subject' ), 'geodirectory' );
1710
-			$client_message = __( get_option( 'claim_rejected_email_content' ), 'geodirectory' );
1711
-		} elseif ( $message_type == 'claim_requested' ) {
1712
-			$subject        = __( get_option( 'claim_email_subject_admin' ), 'geodirectory' );
1713
-			$client_message = __( get_option( 'claim_email_content_admin' ), 'geodirectory' );
1714
-		} elseif ( $message_type == 'auto_claim' ) {
1715
-			$subject        = __( get_option( 'auto_claim_email_subject' ), 'geodirectory' );
1716
-			$client_message = __( get_option( 'auto_claim_email_content' ), 'geodirectory' );
1717
-		} elseif ( $message_type == 'payment_success' ) {
1718
-			$subject        = __( get_option( 'post_payment_success_admin_email_subject' ), 'geodirectory' );
1719
-			$client_message = __( get_option( 'post_payment_success_admin_email_content' ), 'geodirectory' );
1720
-		} elseif ( $message_type == 'payment_fail' ) {
1721
-			$subject        = __( get_option( 'post_payment_fail_admin_email_subject' ), 'geodirectory' );
1722
-			$client_message = __( get_option( 'post_payment_fail_admin_email_content' ), 'geodirectory' );
1693
+		if ($message_type == 'expiration') {
1694
+			$subject        = stripslashes(__(get_option('renew_email_subject'), 'geodirectory'));
1695
+			$client_message = stripslashes(__(get_option('renew_email_content'), 'geodirectory'));
1696
+		} elseif ($message_type == 'post_submited') {
1697
+			$subject        = __(get_option('post_submited_success_email_subject_admin'), 'geodirectory');
1698
+			$client_message = __(get_option('post_submited_success_email_content_admin'), 'geodirectory');
1699
+		} elseif ($message_type == 'renew') {
1700
+			$subject        = __(get_option('post_renew_success_email_subject_admin'), 'geodirectory');
1701
+			$client_message = __(get_option('post_renew_success_email_content_admin'), 'geodirectory');
1702
+		} elseif ($message_type == 'upgrade') {
1703
+			$subject        = __(get_option('post_upgrade_success_email_subject_admin'), 'geodirectory');
1704
+			$client_message = __(get_option('post_upgrade_success_email_content_admin'), 'geodirectory');
1705
+		} elseif ($message_type == 'claim_approved') {
1706
+			$subject        = __(get_option('claim_approved_email_subject'), 'geodirectory');
1707
+			$client_message = __(get_option('claim_approved_email_content'), 'geodirectory');
1708
+		} elseif ($message_type == 'claim_rejected') {
1709
+			$subject        = __(get_option('claim_rejected_email_subject'), 'geodirectory');
1710
+			$client_message = __(get_option('claim_rejected_email_content'), 'geodirectory');
1711
+		} elseif ($message_type == 'claim_requested') {
1712
+			$subject        = __(get_option('claim_email_subject_admin'), 'geodirectory');
1713
+			$client_message = __(get_option('claim_email_content_admin'), 'geodirectory');
1714
+		} elseif ($message_type == 'auto_claim') {
1715
+			$subject        = __(get_option('auto_claim_email_subject'), 'geodirectory');
1716
+			$client_message = __(get_option('auto_claim_email_content'), 'geodirectory');
1717
+		} elseif ($message_type == 'payment_success') {
1718
+			$subject        = __(get_option('post_payment_success_admin_email_subject'), 'geodirectory');
1719
+			$client_message = __(get_option('post_payment_success_admin_email_content'), 'geodirectory');
1720
+		} elseif ($message_type == 'payment_fail') {
1721
+			$subject        = __(get_option('post_payment_fail_admin_email_subject'), 'geodirectory');
1722
+			$client_message = __(get_option('post_payment_fail_admin_email_content'), 'geodirectory');
1723 1723
 		}
1724 1724
 		$transaction_details = $custom_1;
1725
-		$fromEmail           = get_option( 'site_email' );
1725
+		$fromEmail           = get_option('site_email');
1726 1726
 		$fromEmailName       = get_site_emailName();
1727 1727
 //$alivedays = get_post_meta($page_id,'alive_days',true);
1728
-		$pkg_limit            = get_property_price_info_listing( $page_id );
1728
+		$pkg_limit            = get_property_price_info_listing($page_id);
1729 1729
 		$alivedays            = $pkg_limit['days'];
1730
-		$productlink          = get_permalink( $page_id );
1731
-		$post_info            = get_post( $page_id );
1732
-		$post_date            = date( 'dS F,Y', strtotime( $post_info->post_date ) );
1733
-		$listingLink          = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
1730
+		$productlink          = get_permalink($page_id);
1731
+		$post_info            = get_post($page_id);
1732
+		$post_date            = date('dS F,Y', strtotime($post_info->post_date));
1733
+		$listingLink          = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>';
1734 1734
 		$loginurl             = geodir_login_url();
1735
-		$loginurl_link        = '<a href="' . $loginurl . '">login</a>';
1735
+		$loginurl_link        = '<a href="'.$loginurl.'">login</a>';
1736 1736
 		$siteurl              = home_url();
1737
-		$siteurl_link         = '<a href="' . $siteurl . '">' . $fromEmailName . '</a>';
1738
-		$user_info            = get_userdata( $user_id );
1737
+		$siteurl_link         = '<a href="'.$siteurl.'">'.$fromEmailName.'</a>';
1738
+		$user_info            = get_userdata($user_id);
1739 1739
 		$user_email           = $user_info->user_email;
1740
-		$display_name         = geodir_get_client_name( $user_id );
1740
+		$display_name         = geodir_get_client_name($user_id);
1741 1741
 		$user_login           = $user_info->user_login;
1742
-		$number_of_grace_days = get_option( 'ptthemes_listing_preexpiry_notice_days' );
1743
-		if ( $number_of_grace_days == '' ) {
1742
+		$number_of_grace_days = get_option('ptthemes_listing_preexpiry_notice_days');
1743
+		if ($number_of_grace_days == '') {
1744 1744
 			$number_of_grace_days = 1;
1745 1745
 		}
1746
-		if ( $post_info->post_type == 'event' ) {
1746
+		if ($post_info->post_type == 'event') {
1747 1747
 			$post_type = 'event';
1748 1748
 		} else {
1749 1749
 			$post_type = 'listing';
1750 1750
 		}
1751
-		$renew_link     = '<a href="' . $siteurl . '?ptype=post_' . $post_type . '&renew=1&pid=' . $page_id . '">' . RENEW_LINK . '</a>';
1751
+		$renew_link     = '<a href="'.$siteurl.'?ptype=post_'.$post_type.'&renew=1&pid='.$page_id.'">'.RENEW_LINK.'</a>';
1752 1752
 		$search_array   = array(
1753 1753
 			'[#client_name#]',
1754 1754
 			'[#listing_link#]',
@@ -1764,7 +1764,7 @@  discard block
 block discarded – undo
1764 1764
 			'[#site_name#]',
1765 1765
 			'[#transaction_details#]'
1766 1766
 		);
1767
-		$replace_array  = array(
1767
+		$replace_array = array(
1768 1768
 			$display_name,
1769 1769
 			$listingLink,
1770 1770
 			$post_date,
@@ -1779,11 +1779,11 @@  discard block
 block discarded – undo
1779 1779
 			$fromEmailName,
1780 1780
 			$transaction_details
1781 1781
 		);
1782
-		$client_message = str_replace( $search_array, $replace_array, $client_message );
1783
-		$subject        = str_replace( $search_array, $replace_array, $subject );
1784
-		$headers        = 'MIME-Version: 1.0' . "\r\n";
1785
-		$headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n";
1786
-		$headers .= 'From: ' . $fromEmailName . ' <' . $fromEmail . '>' . "\r\n";
1782
+		$client_message = str_replace($search_array, $replace_array, $client_message);
1783
+		$subject        = str_replace($search_array, $replace_array, $subject);
1784
+		$headers        = 'MIME-Version: 1.0'."\r\n";
1785
+		$headers .= 'Content-type: text/html; charset=UTF-8'."\r\n";
1786
+		$headers .= 'From: '.$fromEmailName.' <'.$fromEmail.'>'."\r\n";
1787 1787
 
1788 1788
 		$to      = $fromEmail;
1789 1789
 		$message = $client_message;
@@ -1801,7 +1801,7 @@  discard block
 block discarded – undo
1801 1801
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1802 1802
 		 * @param string $custom_1     Custom data to be sent.
1803 1803
 		 */
1804
-		$to = apply_filters( 'geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1 );
1804
+		$to = apply_filters('geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1);
1805 1805
 		/**
1806 1806
 		 * Filter the admin email subject.
1807 1807
 		 *
@@ -1814,7 +1814,7 @@  discard block
 block discarded – undo
1814 1814
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1815 1815
 		 * @param string $custom_1     Custom data to be sent.
1816 1816
 		 */
1817
-		$subject = apply_filters( 'geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1 );
1817
+		$subject = apply_filters('geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1);
1818 1818
 		/**
1819 1819
 		 * Filter the admin email message.
1820 1820
 		 *
@@ -1827,7 +1827,7 @@  discard block
 block discarded – undo
1827 1827
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1828 1828
 		 * @param string $custom_1     Custom data to be sent.
1829 1829
 		 */
1830
-		$message = apply_filters( 'geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1 );
1830
+		$message = apply_filters('geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1);
1831 1831
 		/**
1832 1832
 		 * Filter the admin email headers.
1833 1833
 		 *
@@ -1840,22 +1840,22 @@  discard block
 block discarded – undo
1840 1840
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1841 1841
 		 * @param string $custom_1     Custom data to be sent.
1842 1842
 		 */
1843
-		$headers = apply_filters( 'geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1 );
1843
+		$headers = apply_filters('geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1);
1844 1844
 
1845 1845
 
1846
-		$sent = wp_mail( $to, $subject, $message, $headers );
1847
-		if ( ! $sent ) {
1848
-			if ( is_array( $to ) ) {
1849
-				$to = implode( ',', $to );
1846
+		$sent = wp_mail($to, $subject, $message, $headers);
1847
+		if (!$sent) {
1848
+			if (is_array($to)) {
1849
+				$to = implode(',', $to);
1850 1850
 			}
1851 1851
 			$log_message = sprintf(
1852
-				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1852
+				__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1853 1853
 				$message_type,
1854
-				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1854
+				date_i18n('F j Y H:i:s', current_time('timestamp')),
1855 1855
 				$to,
1856 1856
 				$subject
1857 1857
 			);
1858
-			geodir_error_log( $log_message );
1858
+			geodir_error_log($log_message);
1859 1859
 		}
1860 1860
 	}
1861 1861
 }
@@ -1875,12 +1875,12 @@  discard block
 block discarded – undo
1875 1875
  *
1876 1876
  * @return array Category IDs.
1877 1877
  */
1878
-function gd_lang_object_ids( $ids_array, $type ) {
1879
-	if ( function_exists( 'icl_object_id' ) ) {
1878
+function gd_lang_object_ids($ids_array, $type) {
1879
+	if (function_exists('icl_object_id')) {
1880 1880
 		$res = array();
1881
-		foreach ( $ids_array as $id ) {
1882
-			$xlat = icl_object_id( $id, $type, false );
1883
-			if ( ! is_null( $xlat ) ) {
1881
+		foreach ($ids_array as $id) {
1882
+			$xlat = icl_object_id($id, $type, false);
1883
+			if (!is_null($xlat)) {
1884 1884
 				$res[] = $xlat;
1885 1885
 			}
1886 1886
 		}
@@ -1904,20 +1904,20 @@  discard block
 block discarded – undo
1904 1904
  *
1905 1905
  * @return array Modified Body CSS classes.
1906 1906
  */
1907
-function geodir_custom_posts_body_class( $classes ) {
1907
+function geodir_custom_posts_body_class($classes) {
1908 1908
 	global $wpdb, $wp;
1909
-	$post_types = geodir_get_posttypes( 'object' );
1910
-	if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
1909
+	$post_types = geodir_get_posttypes('object');
1910
+	if (!empty($post_types) && count((array) $post_types) > 1) {
1911 1911
 		$classes[] = 'geodir_custom_posts';
1912 1912
 	}
1913 1913
 
1914 1914
 	// fix body class for signup page
1915
-	if ( geodir_is_page( 'login' ) ) {
1915
+	if (geodir_is_page('login')) {
1916 1916
 		$new_classes   = array();
1917 1917
 		$new_classes[] = 'signup page-geodir-signup';
1918
-		if ( ! empty( $classes ) ) {
1919
-			foreach ( $classes as $class ) {
1920
-				if ( $class && $class != 'home' && $class != 'blog' ) {
1918
+		if (!empty($classes)) {
1919
+			foreach ($classes as $class) {
1920
+				if ($class && $class != 'home' && $class != 'blog') {
1921 1921
 					$new_classes[] = $class;
1922 1922
 				}
1923 1923
 			}
@@ -1925,14 +1925,14 @@  discard block
 block discarded – undo
1925 1925
 		$classes = $new_classes;
1926 1926
 	}
1927 1927
 
1928
-	if ( geodir_is_geodir_page() ) {
1928
+	if (geodir_is_geodir_page()) {
1929 1929
 		$classes[] = 'geodir-page';
1930 1930
 	}
1931 1931
 
1932 1932
 	return $classes;
1933 1933
 }
1934 1934
 
1935
-add_filter( 'body_class', 'geodir_custom_posts_body_class' ); // let's add a class to the body so we can style the new addition to the search
1935
+add_filter('body_class', 'geodir_custom_posts_body_class'); // let's add a class to the body so we can style the new addition to the search
1936 1936
 
1937 1937
 
1938 1938
 /**
@@ -1948,7 +1948,7 @@  discard block
 block discarded – undo
1948 1948
 	 *
1949 1949
 	 * @since 1.0.0
1950 1950
 	 */
1951
-	return apply_filters( 'geodir_map_zoom_level', array(
1951
+	return apply_filters('geodir_map_zoom_level', array(
1952 1952
 		1,
1953 1953
 		2,
1954 1954
 		3,
@@ -1968,7 +1968,7 @@  discard block
 block discarded – undo
1968 1968
 		17,
1969 1969
 		18,
1970 1970
 		19
1971
-	) );
1971
+	));
1972 1972
 
1973 1973
 }
1974 1974
 
@@ -1981,12 +1981,12 @@  discard block
 block discarded – undo
1981 1981
  *
1982 1982
  * @param string $geodir_option_name Option key.
1983 1983
  */
1984
-function geodir_option_version_backup( $geodir_option_name ) {
1984
+function geodir_option_version_backup($geodir_option_name) {
1985 1985
 	$version_date  = time();
1986
-	$geodir_option = get_option( $geodir_option_name );
1986
+	$geodir_option = get_option($geodir_option_name);
1987 1987
 
1988
-	if ( ! empty( $geodir_option ) ) {
1989
-		add_option( $geodir_option_name . '_' . $version_date, $geodir_option );
1988
+	if (!empty($geodir_option)) {
1989
+		add_option($geodir_option_name.'_'.$version_date, $geodir_option);
1990 1990
 	}
1991 1991
 }
1992 1992
 
@@ -2000,10 +2000,10 @@  discard block
 block discarded – undo
2000 2000
  *
2001 2001
  * @return int Page ID.
2002 2002
  */
2003
-function get_page_id_geodir_add_listing_page( $page_id ) {
2004
-	if ( geodir_wpml_multilingual_status() ) {
2003
+function get_page_id_geodir_add_listing_page($page_id) {
2004
+	if (geodir_wpml_multilingual_status()) {
2005 2005
 		$post_type = 'post_page';
2006
-		$page_id   = geodir_get_wpml_element_id( $page_id, $post_type );
2006
+		$page_id   = geodir_get_wpml_element_id($page_id, $post_type);
2007 2007
 	}
2008 2008
 
2009 2009
 	return $page_id;
@@ -2017,7 +2017,7 @@  discard block
 block discarded – undo
2017 2017
  * @return bool Returns true when sitepress multilingual CMS active. else returns false.
2018 2018
  */
2019 2019
 function geodir_wpml_multilingual_status() {
2020
-	if ( function_exists( 'icl_object_id' ) ) {
2020
+	if (function_exists('icl_object_id')) {
2021 2021
 		return true;
2022 2022
 	}
2023 2023
 
@@ -2035,19 +2035,19 @@  discard block
 block discarded – undo
2035 2035
  *
2036 2036
  * @return int Element ID when exists. Else the page id.
2037 2037
  */
2038
-function geodir_get_wpml_element_id( $page_id, $post_type ) {
2038
+function geodir_get_wpml_element_id($page_id, $post_type) {
2039 2039
 	global $sitepress;
2040
-	if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
2041
-		$trid = $sitepress->get_element_trid( $page_id, $post_type );
2040
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
2041
+		$trid = $sitepress->get_element_trid($page_id, $post_type);
2042 2042
 
2043
-		if ( $trid > 0 ) {
2044
-			$translations = $sitepress->get_element_translations( $trid, $post_type );
2043
+		if ($trid > 0) {
2044
+			$translations = $sitepress->get_element_translations($trid, $post_type);
2045 2045
 
2046 2046
 			$lang = $sitepress->get_current_language();
2047 2047
 			$lang = $lang ? $lang : $sitepress->get_default_language();
2048 2048
 
2049
-			if ( ! empty( $translations ) && ! empty( $lang ) && isset( $translations[ $lang ] ) && isset( $translations[ $lang ]->element_id ) && ! empty( $translations[ $lang ]->element_id ) ) {
2050
-				$page_id = $translations[ $lang ]->element_id;
2049
+			if (!empty($translations) && !empty($lang) && isset($translations[$lang]) && isset($translations[$lang]->element_id) && !empty($translations[$lang]->element_id)) {
2050
+				$page_id = $translations[$lang]->element_id;
2051 2051
 			}
2052 2052
 		}
2053 2053
 	}
@@ -2064,15 +2064,15 @@  discard block
 block discarded – undo
2064 2064
  */
2065 2065
 function geodir_wpml_check_element_id() {
2066 2066
 	global $sitepress;
2067
-	if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
2067
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
2068 2068
 		$el_type      = 'post_page';
2069
-		$el_id        = get_option( 'geodir_add_listing_page' );
2069
+		$el_id        = get_option('geodir_add_listing_page');
2070 2070
 		$default_lang = $sitepress->get_default_language();
2071
-		$el_details   = $sitepress->get_element_language_details( $el_id, $el_type );
2071
+		$el_details   = $sitepress->get_element_language_details($el_id, $el_type);
2072 2072
 
2073
-		if ( ! ( $el_id > 0 && $default_lang && ! empty( $el_details ) && isset( $el_details->language_code ) && $el_details->language_code == $default_lang ) ) {
2074
-			if ( ! $el_details->source_language_code ) {
2075
-				$sitepress->set_element_language_details( $el_id, $el_type, '', $default_lang );
2073
+		if (!($el_id > 0 && $default_lang && !empty($el_details) && isset($el_details->language_code) && $el_details->language_code == $default_lang)) {
2074
+			if (!$el_details->source_language_code) {
2075
+				$sitepress->set_element_language_details($el_id, $el_type, '', $default_lang);
2076 2076
 				$sitepress->icl_translations_cache->clear();
2077 2077
 			}
2078 2078
 		}
@@ -2091,41 +2091,41 @@  discard block
 block discarded – undo
2091 2091
  *
2092 2092
  * @return string Orderby SQL.
2093 2093
  */
2094
-function geodir_widget_listings_get_order( $query_args ) {
2094
+function geodir_widget_listings_get_order($query_args) {
2095 2095
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2096 2096
 
2097 2097
 	$query_args = $gd_query_args_widgets;
2098
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2099
-		return $wpdb->posts . ".post_date DESC, ";
2098
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2099
+		return $wpdb->posts.".post_date DESC, ";
2100 2100
 	}
2101 2101
 
2102
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2103
-	$table     = $plugin_prefix . $post_type . '_detail';
2102
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2103
+	$table     = $plugin_prefix.$post_type.'_detail';
2104 2104
 
2105
-	$sort_by = ! empty( $query_args['order_by'] ) ? $query_args['order_by'] : '';
2105
+	$sort_by = !empty($query_args['order_by']) ? $query_args['order_by'] : '';
2106 2106
 
2107
-	switch ( $sort_by ) {
2107
+	switch ($sort_by) {
2108 2108
 		case 'latest':
2109 2109
 		case 'newest':
2110
-			$orderby = $wpdb->posts . ".post_date DESC, ";
2110
+			$orderby = $wpdb->posts.".post_date DESC, ";
2111 2111
 			break;
2112 2112
 		case 'featured':
2113
-			$orderby = $table . ".is_featured ASC, ";
2113
+			$orderby = $table.".is_featured ASC, ";
2114 2114
 			break;
2115 2115
 		case 'az':
2116
-			$orderby = $wpdb->posts . ".post_title ASC, ";
2116
+			$orderby = $wpdb->posts.".post_title ASC, ";
2117 2117
 			break;
2118 2118
 		case 'high_review':
2119
-			$orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
2119
+			$orderby = $table.".rating_count DESC, ".$table.".overall_rating DESC, ";
2120 2120
 			break;
2121 2121
 		case 'high_rating':
2122
-			$orderby = "( " . $table . ".overall_rating  ) DESC, ";
2122
+			$orderby = "( ".$table.".overall_rating  ) DESC, ";
2123 2123
 			break;
2124 2124
 		case 'random':
2125 2125
 			$orderby = "RAND(), ";
2126 2126
 			break;
2127 2127
 		default:
2128
-			$orderby = $wpdb->posts . ".post_title ASC, ";
2128
+			$orderby = $wpdb->posts.".post_title ASC, ";
2129 2129
 			break;
2130 2130
 	}
2131 2131
 
@@ -2147,15 +2147,15 @@  discard block
 block discarded – undo
2147 2147
  *
2148 2148
  * @return mixed Result object.
2149 2149
  */
2150
-function geodir_get_widget_listings( $query_args = array(), $count_only = false ) {
2150
+function geodir_get_widget_listings($query_args = array(), $count_only = false) {
2151 2151
 	global $wpdb, $plugin_prefix, $table_prefix;
2152 2152
 	$GLOBALS['gd_query_args_widgets'] = $query_args;
2153 2153
 	$gd_query_args_widgets            = $query_args;
2154 2154
 
2155
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2156
-	$table     = $plugin_prefix . $post_type . '_detail';
2155
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2156
+	$table     = $plugin_prefix.$post_type.'_detail';
2157 2157
 
2158
-	$fields = $wpdb->posts . ".*, " . $table . ".*";
2158
+	$fields = $wpdb->posts.".*, ".$table.".*";
2159 2159
 	/**
2160 2160
 	 * Filter widget listing fields string part that is being used for query.
2161 2161
 	 *
@@ -2165,17 +2165,17 @@  discard block
 block discarded – undo
2165 2165
 	 * @param string $table     Table name.
2166 2166
 	 * @param string $post_type Post type.
2167 2167
 	 */
2168
-	$fields = apply_filters( 'geodir_filter_widget_listings_fields', $fields, $table, $post_type );
2168
+	$fields = apply_filters('geodir_filter_widget_listings_fields', $fields, $table, $post_type);
2169 2169
 
2170
-	$join = "INNER JOIN " . $table . " ON (" . $table . ".post_id = " . $wpdb->posts . ".ID)";
2170
+	$join = "INNER JOIN ".$table." ON (".$table.".post_id = ".$wpdb->posts.".ID)";
2171 2171
 
2172 2172
 	########### WPML ###########
2173 2173
 
2174
-	if ( function_exists( 'icl_object_id' ) ) {
2174
+	if (function_exists('icl_object_id')) {
2175 2175
 		global $sitepress;
2176 2176
 		$lang_code = ICL_LANGUAGE_CODE;
2177
-		if ( $lang_code ) {
2178
-			$join .= " JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
2177
+		if ($lang_code) {
2178
+			$join .= " JOIN ".$table_prefix."icl_translations icl_t ON icl_t.element_id = ".$table_prefix."posts.ID";
2179 2179
 		}
2180 2180
 	}
2181 2181
 
@@ -2189,15 +2189,15 @@  discard block
 block discarded – undo
2189 2189
 	 * @param string $join      Join clause string.
2190 2190
 	 * @param string $post_type Post type.
2191 2191
 	 */
2192
-	$join = apply_filters( 'geodir_filter_widget_listings_join', $join, $post_type );
2192
+	$join = apply_filters('geodir_filter_widget_listings_join', $join, $post_type);
2193 2193
 
2194
-	$post_status = is_super_admin() ? " OR " . $wpdb->posts . ".post_status = 'private'" : '';
2194
+	$post_status = is_super_admin() ? " OR ".$wpdb->posts.".post_status = 'private'" : '';
2195 2195
 
2196
-	$where = " AND ( " . $wpdb->posts . ".post_status = 'publish' " . $post_status . " ) AND " . $wpdb->posts . ".post_type = '" . $post_type . "'";
2196
+	$where = " AND ( ".$wpdb->posts.".post_status = 'publish' ".$post_status." ) AND ".$wpdb->posts.".post_type = '".$post_type."'";
2197 2197
 
2198 2198
 	########### WPML ###########
2199
-	if ( function_exists( 'icl_object_id' ) ) {
2200
-		if ( $lang_code ) {
2199
+	if (function_exists('icl_object_id')) {
2200
+		if ($lang_code) {
2201 2201
 			$where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type = 'post_$post_type' ";
2202 2202
 		}
2203 2203
 	}
@@ -2210,8 +2210,8 @@  discard block
 block discarded – undo
2210 2210
 	 * @param string $where     Where clause string.
2211 2211
 	 * @param string $post_type Post type.
2212 2212
 	 */
2213
-	$where = apply_filters( 'geodir_filter_widget_listings_where', $where, $post_type );
2214
-	$where = $where != '' ? " WHERE 1=1 " . $where : '';
2213
+	$where = apply_filters('geodir_filter_widget_listings_where', $where, $post_type);
2214
+	$where = $where != '' ? " WHERE 1=1 ".$where : '';
2215 2215
 
2216 2216
 	$groupby = " GROUP BY $wpdb->posts.ID ";
2217 2217
 	/**
@@ -2222,15 +2222,15 @@  discard block
 block discarded – undo
2222 2222
 	 * @param string $groupby   Group by clause string.
2223 2223
 	 * @param string $post_type Post type.
2224 2224
 	 */
2225
-	$groupby = apply_filters( 'geodir_filter_widget_listings_groupby', $groupby, $post_type );
2225
+	$groupby = apply_filters('geodir_filter_widget_listings_groupby', $groupby, $post_type);
2226 2226
 
2227
-	if ( $count_only ) {
2228
-		$sql  = "SELECT COUNT(" . $wpdb->posts . ".ID) AS total FROM " . $wpdb->posts . "
2229
-			" . $join . "
2227
+	if ($count_only) {
2228
+		$sql  = "SELECT COUNT(".$wpdb->posts.".ID) AS total FROM ".$wpdb->posts."
2229
+			" . $join."
2230 2230
 			" . $where;
2231
-		$rows = (int) $wpdb->get_var( $sql );
2231
+		$rows = (int) $wpdb->get_var($sql);
2232 2232
 	} else {
2233
-		$orderby = geodir_widget_listings_get_order( $query_args );
2233
+		$orderby = geodir_widget_listings_get_order($query_args);
2234 2234
 		/**
2235 2235
 		 * Filter widget listing orderby clause string part that is being used for query.
2236 2236
 		 *
@@ -2240,11 +2240,11 @@  discard block
 block discarded – undo
2240 2240
 		 * @param string $table     Table name.
2241 2241
 		 * @param string $post_type Post type.
2242 2242
 		 */
2243
-		$orderby = apply_filters( 'geodir_filter_widget_listings_orderby', $orderby, $table, $post_type );
2244
-		$orderby .= $wpdb->posts . ".post_title ASC";
2245
-		$orderby = $orderby != '' ? " ORDER BY " . $orderby : '';
2243
+		$orderby = apply_filters('geodir_filter_widget_listings_orderby', $orderby, $table, $post_type);
2244
+		$orderby .= $wpdb->posts.".post_title ASC";
2245
+		$orderby = $orderby != '' ? " ORDER BY ".$orderby : '';
2246 2246
 
2247
-		$limit = ! empty( $query_args['posts_per_page'] ) ? $query_args['posts_per_page'] : 5;
2247
+		$limit = !empty($query_args['posts_per_page']) ? $query_args['posts_per_page'] : 5;
2248 2248
 		/**
2249 2249
 		 * Filter widget listing limit that is being used for query.
2250 2250
 		 *
@@ -2253,26 +2253,26 @@  discard block
 block discarded – undo
2253 2253
 		 * @param int $limit        Query results limit.
2254 2254
 		 * @param string $post_type Post type.
2255 2255
 		 */
2256
-		$limit = apply_filters( 'geodir_filter_widget_listings_limit', $limit, $post_type );
2256
+		$limit = apply_filters('geodir_filter_widget_listings_limit', $limit, $post_type);
2257 2257
 
2258
-		$page = ! empty( $query_args['pageno'] ) ? absint( $query_args['pageno'] ) : 1;
2259
-		if ( ! $page ) {
2258
+		$page = !empty($query_args['pageno']) ? absint($query_args['pageno']) : 1;
2259
+		if (!$page) {
2260 2260
 			$page = 1;
2261 2261
 		}
2262 2262
 
2263
-		$limit = (int) $limit > 0 ? " LIMIT " . absint( ( $page - 1 ) * (int) $limit ) . ", " . (int) $limit : "";
2263
+		$limit = (int) $limit > 0 ? " LIMIT ".absint(($page - 1) * (int) $limit).", ".(int) $limit : "";
2264 2264
 
2265
-		$sql  = "SELECT SQL_CALC_FOUND_ROWS " . $fields . " FROM " . $wpdb->posts . "
2266
-			" . $join . "
2267
-			" . $where . "
2268
-			" . $groupby . "
2269
-			" . $orderby . "
2265
+		$sql = "SELECT SQL_CALC_FOUND_ROWS ".$fields." FROM ".$wpdb->posts."
2266
+			" . $join."
2267
+			" . $where."
2268
+			" . $groupby."
2269
+			" . $orderby."
2270 2270
 			" . $limit;
2271
-		$rows = $wpdb->get_results( $sql );
2271
+		$rows = $wpdb->get_results($sql);
2272 2272
 	}
2273 2273
 
2274
-	unset( $GLOBALS['gd_query_args_widgets'] );
2275
-	unset( $gd_query_args_widgets );
2274
+	unset($GLOBALS['gd_query_args_widgets']);
2275
+	unset($gd_query_args_widgets);
2276 2276
 
2277 2277
 	return $rows;
2278 2278
 }
@@ -2289,11 +2289,11 @@  discard block
 block discarded – undo
2289 2289
  *
2290 2290
  * @return string Modified fields SQL.
2291 2291
  */
2292
-function geodir_function_widget_listings_fields( $fields ) {
2292
+function geodir_function_widget_listings_fields($fields) {
2293 2293
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2294 2294
 
2295 2295
 	$query_args = $gd_query_args_widgets;
2296
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2296
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2297 2297
 		return $fields;
2298 2298
 	}
2299 2299
 
@@ -2312,24 +2312,24 @@  discard block
 block discarded – undo
2312 2312
  *
2313 2313
  * @return string Modified join clause SQL.
2314 2314
  */
2315
-function geodir_function_widget_listings_join( $join ) {
2315
+function geodir_function_widget_listings_join($join) {
2316 2316
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2317 2317
 
2318 2318
 	$query_args = $gd_query_args_widgets;
2319
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2319
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2320 2320
 		return $join;
2321 2321
 	}
2322 2322
 
2323
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2324
-	$table     = $plugin_prefix . $post_type . '_detail';
2323
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2324
+	$table     = $plugin_prefix.$post_type.'_detail';
2325 2325
 
2326
-	if ( ! empty( $query_args['with_pics_only'] ) ) {
2327
-		$join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
2326
+	if (!empty($query_args['with_pics_only'])) {
2327
+		$join .= " LEFT JOIN ".GEODIR_ATTACHMENT_TABLE." ON ( ".GEODIR_ATTACHMENT_TABLE.".post_id=".$table.".post_id AND ".GEODIR_ATTACHMENT_TABLE.".mime_type LIKE '%image%' )";
2328 2328
 	}
2329 2329
 
2330
-	if ( ! empty( $query_args['tax_query'] ) ) {
2331
-		$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2332
-		if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2330
+	if (!empty($query_args['tax_query'])) {
2331
+		$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2332
+		if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2333 2333
 			$join .= $tax_queries['join'];
2334 2334
 		}
2335 2335
 	}
@@ -2349,49 +2349,49 @@  discard block
 block discarded – undo
2349 2349
  *
2350 2350
  * @return string Modified where clause SQL.
2351 2351
  */
2352
-function geodir_function_widget_listings_where( $where ) {
2352
+function geodir_function_widget_listings_where($where) {
2353 2353
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2354 2354
 
2355 2355
 	$query_args = $gd_query_args_widgets;
2356
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2356
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2357 2357
 		return $where;
2358 2358
 	}
2359
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2360
-	$table     = $plugin_prefix . $post_type . '_detail';
2359
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2360
+	$table     = $plugin_prefix.$post_type.'_detail';
2361 2361
 
2362
-	if ( ! empty( $query_args ) ) {
2363
-		if ( ! empty( $query_args['gd_location'] ) && function_exists( 'geodir_default_location_where' ) ) {
2364
-			$where = geodir_default_location_where( $where, $table );
2362
+	if (!empty($query_args)) {
2363
+		if (!empty($query_args['gd_location']) && function_exists('geodir_default_location_where')) {
2364
+			$where = geodir_default_location_where($where, $table);
2365 2365
 		}
2366 2366
 
2367
-		if ( ! empty( $query_args['post_author'] ) ) {
2368
-			$where .= " AND " . $wpdb->posts . ".post_author = " . (int) $query_args['post_author'];
2367
+		if (!empty($query_args['post_author'])) {
2368
+			$where .= " AND ".$wpdb->posts.".post_author = ".(int) $query_args['post_author'];
2369 2369
 		}
2370 2370
 
2371
-		if ( ! empty( $query_args['show_featured_only'] ) ) {
2372
-			$where .= " AND " . $table . ".is_featured = '1'";
2371
+		if (!empty($query_args['show_featured_only'])) {
2372
+			$where .= " AND ".$table.".is_featured = '1'";
2373 2373
 		}
2374 2374
 
2375
-		if ( ! empty( $query_args['show_special_only'] ) ) {
2376
-			$where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
2375
+		if (!empty($query_args['show_special_only'])) {
2376
+			$where .= " AND ( ".$table.".geodir_special_offers != '' AND ".$table.".geodir_special_offers IS NOT NULL )";
2377 2377
 		}
2378 2378
 
2379
-		if ( ! empty( $query_args['with_pics_only'] ) ) {
2380
-			$where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL ";
2379
+		if (!empty($query_args['with_pics_only'])) {
2380
+			$where .= " AND ".GEODIR_ATTACHMENT_TABLE.".ID IS NOT NULL ";
2381 2381
 		}
2382 2382
 
2383
-		if ( ! empty( $query_args['featured_image_only'] ) ) {
2384
-			$where .= " AND " . $table . ".featured_image IS NOT NULL AND " . $table . ".featured_image!='' ";
2383
+		if (!empty($query_args['featured_image_only'])) {
2384
+			$where .= " AND ".$table.".featured_image IS NOT NULL AND ".$table.".featured_image!='' ";
2385 2385
 		}
2386 2386
 
2387
-		if ( ! empty( $query_args['with_videos_only'] ) ) {
2388
-			$where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
2387
+		if (!empty($query_args['with_videos_only'])) {
2388
+			$where .= " AND ( ".$table.".geodir_video != '' AND ".$table.".geodir_video IS NOT NULL )";
2389 2389
 		}
2390 2390
 
2391
-		if ( ! empty( $query_args['tax_query'] ) ) {
2392
-			$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2391
+		if (!empty($query_args['tax_query'])) {
2392
+			$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2393 2393
 
2394
-			if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2394
+			if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2395 2395
 				$where .= $tax_queries['where'];
2396 2396
 			}
2397 2397
 		}
@@ -2412,11 +2412,11 @@  discard block
 block discarded – undo
2412 2412
  *
2413 2413
  * @return string Modified orderby clause SQL.
2414 2414
  */
2415
-function geodir_function_widget_listings_orderby( $orderby ) {
2415
+function geodir_function_widget_listings_orderby($orderby) {
2416 2416
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2417 2417
 
2418 2418
 	$query_args = $gd_query_args_widgets;
2419
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2419
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2420 2420
 		return $orderby;
2421 2421
 	}
2422 2422
 
@@ -2435,15 +2435,15 @@  discard block
 block discarded – undo
2435 2435
  *
2436 2436
  * @return int Query limit.
2437 2437
  */
2438
-function geodir_function_widget_listings_limit( $limit ) {
2438
+function geodir_function_widget_listings_limit($limit) {
2439 2439
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2440 2440
 
2441 2441
 	$query_args = $gd_query_args_widgets;
2442
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2442
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2443 2443
 		return $limit;
2444 2444
 	}
2445 2445
 
2446
-	if ( ! empty( $query_args ) && ! empty( $query_args['posts_per_page'] ) ) {
2446
+	if (!empty($query_args) && !empty($query_args['posts_per_page'])) {
2447 2447
 		$limit = (int) $query_args['posts_per_page'];
2448 2448
 	}
2449 2449
 
@@ -2461,12 +2461,12 @@  discard block
 block discarded – undo
2461 2461
  *
2462 2462
  * @return int Large size width.
2463 2463
  */
2464
-function geodir_media_image_large_width( $default = 800, $params = '' ) {
2465
-	$large_size_w = get_option( 'large_size_w' );
2464
+function geodir_media_image_large_width($default = 800, $params = '') {
2465
+	$large_size_w = get_option('large_size_w');
2466 2466
 	$large_size_w = $large_size_w > 0 ? $large_size_w : $default;
2467
-	$large_size_w = absint( $large_size_w );
2467
+	$large_size_w = absint($large_size_w);
2468 2468
 
2469
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2469
+	if (!get_option('geodir_use_wp_media_large_size')) {
2470 2470
 		$large_size_w = 800;
2471 2471
 	}
2472 2472
 
@@ -2479,7 +2479,7 @@  discard block
 block discarded – undo
2479 2479
 	 * @param int $default         Default width.
2480 2480
 	 * @param string|array $params Image parameters.
2481 2481
 	 */
2482
-	$large_size_w = apply_filters( 'geodir_filter_media_image_large_width', $large_size_w, $default, $params );
2482
+	$large_size_w = apply_filters('geodir_filter_media_image_large_width', $large_size_w, $default, $params);
2483 2483
 
2484 2484
 	return $large_size_w;
2485 2485
 }
@@ -2495,12 +2495,12 @@  discard block
 block discarded – undo
2495 2495
  *
2496 2496
  * @return int Large size height.
2497 2497
  */
2498
-function geodir_media_image_large_height( $default = 800, $params = '' ) {
2499
-	$large_size_h = get_option( 'large_size_h' );
2498
+function geodir_media_image_large_height($default = 800, $params = '') {
2499
+	$large_size_h = get_option('large_size_h');
2500 2500
 	$large_size_h = $large_size_h > 0 ? $large_size_h : $default;
2501
-	$large_size_h = absint( $large_size_h );
2501
+	$large_size_h = absint($large_size_h);
2502 2502
 
2503
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2503
+	if (!get_option('geodir_use_wp_media_large_size')) {
2504 2504
 		$large_size_h = 800;
2505 2505
 	}
2506 2506
 
@@ -2513,7 +2513,7 @@  discard block
 block discarded – undo
2513 2513
 	 * @param int $default         Default height.
2514 2514
 	 * @param string|array $params Image parameters.
2515 2515
 	 */
2516
-	$large_size_h = apply_filters( 'geodir_filter_media_image_large_height', $large_size_h, $default, $params );
2516
+	$large_size_h = apply_filters('geodir_filter_media_image_large_height', $large_size_h, $default, $params);
2517 2517
 
2518 2518
 	return $large_size_h;
2519 2519
 }
@@ -2530,8 +2530,8 @@  discard block
 block discarded – undo
2530 2530
  *
2531 2531
  * @return string Sanitized name.
2532 2532
  */
2533
-function geodir_sanitize_location_name( $type, $name, $translate = true ) {
2534
-	if ( $name == '' ) {
2533
+function geodir_sanitize_location_name($type, $name, $translate = true) {
2534
+	if ($name == '') {
2535 2535
 		return null;
2536 2536
 	}
2537 2537
 
@@ -2540,13 +2540,13 @@  discard block
 block discarded – undo
2540 2540
 	$type = $type == 'gd_city' ? 'city' : $type;
2541 2541
 
2542 2542
 	$return = $name;
2543
-	if ( function_exists( 'get_actual_location_name' ) ) {
2544
-		$return = get_actual_location_name( $type, $name, $translate );
2543
+	if (function_exists('get_actual_location_name')) {
2544
+		$return = get_actual_location_name($type, $name, $translate);
2545 2545
 	} else {
2546
-		$return = preg_replace( '/-(\d+)$/', '', $return );
2547
-		$return = preg_replace( '/[_-]/', ' ', $return );
2548
-		$return = geodir_ucwords( $return );
2549
-		$return = $translate ? __( $return, 'geodirectory' ) : $return;
2546
+		$return = preg_replace('/-(\d+)$/', '', $return);
2547
+		$return = preg_replace('/[_-]/', ' ', $return);
2548
+		$return = geodir_ucwords($return);
2549
+		$return = $translate ? __($return, 'geodirectory') : $return;
2550 2550
 	}
2551 2551
 
2552 2552
 	return $return;
@@ -2561,14 +2561,14 @@  discard block
 block discarded – undo
2561 2561
  *
2562 2562
  * @param int $number Comments number.
2563 2563
  */
2564
-function geodir_comments_number( $number ) {
2564
+function geodir_comments_number($number) {
2565 2565
 
2566
-	if ( $number > 1 ) {
2567
-		$output = str_replace( '%', number_format_i18n( $number ), __( '% Reviews', 'geodirectory' ) );
2568
-	} elseif ( $number == 0 || $number == '' ) {
2569
-		$output = __( 'No Reviews', 'geodirectory' );
2566
+	if ($number > 1) {
2567
+		$output = str_replace('%', number_format_i18n($number), __('% Reviews', 'geodirectory'));
2568
+	} elseif ($number == 0 || $number == '') {
2569
+		$output = __('No Reviews', 'geodirectory');
2570 2570
 	} else { // must be one
2571
-		$output = __( '1 Review', 'geodirectory' );
2571
+		$output = __('1 Review', 'geodirectory');
2572 2572
 	}
2573 2573
 	echo $output;
2574 2574
 }
@@ -2583,18 +2583,18 @@  discard block
 block discarded – undo
2583 2583
  */
2584 2584
 function is_page_geodir_home() {
2585 2585
 	global $wpdb;
2586
-	$cur_url = str_replace( array( "https://", "http://", "www." ), array( '', '', '' ), geodir_curPageURL() );
2587
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2588
-		remove_filter( 'home_url', 'geodir_location_geo_home_link', 100000 );
2586
+	$cur_url = str_replace(array("https://", "http://", "www."), array('', '', ''), geodir_curPageURL());
2587
+	if (function_exists('geodir_location_geo_home_link')) {
2588
+		remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
2589 2589
 	}
2590
-	$home_url = home_url( '', 'http' );
2591
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2592
-		add_filter( 'home_url', 'geodir_location_geo_home_link', 100000, 2 );
2590
+	$home_url = home_url('', 'http');
2591
+	if (function_exists('geodir_location_geo_home_link')) {
2592
+		add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
2593 2593
 	}
2594
-	$home_url = str_replace( "www.", "", $home_url );
2595
-	if ( ( strpos( $home_url, $cur_url ) !== false || strpos( $home_url . '/', $cur_url ) !== false ) && ( 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && get_option( 'page_on_front' ) == get_option( 'geodir_home_page' ) ) ) {
2594
+	$home_url = str_replace("www.", "", $home_url);
2595
+	if ((strpos($home_url, $cur_url) !== false || strpos($home_url.'/', $cur_url) !== false) && ('page' == get_option('show_on_front') && get_option('page_on_front') && get_option('page_on_front') == get_option('geodir_home_page'))) {
2596 2596
 		return true;
2597
-	} elseif ( get_query_var( 'page_id' ) == get_option( 'page_on_front' ) && 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && get_option( 'page_on_front' ) == get_option( 'geodir_home_page' ) ) {
2597
+	} elseif (get_query_var('page_id') == get_option('page_on_front') && 'page' == get_option('show_on_front') && get_option('page_on_front') && get_option('page_on_front') == get_option('geodir_home_page')) {
2598 2598
 		return true;
2599 2599
 	} else {
2600 2600
 		return false;
@@ -2614,18 +2614,18 @@  discard block
 block discarded – undo
2614 2614
  *
2615 2615
  * @return string The canonical URL.
2616 2616
  */
2617
-function geodir_wpseo_homepage_canonical( $url ) {
2617
+function geodir_wpseo_homepage_canonical($url) {
2618 2618
 	global $post;
2619 2619
 
2620
-	if ( is_page_geodir_home() ) {
2620
+	if (is_page_geodir_home()) {
2621 2621
 		return home_url();
2622 2622
 	}
2623 2623
 
2624 2624
 	return $url;
2625 2625
 }
2626 2626
 
2627
-add_filter( 'wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10 );
2628
-add_filter( 'aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10 );
2627
+add_filter('wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10);
2628
+add_filter('aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10);
2629 2629
 
2630 2630
 /**
2631 2631
  * Add extra fields to google maps script call.
@@ -2638,20 +2638,20 @@  discard block
 block discarded – undo
2638 2638
  *
2639 2639
  * @return string Modified extra string.
2640 2640
  */
2641
-function geodir_googlemap_script_extra_details_page( $extra ) {
2641
+function geodir_googlemap_script_extra_details_page($extra) {
2642 2642
 	global $post;
2643 2643
 	$add_google_places_api = false;
2644
-	if ( isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
2644
+	if (isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
2645 2645
 		$add_google_places_api = true;
2646 2646
 	}
2647
-	if ( ! str_replace( 'libraries=places', '', $extra ) && ( geodir_is_page( 'detail' ) || $add_google_places_api ) ) {
2647
+	if (!str_replace('libraries=places', '', $extra) && (geodir_is_page('detail') || $add_google_places_api)) {
2648 2648
 		$extra .= "&amp;libraries=places";
2649 2649
 	}
2650 2650
 
2651 2651
 	return $extra;
2652 2652
 }
2653 2653
 
2654
-add_filter( 'geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1 );
2654
+add_filter('geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1);
2655 2655
 
2656 2656
 
2657 2657
 /**
@@ -2669,99 +2669,99 @@  discard block
 block discarded – undo
2669 2669
  *                                          after_widget.
2670 2670
  * @param array|string $instance            The settings for the particular instance of the widget.
2671 2671
  */
2672
-function geodir_popular_post_category_output( $args = '', $instance = '' ) {
2672
+function geodir_popular_post_category_output($args = '', $instance = '') {
2673 2673
 	// prints the widget
2674 2674
 	global $wpdb, $plugin_prefix, $geodir_post_category_str;
2675
-	extract( $args, EXTR_SKIP );
2675
+	extract($args, EXTR_SKIP);
2676 2676
 
2677 2677
 	echo $before_widget;
2678 2678
 
2679 2679
 	/** This filter is documented in geodirectory_widgets.php */
2680
-	$title = empty( $instance['title'] ) ? __( 'Popular Categories', 'geodirectory' ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
2680
+	$title = empty($instance['title']) ? __('Popular Categories', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2681 2681
 
2682 2682
 	$gd_post_type = geodir_get_current_posttype();
2683 2683
 
2684
-	$category_limit = isset( $instance['category_limit'] ) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2685
-	if ( ! empty( $gd_post_type ) ) {
2684
+	$category_limit = isset($instance['category_limit']) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2685
+	if (!empty($gd_post_type)) {
2686 2686
 		$default_post_type = $gd_post_type;
2687
-	} elseif ( isset( $instance['default_post_type'] ) && gdsc_is_post_type_valid( $instance['default_post_type'] ) ) {
2687
+	} elseif (isset($instance['default_post_type']) && gdsc_is_post_type_valid($instance['default_post_type'])) {
2688 2688
 		$default_post_type = $instance['default_post_type'];
2689 2689
 	} else {
2690 2690
 		$all_gd_post_type  = geodir_get_posttypes();
2691
-		$default_post_type = ( isset( $all_gd_post_type[0] ) ) ? $all_gd_post_type[0] : '';
2691
+		$default_post_type = (isset($all_gd_post_type[0])) ? $all_gd_post_type[0] : '';
2692 2692
 	}
2693
-	$parent_only = !empty( $instance['parent_only'] ) ? true : false;
2693
+	$parent_only = !empty($instance['parent_only']) ? true : false;
2694 2694
 
2695 2695
 	$taxonomy = array();
2696
-	if ( ! empty( $gd_post_type ) ) {
2697
-		$taxonomy[] = $gd_post_type . "category";
2696
+	if (!empty($gd_post_type)) {
2697
+		$taxonomy[] = $gd_post_type."category";
2698 2698
 	} else {
2699
-		$taxonomy = geodir_get_taxonomies( $gd_post_type );
2699
+		$taxonomy = geodir_get_taxonomies($gd_post_type);
2700 2700
 	}
2701 2701
     
2702
-	$term_args = array( 'taxonomy' => $taxonomy );
2703
-	if ( $parent_only ) {
2702
+	$term_args = array('taxonomy' => $taxonomy);
2703
+	if ($parent_only) {
2704 2704
 		$term_args['parent'] = 0;
2705 2705
 	}
2706 2706
 
2707
-	$terms   = get_terms( $term_args );
2707
+	$terms   = get_terms($term_args);
2708 2708
 	$a_terms = array();
2709 2709
 	$b_terms = array();
2710 2710
 
2711
-	foreach ( $terms as $term ) {
2712
-		if ( $term->count > 0 ) {
2713
-			$a_terms[ $term->taxonomy ][] = $term;
2711
+	foreach ($terms as $term) {
2712
+		if ($term->count > 0) {
2713
+			$a_terms[$term->taxonomy][] = $term;
2714 2714
 		}
2715 2715
 	}
2716 2716
 
2717
-	if ( ! empty( $a_terms ) ) {
2718
-		foreach ( $a_terms as $b_key => $b_val ) {
2719
-			$b_terms[ $b_key ] = geodir_sort_terms( $b_val, 'count' );
2717
+	if (!empty($a_terms)) {
2718
+		foreach ($a_terms as $b_key => $b_val) {
2719
+			$b_terms[$b_key] = geodir_sort_terms($b_val, 'count');
2720 2720
 		}
2721 2721
 
2722
-		$default_taxonomy = $default_post_type != '' && isset( $b_terms[ $default_post_type . 'category' ] ) ? $default_post_type . 'category' : '';
2722
+		$default_taxonomy = $default_post_type != '' && isset($b_terms[$default_post_type.'category']) ? $default_post_type.'category' : '';
2723 2723
 
2724 2724
 		$tax_change_output = '';
2725
-		if ( count( $b_terms ) > 1 ) {
2726
-			$tax_change_output .= "<select data-limit='$category_limit' data-parent='" . (int)$parent_only . "' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2727
-			foreach ( $b_terms as $key => $val ) {
2728
-				$ptype    = get_post_type_object( str_replace( "category", "", $key ) );
2729
-				$cpt_name = __( $ptype->labels->singular_name, 'geodirectory' );
2730
-				$tax_change_output .= "<option value='$key' " . selected( $key, $default_taxonomy, false ) . ">" . sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name ) . "</option>";
2725
+		if (count($b_terms) > 1) {
2726
+			$tax_change_output .= "<select data-limit='$category_limit' data-parent='".(int) $parent_only."' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2727
+			foreach ($b_terms as $key => $val) {
2728
+				$ptype    = get_post_type_object(str_replace("category", "", $key));
2729
+				$cpt_name = __($ptype->labels->singular_name, 'geodirectory');
2730
+				$tax_change_output .= "<option value='$key' ".selected($key, $default_taxonomy, false).">".sprintf(__('%s Categories', 'geodirectory'), $cpt_name)."</option>";
2731 2731
 			}
2732 2732
 			$tax_change_output .= "</select>";
2733 2733
 		}
2734 2734
 
2735
-		if ( ! empty( $b_terms ) ) {
2736
-			$terms = $default_taxonomy != '' && isset( $b_terms[ $default_taxonomy ] ) ? $b_terms[ $default_taxonomy ] : reset( $b_terms );// get the first array
2737
-			global $cat_count;//make global so we can change via function
2735
+		if (!empty($b_terms)) {
2736
+			$terms = $default_taxonomy != '' && isset($b_terms[$default_taxonomy]) ? $b_terms[$default_taxonomy] : reset($b_terms); // get the first array
2737
+			global $cat_count; //make global so we can change via function
2738 2738
 			$cat_count = 0;
2739 2739
 			?>
2740 2740
 			<div class="geodir-category-list-in clearfix">
2741 2741
 				<div class="geodir-cat-list clearfix">
2742 2742
 					<?php
2743
-					echo $before_title . __( $title ) . $after_title;
2743
+					echo $before_title.__($title).$after_title;
2744 2744
 
2745 2745
 					echo $tax_change_output;
2746 2746
 
2747 2747
 					echo '<ul class="geodir-popular-cat-list">';
2748 2748
 
2749
-					geodir_helper_cat_list_output( $terms, $category_limit );
2749
+					geodir_helper_cat_list_output($terms, $category_limit);
2750 2750
 
2751 2751
 					echo '</ul>';
2752 2752
 					?>
2753 2753
 				</div>
2754 2754
 				<?php
2755 2755
 				$hide = '';
2756
-				if ( $cat_count < $category_limit ) {
2756
+				if ($cat_count < $category_limit) {
2757 2757
 					$hide = 'style="display:none;"';
2758 2758
 				}
2759 2759
 				echo "<div class='geodir-cat-list-more' $hide >";
2760
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">' . __( 'More Categories', 'geodirectory' ) . '</a>';
2761
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">' . __( 'Less Categories', 'geodirectory' ) . '</a>';
2760
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">'.__('More Categories', 'geodirectory').'</a>';
2761
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">'.__('Less Categories', 'geodirectory').'</a>';
2762 2762
 				echo "</div>";
2763 2763
 				/* add scripts */
2764
-				add_action( 'wp_footer', 'geodir_popular_category_add_scripts', 100 );
2764
+				add_action('wp_footer', 'geodir_popular_category_add_scripts', 100);
2765 2765
 				?>
2766 2766
 			</div>
2767 2767
 			<?php
@@ -2780,25 +2780,25 @@  discard block
 block discarded – undo
2780 2780
  * @param array $terms                      An array of term objects.
2781 2781
  * @param int $category_limit               Number of categories to display by default.
2782 2782
  */
2783
-function geodir_helper_cat_list_output( $terms, $category_limit ) {
2783
+function geodir_helper_cat_list_output($terms, $category_limit) {
2784 2784
 	global $geodir_post_category_str, $cat_count;
2785 2785
 	$term_icons = geodir_get_term_icon();
2786 2786
 
2787 2787
 	$geodir_post_category_str = array();
2788 2788
 
2789 2789
 
2790
-	foreach ( $terms as $cat ) {
2791
-		$post_type     = str_replace( "category", "", $cat->taxonomy );
2792
-		$term_icon_url = ! empty( $term_icons ) && isset( $term_icons[ $cat->term_id ] ) ? $term_icons[ $cat->term_id ] : '';
2790
+	foreach ($terms as $cat) {
2791
+		$post_type     = str_replace("category", "", $cat->taxonomy);
2792
+		$term_icon_url = !empty($term_icons) && isset($term_icons[$cat->term_id]) ? $term_icons[$cat->term_id] : '';
2793 2793
 
2794
-		$cat_count ++;
2794
+		$cat_count++;
2795 2795
 
2796
-		$geodir_post_category_str[] = array( 'posttype' => $post_type, 'termid' => $cat->term_id );
2796
+		$geodir_post_category_str[] = array('posttype' => $post_type, 'termid' => $cat->term_id);
2797 2797
 
2798 2798
 		$class_row  = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
2799 2799
 		$total_post = $cat->count;
2800 2800
 
2801
-		$term_link = get_term_link( $cat, $cat->taxonomy );
2801
+		$term_link = get_term_link($cat, $cat->taxonomy);
2802 2802
 		/**
2803 2803
 		 * Filer the category term link.
2804 2804
 		 *
@@ -2808,11 +2808,11 @@  discard block
 block discarded – undo
2808 2808
 		 * @param int $cat          ->term_id The term id.
2809 2809
 		 * @param string $post_type Wordpress post type.
2810 2810
 		 */
2811
-		$term_link = apply_filters( 'geodir_category_term_link', $term_link, $cat->term_id, $post_type );
2811
+		$term_link = apply_filters('geodir_category_term_link', $term_link, $cat->term_id, $post_type);
2812 2812
 
2813
-		echo '<li class="' . $class_row . '"><a href="' . $term_link . '">';
2814
-		echo '<img alt="' . esc_attr( $cat->name ) . ' icon" style="height:20px;vertical-align:middle;" src="' . $term_icon_url . '"/> <span class="cat-link">';
2815
-		echo $cat->name . '</span> <span class="geodir_term_class geodir_link_span geodir_category_class_' . $post_type . '_' . $cat->term_id . '">(' . $total_post . ')</span> ';
2813
+		echo '<li class="'.$class_row.'"><a href="'.$term_link.'">';
2814
+		echo '<img alt="'.esc_attr($cat->name).' icon" style="height:20px;vertical-align:middle;" src="'.$term_icon_url.'"/> <span class="cat-link">';
2815
+		echo $cat->name.'</span> <span class="geodir_term_class geodir_link_span geodir_category_class_'.$post_type.'_'.$cat->term_id.'">('.$total_post.')</span> ';
2816 2816
 		echo '</a></li>';
2817 2817
 	}
2818 2818
 }
@@ -2827,14 +2827,14 @@  discard block
 block discarded – undo
2827 2827
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
2828 2828
  * @param array|string $instance The settings for the particular instance of the widget.
2829 2829
  */
2830
-function geodir_listing_slider_widget_output( $args = '', $instance = '' ) {
2830
+function geodir_listing_slider_widget_output($args = '', $instance = '') {
2831 2831
 	// prints the widget
2832
-	extract( $args, EXTR_SKIP );
2832
+	extract($args, EXTR_SKIP);
2833 2833
 
2834 2834
 	echo $before_widget;
2835 2835
 
2836 2836
 	/** This filter is documented in geodirectory_widgets.php */
2837
-	$title = empty( $instance['title'] ) ? '' : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
2837
+	$title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2838 2838
 	/**
2839 2839
 	 * Filter the widget post type.
2840 2840
 	 *
@@ -2842,7 +2842,7 @@  discard block
 block discarded – undo
2842 2842
 	 *
2843 2843
 	 * @param string $instance ['post_type'] Post type of listing.
2844 2844
 	 */
2845
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
2845
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
2846 2846
 	/**
2847 2847
 	 * Filter the widget's term.
2848 2848
 	 *
@@ -2850,7 +2850,7 @@  discard block
 block discarded – undo
2850 2850
 	 *
2851 2851
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
2852 2852
 	 */
2853
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
2853
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
2854 2854
 	/**
2855 2855
 	 * Filter widget's "add_location_filter" value.
2856 2856
 	 *
@@ -2858,7 +2858,7 @@  discard block
 block discarded – undo
2858 2858
 	 *
2859 2859
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
2860 2860
 	 */
2861
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
2861
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
2862 2862
 	/**
2863 2863
 	 * Filter the widget listings limit.
2864 2864
 	 *
@@ -2866,7 +2866,7 @@  discard block
 block discarded – undo
2866 2866
 	 *
2867 2867
 	 * @param string $instance ['post_number'] Number of listings to display.
2868 2868
 	 */
2869
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
2869
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
2870 2870
 	/**
2871 2871
 	 * Filter the widget listings limit shown at one time.
2872 2872
 	 *
@@ -2874,7 +2874,7 @@  discard block
 block discarded – undo
2874 2874
 	 *
2875 2875
 	 * @param string $instance ['max_show'] Number of listings to display on screen.
2876 2876
 	 */
2877
-	$max_show = empty( $instance['max_show'] ) ? '1' : apply_filters( 'widget_max_show', $instance['max_show'] );
2877
+	$max_show = empty($instance['max_show']) ? '1' : apply_filters('widget_max_show', $instance['max_show']);
2878 2878
 	/**
2879 2879
 	 * Filter the widget slide width.
2880 2880
 	 *
@@ -2882,7 +2882,7 @@  discard block
 block discarded – undo
2882 2882
 	 *
2883 2883
 	 * @param string $instance ['slide_width'] Width of the slides shown.
2884 2884
 	 */
2885
-	$slide_width = empty( $instance['slide_width'] ) ? '' : apply_filters( 'widget_slide_width', $instance['slide_width'] );
2885
+	$slide_width = empty($instance['slide_width']) ? '' : apply_filters('widget_slide_width', $instance['slide_width']);
2886 2886
 	/**
2887 2887
 	 * Filter widget's "show title" value.
2888 2888
 	 *
@@ -2890,7 +2890,7 @@  discard block
 block discarded – undo
2890 2890
 	 *
2891 2891
 	 * @param string|bool $instance ['show_title'] Do you want to display title? Can be 1 or 0.
2892 2892
 	 */
2893
-	$show_title = empty( $instance['show_title'] ) ? '' : apply_filters( 'widget_show_title', $instance['show_title'] );
2893
+	$show_title = empty($instance['show_title']) ? '' : apply_filters('widget_show_title', $instance['show_title']);
2894 2894
 	/**
2895 2895
 	 * Filter widget's "slideshow" value.
2896 2896
 	 *
@@ -2898,7 +2898,7 @@  discard block
 block discarded – undo
2898 2898
 	 *
2899 2899
 	 * @param int $instance ['slideshow'] Setup a slideshow for the slider to animate automatically.
2900 2900
 	 */
2901
-	$slideshow = empty( $instance['slideshow'] ) ? 0 : apply_filters( 'widget_slideshow', $instance['slideshow'] );
2901
+	$slideshow = empty($instance['slideshow']) ? 0 : apply_filters('widget_slideshow', $instance['slideshow']);
2902 2902
 	/**
2903 2903
 	 * Filter widget's "animationLoop" value.
2904 2904
 	 *
@@ -2906,7 +2906,7 @@  discard block
 block discarded – undo
2906 2906
 	 *
2907 2907
 	 * @param int $instance ['animationLoop'] Gives the slider a seamless infinite loop.
2908 2908
 	 */
2909
-	$animationLoop = empty( $instance['animationLoop'] ) ? 0 : apply_filters( 'widget_animationLoop', $instance['animationLoop'] );
2909
+	$animationLoop = empty($instance['animationLoop']) ? 0 : apply_filters('widget_animationLoop', $instance['animationLoop']);
2910 2910
 	/**
2911 2911
 	 * Filter widget's "directionNav" value.
2912 2912
 	 *
@@ -2914,7 +2914,7 @@  discard block
 block discarded – undo
2914 2914
 	 *
2915 2915
 	 * @param int $instance ['directionNav'] Enable previous/next arrow navigation?. Can be 1 or 0.
2916 2916
 	 */
2917
-	$directionNav = empty( $instance['directionNav'] ) ? 0 : apply_filters( 'widget_directionNav', $instance['directionNav'] );
2917
+	$directionNav = empty($instance['directionNav']) ? 0 : apply_filters('widget_directionNav', $instance['directionNav']);
2918 2918
 	/**
2919 2919
 	 * Filter widget's "slideshowSpeed" value.
2920 2920
 	 *
@@ -2922,7 +2922,7 @@  discard block
 block discarded – undo
2922 2922
 	 *
2923 2923
 	 * @param int $instance ['slideshowSpeed'] Set the speed of the slideshow cycling, in milliseconds.
2924 2924
 	 */
2925
-	$slideshowSpeed = empty( $instance['slideshowSpeed'] ) ? 5000 : apply_filters( 'widget_slideshowSpeed', $instance['slideshowSpeed'] );
2925
+	$slideshowSpeed = empty($instance['slideshowSpeed']) ? 5000 : apply_filters('widget_slideshowSpeed', $instance['slideshowSpeed']);
2926 2926
 	/**
2927 2927
 	 * Filter widget's "animationSpeed" value.
2928 2928
 	 *
@@ -2930,7 +2930,7 @@  discard block
 block discarded – undo
2930 2930
 	 *
2931 2931
 	 * @param int $instance ['animationSpeed'] Set the speed of animations, in milliseconds.
2932 2932
 	 */
2933
-	$animationSpeed = empty( $instance['animationSpeed'] ) ? 600 : apply_filters( 'widget_animationSpeed', $instance['animationSpeed'] );
2933
+	$animationSpeed = empty($instance['animationSpeed']) ? 600 : apply_filters('widget_animationSpeed', $instance['animationSpeed']);
2934 2934
 	/**
2935 2935
 	 * Filter widget's "animation" value.
2936 2936
 	 *
@@ -2938,7 +2938,7 @@  discard block
 block discarded – undo
2938 2938
 	 *
2939 2939
 	 * @param string $instance ['animation'] Controls the animation type, "fade" or "slide".
2940 2940
 	 */
2941
-	$animation = empty( $instance['animation'] ) ? 'slide' : apply_filters( 'widget_animation', $instance['animation'] );
2941
+	$animation = empty($instance['animation']) ? 'slide' : apply_filters('widget_animation', $instance['animation']);
2942 2942
 	/**
2943 2943
 	 * Filter widget's "list_sort" type.
2944 2944
 	 *
@@ -2946,10 +2946,10 @@  discard block
 block discarded – undo
2946 2946
 	 *
2947 2947
 	 * @param string $instance ['list_sort'] Listing sort by type.
2948 2948
 	 */
2949
-	$list_sort          = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
2950
-	$show_featured_only = ! empty( $instance['show_featured_only'] ) ? 1 : null;
2949
+	$list_sort          = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
2950
+	$show_featured_only = !empty($instance['show_featured_only']) ? 1 : null;
2951 2951
 
2952
-	wp_enqueue_script( 'geodirectory-jquery-flexslider-js' );
2952
+	wp_enqueue_script('geodirectory-jquery-flexslider-js');
2953 2953
 	?>
2954 2954
 	<script type="text/javascript">
2955 2955
 		jQuery(window).load(function () {
@@ -2964,23 +2964,23 @@  discard block
 block discarded – undo
2964 2964
 				itemWidth: 75,
2965 2965
 				itemMargin: 5,
2966 2966
 				asNavFor: '#geodir_widget_slider',
2967
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>
2967
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>
2968 2968
 			});
2969 2969
 
2970 2970
 			jQuery('#geodir_widget_slider').flexslider({
2971
-				animation: "<?php echo $animation;?>",
2971
+				animation: "<?php echo $animation; ?>",
2972 2972
 				selector: ".geodir-slides > li",
2973 2973
 				namespace: "geodir-",
2974 2974
 				controlNav: true,
2975
-				animationLoop: <?php echo $animationLoop;?>,
2976
-				slideshow: <?php echo $slideshow;?>,
2977
-				slideshowSpeed: <?php echo $slideshowSpeed;?>,
2978
-				animationSpeed: <?php echo $animationSpeed;?>,
2979
-				directionNav: <?php echo $directionNav;?>,
2980
-				maxItems: <?php echo $max_show;?>,
2975
+				animationLoop: <?php echo $animationLoop; ?>,
2976
+				slideshow: <?php echo $slideshow; ?>,
2977
+				slideshowSpeed: <?php echo $slideshowSpeed; ?>,
2978
+				animationSpeed: <?php echo $animationSpeed; ?>,
2979
+				directionNav: <?php echo $directionNav; ?>,
2980
+				maxItems: <?php echo $max_show; ?>,
2981 2981
 				move: 1,
2982
-				<?php if ( $slide_width ) {
2983
-				echo "itemWidth: " . $slide_width . ",";
2982
+				<?php if ($slide_width) {
2983
+				echo "itemWidth: ".$slide_width.",";
2984 2984
 			}?>
2985 2985
 				sync: "#geodir_widget_carousel",
2986 2986
 				start: function (slider) {
@@ -2988,7 +2988,7 @@  discard block
 block discarded – undo
2988 2988
 					jQuery('#geodir_widget_slider').css({'visibility': 'visible'});
2989 2989
 					jQuery('#geodir_widget_carousel').css({'visibility': 'visible'});
2990 2990
 				},
2991
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>
2991
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>
2992 2992
 			});
2993 2993
 		});
2994 2994
 	</script>
@@ -3001,62 +3001,62 @@  discard block
 block discarded – undo
3001 3001
 		'order_by'       => $list_sort
3002 3002
 	);
3003 3003
 
3004
-	if ( $show_featured_only ) {
3004
+	if ($show_featured_only) {
3005 3005
 		$query_args['show_featured_only'] = 1;
3006 3006
 	}
3007 3007
 
3008
-	if ( $category != 0 || $category != '' ) {
3009
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3008
+	if ($category != 0 || $category != '') {
3009
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3010 3010
 		$tax_query         = array(
3011 3011
 			'taxonomy' => $category_taxonomy[0],
3012 3012
 			'field'    => 'id',
3013 3013
 			'terms'    => $category
3014 3014
 		);
3015 3015
 
3016
-		$query_args['tax_query'] = array( $tax_query );
3016
+		$query_args['tax_query'] = array($tax_query);
3017 3017
 	}
3018 3018
 
3019 3019
 	// we want listings with featured image only
3020 3020
 	$query_args['featured_image_only'] = 1;
3021 3021
 
3022
-	if ( $post_type == 'gd_event' ) {
3022
+	if ($post_type == 'gd_event') {
3023 3023
 		$query_args['gedir_event_listing_filter'] = 'upcoming';
3024 3024
 	}// show only upcoming events
3025 3025
 
3026
-	$widget_listings = geodir_get_widget_listings( $query_args );
3027
-	if ( ! empty( $widget_listings ) || ( isset( $with_no_results ) && $with_no_results ) ) {
3028
-		if ( $title ) {
3029
-			echo $before_title . $title . $after_title;
3026
+	$widget_listings = geodir_get_widget_listings($query_args);
3027
+	if (!empty($widget_listings) || (isset($with_no_results) && $with_no_results)) {
3028
+		if ($title) {
3029
+			echo $before_title.$title.$after_title;
3030 3030
 		}
3031 3031
 
3032 3032
 		global $post;
3033 3033
 
3034
-		$current_post = $post;// keep current post info
3034
+		$current_post = $post; // keep current post info
3035 3035
 
3036 3036
 		$widget_main_slides = '';
3037 3037
 		$nav_slides         = '';
3038 3038
 		$widget_slides      = 0;
3039 3039
 
3040
-		foreach ( $widget_listings as $widget_listing ) {
3040
+		foreach ($widget_listings as $widget_listing) {
3041 3041
 			global $gd_widget_listing_type;
3042 3042
 			$post         = $widget_listing;
3043
-			$widget_image = geodir_get_featured_image( $post->ID, 'thumbnail', get_option( 'geodir_listing_no_img' ) );
3043
+			$widget_image = geodir_get_featured_image($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
3044 3044
 
3045
-			if ( ! empty( $widget_image ) ) {
3046
-				if ( $widget_image->height >= 200 ) {
3045
+			if (!empty($widget_image)) {
3046
+				if ($widget_image->height >= 200) {
3047 3047
 					$widget_spacer_height = 0;
3048 3048
 				} else {
3049
-					$widget_spacer_height = ( ( 200 - $widget_image->height ) / 2 );
3049
+					$widget_spacer_height = ((200 - $widget_image->height) / 2);
3050 3050
 				}
3051 3051
 
3052
-				$widget_main_slides .= '<li class="geodir-listing-slider-widget"><img class="geodir-listing-slider-spacer" src="' . geodir_plugin_url() . "/geodirectory-assets/images/spacer.gif" . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:' . $widget_spacer_height . 'px !important;margin:0 auto;" width="100" />';
3052
+				$widget_main_slides .= '<li class="geodir-listing-slider-widget"><img class="geodir-listing-slider-spacer" src="'.geodir_plugin_url()."/geodirectory-assets/images/spacer.gif".'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:'.$widget_spacer_height.'px !important;margin:0 auto;" width="100" />';
3053 3053
 
3054 3054
 				$title = '';
3055
-				if ( $show_title ) {
3056
-					$title_html     = '<div class="geodir-slider-title"><a href="' . get_permalink( $post->ID ) . '">' . get_the_title( $post->ID ) . '</a></div>';
3055
+				if ($show_title) {
3056
+					$title_html     = '<div class="geodir-slider-title"><a href="'.get_permalink($post->ID).'">'.get_the_title($post->ID).'</a></div>';
3057 3057
 					$post_id        = $post->ID;
3058
-					$post_permalink = get_permalink( $post->ID );
3059
-					$post_title     = get_the_title( $post->ID );
3058
+					$post_permalink = get_permalink($post->ID);
3059
+					$post_title     = get_the_title($post->ID);
3060 3060
 					/**
3061 3061
 					 * Filter the listing slider widget title.
3062 3062
 					 *
@@ -3067,12 +3067,12 @@  discard block
 block discarded – undo
3067 3067
 					 * @param string $post_permalink The post permalink url.
3068 3068
 					 * @param string $post_title     The post title text.
3069 3069
 					 */
3070
-					$title = apply_filters( 'geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title );
3070
+					$title = apply_filters('geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title);
3071 3071
 				}
3072 3072
 
3073
-				$widget_main_slides .= $title . '<img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:200px;margin:0 auto;" /></li>';
3074
-				$nav_slides .= '<li><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:48px;margin:0 auto;" /></li>';
3075
-				$widget_slides ++;
3073
+				$widget_main_slides .= $title.'<img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:200px;margin:0 auto;" /></li>';
3074
+				$nav_slides .= '<li><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:48px;margin:0 auto;" /></li>';
3075
+				$widget_slides++;
3076 3076
 			}
3077 3077
 		}
3078 3078
 		?>
@@ -3081,7 +3081,7 @@  discard block
 block discarded – undo
3081 3081
 			<div id="geodir_widget_slider" class="geodir_flexslider">
3082 3082
 				<ul class="geodir-slides clearfix"><?php echo $widget_main_slides; ?></ul>
3083 3083
 			</div>
3084
-			<?php if ( $widget_slides > 1 ) { ?>
3084
+			<?php if ($widget_slides > 1) { ?>
3085 3085
 				<div id="geodir_widget_carousel" class="geodir_flexslider">
3086 3086
 					<ul class="geodir-slides clearfix"><?php echo $nav_slides; ?></ul>
3087 3087
 				</div>
@@ -3089,7 +3089,7 @@  discard block
 block discarded – undo
3089 3089
 		</div>
3090 3090
 		<?php
3091 3091
 		$GLOBALS['post'] = $current_post;
3092
-		setup_postdata( $current_post );
3092
+		setup_postdata($current_post);
3093 3093
 	}
3094 3094
 	echo $after_widget;
3095 3095
 }
@@ -3105,46 +3105,46 @@  discard block
 block discarded – undo
3105 3105
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
3106 3106
  * @param array|string $instance The settings for the particular instance of the widget.
3107 3107
  */
3108
-function geodir_loginwidget_output( $args = '', $instance = '' ) {
3108
+function geodir_loginwidget_output($args = '', $instance = '') {
3109 3109
 	//print_r($args);
3110 3110
 	//print_r($instance);
3111 3111
 	// prints the widget
3112
-	extract( $args, EXTR_SKIP );
3112
+	extract($args, EXTR_SKIP);
3113 3113
 
3114 3114
 	/** This filter is documented in geodirectory_widgets.php */
3115
-	$title = empty( $instance['title'] ) ? __( 'My Dashboard', 'geodirectory' ) : apply_filters( 'my_dashboard_widget_title', __( $instance['title'], 'geodirectory' ) );
3115
+	$title = empty($instance['title']) ? __('My Dashboard', 'geodirectory') : apply_filters('my_dashboard_widget_title', __($instance['title'], 'geodirectory'));
3116 3116
 
3117 3117
 	echo $before_widget;
3118
-	echo $before_title . $title . $after_title;
3118
+	echo $before_title.$title.$after_title;
3119 3119
 
3120
-	if ( is_user_logged_in() ) {
3120
+	if (is_user_logged_in()) {
3121 3121
 		global $current_user;
3122 3122
 
3123
-		$author_link = get_author_posts_url( $current_user->data->ID );
3124
-		$author_link = geodir_getlink( $author_link, array( 'geodir_dashbord' => 'true' ), false );
3123
+		$author_link = get_author_posts_url($current_user->data->ID);
3124
+		$author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
3125 3125
 
3126 3126
 		echo '<ul class="geodir-loginbox-list">';
3127 3127
 		ob_start();
3128 3128
 		?>
3129 3129
 		<li><a class="signin"
3130
-		       href="<?php echo wp_logout_url( home_url() ); ?>"><?php _e( 'Logout', 'geodirectory' ); ?></a></li>
3130
+		       href="<?php echo wp_logout_url(home_url()); ?>"><?php _e('Logout', 'geodirectory'); ?></a></li>
3131 3131
 		<?php
3132
-		$post_types                           = geodir_get_posttypes( 'object' );
3133
-		$show_add_listing_post_types_main_nav = get_option( 'geodir_add_listing_link_user_dashboard' );
3134
-		$geodir_allow_posttype_frontend       = get_option( 'geodir_allow_posttype_frontend' );
3132
+		$post_types                           = geodir_get_posttypes('object');
3133
+		$show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_user_dashboard');
3134
+		$geodir_allow_posttype_frontend       = get_option('geodir_allow_posttype_frontend');
3135 3135
 
3136
-		if ( ! empty( $show_add_listing_post_types_main_nav ) ) {
3136
+		if (!empty($show_add_listing_post_types_main_nav)) {
3137 3137
 			$addlisting_links = '';
3138
-			foreach ( $post_types as $key => $postobj ) {
3138
+			foreach ($post_types as $key => $postobj) {
3139 3139
 
3140
-				if ( in_array( $key, $show_add_listing_post_types_main_nav ) ) {
3140
+				if (in_array($key, $show_add_listing_post_types_main_nav)) {
3141 3141
 
3142
-					if ( $add_link = geodir_get_addlisting_link( $key ) ) {
3142
+					if ($add_link = geodir_get_addlisting_link($key)) {
3143 3143
 
3144 3144
 						$name = $postobj->labels->name;
3145 3145
 
3146 3146
 						$selected = '';
3147
-						if ( geodir_get_current_posttype() == $key && geodir_is_page( 'add-listing' ) ) {
3147
+						if (geodir_get_current_posttype() == $key && geodir_is_page('add-listing')) {
3148 3148
 							$selected = 'selected="selected"';
3149 3149
 						}
3150 3150
 
@@ -3157,22 +3157,22 @@  discard block
 block discarded – undo
3157 3157
 						 * @param string $key       Add listing array key.
3158 3158
 						 * @param int $current_user ->ID Current user ID.
3159 3159
 						 */
3160
-						$add_link = apply_filters( 'geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID );
3160
+						$add_link = apply_filters('geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID);
3161 3161
 
3162
-						$addlisting_links .= '<option ' . $selected . ' value="' . $add_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>';
3162
+						$addlisting_links .= '<option '.$selected.' value="'.$add_link.'">'.__(ucfirst($name), 'geodirectory').'</option>';
3163 3163
 
3164 3164
 					}
3165 3165
 				}
3166 3166
 
3167 3167
 			}
3168 3168
 
3169
-			if ( $addlisting_links != '' ) { ?>
3169
+			if ($addlisting_links != '') { ?>
3170 3170
 
3171 3171
 				<li><select id="geodir_add_listing" class="chosen_select" onchange="window.location.href=this.value"
3172 3172
 				            option-autoredirect="1" name="geodir_add_listing" option-ajaxchosen="false"
3173
-				            data-placeholder="<?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?>">
3173
+				            data-placeholder="<?php echo esc_attr(__('Add Listing', 'geodirectory')); ?>">
3174 3174
 						<option value="" disabled="disabled" selected="selected"
3175
-						        style='display:none;'><?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?></option>
3175
+						        style='display:none;'><?php echo esc_attr(__('Add Listing', 'geodirectory')); ?></option>
3176 3176
 						<?php echo $addlisting_links; ?>
3177 3177
 					</select></li> <?php
3178 3178
 
@@ -3180,23 +3180,23 @@  discard block
 block discarded – undo
3180 3180
 
3181 3181
 		}
3182 3182
 		// My Favourites in Dashboard
3183
-		$show_favorite_link_user_dashboard = get_option( 'geodir_favorite_link_user_dashboard' );
3183
+		$show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard');
3184 3184
 		$user_favourite                    = geodir_user_favourite_listing_count();
3185 3185
 
3186
-		if ( ! empty( $show_favorite_link_user_dashboard ) && ! empty( $user_favourite ) ) {
3186
+		if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) {
3187 3187
 			$favourite_links = '';
3188 3188
 
3189
-			foreach ( $post_types as $key => $postobj ) {
3190
-				if ( in_array( $key, $show_favorite_link_user_dashboard ) && array_key_exists( $key, $user_favourite ) ) {
3189
+			foreach ($post_types as $key => $postobj) {
3190
+				if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) {
3191 3191
 					$name           = $postobj->labels->name;
3192
-					$post_type_link = geodir_getlink( $author_link, array(
3192
+					$post_type_link = geodir_getlink($author_link, array(
3193 3193
 						'stype' => $key,
3194 3194
 						'list'  => 'favourite'
3195
-					), false );
3195
+					), false);
3196 3196
 
3197 3197
 					$selected = '';
3198 3198
 
3199
-					if ( isset( $_REQUEST['list'] ) && $_REQUEST['list'] == 'favourite' && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key && isset( $_REQUEST['geodir_dashbord'] ) ) {
3199
+					if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) {
3200 3200
 						$selected = 'selected="selected"';
3201 3201
 					}
3202 3202
 					/**
@@ -3208,20 +3208,20 @@  discard block
 block discarded – undo
3208 3208
 					 * @param string $key            Favorite listing array key.
3209 3209
 					 * @param int $current_user      ->ID Current user ID.
3210 3210
 					 */
3211
-					$post_type_link = apply_filters( 'geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID );
3211
+					$post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID);
3212 3212
 
3213
-					$favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>';
3213
+					$favourite_links .= '<option '.$selected.' value="'.$post_type_link.'">'.__(ucfirst($name), 'geodirectory').'</option>';
3214 3214
 				}
3215 3215
 			}
3216 3216
 
3217
-			if ( $favourite_links != '' ) {
3217
+			if ($favourite_links != '') {
3218 3218
 				?>
3219 3219
 				<li>
3220 3220
 					<select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value"
3221 3221
 					        option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false"
3222
-					        data-placeholder="<?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?>">
3222
+					        data-placeholder="<?php echo esc_attr(__('My Favorites', 'geodirectory')); ?>">
3223 3223
 						<option value="" disabled="disabled" selected="selected"
3224
-						        style='display:none;'><?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?></option>
3224
+						        style='display:none;'><?php echo esc_attr(__('My Favorites', 'geodirectory')); ?></option>
3225 3225
 						<?php echo $favourite_links; ?>
3226 3226
 					</select>
3227 3227
 				</li>
@@ -3230,19 +3230,19 @@  discard block
 block discarded – undo
3230 3230
 		}
3231 3231
 
3232 3232
 
3233
-		$show_listing_link_user_dashboard = get_option( 'geodir_listing_link_user_dashboard' );
3233
+		$show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard');
3234 3234
 		$user_listing                     = geodir_user_post_listing_count();
3235 3235
 
3236
-		if ( ! empty( $show_listing_link_user_dashboard ) && ! empty( $user_listing ) ) {
3236
+		if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) {
3237 3237
 			$listing_links = '';
3238 3238
 
3239
-			foreach ( $post_types as $key => $postobj ) {
3240
-				if ( in_array( $key, $show_listing_link_user_dashboard ) && array_key_exists( $key, $user_listing ) ) {
3239
+			foreach ($post_types as $key => $postobj) {
3240
+				if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) {
3241 3241
 					$name         = $postobj->labels->name;
3242
-					$listing_link = geodir_getlink( $author_link, array( 'stype' => $key ), false );
3242
+					$listing_link = geodir_getlink($author_link, array('stype' => $key), false);
3243 3243
 
3244 3244
 					$selected = '';
3245
-					if ( ! isset( $_REQUEST['list'] ) && isset( $_REQUEST['geodir_dashbord'] ) && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key ) {
3245
+					if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) {
3246 3246
 						$selected = 'selected="selected"';
3247 3247
 					}
3248 3248
 
@@ -3255,20 +3255,20 @@  discard block
 block discarded – undo
3255 3255
 					 * @param string $key          My listing array key.
3256 3256
 					 * @param int $current_user    ->ID Current user ID.
3257 3257
 					 */
3258
-					$listing_link = apply_filters( 'geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID );
3258
+					$listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID);
3259 3259
 
3260
-					$listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>';
3260
+					$listing_links .= '<option '.$selected.' value="'.$listing_link.'">'.__(ucfirst($name), 'geodirectory').'</option>';
3261 3261
 				}
3262 3262
 			}
3263 3263
 
3264
-			if ( $listing_links != '' ) {
3264
+			if ($listing_links != '') {
3265 3265
 				?>
3266 3266
 				<li>
3267 3267
 					<select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value"
3268 3268
 					        option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false"
3269
-					        data-placeholder="<?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?>">
3269
+					        data-placeholder="<?php echo esc_attr(__('My Listings', 'geodirectory')); ?>">
3270 3270
 						<option value="" disabled="disabled" selected="selected"
3271
-						        style='display:none;'><?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?></option>
3271
+						        style='display:none;'><?php echo esc_attr(__('My Listings', 'geodirectory')); ?></option>
3272 3272
 						<?php echo $listing_links; ?>
3273 3273
 					</select>
3274 3274
 				</li>
@@ -3284,7 +3284,7 @@  discard block
 block discarded – undo
3284 3284
 		 *
3285 3285
 		 * @param string $dashboard_link Dashboard links HTML.
3286 3286
 		 */
3287
-		echo apply_filters( 'geodir_dashboard_links', $dashboard_link );
3287
+		echo apply_filters('geodir_dashboard_links', $dashboard_link);
3288 3288
 		echo '</ul>';
3289 3289
 
3290 3290
 		/**
@@ -3292,7 +3292,7 @@  discard block
 block discarded – undo
3292 3292
 		 *
3293 3293
 		 * @since 1.6.6
3294 3294
 		 */
3295
-		do_action( 'geodir_after_loginwidget_form_logged_in' );
3295
+		do_action('geodir_after_loginwidget_form_logged_in');
3296 3296
 
3297 3297
 
3298 3298
 	} else {
@@ -3307,18 +3307,18 @@  discard block
 block discarded – undo
3307 3307
 		<form name="loginform" class="loginform1"
3308 3308
 		      action="<?php echo geodir_login_url(); ?>"
3309 3309
 		      method="post">
3310
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Email', 'geodirectory' ); ?>" name="log"
3310
+			<div class="geodir_form_row"><input placeholder="<?php _e('Email', 'geodirectory'); ?>" name="log"
3311 3311
 			                                    type="text" class="textfield user_login1"/> <span
3312 3312
 					class="user_loginInfo"></span></div>
3313
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Password', 'geodirectory' ); ?>"
3313
+			<div class="geodir_form_row"><input placeholder="<?php _e('Password', 'geodirectory'); ?>"
3314 3314
 			                                    name="pwd" type="password"
3315 3315
 			                                    class="textfield user_pass1 input-text"/><span
3316 3316
 					class="user_passInfo"></span></div>
3317 3317
 
3318
-			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars( geodir_curPageURL() ); ?>"/>
3318
+			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars(geodir_curPageURL()); ?>"/>
3319 3319
 			<input type="hidden" name="testcookie" value="1"/>
3320 3320
 
3321
-				<?php do_action( 'login_form' ); ?>
3321
+				<?php do_action('login_form'); ?>
3322 3322
 
3323 3323
 			<div class="geodir_form_row clearfix"><input type="submit" name="submit"
3324 3324
 			                                             value="<?php echo SIGN_IN_BUTTON; ?>" class="b_signin"/>
@@ -3331,7 +3331,7 @@  discard block
 block discarded – undo
3331 3331
 					 * @since 1.0.0
3332 3332
 					 */
3333 3333
 					?>
3334
-					<a href="<?php echo geodir_login_url( array( 'signup' => true ) ); ?>"
3334
+					<a href="<?php echo geodir_login_url(array('signup' => true)); ?>"
3335 3335
 					   class="goedir-newuser-link"><?php echo NEW_USER_TEXT; ?></a>
3336 3336
 
3337 3337
 					<?php
@@ -3341,7 +3341,7 @@  discard block
 block discarded – undo
3341 3341
 					 * @since 1.0.0
3342 3342
 					 */
3343 3343
 					?>
3344
-					<a href="<?php echo geodir_login_url( array( 'forgot' => true ) ); ?>"
3344
+					<a href="<?php echo geodir_login_url(array('forgot' => true)); ?>"
3345 3345
 					   class="goedir-forgot-link"><?php echo FORGOT_PW_TEXT; ?></a></p></div>
3346 3346
 		</form>
3347 3347
 		<?php
@@ -3350,7 +3350,7 @@  discard block
 block discarded – undo
3350 3350
 		 *
3351 3351
 		 * @since 1.6.6
3352 3352
 		 */
3353
-		do_action( 'geodir_after_loginwidget_form_logged_out' );
3353
+		do_action('geodir_after_loginwidget_form_logged_out');
3354 3354
 	}
3355 3355
 
3356 3356
 	echo $after_widget;
@@ -3372,16 +3372,16 @@  discard block
 block discarded – undo
3372 3372
  *                                         after_widget.
3373 3373
  * @param array|string $instance           The settings for the particular instance of the widget.
3374 3374
  */
3375
-function geodir_popular_postview_output( $args = '', $instance = '' ) {
3375
+function geodir_popular_postview_output($args = '', $instance = '') {
3376 3376
 	global $gd_session;
3377 3377
 
3378 3378
 	// prints the widget
3379
-	extract( $args, EXTR_SKIP );
3379
+	extract($args, EXTR_SKIP);
3380 3380
 
3381 3381
 	echo $before_widget;
3382 3382
 
3383 3383
 	/** This filter is documented in geodirectory_widgets.php */
3384
-	$title = empty( $instance['title'] ) ? geodir_ucwords( $instance['category_title'] ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
3384
+	$title = empty($instance['title']) ? geodir_ucwords($instance['category_title']) : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3385 3385
 	/**
3386 3386
 	 * Filter the widget post type.
3387 3387
 	 *
@@ -3389,7 +3389,7 @@  discard block
 block discarded – undo
3389 3389
 	 *
3390 3390
 	 * @param string $instance ['post_type'] Post type of listing.
3391 3391
 	 */
3392
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
3392
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3393 3393
 	/**
3394 3394
 	 * Filter the widget's term.
3395 3395
 	 *
@@ -3397,7 +3397,7 @@  discard block
 block discarded – undo
3397 3397
 	 *
3398 3398
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3399 3399
 	 */
3400
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3400
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3401 3401
 	/**
3402 3402
 	 * Filter the widget listings limit.
3403 3403
 	 *
@@ -3405,7 +3405,7 @@  discard block
 block discarded – undo
3405 3405
 	 *
3406 3406
 	 * @param string $instance ['post_number'] Number of listings to display.
3407 3407
 	 */
3408
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3408
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3409 3409
 	/**
3410 3410
 	 * Filter widget's "layout" type.
3411 3411
 	 *
@@ -3413,7 +3413,7 @@  discard block
 block discarded – undo
3413 3413
 	 *
3414 3414
 	 * @param string $instance ['layout'] Widget layout type.
3415 3415
 	 */
3416
-	$layout = empty( $instance['layout'] ) ? 'gridview_onehalf' : apply_filters( 'widget_layout', $instance['layout'] );
3416
+	$layout = empty($instance['layout']) ? 'gridview_onehalf' : apply_filters('widget_layout', $instance['layout']);
3417 3417
 	/**
3418 3418
 	 * Filter widget's "add_location_filter" value.
3419 3419
 	 *
@@ -3421,7 +3421,7 @@  discard block
 block discarded – undo
3421 3421
 	 *
3422 3422
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3423 3423
 	 */
3424
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3424
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3425 3425
 	/**
3426 3426
 	 * Filter widget's listing width.
3427 3427
 	 *
@@ -3429,7 +3429,7 @@  discard block
 block discarded – undo
3429 3429
 	 *
3430 3430
 	 * @param string $instance ['listing_width'] Listing width.
3431 3431
 	 */
3432
-	$listing_width = empty( $instance['listing_width'] ) ? '' : apply_filters( 'widget_listing_width', $instance['listing_width'] );
3432
+	$listing_width = empty($instance['listing_width']) ? '' : apply_filters('widget_listing_width', $instance['listing_width']);
3433 3433
 	/**
3434 3434
 	 * Filter widget's "list_sort" type.
3435 3435
 	 *
@@ -3437,25 +3437,25 @@  discard block
 block discarded – undo
3437 3437
 	 *
3438 3438
 	 * @param string $instance ['list_sort'] Listing sort by type.
3439 3439
 	 */
3440
-	$list_sort             = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3441
-	$use_viewing_post_type = ! empty( $instance['use_viewing_post_type'] ) ? true : false;
3440
+	$list_sort             = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3441
+	$use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false;
3442 3442
 
3443 3443
 	// set post type to current viewing post type
3444
-	if ( $use_viewing_post_type ) {
3444
+	if ($use_viewing_post_type) {
3445 3445
 		$current_post_type = geodir_get_current_posttype();
3446
-		if ( $current_post_type != '' && $current_post_type != $post_type ) {
3446
+		if ($current_post_type != '' && $current_post_type != $post_type) {
3447 3447
 			$post_type = $current_post_type;
3448 3448
 			$category  = array(); // old post type category will not work for current changed post type
3449 3449
 		}
3450 3450
 	}
3451 3451
 	// replace widget title dynamically
3452
-	$posttype_plural_label   = __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3453
-	$posttype_singular_label = __( get_post_type_singular_label( $post_type ), 'geodirectory' );
3452
+	$posttype_plural_label   = __(get_post_type_plural_label($post_type), 'geodirectory');
3453
+	$posttype_singular_label = __(get_post_type_singular_label($post_type), 'geodirectory');
3454 3454
 
3455
-	$title = str_replace( "%posttype_plural_label%", $posttype_plural_label, $title );
3456
-	$title = str_replace( "%posttype_singular_label%", $posttype_singular_label, $title );
3455
+	$title = str_replace("%posttype_plural_label%", $posttype_plural_label, $title);
3456
+	$title = str_replace("%posttype_singular_label%", $posttype_singular_label, $title);
3457 3457
 
3458
-	if ( isset( $instance['character_count'] ) ) {
3458
+	if (isset($instance['character_count'])) {
3459 3459
 		/**
3460 3460
 		 * Filter the widget's excerpt character count.
3461 3461
 		 *
@@ -3463,37 +3463,37 @@  discard block
 block discarded – undo
3463 3463
 		 *
3464 3464
 		 * @param int $instance ['character_count'] Excerpt character count.
3465 3465
 		 */
3466
-		$character_count = apply_filters( 'widget_list_character_count', $instance['character_count'] );
3466
+		$character_count = apply_filters('widget_list_character_count', $instance['character_count']);
3467 3467
 	} else {
3468 3468
 		$character_count = '';
3469 3469
 	}
3470 3470
 
3471
-	if ( empty( $title ) || $title == 'All' ) {
3472
-		$title .= ' ' . __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3471
+	if (empty($title) || $title == 'All') {
3472
+		$title .= ' '.__(get_post_type_plural_label($post_type), 'geodirectory');
3473 3473
 	}
3474 3474
 
3475 3475
 	$location_url = array();
3476
-	$city         = get_query_var( 'gd_city' );
3477
-	if ( ! empty( $city ) ) {
3478
-		$country = get_query_var( 'gd_country' );
3479
-		$region  = get_query_var( 'gd_region' );
3476
+	$city         = get_query_var('gd_city');
3477
+	if (!empty($city)) {
3478
+		$country = get_query_var('gd_country');
3479
+		$region  = get_query_var('gd_region');
3480 3480
 
3481
-		$geodir_show_location_url = get_option( 'geodir_show_location_url' );
3481
+		$geodir_show_location_url = get_option('geodir_show_location_url');
3482 3482
 
3483
-		if ( $geodir_show_location_url == 'all' ) {
3484
-			if ( $country != '' ) {
3483
+		if ($geodir_show_location_url == 'all') {
3484
+			if ($country != '') {
3485 3485
 				$location_url[] = $country;
3486 3486
 			}
3487 3487
 
3488
-			if ( $region != '' ) {
3488
+			if ($region != '') {
3489 3489
 				$location_url[] = $region;
3490 3490
 			}
3491
-		} else if ( $geodir_show_location_url == 'country_city' ) {
3492
-			if ( $country != '' ) {
3491
+		} else if ($geodir_show_location_url == 'country_city') {
3492
+			if ($country != '') {
3493 3493
 				$location_url[] = $country;
3494 3494
 			}
3495
-		} else if ( $geodir_show_location_url == 'region_city' ) {
3496
-			if ( $region != '' ) {
3495
+		} else if ($geodir_show_location_url == 'region_city') {
3496
+			if ($region != '') {
3497 3497
 				$location_url[] = $region;
3498 3498
 			}
3499 3499
 		}
@@ -3501,37 +3501,37 @@  discard block
 block discarded – undo
3501 3501
 		$location_url[] = $city;
3502 3502
 	}
3503 3503
 
3504
-	$location_url  = implode( '/', $location_url );
3504
+	$location_url  = implode('/', $location_url);
3505 3505
 	$skip_location = false;
3506
-	if ( ! $add_location_filter && $gd_session->get( 'gd_multi_location' ) ) {
3506
+	if (!$add_location_filter && $gd_session->get('gd_multi_location')) {
3507 3507
 		$skip_location = true;
3508
-		$gd_session->un_set( 'gd_multi_location' );
3508
+		$gd_session->un_set('gd_multi_location');
3509 3509
 	}
3510 3510
 
3511
-	if ( get_option( 'permalink_structure' ) ) {
3512
-		$viewall_url = get_post_type_archive_link( $post_type );
3511
+	if (get_option('permalink_structure')) {
3512
+		$viewall_url = get_post_type_archive_link($post_type);
3513 3513
 	} else {
3514
-		$viewall_url = get_post_type_archive_link( $post_type );
3514
+		$viewall_url = get_post_type_archive_link($post_type);
3515 3515
 	}
3516 3516
 
3517
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3517
+	if (!empty($category) && $category[0] != '0') {
3518 3518
 		global $geodir_add_location_url;
3519 3519
 
3520 3520
 		$geodir_add_location_url = '0';
3521 3521
 
3522
-		if ( $add_location_filter != '0' ) {
3522
+		if ($add_location_filter != '0') {
3523 3523
 			$geodir_add_location_url = '1';
3524 3524
 		}
3525 3525
 
3526
-		$viewall_url = get_term_link( (int) $category[0], $post_type . 'category' );
3526
+		$viewall_url = get_term_link((int) $category[0], $post_type.'category');
3527 3527
 
3528 3528
 		$geodir_add_location_url = null;
3529 3529
 	}
3530
-	if ( $skip_location ) {
3531
-		$gd_session->set( 'gd_multi_location', 1 );
3530
+	if ($skip_location) {
3531
+		$gd_session->set('gd_multi_location', 1);
3532 3532
 	}
3533 3533
 
3534
-	if ( is_wp_error( $viewall_url ) ) {
3534
+	if (is_wp_error($viewall_url)) {
3535 3535
 		$viewall_url = '';
3536 3536
 	}
3537 3537
 
@@ -3543,34 +3543,34 @@  discard block
 block discarded – undo
3543 3543
 		'order_by'       => $list_sort
3544 3544
 	);
3545 3545
 
3546
-	if ( $character_count ) {
3546
+	if ($character_count) {
3547 3547
 		$query_args['excerpt_length'] = $character_count;
3548 3548
 	}
3549 3549
 
3550
-	if ( ! empty( $instance['show_featured_only'] ) ) {
3550
+	if (!empty($instance['show_featured_only'])) {
3551 3551
 		$query_args['show_featured_only'] = 1;
3552 3552
 	}
3553 3553
 
3554
-	if ( ! empty( $instance['show_special_only'] ) ) {
3554
+	if (!empty($instance['show_special_only'])) {
3555 3555
 		$query_args['show_special_only'] = 1;
3556 3556
 	}
3557 3557
 
3558
-	if ( ! empty( $instance['with_pics_only'] ) ) {
3558
+	if (!empty($instance['with_pics_only'])) {
3559 3559
 		$query_args['with_pics_only']      = 0;
3560 3560
 		$query_args['featured_image_only'] = 1;
3561 3561
 	}
3562 3562
 
3563
-	if ( ! empty( $instance['with_videos_only'] ) ) {
3563
+	if (!empty($instance['with_videos_only'])) {
3564 3564
 		$query_args['with_videos_only'] = 1;
3565 3565
 	}
3566
-	$with_no_results = ! empty( $instance['without_no_results'] ) ? false : true;
3566
+	$with_no_results = !empty($instance['without_no_results']) ? false : true;
3567 3567
 
3568
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3569
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3568
+	if (!empty($category) && $category[0] != '0') {
3569
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3570 3570
 
3571 3571
 		######### WPML #########
3572
-		if ( function_exists( 'icl_object_id' ) ) {
3573
-			$category = gd_lang_object_ids( $category, $category_taxonomy[0] );
3572
+		if (function_exists('icl_object_id')) {
3573
+			$category = gd_lang_object_ids($category, $category_taxonomy[0]);
3574 3574
 		}
3575 3575
 		######### WPML #########
3576 3576
 
@@ -3580,14 +3580,14 @@  discard block
 block discarded – undo
3580 3580
 			'terms'    => $category
3581 3581
 		);
3582 3582
 
3583
-		$query_args['tax_query'] = array( $tax_query );
3583
+		$query_args['tax_query'] = array($tax_query);
3584 3584
 	}
3585 3585
 
3586 3586
 	global $gridview_columns_widget, $geodir_is_widget_listing;
3587 3587
 
3588
-	$widget_listings = geodir_get_widget_listings( $query_args );
3588
+	$widget_listings = geodir_get_widget_listings($query_args);
3589 3589
 
3590
-	if ( ! empty( $widget_listings ) || $with_no_results ) {
3590
+	if (!empty($widget_listings) || $with_no_results) {
3591 3591
 		?>
3592 3592
 		<div class="geodir_locations geodir_location_listing">
3593 3593
 
@@ -3597,11 +3597,11 @@  discard block
 block discarded – undo
3597 3597
 			 *
3598 3598
 			 * @since 1.0.0
3599 3599
 			 */
3600
-			do_action( 'geodir_before_view_all_link_in_widget' ); ?>
3600
+			do_action('geodir_before_view_all_link_in_widget'); ?>
3601 3601
 			<div class="geodir_list_heading clearfix">
3602
-				<?php echo $before_title . $title . $after_title; ?>
3602
+				<?php echo $before_title.$title.$after_title; ?>
3603 3603
 				<a href="<?php echo $viewall_url; ?>"
3604
-				   class="geodir-viewall"><?php _e( 'View all', 'geodirectory' ); ?></a>
3604
+				   class="geodir-viewall"><?php _e('View all', 'geodirectory'); ?></a>
3605 3605
 			</div>
3606 3606
 			<?php
3607 3607
 			/**
@@ -3609,10 +3609,10 @@  discard block
 block discarded – undo
3609 3609
 			 *
3610 3610
 			 * @since 1.0.0
3611 3611
 			 */
3612
-			do_action( 'geodir_after_view_all_link_in_widget' ); ?>
3612
+			do_action('geodir_after_view_all_link_in_widget'); ?>
3613 3613
 			<?php
3614
-			if ( strstr( $layout, 'gridview' ) ) {
3615
-				$listing_view_exp        = explode( '_', $layout );
3614
+			if (strstr($layout, 'gridview')) {
3615
+				$listing_view_exp        = explode('_', $layout);
3616 3616
 				$gridview_columns_widget = $layout;
3617 3617
 				$layout                  = $listing_view_exp[0];
3618 3618
 			} else {
@@ -3624,8 +3624,8 @@  discard block
 block discarded – undo
3624 3624
 			 *
3625 3625
 			 * @since 1.0.0
3626 3626
 			 */
3627
-			$template = apply_filters( "geodir_template_part-widget-listing-listview", geodir_locate_template( 'widget-listing-listview' ) );
3628
-			if ( ! isset( $character_count ) ) {
3627
+			$template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
3628
+			if (!isset($character_count)) {
3629 3629
 				/**
3630 3630
 				 * Filter the widget's excerpt character count.
3631 3631
 				 *
@@ -3633,7 +3633,7 @@  discard block
 block discarded – undo
3633 3633
 				 *
3634 3634
 				 * @param int $instance ['character_count'] Excerpt character count.
3635 3635
 				 */
3636
-				$character_count = $character_count == '' ? 50 : apply_filters( 'widget_character_count', $character_count );
3636
+				$character_count = $character_count == '' ? 50 : apply_filters('widget_character_count', $character_count);
3637 3637
 			}
3638 3638
 
3639 3639
 			global $post, $map_jason, $map_canvas_arr;
@@ -3648,13 +3648,13 @@  discard block
 block discarded – undo
3648 3648
 			 *
3649 3649
 			 * @since 1.0.0
3650 3650
 			 */
3651
-			include( $template );
3651
+			include($template);
3652 3652
 
3653 3653
 			$geodir_is_widget_listing = false;
3654 3654
 
3655 3655
 			$GLOBALS['post'] = $current_post;
3656
-			if ( ! empty( $current_post ) ) {
3657
-				setup_postdata( $current_post );
3656
+			if (!empty($current_post)) {
3657
+				setup_postdata($current_post);
3658 3658
 			}
3659 3659
 			$map_jason      = $current_map_jason;
3660 3660
 			$map_canvas_arr = $current_map_canvas_arr;
@@ -3685,12 +3685,12 @@  discard block
 block discarded – undo
3685 3685
  *
3686 3686
  * @return int Reviews count.
3687 3687
  */
3688
-function geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ) {
3688
+function geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type) {
3689 3689
 	global $wpdb, $plugin_prefix;
3690 3690
 
3691
-	$detail_table = $plugin_prefix . $post_type . '_detail';
3691
+	$detail_table = $plugin_prefix.$post_type.'_detail';
3692 3692
 
3693
-	$sql = "SELECT COALESCE(SUM(rating_count),0) FROM " . $detail_table . " WHERE post_status = 'publish' AND rating_count > 0 AND FIND_IN_SET(" . $term_id . ", " . $taxonomy . ")";
3693
+	$sql = "SELECT COALESCE(SUM(rating_count),0) FROM ".$detail_table." WHERE post_status = 'publish' AND rating_count > 0 AND FIND_IN_SET(".$term_id.", ".$taxonomy.")";
3694 3694
 
3695 3695
 	/**
3696 3696
 	 * Filter count review sql query.
@@ -3702,9 +3702,9 @@  discard block
 block discarded – undo
3702 3702
 	 * @param int $taxonomy     The taxonomy Id.
3703 3703
 	 * @param string $post_type The post type.
3704 3704
 	 */
3705
-	$sql = apply_filters( 'geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type );
3705
+	$sql = apply_filters('geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type);
3706 3706
 
3707
-	$count = $wpdb->get_var( $sql );
3707
+	$count = $wpdb->get_var($sql);
3708 3708
 
3709 3709
 	return $count;
3710 3710
 }
@@ -3722,7 +3722,7 @@  discard block
 block discarded – undo
3722 3722
  *
3723 3723
  * @return array Term array data.
3724 3724
  */
3725
-function geodir_count_reviews_by_terms( $force_update = false, $post_ID = 0 ) {
3725
+function geodir_count_reviews_by_terms($force_update = false, $post_ID = 0) {
3726 3726
 	/**
3727 3727
 	 * Filter review count option data.
3728 3728
 	 *
@@ -3732,78 +3732,78 @@  discard block
 block discarded – undo
3732 3732
 	 * @param bool $force_update Force update option value?. Default.false.
3733 3733
 	 * @param int $post_ID       The post id to update if any.
3734 3734
 	 */
3735
-	$option_data = apply_filters( 'geodir_count_reviews_by_terms_before', '', $force_update, $post_ID );
3736
-	if ( ! empty( $option_data ) ) {
3735
+	$option_data = apply_filters('geodir_count_reviews_by_terms_before', '', $force_update, $post_ID);
3736
+	if (!empty($option_data)) {
3737 3737
 		return $option_data;
3738 3738
 	}
3739 3739
 
3740
-	$option_data = get_option( 'geodir_global_review_count' );
3740
+	$option_data = get_option('geodir_global_review_count');
3741 3741
 
3742
-	if ( ! $option_data || $force_update ) {
3743
-		if ( (int) $post_ID > 0 ) { // Update reviews count for specific post categories only.
3742
+	if (!$option_data || $force_update) {
3743
+		if ((int) $post_ID > 0) { // Update reviews count for specific post categories only.
3744 3744
 			global $gd_session;
3745 3745
 			$term_array = (array) $option_data;
3746
-			$post_type  = get_post_type( $post_ID );
3747
-			$taxonomy   = $post_type . 'category';
3748
-			$terms      = wp_get_object_terms( $post_ID, $taxonomy, array( 'fields' => 'ids' ) );
3749
-
3750
-			if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
3751
-				foreach ( $terms as $term_id ) {
3752
-					$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
3753
-					$children               = get_term_children( $term_id, $taxonomy );
3754
-					$term_array[ $term_id ] = $count;
3746
+			$post_type  = get_post_type($post_ID);
3747
+			$taxonomy   = $post_type.'category';
3748
+			$terms      = wp_get_object_terms($post_ID, $taxonomy, array('fields' => 'ids'));
3749
+
3750
+			if (!empty($terms) && !is_wp_error($terms)) {
3751
+				foreach ($terms as $term_id) {
3752
+					$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3753
+					$children               = get_term_children($term_id, $taxonomy);
3754
+					$term_array[$term_id] = $count;
3755 3755
 				}
3756 3756
 			}
3757 3757
 
3758
-			$session_listing = $gd_session->get( 'listing' );
3758
+			$session_listing = $gd_session->get('listing');
3759 3759
 
3760 3760
 			$terms = array();
3761
-			if ( isset( $_POST['post_category'][ $taxonomy ] ) ) {
3762
-				$terms = (array) $_POST['post_category'][ $taxonomy ];
3763
-			} else if ( ! empty( $session_listing ) && isset( $session_listing['post_category'][ $taxonomy ] ) ) {
3764
-				$terms = (array) $session_listing['post_category'][ $taxonomy ];
3761
+			if (isset($_POST['post_category'][$taxonomy])) {
3762
+				$terms = (array) $_POST['post_category'][$taxonomy];
3763
+			} else if (!empty($session_listing) && isset($session_listing['post_category'][$taxonomy])) {
3764
+				$terms = (array) $session_listing['post_category'][$taxonomy];
3765 3765
 			}
3766 3766
 
3767
-			if ( ! empty( $terms ) ) {
3768
-				foreach ( $terms as $term_id ) {
3769
-					if ( $term_id > 0 ) {
3770
-						$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
3771
-						$children               = get_term_children( $term_id, $taxonomy );
3772
-						$term_array[ $term_id ] = $count;
3767
+			if (!empty($terms)) {
3768
+				foreach ($terms as $term_id) {
3769
+					if ($term_id > 0) {
3770
+						$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3771
+						$children               = get_term_children($term_id, $taxonomy);
3772
+						$term_array[$term_id] = $count;
3773 3773
 					}
3774 3774
 				}
3775 3775
 			}
3776 3776
 		} else { // Update reviews count for all post categories.
3777 3777
 			$term_array = array();
3778 3778
 			$post_types = geodir_get_posttypes();
3779
-			foreach ( $post_types as $post_type ) {
3779
+			foreach ($post_types as $post_type) {
3780 3780
 
3781
-				$taxonomy = geodir_get_taxonomies( $post_type );
3781
+				$taxonomy = geodir_get_taxonomies($post_type);
3782 3782
 				$taxonomy = $taxonomy[0];
3783 3783
 
3784 3784
 				$args = array(
3785 3785
 					'hide_empty' => false
3786 3786
 				);
3787 3787
 
3788
-				$terms = get_terms( $taxonomy, $args );
3788
+				$terms = get_terms($taxonomy, $args);
3789 3789
 
3790
-				foreach ( $terms as $term ) {
3791
-					$count    = geodir_count_reviews_by_term_id( $term->term_id, $taxonomy, $post_type );
3792
-					$children = get_term_children( $term->term_id, $taxonomy );
3790
+				foreach ($terms as $term) {
3791
+					$count    = geodir_count_reviews_by_term_id($term->term_id, $taxonomy, $post_type);
3792
+					$children = get_term_children($term->term_id, $taxonomy);
3793 3793
 					/*if ( is_array( $children ) ) {
3794 3794
                         foreach ( $children as $child_id ) {
3795 3795
                             $child_count = geodir_count_reviews_by_term_id($child_id, $taxonomy, $post_type);
3796 3796
                             $count = $count + $child_count;
3797 3797
                         }
3798 3798
                     }*/
3799
-					$term_array[ $term->term_id ] = $count;
3799
+					$term_array[$term->term_id] = $count;
3800 3800
 				}
3801 3801
 			}
3802 3802
 		}
3803 3803
 
3804
-		update_option( 'geodir_global_review_count', $term_array );
3804
+		update_option('geodir_global_review_count', $term_array);
3805 3805
 		//clear cache
3806
-		wp_cache_delete( 'geodir_global_review_count' );
3806
+		wp_cache_delete('geodir_global_review_count');
3807 3807
 
3808 3808
 		return $term_array;
3809 3809
 	} else {
@@ -3819,39 +3819,39 @@  discard block
 block discarded – undo
3819 3819
  * @package GeoDirectory
3820 3820
  * @return bool
3821 3821
  */
3822
-function geodir_term_review_count_force_update( $new_status, $old_status = '', $post = '' ) {
3823
-	if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'geodir_import_export' ) {
3822
+function geodir_term_review_count_force_update($new_status, $old_status = '', $post = '') {
3823
+	if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'geodir_import_export') {
3824 3824
 		return; // do not run if importing listings
3825 3825
 	}
3826 3826
 
3827
-	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
3827
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
3828 3828
 		return;
3829 3829
 	}
3830 3830
 
3831 3831
 	$post_ID = 0;
3832
-	if ( ! empty( $post ) ) {
3833
-		if ( isset( $post->post_type ) && strpos( $post->post_type, 'gd_' ) !== 0 ) {
3832
+	if (!empty($post)) {
3833
+		if (isset($post->post_type) && strpos($post->post_type, 'gd_') !== 0) {
3834 3834
 			return;
3835 3835
 		}
3836 3836
 
3837
-		if ( $new_status == 'auto-draft' && $old_status == 'new' ) {
3837
+		if ($new_status == 'auto-draft' && $old_status == 'new') {
3838 3838
 			return;
3839 3839
 		}
3840 3840
 
3841
-		if ( ! empty( $post->ID ) ) {
3841
+		if (!empty($post->ID)) {
3842 3842
 			$post_ID = $post->ID;
3843 3843
 		}
3844 3844
 	}
3845 3845
 
3846
-	if ( $new_status != $old_status ) {
3847
-		geodir_count_reviews_by_terms( true, $post_ID );
3846
+	if ($new_status != $old_status) {
3847
+		geodir_count_reviews_by_terms(true, $post_ID);
3848 3848
 	}
3849 3849
 
3850 3850
 	return true;
3851 3851
 }
3852 3852
 
3853
-function geodir_term_review_count_force_update_single_post( $post_id ) {
3854
-	geodir_count_reviews_by_terms( true, $post_id );
3853
+function geodir_term_review_count_force_update_single_post($post_id) {
3854
+	geodir_count_reviews_by_terms(true, $post_id);
3855 3855
 }
3856 3856
 
3857 3857
 /*-----------------------------------------------------------------------------------*/
@@ -3868,11 +3868,11 @@  discard block
 block discarded – undo
3868 3868
  *
3869 3869
  * @return int Post count.
3870 3870
  */
3871
-function geodir_count_posts_by_term( $data, $term ) {
3871
+function geodir_count_posts_by_term($data, $term) {
3872 3872
 
3873
-	if ( $data ) {
3874
-		if ( isset( $data[ $term->term_id ] ) ) {
3875
-			return $data[ $term->term_id ];
3873
+	if ($data) {
3874
+		if (isset($data[$term->term_id])) {
3875
+			return $data[$term->term_id];
3876 3876
 		} else {
3877 3877
 			return 0;
3878 3878
 		}
@@ -3889,8 +3889,8 @@  discard block
 block discarded – undo
3889 3889
  * param array $terms An array of term objects.
3890 3890
  * @return array Sorted terms array.
3891 3891
  */
3892
-function geodir_sort_terms_by_count( $terms ) {
3893
-	usort( $terms, "geodir_sort_by_count_obj" );
3892
+function geodir_sort_terms_by_count($terms) {
3893
+	usort($terms, "geodir_sort_by_count_obj");
3894 3894
 
3895 3895
 	return $terms;
3896 3896
 }
@@ -3905,8 +3905,8 @@  discard block
 block discarded – undo
3905 3905
  *
3906 3906
  * @return array Sorted terms array.
3907 3907
  */
3908
-function geodir_sort_terms_by_review_count( $terms ) {
3909
-	usort( $terms, "geodir_sort_by_review_count_obj" );
3908
+function geodir_sort_terms_by_review_count($terms) {
3909
+	usort($terms, "geodir_sort_by_review_count_obj");
3910 3910
 
3911 3911
 	return $terms;
3912 3912
 }
@@ -3922,12 +3922,12 @@  discard block
 block discarded – undo
3922 3922
  *
3923 3923
  * @return array Sorted terms array.
3924 3924
  */
3925
-function geodir_sort_terms( $terms, $sort = 'count' ) {
3926
-	if ( $sort == 'count' ) {
3927
-		return geodir_sort_terms_by_count( $terms );
3925
+function geodir_sort_terms($terms, $sort = 'count') {
3926
+	if ($sort == 'count') {
3927
+		return geodir_sort_terms_by_count($terms);
3928 3928
 	}
3929
-	if ( $sort == 'review_count' ) {
3930
-		return geodir_sort_terms_by_review_count( $terms );
3929
+	if ($sort == 'review_count') {
3930
+		return geodir_sort_terms_by_review_count($terms);
3931 3931
 	}
3932 3932
 }
3933 3933
 
@@ -3945,7 +3945,7 @@  discard block
 block discarded – undo
3945 3945
  *
3946 3946
  * @return bool
3947 3947
  */
3948
-function geodir_sort_by_count( $a, $b ) {
3948
+function geodir_sort_by_count($a, $b) {
3949 3949
 	return $a['count'] < $b['count'];
3950 3950
 }
3951 3951
 
@@ -3960,7 +3960,7 @@  discard block
 block discarded – undo
3960 3960
  *
3961 3961
  * @return bool
3962 3962
  */
3963
-function geodir_sort_by_count_obj( $a, $b ) {
3963
+function geodir_sort_by_count_obj($a, $b) {
3964 3964
 	return $a->count < $b->count;
3965 3965
 }
3966 3966
 
@@ -3975,7 +3975,7 @@  discard block
 block discarded – undo
3975 3975
  *
3976 3976
  * @return bool
3977 3977
  */
3978
-function geodir_sort_by_review_count_obj( $a, $b ) {
3978
+function geodir_sort_by_review_count_obj($a, $b) {
3979 3979
 	return $a->review_count < $b->review_count;
3980 3980
 }
3981 3981
 
@@ -3992,35 +3992,35 @@  discard block
 block discarded – undo
3992 3992
 	 * @since   1.4.2
3993 3993
 	 * @package GeoDirectory
3994 3994
 	 */
3995
-	$locale = apply_filters( 'plugin_locale', get_locale(), 'geodirectory' );
3995
+	$locale = apply_filters('plugin_locale', get_locale(), 'geodirectory');
3996 3996
 
3997
-	load_textdomain( 'geodirectory', WP_LANG_DIR . '/' . 'geodirectory' . '/' . 'geodirectory' . '-' . $locale . '.mo' );
3998
-	load_plugin_textdomain( 'geodirectory', false, plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/geodirectory-languages' );
3997
+	load_textdomain('geodirectory', WP_LANG_DIR.'/'.'geodirectory'.'/'.'geodirectory'.'-'.$locale.'.mo');
3998
+	load_plugin_textdomain('geodirectory', false, plugin_basename(dirname(dirname(__FILE__))).'/geodirectory-languages');
3999 3999
 
4000 4000
 	/**
4001 4001
 	 * Define language constants.
4002 4002
 	 *
4003 4003
 	 * @since 1.0.0
4004 4004
 	 */
4005
-	require_once( geodir_plugin_path() . '/language.php' );
4005
+	require_once(geodir_plugin_path().'/language.php');
4006 4006
 
4007
-	$language_file = geodir_plugin_path() . '/db-language.php';
4007
+	$language_file = geodir_plugin_path().'/db-language.php';
4008 4008
 
4009 4009
 	// Load language string file if not created yet
4010
-	if ( ! file_exists( $language_file ) ) {
4010
+	if (!file_exists($language_file)) {
4011 4011
 		geodirectory_load_db_language();
4012 4012
 	}
4013 4013
 
4014
-	if ( file_exists( $language_file ) ) {
4014
+	if (file_exists($language_file)) {
4015 4015
 		/**
4016 4016
 		 * Language strings from database.
4017 4017
 		 *
4018 4018
 		 * @since 1.4.2
4019 4019
 		 */
4020 4020
 		try {
4021
-			require_once( $language_file );
4022
-		} catch ( Exception $e ) {
4023
-			error_log( 'Language Error: ' . $e->getMessage() );
4021
+			require_once($language_file);
4022
+		} catch (Exception $e) {
4023
+			error_log('Language Error: '.$e->getMessage());
4024 4024
 		}
4025 4025
 	}
4026 4026
 }
@@ -4037,19 +4037,19 @@  discard block
 block discarded – undo
4037 4037
  */
4038 4038
 function geodirectory_load_db_language() {
4039 4039
 	global $wp_filesystem;
4040
-	if ( empty( $wp_filesystem ) ) {
4041
-		require_once( ABSPATH . '/wp-admin/includes/file.php' );
4040
+	if (empty($wp_filesystem)) {
4041
+		require_once(ABSPATH.'/wp-admin/includes/file.php');
4042 4042
 		WP_Filesystem();
4043 4043
 		global $wp_filesystem;
4044 4044
 	}
4045 4045
 
4046
-	$language_file = geodir_plugin_path() . '/db-language.php';
4046
+	$language_file = geodir_plugin_path().'/db-language.php';
4047 4047
 
4048
-	if ( is_file( $language_file ) && ! is_writable( $language_file ) ) {
4048
+	if (is_file($language_file) && !is_writable($language_file)) {
4049 4049
 		return false;
4050 4050
 	} // Not possible to create.
4051 4051
 
4052
-	if ( ! is_file( $language_file ) && ! is_writable( dirname( $language_file ) ) ) {
4052
+	if (!is_file($language_file) && !is_writable(dirname($language_file))) {
4053 4053
 		return false;
4054 4054
 	} // Not possible to create.
4055 4055
 
@@ -4062,9 +4062,9 @@  discard block
 block discarded – undo
4062 4062
 	 *
4063 4063
 	 * @param array $contents_strings Array of strings.
4064 4064
 	 */
4065
-	$contents_strings = apply_filters( 'geodir_load_db_language', $contents_strings );
4065
+	$contents_strings = apply_filters('geodir_load_db_language', $contents_strings);
4066 4066
 
4067
-	$contents_strings = array_unique( $contents_strings );
4067
+	$contents_strings = array_unique($contents_strings);
4068 4068
 
4069 4069
 	$contents_head   = array();
4070 4070
 	$contents_head[] = "<?php";
@@ -4081,20 +4081,20 @@  discard block
 block discarded – undo
4081 4081
 	$contents_foot[] = "";
4082 4082
 	$contents_foot[] = "";
4083 4083
 
4084
-	$contents = implode( PHP_EOL, $contents_head );
4084
+	$contents = implode(PHP_EOL, $contents_head);
4085 4085
 
4086
-	if ( ! empty( $contents_strings ) ) {
4087
-		foreach ( $contents_strings as $string ) {
4088
-			if ( is_scalar( $string ) && $string != '' ) {
4089
-				$string = str_replace( "'", "\'", $string );
4090
-				$contents .= PHP_EOL . "__('" . $string . "', 'geodirectory');";
4086
+	if (!empty($contents_strings)) {
4087
+		foreach ($contents_strings as $string) {
4088
+			if (is_scalar($string) && $string != '') {
4089
+				$string = str_replace("'", "\'", $string);
4090
+				$contents .= PHP_EOL."__('".$string."', 'geodirectory');";
4091 4091
 			}
4092 4092
 		}
4093 4093
 	}
4094 4094
 
4095
-	$contents .= implode( PHP_EOL, $contents_foot );
4095
+	$contents .= implode(PHP_EOL, $contents_foot);
4096 4096
 
4097
-	if ( $wp_filesystem->put_contents( $language_file, $contents, FS_CHMOD_FILE ) ) {
4097
+	if ($wp_filesystem->put_contents($language_file, $contents, FS_CHMOD_FILE)) {
4098 4098
 		return false;
4099 4099
 	} // Failure; could not write file.
4100 4100
 
@@ -4114,45 +4114,45 @@  discard block
 block discarded – undo
4114 4114
  *
4115 4115
  * @return array Translation texts.
4116 4116
  */
4117
-function geodir_load_custom_field_translation( $translation_texts = array() ) {
4117
+function geodir_load_custom_field_translation($translation_texts = array()) {
4118 4118
 	global $wpdb;
4119 4119
 
4120 4120
 	// Custom fields table
4121
-	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values FROM " . GEODIR_CUSTOM_FIELDS_TABLE;
4122
-	$rows = $wpdb->get_results( $sql );
4121
+	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values FROM ".GEODIR_CUSTOM_FIELDS_TABLE;
4122
+	$rows = $wpdb->get_results($sql);
4123 4123
 
4124
-	if ( ! empty( $rows ) ) {
4125
-		foreach ( $rows as $row ) {
4126
-			if ( ! empty( $row->admin_title ) ) {
4127
-				$translation_texts[] = stripslashes_deep( $row->admin_title );
4124
+	if (!empty($rows)) {
4125
+		foreach ($rows as $row) {
4126
+			if (!empty($row->admin_title)) {
4127
+				$translation_texts[] = stripslashes_deep($row->admin_title);
4128 4128
 			}
4129 4129
 
4130
-			if ( ! empty( $row->admin_desc ) ) {
4131
-				$translation_texts[] = stripslashes_deep( $row->admin_desc );
4130
+			if (!empty($row->admin_desc)) {
4131
+				$translation_texts[] = stripslashes_deep($row->admin_desc);
4132 4132
 			}
4133 4133
 
4134
-			if ( ! empty( $row->site_title ) ) {
4135
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4134
+			if (!empty($row->site_title)) {
4135
+				$translation_texts[] = stripslashes_deep($row->site_title);
4136 4136
 			}
4137 4137
 
4138
-			if ( ! empty( $row->clabels ) ) {
4139
-				$translation_texts[] = stripslashes_deep( $row->clabels );
4138
+			if (!empty($row->clabels)) {
4139
+				$translation_texts[] = stripslashes_deep($row->clabels);
4140 4140
 			}
4141 4141
 
4142
-			if ( ! empty( $row->required_msg ) ) {
4143
-				$translation_texts[] = stripslashes_deep( $row->required_msg );
4142
+			if (!empty($row->required_msg)) {
4143
+				$translation_texts[] = stripslashes_deep($row->required_msg);
4144 4144
 			}
4145 4145
 
4146
-			if ( ! empty( $row->default_value ) ) {
4147
-				$translation_texts[] = stripslashes_deep( $row->default_value );
4146
+			if (!empty($row->default_value)) {
4147
+				$translation_texts[] = stripslashes_deep($row->default_value);
4148 4148
 			}
4149 4149
 
4150
-			if ( ! empty( $row->option_values ) ) {
4151
-				$option_values = geodir_string_values_to_options( stripslashes_deep( $row->option_values ) );
4150
+			if (!empty($row->option_values)) {
4151
+				$option_values = geodir_string_values_to_options(stripslashes_deep($row->option_values));
4152 4152
 
4153
-				if ( ! empty( $option_values ) ) {
4154
-					foreach ( $option_values as $option_value ) {
4155
-						if ( ! empty( $option_value['label'] ) ) {
4153
+				if (!empty($option_values)) {
4154
+					foreach ($option_values as $option_value) {
4155
+						if (!empty($option_value['label'])) {
4156 4156
 							$translation_texts[] = $option_value['label'];
4157 4157
 						}
4158 4158
 					}
@@ -4162,48 +4162,48 @@  discard block
 block discarded – undo
4162 4162
 	}
4163 4163
 
4164 4164
 	// Custom sorting fields table
4165
-	$sql  = "SELECT site_title, asc_title, desc_title FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4166
-	$rows = $wpdb->get_results( $sql );
4165
+	$sql  = "SELECT site_title, asc_title, desc_title FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4166
+	$rows = $wpdb->get_results($sql);
4167 4167
 
4168
-	if ( ! empty( $rows ) ) {
4169
-		foreach ( $rows as $row ) {
4170
-			if ( ! empty( $row->site_title ) ) {
4171
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4168
+	if (!empty($rows)) {
4169
+		foreach ($rows as $row) {
4170
+			if (!empty($row->site_title)) {
4171
+				$translation_texts[] = stripslashes_deep($row->site_title);
4172 4172
 			}
4173 4173
 
4174
-			if ( ! empty( $row->asc_title ) ) {
4175
-				$translation_texts[] = stripslashes_deep( $row->asc_title );
4174
+			if (!empty($row->asc_title)) {
4175
+				$translation_texts[] = stripslashes_deep($row->asc_title);
4176 4176
 			}
4177 4177
 
4178
-			if ( ! empty( $row->desc_title ) ) {
4179
-				$translation_texts[] = stripslashes_deep( $row->desc_title );
4178
+			if (!empty($row->desc_title)) {
4179
+				$translation_texts[] = stripslashes_deep($row->desc_title);
4180 4180
 			}
4181 4181
 		}
4182 4182
 	}
4183 4183
 
4184 4184
 	// Advance search filter fields table
4185
-	if ( defined( 'GEODIR_ADVANCE_SEARCH_TABLE' ) ) {
4186
-		$sql  = "SELECT field_site_name, front_search_title, field_desc FROM " . GEODIR_ADVANCE_SEARCH_TABLE;
4187
-		$rows = $wpdb->get_results( $sql );
4188
-
4189
-		if ( ! empty( $rows ) ) {
4190
-			foreach ( $rows as $row ) {
4191
-				if ( ! empty( $row->field_site_name ) ) {
4192
-					$translation_texts[] = stripslashes_deep( $row->field_site_name );
4185
+	if (defined('GEODIR_ADVANCE_SEARCH_TABLE')) {
4186
+		$sql  = "SELECT field_site_name, front_search_title, field_desc FROM ".GEODIR_ADVANCE_SEARCH_TABLE;
4187
+		$rows = $wpdb->get_results($sql);
4188
+
4189
+		if (!empty($rows)) {
4190
+			foreach ($rows as $row) {
4191
+				if (!empty($row->field_site_name)) {
4192
+					$translation_texts[] = stripslashes_deep($row->field_site_name);
4193 4193
 				}
4194 4194
 
4195
-				if ( ! empty( $row->front_search_title ) ) {
4196
-					$translation_texts[] = stripslashes_deep( $row->front_search_title );
4195
+				if (!empty($row->front_search_title)) {
4196
+					$translation_texts[] = stripslashes_deep($row->front_search_title);
4197 4197
 				}
4198 4198
 
4199
-				if ( ! empty( $row->field_desc ) ) {
4200
-					$translation_texts[] = stripslashes_deep( $row->field_desc );
4199
+				if (!empty($row->field_desc)) {
4200
+					$translation_texts[] = stripslashes_deep($row->field_desc);
4201 4201
 				}
4202 4202
 			}
4203 4203
 		}
4204 4204
 	}
4205 4205
 
4206
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4206
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4207 4207
 
4208 4208
 	return $translation_texts;
4209 4209
 }
@@ -4225,7 +4225,7 @@  discard block
 block discarded – undo
4225 4225
 	 *
4226 4226
 	 * @param array $geodir_allowed_mime_types and file extensions.
4227 4227
 	 */
4228
-	return apply_filters( 'geodir_allowed_mime_types', array(
4228
+	return apply_filters('geodir_allowed_mime_types', array(
4229 4229
 			'Image'       => array( // Image formats.
4230 4230
 				'jpg'  => 'image/jpeg',
4231 4231
 				'jpe'  => 'image/jpeg',
@@ -4293,18 +4293,18 @@  discard block
 block discarded – undo
4293 4293
  *
4294 4294
  * @return string User display name.
4295 4295
  */
4296
-function geodir_get_client_name( $user_id ) {
4296
+function geodir_get_client_name($user_id) {
4297 4297
 	$client_name = '';
4298 4298
 
4299
-	$user_data = get_userdata( $user_id );
4299
+	$user_data = get_userdata($user_id);
4300 4300
 
4301
-	if ( ! empty( $user_data ) ) {
4302
-		if ( isset( $user_data->display_name ) && trim( $user_data->display_name ) != '' ) {
4303
-			$client_name = trim( $user_data->display_name );
4304
-		} else if ( isset( $user_data->user_nicename ) && trim( $user_data->user_nicename ) != '' ) {
4305
-			$client_name = trim( $user_data->user_nicename );
4301
+	if (!empty($user_data)) {
4302
+		if (isset($user_data->display_name) && trim($user_data->display_name) != '') {
4303
+			$client_name = trim($user_data->display_name);
4304
+		} else if (isset($user_data->user_nicename) && trim($user_data->user_nicename) != '') {
4305
+			$client_name = trim($user_data->user_nicename);
4306 4306
 		} else {
4307
-			$client_name = trim( $user_data->user_login );
4307
+			$client_name = trim($user_data->user_login);
4308 4308
 		}
4309 4309
 	}
4310 4310
 
@@ -4312,19 +4312,19 @@  discard block
 block discarded – undo
4312 4312
 }
4313 4313
 
4314 4314
 
4315
-add_filter( 'wpseo_replacements', 'geodir_wpseo_replacements', 10, 1 );
4315
+add_filter('wpseo_replacements', 'geodir_wpseo_replacements', 10, 1);
4316 4316
 /*
4317 4317
  * Add location variables to wpseo replacements.
4318 4318
  *
4319 4319
  * @since 1.5.4
4320 4320
  */
4321
-function geodir_wpseo_replacements( $vars ) {
4321
+function geodir_wpseo_replacements($vars) {
4322 4322
 
4323 4323
 	global $wp;
4324 4324
 	$title = '';
4325 4325
 	// location variables
4326 4326
 	$gd_post_type   = geodir_get_current_posttype();
4327
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4327
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4328 4328
 	/**
4329 4329
 	 * Filter the title variables location variables array
4330 4330
 	 *
@@ -4334,105 +4334,105 @@  discard block
 block discarded – undo
4334 4334
 	 * @param array $location_array The array of location variables.
4335 4335
 	 * @param array $vars           The page title variables.
4336 4336
 	 */
4337
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr_seo', $location_array, $vars );
4337
+	$location_array  = apply_filters('geodir_filter_title_variables_location_arr_seo', $location_array, $vars);
4338 4338
 	$location_titles = array();
4339
-	if ( get_query_var( 'gd_country_full' ) ) {
4340
-		if ( get_query_var( 'gd_country_full' ) ) {
4341
-			$location_array['gd_country'] = get_query_var( 'gd_country_full' );
4339
+	if (get_query_var('gd_country_full')) {
4340
+		if (get_query_var('gd_country_full')) {
4341
+			$location_array['gd_country'] = get_query_var('gd_country_full');
4342 4342
 		}
4343
-		if ( get_query_var( 'gd_region_full' ) ) {
4344
-			$location_array['gd_region'] = get_query_var( 'gd_region_full' );
4343
+		if (get_query_var('gd_region_full')) {
4344
+			$location_array['gd_region'] = get_query_var('gd_region_full');
4345 4345
 		}
4346
-		if ( get_query_var( 'gd_city_full' ) ) {
4347
-			$location_array['gd_city'] = get_query_var( 'gd_city_full' );
4346
+		if (get_query_var('gd_city_full')) {
4347
+			$location_array['gd_city'] = get_query_var('gd_city_full');
4348 4348
 		}
4349 4349
 	}
4350 4350
 	$location_single = '';
4351
-	$gd_country      = ( isset( $wp->query_vars['gd_country'] ) && $wp->query_vars['gd_country'] != '' ) ? $wp->query_vars['gd_country'] : '';
4352
-	$gd_region       = ( isset( $wp->query_vars['gd_region'] ) && $wp->query_vars['gd_region'] != '' ) ? $wp->query_vars['gd_region'] : '';
4353
-	$gd_city         = ( isset( $wp->query_vars['gd_city'] ) && $wp->query_vars['gd_city'] != '' ) ? $wp->query_vars['gd_city'] : '';
4351
+	$gd_country      = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : '';
4352
+	$gd_region       = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : '';
4353
+	$gd_city         = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : '';
4354 4354
 
4355 4355
 	$gd_country_actual = $gd_region_actual = $gd_city_actual = '';
4356 4356
 
4357
-	if ( function_exists( 'get_actual_location_name' ) ) {
4358
-		$gd_country_actual = $gd_country != '' ? get_actual_location_name( 'country', $gd_country, true ) : $gd_country;
4359
-		$gd_region_actual  = $gd_region != '' ? get_actual_location_name( 'region', $gd_region ) : $gd_region;
4360
-		$gd_city_actual    = $gd_city != '' ? get_actual_location_name( 'city', $gd_city ) : $gd_city;
4357
+	if (function_exists('get_actual_location_name')) {
4358
+		$gd_country_actual = $gd_country != '' ? get_actual_location_name('country', $gd_country, true) : $gd_country;
4359
+		$gd_region_actual  = $gd_region != '' ? get_actual_location_name('region', $gd_region) : $gd_region;
4360
+		$gd_city_actual    = $gd_city != '' ? get_actual_location_name('city', $gd_city) : $gd_city;
4361 4361
 	}
4362 4362
 
4363
-	if ( $gd_city != '' ) {
4364
-		if ( $gd_city_actual != '' ) {
4363
+	if ($gd_city != '') {
4364
+		if ($gd_city_actual != '') {
4365 4365
 			$gd_city = $gd_city_actual;
4366 4366
 		} else {
4367
-			$gd_city = preg_replace( '/-(\d+)$/', '', $gd_city );
4368
-			$gd_city = preg_replace( '/[_-]/', ' ', $gd_city );
4369
-			$gd_city = __( geodir_ucwords( $gd_city ), 'geodirectory' );
4367
+			$gd_city = preg_replace('/-(\d+)$/', '', $gd_city);
4368
+			$gd_city = preg_replace('/[_-]/', ' ', $gd_city);
4369
+			$gd_city = __(geodir_ucwords($gd_city), 'geodirectory');
4370 4370
 		}
4371 4371
 		$location_single = $gd_city;
4372 4372
 
4373
-	} else if ( $gd_region != '' ) {
4374
-		if ( $gd_region_actual != '' ) {
4373
+	} else if ($gd_region != '') {
4374
+		if ($gd_region_actual != '') {
4375 4375
 			$gd_region = $gd_region_actual;
4376 4376
 		} else {
4377
-			$gd_region = preg_replace( '/-(\d+)$/', '', $gd_region );
4378
-			$gd_region = preg_replace( '/[_-]/', ' ', $gd_region );
4379
-			$gd_region = __( geodir_ucwords( $gd_region ), 'geodirectory' );
4377
+			$gd_region = preg_replace('/-(\d+)$/', '', $gd_region);
4378
+			$gd_region = preg_replace('/[_-]/', ' ', $gd_region);
4379
+			$gd_region = __(geodir_ucwords($gd_region), 'geodirectory');
4380 4380
 		}
4381 4381
 
4382 4382
 		$location_single = $gd_region;
4383
-	} else if ( $gd_country != '' ) {
4384
-		if ( $gd_country_actual != '' ) {
4383
+	} else if ($gd_country != '') {
4384
+		if ($gd_country_actual != '') {
4385 4385
 			$gd_country = $gd_country_actual;
4386 4386
 		} else {
4387
-			$gd_country = preg_replace( '/-(\d+)$/', '', $gd_country );
4388
-			$gd_country = preg_replace( '/[_-]/', ' ', $gd_country );
4389
-			$gd_country = __( geodir_ucwords( $gd_country ), 'geodirectory' );
4387
+			$gd_country = preg_replace('/-(\d+)$/', '', $gd_country);
4388
+			$gd_country = preg_replace('/[_-]/', ' ', $gd_country);
4389
+			$gd_country = __(geodir_ucwords($gd_country), 'geodirectory');
4390 4390
 		}
4391 4391
 
4392 4392
 		$location_single = $gd_country;
4393 4393
 	}
4394 4394
 
4395
-	if ( ! empty( $location_array ) ) {
4395
+	if (!empty($location_array)) {
4396 4396
 
4397
-		$actual_location_name = function_exists( 'get_actual_location_name' ) ? true : false;
4398
-		$location_array       = array_reverse( $location_array );
4397
+		$actual_location_name = function_exists('get_actual_location_name') ? true : false;
4398
+		$location_array       = array_reverse($location_array);
4399 4399
 
4400
-		foreach ( $location_array as $location_type => $location ) {
4401
-			$gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location );
4402
-			$gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text );
4400
+		foreach ($location_array as $location_type => $location) {
4401
+			$gd_location_link_text = preg_replace('/-(\d+)$/', '', $location);
4402
+			$gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
4403 4403
 
4404
-			$location_name = geodir_ucwords( $gd_location_link_text );
4405
-			$location_name = __( $location_name, 'geodirectory' );
4404
+			$location_name = geodir_ucwords($gd_location_link_text);
4405
+			$location_name = __($location_name, 'geodirectory');
4406 4406
 
4407
-			if ( $actual_location_name ) {
4408
-				$location_type = strpos( $location_type, 'gd_' ) === 0 ? substr( $location_type, 3 ) : $location_type;
4409
-				$location_name = get_actual_location_name( $location_type, $location, true );
4407
+			if ($actual_location_name) {
4408
+				$location_type = strpos($location_type, 'gd_') === 0 ? substr($location_type, 3) : $location_type;
4409
+				$location_name = get_actual_location_name($location_type, $location, true);
4410 4410
 			}
4411 4411
 
4412 4412
 			$location_titles[] = $location_name;
4413 4413
 		}
4414
-		if ( ! empty( $location_titles ) ) {
4415
-			$location_titles = array_unique( $location_titles );
4414
+		if (!empty($location_titles)) {
4415
+			$location_titles = array_unique($location_titles);
4416 4416
 		}
4417 4417
 	}
4418 4418
 
4419 4419
 
4420
-	if ( ! empty( $location_titles ) ) {
4421
-		$vars['%%location%%'] = implode( ", ", $location_titles );
4420
+	if (!empty($location_titles)) {
4421
+		$vars['%%location%%'] = implode(", ", $location_titles);
4422 4422
 	}
4423 4423
 
4424 4424
 
4425
-	if ( ! empty( $location_titles ) ) {
4426
-		$vars['%%in_location%%'] = __( 'in ', 'geodirectory' ) . implode( ", ", $location_titles );
4425
+	if (!empty($location_titles)) {
4426
+		$vars['%%in_location%%'] = __('in ', 'geodirectory').implode(", ", $location_titles);
4427 4427
 	}
4428 4428
 
4429 4429
 
4430
-	if ( $location_single ) {
4431
-		$vars['%%in_location_single%%'] = __( 'in', 'geodirectory' ) . ' ' . $location_single;
4430
+	if ($location_single) {
4431
+		$vars['%%in_location_single%%'] = __('in', 'geodirectory').' '.$location_single;
4432 4432
 	}
4433 4433
 
4434 4434
 
4435
-	if ( $location_single ) {
4435
+	if ($location_single) {
4436 4436
 		$vars['%%location_single%%'] = $location_single;
4437 4437
 	}
4438 4438
 
@@ -4445,13 +4445,13 @@  discard block
 block discarded – undo
4445 4445
 	 * @param string $vars          The title with variables.
4446 4446
 	 * @param array $location_array The array of location variables.
4447 4447
 	 */
4448
-	return apply_filters( 'geodir_wpseo_replacements_vars', $vars, $location_array );
4448
+	return apply_filters('geodir_wpseo_replacements_vars', $vars, $location_array);
4449 4449
 }
4450 4450
 
4451 4451
 
4452
-add_filter( 'geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3 );
4453
-add_filter( 'geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2 );
4454
-add_filter( 'geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3 );
4452
+add_filter('geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3);
4453
+add_filter('geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2);
4454
+add_filter('geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3);
4455 4455
 
4456 4456
 /**
4457 4457
  * Filter the title variables.
@@ -4493,14 +4493,14 @@  discard block
 block discarded – undo
4493 4493
  *
4494 4494
  * @return string Title after filtered variables.
4495 4495
  */
4496
-function geodir_filter_title_variables( $title, $gd_page, $sep = '' ) {
4496
+function geodir_filter_title_variables($title, $gd_page, $sep = '') {
4497 4497
 	global $wp, $post;
4498 4498
 
4499
-	if ( ! $gd_page || ! $title ) {
4499
+	if (!$gd_page || !$title) {
4500 4500
 		return $title; // if no a GD page then bail.
4501 4501
 	}
4502 4502
 
4503
-	if ( $sep == '' ) {
4503
+	if ($sep == '') {
4504 4504
 		/**
4505 4505
 		 * Filter the page title separator.
4506 4506
 		 *
@@ -4509,100 +4509,100 @@  discard block
 block discarded – undo
4509 4509
 		 *
4510 4510
 		 * @param string $sep The separator, default: `|`.
4511 4511
 		 */
4512
-		$sep = apply_filters( 'geodir_page_title_separator', '|' );
4512
+		$sep = apply_filters('geodir_page_title_separator', '|');
4513 4513
 	}
4514 4514
 
4515
-	if ( strpos( $title, '%%title%%' ) !== false ) {
4516
-		$title = str_replace( "%%title%%", $post->post_title, $title );
4515
+	if (strpos($title, '%%title%%') !== false) {
4516
+		$title = str_replace("%%title%%", $post->post_title, $title);
4517 4517
 	}
4518 4518
 
4519
-	if ( strpos( $title, '%%sitename%%' ) !== false ) {
4520
-		$title = str_replace( "%%sitename%%", get_bloginfo( 'name' ), $title );
4519
+	if (strpos($title, '%%sitename%%') !== false) {
4520
+		$title = str_replace("%%sitename%%", get_bloginfo('name'), $title);
4521 4521
 	}
4522 4522
 
4523
-	if ( strpos( $title, '%%sitedesc%%' ) !== false ) {
4524
-		$title = str_replace( "%%sitedesc%%", get_bloginfo( 'description' ), $title );
4523
+	if (strpos($title, '%%sitedesc%%') !== false) {
4524
+		$title = str_replace("%%sitedesc%%", get_bloginfo('description'), $title);
4525 4525
 	}
4526 4526
 
4527
-	if ( strpos( $title, '%%excerpt%%' ) !== false ) {
4528
-		$title = str_replace( "%%excerpt%%", strip_tags( get_the_excerpt() ), $title );
4527
+	if (strpos($title, '%%excerpt%%') !== false) {
4528
+		$title = str_replace("%%excerpt%%", strip_tags(get_the_excerpt()), $title);
4529 4529
 	}
4530 4530
 
4531
-	if ( $gd_page == 'search' || $gd_page == 'author' ) {
4532
-		$post_type = isset( $_REQUEST['stype'] ) ? sanitize_text_field( $_REQUEST['stype'] ) : '';
4533
-	} else if ( $gd_page == 'add-listing' ) {
4534
-		$post_type = ( isset( $_REQUEST['listing_type'] ) ) ? sanitize_text_field( $_REQUEST['listing_type'] ) : '';
4535
-		$post_type = ! $post_type && ! empty( $_REQUEST['pid'] ) ? get_post_type( (int) $_REQUEST['pid'] ) : $post_type;
4536
-	} else if ( isset( $post->post_type ) && $post->post_type && in_array( $post->post_type, geodir_get_posttypes() ) ) {
4531
+	if ($gd_page == 'search' || $gd_page == 'author') {
4532
+		$post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : '';
4533
+	} else if ($gd_page == 'add-listing') {
4534
+		$post_type = (isset($_REQUEST['listing_type'])) ? sanitize_text_field($_REQUEST['listing_type']) : '';
4535
+		$post_type = !$post_type && !empty($_REQUEST['pid']) ? get_post_type((int) $_REQUEST['pid']) : $post_type;
4536
+	} else if (isset($post->post_type) && $post->post_type && in_array($post->post_type, geodir_get_posttypes())) {
4537 4537
 		$post_type = $post->post_type;
4538 4538
 	} else {
4539
-		$post_type = get_query_var( 'post_type' );
4539
+		$post_type = get_query_var('post_type');
4540 4540
 	}
4541 4541
 
4542
-	if ( strpos( $title, '%%pt_single%%' ) !== false ) {
4542
+	if (strpos($title, '%%pt_single%%') !== false) {
4543 4543
 		$singular_name = '';
4544
-		if ( $post_type && $singular_name = get_post_type_singular_label( $post_type ) ) {
4545
-			$singular_name = __( $singular_name, 'geodirectory' );
4544
+		if ($post_type && $singular_name = get_post_type_singular_label($post_type)) {
4545
+			$singular_name = __($singular_name, 'geodirectory');
4546 4546
 		}
4547 4547
 
4548
-		$title = str_replace( "%%pt_single%%", $singular_name, $title );
4548
+		$title = str_replace("%%pt_single%%", $singular_name, $title);
4549 4549
 	}
4550 4550
 
4551
-	if ( strpos( $title, '%%pt_plural%%' ) !== false ) {
4551
+	if (strpos($title, '%%pt_plural%%') !== false) {
4552 4552
 		$plural_name = '';
4553
-		if ( $post_type && $plural_name = get_post_type_plural_label( $post_type ) ) {
4554
-			$plural_name = __( $plural_name, 'geodirectory' );
4553
+		if ($post_type && $plural_name = get_post_type_plural_label($post_type)) {
4554
+			$plural_name = __($plural_name, 'geodirectory');
4555 4555
 		}
4556 4556
 
4557
-		$title = str_replace( "%%pt_plural%%", $plural_name, $title );
4557
+		$title = str_replace("%%pt_plural%%", $plural_name, $title);
4558 4558
 	}
4559 4559
 
4560
-	if ( strpos( $title, '%%category%%' ) !== false ) {
4560
+	if (strpos($title, '%%category%%') !== false) {
4561 4561
 		$cat_name = '';
4562 4562
 
4563
-		if ( $gd_page == 'detail' ) {
4564
-			if ( $post->default_category ) {
4565
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4566
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4563
+		if ($gd_page == 'detail') {
4564
+			if ($post->default_category) {
4565
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4566
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4567 4567
 			}
4568
-		} else if ( $gd_page == 'listing' ) {
4568
+		} else if ($gd_page == 'listing') {
4569 4569
 			$queried_object = get_queried_object();
4570
-			if ( isset( $queried_object->name ) ) {
4570
+			if (isset($queried_object->name)) {
4571 4571
 				$cat_name = $queried_object->name;
4572 4572
 			}
4573 4573
 		}
4574
-		$title = str_replace( "%%category%%", $cat_name, $title );
4574
+		$title = str_replace("%%category%%", $cat_name, $title);
4575 4575
 	}
4576 4576
 
4577
-	if ( strpos( $title, '%%tag%%' ) !== false ) {
4577
+	if (strpos($title, '%%tag%%') !== false) {
4578 4578
 		$cat_name = '';
4579 4579
 
4580
-		if ( $gd_page == 'detail' ) {
4581
-			if ( $post->default_category ) {
4582
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4583
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4580
+		if ($gd_page == 'detail') {
4581
+			if ($post->default_category) {
4582
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4583
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4584 4584
 			}
4585
-		} else if ( $gd_page == 'listing' ) {
4585
+		} else if ($gd_page == 'listing') {
4586 4586
 			$queried_object = get_queried_object();
4587
-			if ( isset( $queried_object->name ) ) {
4587
+			if (isset($queried_object->name)) {
4588 4588
 				$cat_name = $queried_object->name;
4589 4589
 			}
4590 4590
 		}
4591
-		$title = str_replace( "%%tag%%", $cat_name, $title );
4591
+		$title = str_replace("%%tag%%", $cat_name, $title);
4592 4592
 	}
4593 4593
 
4594
-	if ( strpos( $title, '%%id%%' ) !== false ) {
4595
-		$ID    = ( isset( $post->ID ) ) ? $post->ID : '';
4596
-		$title = str_replace( "%%id%%", $ID, $title );
4594
+	if (strpos($title, '%%id%%') !== false) {
4595
+		$ID    = (isset($post->ID)) ? $post->ID : '';
4596
+		$title = str_replace("%%id%%", $ID, $title);
4597 4597
 	}
4598 4598
 
4599
-	if ( strpos( $title, '%%sep%%' ) !== false ) {
4600
-		$title = str_replace( "%%sep%%", $sep, $title );
4599
+	if (strpos($title, '%%sep%%') !== false) {
4600
+		$title = str_replace("%%sep%%", $sep, $title);
4601 4601
 	}
4602 4602
 
4603 4603
 	// location variables
4604 4604
 	$gd_post_type   = geodir_get_current_posttype();
4605
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4605
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4606 4606
 	/**
4607 4607
 	 * Filter the title variables location variables array
4608 4608
 	 *
@@ -4614,166 +4614,166 @@  discard block
 block discarded – undo
4614 4614
 	 * @param string $gd_page       The page being filtered.
4615 4615
 	 * @param string $sep           The separator, default: `|`.
4616 4616
 	 */
4617
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep );
4617
+	$location_array  = apply_filters('geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep);
4618 4618
 	$location_titles = array();
4619
-	if ( $gd_page == 'location' && get_query_var( 'gd_country_full' ) ) {
4620
-		if ( get_query_var( 'gd_country_full' ) ) {
4621
-			$location_array['gd_country'] = get_query_var( 'gd_country_full' );
4619
+	if ($gd_page == 'location' && get_query_var('gd_country_full')) {
4620
+		if (get_query_var('gd_country_full')) {
4621
+			$location_array['gd_country'] = get_query_var('gd_country_full');
4622 4622
 		}
4623
-		if ( get_query_var( 'gd_region_full' ) ) {
4624
-			$location_array['gd_region'] = get_query_var( 'gd_region_full' );
4623
+		if (get_query_var('gd_region_full')) {
4624
+			$location_array['gd_region'] = get_query_var('gd_region_full');
4625 4625
 		}
4626
-		if ( get_query_var( 'gd_city_full' ) ) {
4627
-			$location_array['gd_city'] = get_query_var( 'gd_city_full' );
4626
+		if (get_query_var('gd_city_full')) {
4627
+			$location_array['gd_city'] = get_query_var('gd_city_full');
4628 4628
 		}
4629 4629
 	}
4630 4630
 	$location_single = '';
4631
-	$gd_country      = ( isset( $wp->query_vars['gd_country'] ) && $wp->query_vars['gd_country'] != '' ) ? $wp->query_vars['gd_country'] : '';
4632
-	$gd_region       = ( isset( $wp->query_vars['gd_region'] ) && $wp->query_vars['gd_region'] != '' ) ? $wp->query_vars['gd_region'] : '';
4633
-	$gd_city         = ( isset( $wp->query_vars['gd_city'] ) && $wp->query_vars['gd_city'] != '' ) ? $wp->query_vars['gd_city'] : '';
4631
+	$gd_country      = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : '';
4632
+	$gd_region       = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : '';
4633
+	$gd_city         = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : '';
4634 4634
 
4635 4635
 	$gd_country_actual = $gd_region_actual = $gd_city_actual = '';
4636 4636
 
4637
-	if ( function_exists( 'get_actual_location_name' ) ) {
4638
-		$gd_country_actual = $gd_country != '' ? get_actual_location_name( 'country', $gd_country, true ) : $gd_country;
4639
-		$gd_region_actual  = $gd_region != '' ? get_actual_location_name( 'region', $gd_region ) : $gd_region;
4640
-		$gd_city_actual    = $gd_city != '' ? get_actual_location_name( 'city', $gd_city ) : $gd_city;
4637
+	if (function_exists('get_actual_location_name')) {
4638
+		$gd_country_actual = $gd_country != '' ? get_actual_location_name('country', $gd_country, true) : $gd_country;
4639
+		$gd_region_actual  = $gd_region != '' ? get_actual_location_name('region', $gd_region) : $gd_region;
4640
+		$gd_city_actual    = $gd_city != '' ? get_actual_location_name('city', $gd_city) : $gd_city;
4641 4641
 	}
4642 4642
 
4643
-	if ( $gd_city != '' ) {
4644
-		if ( $gd_city_actual != '' ) {
4643
+	if ($gd_city != '') {
4644
+		if ($gd_city_actual != '') {
4645 4645
 			$gd_city = $gd_city_actual;
4646 4646
 		} else {
4647
-			$gd_city = preg_replace( '/-(\d+)$/', '', $gd_city );
4648
-			$gd_city = preg_replace( '/[_-]/', ' ', $gd_city );
4649
-			$gd_city = __( geodir_ucwords( $gd_city ), 'geodirectory' );
4647
+			$gd_city = preg_replace('/-(\d+)$/', '', $gd_city);
4648
+			$gd_city = preg_replace('/[_-]/', ' ', $gd_city);
4649
+			$gd_city = __(geodir_ucwords($gd_city), 'geodirectory');
4650 4650
 		}
4651 4651
 		$location_single = $gd_city;
4652 4652
 
4653
-	} else if ( $gd_region != '' ) {
4654
-		if ( $gd_region_actual != '' ) {
4653
+	} else if ($gd_region != '') {
4654
+		if ($gd_region_actual != '') {
4655 4655
 			$gd_region = $gd_region_actual;
4656 4656
 		} else {
4657
-			$gd_region = preg_replace( '/-(\d+)$/', '', $gd_region );
4658
-			$gd_region = preg_replace( '/[_-]/', ' ', $gd_region );
4659
-			$gd_region = __( geodir_ucwords( $gd_region ), 'geodirectory' );
4657
+			$gd_region = preg_replace('/-(\d+)$/', '', $gd_region);
4658
+			$gd_region = preg_replace('/[_-]/', ' ', $gd_region);
4659
+			$gd_region = __(geodir_ucwords($gd_region), 'geodirectory');
4660 4660
 		}
4661 4661
 
4662 4662
 		$location_single = $gd_region;
4663
-	} else if ( $gd_country != '' ) {
4664
-		if ( $gd_country_actual != '' ) {
4663
+	} else if ($gd_country != '') {
4664
+		if ($gd_country_actual != '') {
4665 4665
 			$gd_country = $gd_country_actual;
4666 4666
 		} else {
4667
-			$gd_country = preg_replace( '/-(\d+)$/', '', $gd_country );
4668
-			$gd_country = preg_replace( '/[_-]/', ' ', $gd_country );
4669
-			$gd_country = __( geodir_ucwords( $gd_country ), 'geodirectory' );
4667
+			$gd_country = preg_replace('/-(\d+)$/', '', $gd_country);
4668
+			$gd_country = preg_replace('/[_-]/', ' ', $gd_country);
4669
+			$gd_country = __(geodir_ucwords($gd_country), 'geodirectory');
4670 4670
 		}
4671 4671
 
4672 4672
 		$location_single = $gd_country;
4673 4673
 	}
4674 4674
 
4675
-	if ( ! empty( $location_array ) ) {
4675
+	if (!empty($location_array)) {
4676 4676
 
4677
-		$actual_location_name = function_exists( 'get_actual_location_name' ) ? true : false;
4678
-		$location_array       = array_reverse( $location_array );
4677
+		$actual_location_name = function_exists('get_actual_location_name') ? true : false;
4678
+		$location_array       = array_reverse($location_array);
4679 4679
 
4680
-		foreach ( $location_array as $location_type => $location ) {
4681
-			$gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location );
4682
-			$gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text );
4680
+		foreach ($location_array as $location_type => $location) {
4681
+			$gd_location_link_text = preg_replace('/-(\d+)$/', '', $location);
4682
+			$gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
4683 4683
 
4684
-			$location_name = geodir_ucwords( $gd_location_link_text );
4685
-			$location_name = __( $location_name, 'geodirectory' );
4684
+			$location_name = geodir_ucwords($gd_location_link_text);
4685
+			$location_name = __($location_name, 'geodirectory');
4686 4686
 
4687
-			if ( $actual_location_name ) {
4688
-				$location_type = strpos( $location_type, 'gd_' ) === 0 ? substr( $location_type, 3 ) : $location_type;
4689
-				$location_name = get_actual_location_name( $location_type, $location, true );
4687
+			if ($actual_location_name) {
4688
+				$location_type = strpos($location_type, 'gd_') === 0 ? substr($location_type, 3) : $location_type;
4689
+				$location_name = get_actual_location_name($location_type, $location, true);
4690 4690
 			}
4691 4691
 
4692 4692
 			$location_titles[] = $location_name;
4693 4693
 		}
4694
-		if ( ! empty( $location_titles ) ) {
4695
-			$location_titles = array_unique( $location_titles );
4694
+		if (!empty($location_titles)) {
4695
+			$location_titles = array_unique($location_titles);
4696 4696
 		}
4697 4697
 	}
4698 4698
 
4699 4699
 
4700
-	if ( strpos( $title, '%%location%%' ) !== false ) {
4700
+	if (strpos($title, '%%location%%') !== false) {
4701 4701
 		$location = '';
4702
-		if ( $location_titles ) {
4703
-			$location = implode( ", ", $location_titles );
4702
+		if ($location_titles) {
4703
+			$location = implode(", ", $location_titles);
4704 4704
 		}
4705
-		$title = str_replace( "%%location%%", $location, $title );
4705
+		$title = str_replace("%%location%%", $location, $title);
4706 4706
 	}
4707 4707
 
4708
-	if ( strpos( $title, '%%in_location%%' ) !== false ) {
4708
+	if (strpos($title, '%%in_location%%') !== false) {
4709 4709
 		$location = '';
4710
-		if ( $location_titles ) {
4711
-			$location = __( 'in ', 'geodirectory' ) . implode( ", ", $location_titles );
4710
+		if ($location_titles) {
4711
+			$location = __('in ', 'geodirectory').implode(", ", $location_titles);
4712 4712
 		}
4713
-		$title = str_replace( "%%in_location%%", $location, $title );
4713
+		$title = str_replace("%%in_location%%", $location, $title);
4714 4714
 	}
4715 4715
 
4716
-	if ( strpos( $title, '%%in_location_single%%' ) !== false ) {
4717
-		if ( $location_single ) {
4718
-			$location_single = __( 'in', 'geodirectory' ) . ' ' . $location_single;
4716
+	if (strpos($title, '%%in_location_single%%') !== false) {
4717
+		if ($location_single) {
4718
+			$location_single = __('in', 'geodirectory').' '.$location_single;
4719 4719
 		}
4720
-		$title = str_replace( "%%in_location_single%%", $location_single, $title );
4720
+		$title = str_replace("%%in_location_single%%", $location_single, $title);
4721 4721
 	}
4722 4722
 
4723
-	if ( strpos( $title, '%%location_single%%' ) !== false ) {
4724
-		$title = str_replace( "%%location_single%%", $location_single, $title );
4723
+	if (strpos($title, '%%location_single%%') !== false) {
4724
+		$title = str_replace("%%location_single%%", $location_single, $title);
4725 4725
 	}
4726 4726
 
4727 4727
 
4728
-	if ( strpos( $title, '%%search_term%%' ) !== false ) {
4728
+	if (strpos($title, '%%search_term%%') !== false) {
4729 4729
 		$search_term = '';
4730
-		if ( isset( $_REQUEST['s'] ) ) {
4731
-			$search_term = esc_attr( $_REQUEST['s'] );
4730
+		if (isset($_REQUEST['s'])) {
4731
+			$search_term = esc_attr($_REQUEST['s']);
4732 4732
 		}
4733
-		$title = str_replace( "%%search_term%%", $search_term, $title );
4733
+		$title = str_replace("%%search_term%%", $search_term, $title);
4734 4734
 	}
4735 4735
 
4736
-	if ( strpos( $title, '%%search_near%%' ) !== false ) {
4736
+	if (strpos($title, '%%search_near%%') !== false) {
4737 4737
 		$search_term = '';
4738
-		if ( isset( $_REQUEST['snear'] ) ) {
4739
-			$search_term = esc_attr( $_REQUEST['snear'] );
4738
+		if (isset($_REQUEST['snear'])) {
4739
+			$search_term = esc_attr($_REQUEST['snear']);
4740 4740
 		}
4741
-		$title = str_replace( "%%search_near%%", $search_term, $title );
4741
+		$title = str_replace("%%search_near%%", $search_term, $title);
4742 4742
 	}
4743 4743
 
4744
-	if ( strpos( $title, '%%name%%' ) !== false ) {
4745
-		if ( is_author() ) {
4746
-			$curauth     = ( get_query_var( 'author_name' ) ) ? get_user_by( 'slug', get_query_var( 'author_name' ) ) : get_userdata( get_query_var( 'author' ) );
4744
+	if (strpos($title, '%%name%%') !== false) {
4745
+		if (is_author()) {
4746
+			$curauth     = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
4747 4747
 			$author_name = $curauth->display_name;
4748 4748
 		} else {
4749 4749
 			$author_name = get_the_author();
4750 4750
 		}
4751
-		if ( ! $author_name || $author_name === '' ) {
4751
+		if (!$author_name || $author_name === '') {
4752 4752
 			$queried_object = get_queried_object();
4753 4753
 
4754
-			if ( isset( $queried_object->data->user_nicename ) ) {
4754
+			if (isset($queried_object->data->user_nicename)) {
4755 4755
 				$author_name = $queried_object->data->display_name;
4756 4756
 			}
4757 4757
 		}
4758
-		$title = str_replace( "%%name%%", $author_name, $title );
4758
+		$title = str_replace("%%name%%", $author_name, $title);
4759 4759
 	}
4760 4760
 
4761
-	if ( strpos( $title, '%%page%%' ) !== false ) {
4762
-		$page  = geodir_title_meta_page( $sep );
4763
-		$title = str_replace( "%%page%%", $page, $title );
4761
+	if (strpos($title, '%%page%%') !== false) {
4762
+		$page  = geodir_title_meta_page($sep);
4763
+		$title = str_replace("%%page%%", $page, $title);
4764 4764
 	}
4765
-	if ( strpos( $title, '%%pagenumber%%' ) !== false ) {
4765
+	if (strpos($title, '%%pagenumber%%') !== false) {
4766 4766
 		$pagenumber = geodir_title_meta_pagenumber();
4767
-		$title      = str_replace( "%%pagenumber%%", $pagenumber, $title );
4767
+		$title      = str_replace("%%pagenumber%%", $pagenumber, $title);
4768 4768
 	}
4769
-	if ( strpos( $title, '%%pagetotal%%' ) !== false ) {
4769
+	if (strpos($title, '%%pagetotal%%') !== false) {
4770 4770
 		$pagetotal = geodir_title_meta_pagetotal();
4771
-		$title     = str_replace( "%%pagetotal%%", $pagetotal, $title );
4771
+		$title     = str_replace("%%pagetotal%%", $pagetotal, $title);
4772 4772
 	}
4773 4773
 
4774
-	$title = wptexturize( $title );
4775
-	$title = convert_chars( $title );
4776
-	$title = esc_html( $title );
4774
+	$title = wptexturize($title);
4775
+	$title = convert_chars($title);
4776
+	$title = esc_html($title);
4777 4777
 
4778 4778
 	/**
4779 4779
 	 * Filter the title variables after standard ones have been filtered.
@@ -4787,7 +4787,7 @@  discard block
 block discarded – undo
4787 4787
 	 * @param string $sep           The separator, default: `|`.
4788 4788
 	 */
4789 4789
 
4790
-	return apply_filters( 'geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep );
4790
+	return apply_filters('geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep);
4791 4791
 }
4792 4792
 
4793 4793
 /**
@@ -4800,82 +4800,82 @@  discard block
 block discarded – undo
4800 4800
  *
4801 4801
  * @return array Translation texts.
4802 4802
  */
4803
-function geodir_load_cpt_text_translation( $translation_texts = array() ) {
4804
-	$gd_post_types = geodir_get_posttypes( 'array' );
4803
+function geodir_load_cpt_text_translation($translation_texts = array()) {
4804
+	$gd_post_types = geodir_get_posttypes('array');
4805 4805
 
4806
-	if ( ! empty( $gd_post_types ) ) {
4807
-		foreach ( $gd_post_types as $post_type => $cpt_info ) {
4808
-			$labels      = isset( $cpt_info['labels'] ) ? $cpt_info['labels'] : '';
4809
-			$description = isset( $cpt_info['description'] ) ? $cpt_info['description'] : '';
4810
-			$seo         = isset( $cpt_info['seo'] ) ? $cpt_info['seo'] : '';
4806
+	if (!empty($gd_post_types)) {
4807
+		foreach ($gd_post_types as $post_type => $cpt_info) {
4808
+			$labels      = isset($cpt_info['labels']) ? $cpt_info['labels'] : '';
4809
+			$description = isset($cpt_info['description']) ? $cpt_info['description'] : '';
4810
+			$seo         = isset($cpt_info['seo']) ? $cpt_info['seo'] : '';
4811 4811
 
4812
-			if ( ! empty( $labels ) ) {
4813
-				if ( $labels['name'] != '' && ! in_array( $labels['name'], $translation_texts ) ) {
4812
+			if (!empty($labels)) {
4813
+				if ($labels['name'] != '' && !in_array($labels['name'], $translation_texts)) {
4814 4814
 					$translation_texts[] = $labels['name'];
4815 4815
 				}
4816
-				if ( $labels['singular_name'] != '' && ! in_array( $labels['singular_name'], $translation_texts ) ) {
4816
+				if ($labels['singular_name'] != '' && !in_array($labels['singular_name'], $translation_texts)) {
4817 4817
 					$translation_texts[] = $labels['singular_name'];
4818 4818
 				}
4819
-				if ( $labels['add_new'] != '' && ! in_array( $labels['add_new'], $translation_texts ) ) {
4819
+				if ($labels['add_new'] != '' && !in_array($labels['add_new'], $translation_texts)) {
4820 4820
 					$translation_texts[] = $labels['add_new'];
4821 4821
 				}
4822
-				if ( $labels['add_new_item'] != '' && ! in_array( $labels['add_new_item'], $translation_texts ) ) {
4822
+				if ($labels['add_new_item'] != '' && !in_array($labels['add_new_item'], $translation_texts)) {
4823 4823
 					$translation_texts[] = $labels['add_new_item'];
4824 4824
 				}
4825
-				if ( $labels['edit_item'] != '' && ! in_array( $labels['edit_item'], $translation_texts ) ) {
4825
+				if ($labels['edit_item'] != '' && !in_array($labels['edit_item'], $translation_texts)) {
4826 4826
 					$translation_texts[] = $labels['edit_item'];
4827 4827
 				}
4828
-				if ( $labels['new_item'] != '' && ! in_array( $labels['new_item'], $translation_texts ) ) {
4828
+				if ($labels['new_item'] != '' && !in_array($labels['new_item'], $translation_texts)) {
4829 4829
 					$translation_texts[] = $labels['new_item'];
4830 4830
 				}
4831
-				if ( $labels['view_item'] != '' && ! in_array( $labels['view_item'], $translation_texts ) ) {
4831
+				if ($labels['view_item'] != '' && !in_array($labels['view_item'], $translation_texts)) {
4832 4832
 					$translation_texts[] = $labels['view_item'];
4833 4833
 				}
4834
-				if ( $labels['search_items'] != '' && ! in_array( $labels['search_items'], $translation_texts ) ) {
4834
+				if ($labels['search_items'] != '' && !in_array($labels['search_items'], $translation_texts)) {
4835 4835
 					$translation_texts[] = $labels['search_items'];
4836 4836
 				}
4837
-				if ( $labels['not_found'] != '' && ! in_array( $labels['not_found'], $translation_texts ) ) {
4837
+				if ($labels['not_found'] != '' && !in_array($labels['not_found'], $translation_texts)) {
4838 4838
 					$translation_texts[] = $labels['not_found'];
4839 4839
 				}
4840
-				if ( $labels['not_found_in_trash'] != '' && ! in_array( $labels['not_found_in_trash'], $translation_texts ) ) {
4840
+				if ($labels['not_found_in_trash'] != '' && !in_array($labels['not_found_in_trash'], $translation_texts)) {
4841 4841
 					$translation_texts[] = $labels['not_found_in_trash'];
4842 4842
 				}
4843
-				if ( isset( $labels['label_post_profile'] ) && $labels['label_post_profile'] != '' && ! in_array( $labels['label_post_profile'], $translation_texts ) ) {
4843
+				if (isset($labels['label_post_profile']) && $labels['label_post_profile'] != '' && !in_array($labels['label_post_profile'], $translation_texts)) {
4844 4844
 					$translation_texts[] = $labels['label_post_profile'];
4845 4845
 				}
4846
-				if ( isset( $labels['label_post_info'] ) && $labels['label_post_info'] != '' && ! in_array( $labels['label_post_info'], $translation_texts ) ) {
4846
+				if (isset($labels['label_post_info']) && $labels['label_post_info'] != '' && !in_array($labels['label_post_info'], $translation_texts)) {
4847 4847
 					$translation_texts[] = $labels['label_post_info'];
4848 4848
 				}
4849
-				if ( isset( $labels['label_post_images'] ) && $labels['label_post_images'] != '' && ! in_array( $labels['label_post_images'], $translation_texts ) ) {
4849
+				if (isset($labels['label_post_images']) && $labels['label_post_images'] != '' && !in_array($labels['label_post_images'], $translation_texts)) {
4850 4850
 					$translation_texts[] = $labels['label_post_images'];
4851 4851
 				}
4852
-				if ( isset( $labels['label_post_map'] ) && $labels['label_post_map'] != '' && ! in_array( $labels['label_post_map'], $translation_texts ) ) {
4852
+				if (isset($labels['label_post_map']) && $labels['label_post_map'] != '' && !in_array($labels['label_post_map'], $translation_texts)) {
4853 4853
 					$translation_texts[] = $labels['label_post_map'];
4854 4854
 				}
4855
-				if ( isset( $labels['label_reviews'] ) && $labels['label_reviews'] != '' && ! in_array( $labels['label_reviews'], $translation_texts ) ) {
4855
+				if (isset($labels['label_reviews']) && $labels['label_reviews'] != '' && !in_array($labels['label_reviews'], $translation_texts)) {
4856 4856
 					$translation_texts[] = $labels['label_reviews'];
4857 4857
 				}
4858
-				if ( isset( $labels['label_related_listing'] ) && $labels['label_related_listing'] != '' && ! in_array( $labels['label_related_listing'], $translation_texts ) ) {
4858
+				if (isset($labels['label_related_listing']) && $labels['label_related_listing'] != '' && !in_array($labels['label_related_listing'], $translation_texts)) {
4859 4859
 					$translation_texts[] = $labels['label_related_listing'];
4860 4860
 				}
4861 4861
 			}
4862 4862
 
4863
-			if ( $description != '' && ! in_array( $description, $translation_texts ) ) {
4864
-				$translation_texts[] = normalize_whitespace( $description );
4863
+			if ($description != '' && !in_array($description, $translation_texts)) {
4864
+				$translation_texts[] = normalize_whitespace($description);
4865 4865
 			}
4866 4866
 
4867
-			if ( ! empty( $seo ) ) {
4868
-				if ( isset( $seo['meta_keyword'] ) && $seo['meta_keyword'] != '' && ! in_array( $seo['meta_keyword'], $translation_texts ) ) {
4869
-					$translation_texts[] = normalize_whitespace( $seo['meta_keyword'] );
4867
+			if (!empty($seo)) {
4868
+				if (isset($seo['meta_keyword']) && $seo['meta_keyword'] != '' && !in_array($seo['meta_keyword'], $translation_texts)) {
4869
+					$translation_texts[] = normalize_whitespace($seo['meta_keyword']);
4870 4870
 				}
4871 4871
 
4872
-				if ( isset( $seo['meta_description'] ) && $seo['meta_description'] != '' && ! in_array( $seo['meta_description'], $translation_texts ) ) {
4873
-					$translation_texts[] = normalize_whitespace( $seo['meta_description'] );
4872
+				if (isset($seo['meta_description']) && $seo['meta_description'] != '' && !in_array($seo['meta_description'], $translation_texts)) {
4873
+					$translation_texts[] = normalize_whitespace($seo['meta_description']);
4874 4874
 				}
4875 4875
 			}
4876 4876
 		}
4877 4877
 	}
4878
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4878
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4879 4879
 
4880 4880
 	return $translation_texts;
4881 4881
 }
@@ -4890,27 +4890,27 @@  discard block
 block discarded – undo
4890 4890
  *
4891 4891
  * @return array Location terms.
4892 4892
  */
4893
-function geodir_remove_location_terms( $location_terms = array() ) {
4894
-	$location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false;
4893
+function geodir_remove_location_terms($location_terms = array()) {
4894
+	$location_manager = defined('POST_LOCATION_TABLE') ? true : false;
4895 4895
 
4896
-	if ( ! empty( $location_terms ) && $location_manager ) {
4897
-		$hide_country_part = get_option( 'geodir_location_hide_country_part' );
4898
-		$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
4896
+	if (!empty($location_terms) && $location_manager) {
4897
+		$hide_country_part = get_option('geodir_location_hide_country_part');
4898
+		$hide_region_part  = get_option('geodir_location_hide_region_part');
4899 4899
 
4900
-		if ( $hide_region_part && $hide_country_part ) {
4901
-			if ( isset( $location_terms['gd_country'] ) ) {
4902
-				unset( $location_terms['gd_country'] );
4900
+		if ($hide_region_part && $hide_country_part) {
4901
+			if (isset($location_terms['gd_country'])) {
4902
+				unset($location_terms['gd_country']);
4903 4903
 			}
4904
-			if ( isset( $location_terms['gd_region'] ) ) {
4905
-				unset( $location_terms['gd_region'] );
4904
+			if (isset($location_terms['gd_region'])) {
4905
+				unset($location_terms['gd_region']);
4906 4906
 			}
4907
-		} else if ( $hide_region_part && ! $hide_country_part ) {
4908
-			if ( isset( $location_terms['gd_region'] ) ) {
4909
-				unset( $location_terms['gd_region'] );
4907
+		} else if ($hide_region_part && !$hide_country_part) {
4908
+			if (isset($location_terms['gd_region'])) {
4909
+				unset($location_terms['gd_region']);
4910 4910
 			}
4911
-		} else if ( ! $hide_region_part && $hide_country_part ) {
4912
-			if ( isset( $location_terms['gd_country'] ) ) {
4913
-				unset( $location_terms['gd_country'] );
4911
+		} else if (!$hide_region_part && $hide_country_part) {
4912
+			if (isset($location_terms['gd_country'])) {
4913
+				unset($location_terms['gd_country']);
4914 4914
 			}
4915 4915
 		}
4916 4916
 	}
@@ -4928,33 +4928,33 @@  discard block
 block discarded – undo
4928 4928
  * @param WP_Post $post Post object.
4929 4929
  * @param bool $update  Whether this is an existing listing being updated or not.
4930 4930
  */
4931
-function geodir_on_wp_insert_post( $post_ID, $post, $update ) {
4932
-	if ( ! $update ) {
4931
+function geodir_on_wp_insert_post($post_ID, $post, $update) {
4932
+	if (!$update) {
4933 4933
 		return;
4934 4934
 	}
4935 4935
 
4936
-	$action      = isset( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : '';
4937
-	$is_admin    = is_admin() && ( ! defined( 'DOING_AJAX' ) || ( defined( 'DOING_AJAX' ) && ! DOING_AJAX ) ) ? true : false;
4936
+	$action      = isset($_REQUEST['action']) ? sanitize_text_field($_REQUEST['action']) : '';
4937
+	$is_admin    = is_admin() && (!defined('DOING_AJAX') || (defined('DOING_AJAX') && !DOING_AJAX)) ? true : false;
4938 4938
 	$inline_save = $action == 'inline-save' ? true : false;
4939 4939
 
4940
-	if ( empty( $post->post_type ) || $is_admin || $inline_save || ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) ) {
4940
+	if (empty($post->post_type) || $is_admin || $inline_save || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)) {
4941 4941
 		return;
4942 4942
 	}
4943 4943
 
4944
-	if ( $action != '' && in_array( $action, array( 'geodir_import_export' ) ) ) {
4944
+	if ($action != '' && in_array($action, array('geodir_import_export'))) {
4945 4945
 		return;
4946 4946
 	}
4947 4947
 
4948 4948
 	$user_id = (int) get_current_user_id();
4949 4949
 
4950
-	if ( $user_id > 0 && get_option( 'geodir_notify_post_edited' ) && ! wp_is_post_revision( $post_ID ) && in_array( $post->post_type, geodir_get_posttypes() ) ) {
4951
-		$author_id = ! empty( $post->post_author ) ? $post->post_author : 0;
4950
+	if ($user_id > 0 && get_option('geodir_notify_post_edited') && !wp_is_post_revision($post_ID) && in_array($post->post_type, geodir_get_posttypes())) {
4951
+		$author_id = !empty($post->post_author) ? $post->post_author : 0;
4952 4952
 
4953
-		if ( $user_id == $author_id && ! is_super_admin() ) {
4954
-			$from_email   = get_option( 'site_email' );
4953
+		if ($user_id == $author_id && !is_super_admin()) {
4954
+			$from_email   = get_option('site_email');
4955 4955
 			$from_name    = get_site_emailName();
4956
-			$to_email     = get_option( 'admin_email' );
4957
-			$to_name      = get_option( 'name' );
4956
+			$to_email     = get_option('admin_email');
4957
+			$to_name      = get_option('name');
4958 4958
 			$message_type = 'listing_edited';
4959 4959
 
4960 4960
 			$notify_edited = true;
@@ -4966,9 +4966,9 @@  discard block
 block discarded – undo
4966 4966
 			 * @param bool $notify_edited Notify on listing edited by author?
4967 4967
 			 * @param object $post        The current post object.
4968 4968
 			 */
4969
-			$notify_edited = apply_filters( 'geodir_notify_on_listing_edited', $notify_edited, $post );
4969
+			$notify_edited = apply_filters('geodir_notify_on_listing_edited', $notify_edited, $post);
4970 4970
 
4971
-			geodir_sendEmail( $from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID );
4971
+			geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
4972 4972
 		}
4973 4973
 	}
4974 4974
 }
@@ -4983,14 +4983,14 @@  discard block
 block discarded – undo
4983 4983
  *
4984 4984
  * @return string|null The current page start & end numbering.
4985 4985
  */
4986
-function geodir_title_meta_page( $sep ) {
4986
+function geodir_title_meta_page($sep) {
4987 4987
 	$replacement = null;
4988 4988
 
4989
-	$max = geodir_title_meta_pagenumbering( 'max' );
4990
-	$nr  = geodir_title_meta_pagenumbering( 'nr' );
4989
+	$max = geodir_title_meta_pagenumbering('max');
4990
+	$nr  = geodir_title_meta_pagenumbering('nr');
4991 4991
 
4992
-	if ( $max > 1 && $nr > 1 ) {
4993
-		$replacement = sprintf( $sep . ' ' . __( 'Page %1$d of %2$d', 'geodirectory' ), $nr, $max );
4992
+	if ($max > 1 && $nr > 1) {
4993
+		$replacement = sprintf($sep.' '.__('Page %1$d of %2$d', 'geodirectory'), $nr, $max);
4994 4994
 	}
4995 4995
 
4996 4996
 	return $replacement;
@@ -5007,8 +5007,8 @@  discard block
 block discarded – undo
5007 5007
 function geodir_title_meta_pagenumber() {
5008 5008
 	$replacement = null;
5009 5009
 
5010
-	$nr = geodir_title_meta_pagenumbering( 'nr' );
5011
-	if ( isset( $nr ) && $nr > 0 ) {
5010
+	$nr = geodir_title_meta_pagenumbering('nr');
5011
+	if (isset($nr) && $nr > 0) {
5012 5012
 		$replacement = (string) $nr;
5013 5013
 	}
5014 5014
 
@@ -5026,8 +5026,8 @@  discard block
 block discarded – undo
5026 5026
 function geodir_title_meta_pagetotal() {
5027 5027
 	$replacement = null;
5028 5028
 
5029
-	$max = geodir_title_meta_pagenumbering( 'max' );
5030
-	if ( isset( $max ) && $max > 0 ) {
5029
+	$max = geodir_title_meta_pagenumbering('max');
5030
+	if (isset($max) && $max > 0) {
5031 5031
 		$replacement = (string) $max;
5032 5032
 	}
5033 5033
 
@@ -5047,36 +5047,36 @@  discard block
 block discarded – undo
5047 5047
  *
5048 5048
  * @return int|null The current page numbering.
5049 5049
  */
5050
-function geodir_title_meta_pagenumbering( $request = 'nr' ) {
5050
+function geodir_title_meta_pagenumbering($request = 'nr') {
5051 5051
 	global $wp_query, $post;
5052 5052
 	$max_num_pages = null;
5053 5053
 	$page_number   = null;
5054 5054
 
5055 5055
 	$max_num_pages = 1;
5056 5056
 
5057
-	if ( ! is_singular() ) {
5058
-		$page_number = get_query_var( 'paged' );
5059
-		if ( $page_number === 0 || $page_number === '' ) {
5057
+	if (!is_singular()) {
5058
+		$page_number = get_query_var('paged');
5059
+		if ($page_number === 0 || $page_number === '') {
5060 5060
 			$page_number = 1;
5061 5061
 		}
5062 5062
 
5063
-		if ( isset( $wp_query->max_num_pages ) && ( $wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0 ) ) {
5063
+		if (isset($wp_query->max_num_pages) && ($wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0)) {
5064 5064
 			$max_num_pages = $wp_query->max_num_pages;
5065 5065
 		}
5066 5066
 	} else {
5067
-		$page_number = get_query_var( 'page' );
5068
-		if ( $page_number === 0 || $page_number === '' ) {
5067
+		$page_number = get_query_var('page');
5068
+		if ($page_number === 0 || $page_number === '') {
5069 5069
 			$page_number = 1;
5070 5070
 		}
5071 5071
 
5072
-		if ( isset( $post->post_content ) ) {
5073
-			$max_num_pages = ( substr_count( $post->post_content, '<!--nextpage-->' ) + 1 );
5072
+		if (isset($post->post_content)) {
5073
+			$max_num_pages = (substr_count($post->post_content, '<!--nextpage-->') + 1);
5074 5074
 		}
5075 5075
 	}
5076 5076
 
5077 5077
 	$return = null;
5078 5078
 
5079
-	switch ( $request ) {
5079
+	switch ($request) {
5080 5080
 		case 'nr':
5081 5081
 			$return = $page_number;
5082 5082
 			break;
@@ -5097,14 +5097,14 @@  discard block
 block discarded – undo
5097 5097
  *
5098 5098
  * @return array Terms.
5099 5099
  */
5100
-function geodir_filter_empty_terms( $terms ) {
5101
-	if ( empty( $terms ) ) {
5100
+function geodir_filter_empty_terms($terms) {
5101
+	if (empty($terms)) {
5102 5102
 		return $terms;
5103 5103
 	}
5104 5104
 
5105 5105
 	$return = array();
5106
-	foreach ( $terms as $term ) {
5107
-		if ( isset( $term->count ) && $term->count > 0 ) {
5106
+	foreach ($terms as $term) {
5107
+		if (isset($term->count) && $term->count > 0) {
5108 5108
 			$return[] = $term;
5109 5109
 		} else {
5110 5110
 			/**
@@ -5115,7 +5115,7 @@  discard block
 block discarded – undo
5115 5115
 			 * @param array $return The array of terms to return.
5116 5116
 			 * @param object $term  The term object.
5117 5117
 			 */
5118
-			$return = apply_filters( 'geodir_filter_empty_terms_filter', $return, $term );
5118
+			$return = apply_filters('geodir_filter_empty_terms_filter', $return, $term);
5119 5119
 		}
5120 5120
 	}
5121 5121
 
@@ -5132,12 +5132,12 @@  discard block
 block discarded – undo
5132 5132
  *
5133 5133
  * @return array
5134 5134
  */
5135
-function geodir_remove_hentry( $class ) {
5136
-	if ( geodir_is_page( 'detail' ) ) {
5137
-		$class = array_diff( $class, array( 'hentry' ) );
5135
+function geodir_remove_hentry($class) {
5136
+	if (geodir_is_page('detail')) {
5137
+		$class = array_diff($class, array('hentry'));
5138 5138
 	}
5139 5139
 
5140 5140
 	return $class;
5141 5141
 }
5142 5142
 
5143
-add_filter( 'post_class', 'geodir_remove_hentry' );
5144 5143
\ No newline at end of file
5144
+add_filter('post_class', 'geodir_remove_hentry');
5145 5145
\ No newline at end of file
Please login to merge, or discard this patch.
upgrade.php 3 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -324,7 +324,7 @@
 block discarded – undo
324 324
 
325 325
             if(!empty($show_in_arr )){
326 326
                 $show_in_arr = implode(',',$show_in_arr);
327
-            }else{
327
+            } else{
328 328
                 $show_in_arr = '';
329 329
             }
330 330
 
Please login to merge, or discard this patch.
Indentation   +541 added lines, -541 removed lines patch added patch discarded remove patch
@@ -10,47 +10,47 @@  discard block
 block discarded – undo
10 10
 global $wpdb;
11 11
 
12 12
 if (get_option('geodirectory' . '_db_version') != GEODIRECTORY_VERSION) {
13
-    /**
14
-     * Include custom database table related functions.
15
-     *
16
-     * @since 1.0.0
17
-     * @package GeoDirectory
18
-     */
19
-    include_once('geodirectory-admin/admin_db_install.php');
20
-    add_action('plugins_loaded', 'geodirectory_upgrade_all', 10);
21
-    if (GEODIRECTORY_VERSION <= '1.3.6') {
22
-        add_action('plugins_loaded', 'geodir_upgrade_136', 11);
23
-    }
13
+	/**
14
+	 * Include custom database table related functions.
15
+	 *
16
+	 * @since 1.0.0
17
+	 * @package GeoDirectory
18
+	 */
19
+	include_once('geodirectory-admin/admin_db_install.php');
20
+	add_action('plugins_loaded', 'geodirectory_upgrade_all', 10);
21
+	if (GEODIRECTORY_VERSION <= '1.3.6') {
22
+		add_action('plugins_loaded', 'geodir_upgrade_136', 11);
23
+	}
24 24
 
25
-    if (GEODIRECTORY_VERSION <= '1.4.6') {
26
-        add_action('init', 'geodir_upgrade_146', 11);
27
-    }
25
+	if (GEODIRECTORY_VERSION <= '1.4.6') {
26
+		add_action('init', 'geodir_upgrade_146', 11);
27
+	}
28 28
 
29
-    if (GEODIRECTORY_VERSION <= '1.4.8') {
30
-        add_action('init', 'geodir_upgrade_148', 11);
31
-    }
29
+	if (GEODIRECTORY_VERSION <= '1.4.8') {
30
+		add_action('init', 'geodir_upgrade_148', 11);
31
+	}
32 32
 
33
-    if (GEODIRECTORY_VERSION <= '1.5.0') {
34
-        add_action('init', 'geodir_upgrade_150', 11);
35
-    }
33
+	if (GEODIRECTORY_VERSION <= '1.5.0') {
34
+		add_action('init', 'geodir_upgrade_150', 11);
35
+	}
36 36
 
37
-    if (GEODIRECTORY_VERSION <= '1.5.2') {
38
-        add_action('init', 'geodir_upgrade_152', 11);
39
-    }
37
+	if (GEODIRECTORY_VERSION <= '1.5.2') {
38
+		add_action('init', 'geodir_upgrade_152', 11);
39
+	}
40 40
 
41
-    if (GEODIRECTORY_VERSION <= '1.5.3') {
42
-        add_action('init', 'geodir_upgrade_153', 11);
43
-    }
41
+	if (GEODIRECTORY_VERSION <= '1.5.3') {
42
+		add_action('init', 'geodir_upgrade_153', 11);
43
+	}
44 44
 
45
-    if (GEODIRECTORY_VERSION <= '1.5.4') {
46
-        add_action('init', 'geodir_upgrade_154', 11);
47
-    }
45
+	if (GEODIRECTORY_VERSION <= '1.5.4') {
46
+		add_action('init', 'geodir_upgrade_154', 11);
47
+	}
48 48
 
49 49
 
50 50
 
51
-    add_action('init', 'gd_fix_cpt_rewrite_slug', 11);// this needs to be kept for a few versions
51
+	add_action('init', 'gd_fix_cpt_rewrite_slug', 11);// this needs to be kept for a few versions
52 52
 
53
-    update_option('geodirectory' . '_db_version', GEODIRECTORY_VERSION);
53
+	update_option('geodirectory' . '_db_version', GEODIRECTORY_VERSION);
54 54
 
55 55
 }
56 56
 
@@ -63,10 +63,10 @@  discard block
 block discarded – undo
63 63
  */
64 64
 function geodirectory_upgrade_all()
65 65
 {
66
-    geodir_create_tables();
67
-    geodir_update_review_db();
68
-    gd_install_theme_compat();
69
-    gd_convert_custom_field_display();
66
+	geodir_create_tables();
67
+	geodir_update_review_db();
68
+	gd_install_theme_compat();
69
+	gd_convert_custom_field_display();
70 70
 }
71 71
 
72 72
 /**
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
  */
78 78
 function geodir_upgrade_136()
79 79
 {
80
-    geodir_fix_review_overall_rating();
80
+	geodir_fix_review_overall_rating();
81 81
 }
82 82
 
83 83
 /**
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
  * @package GeoDirectory
88 88
  */
89 89
 function geodir_upgrade_146(){
90
-    gd_convert_virtual_pages();
90
+	gd_convert_virtual_pages();
91 91
 }
92 92
 
93 93
 /**
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
  * @package GeoDirectory
98 98
  */
99 99
 function geodir_upgrade_150(){
100
-    gd_fix_cpt_rewrite_slug();
100
+	gd_fix_cpt_rewrite_slug();
101 101
 }
102 102
 
103 103
 
@@ -109,11 +109,11 @@  discard block
 block discarded – undo
109 109
  * @package GeoDirectory
110 110
  */
111 111
 function geodir_upgrade_148(){
112
-    /*
112
+	/*
113 113
      * Blank the users google password if present as we now use oAuth 2.0
114 114
      */
115
-    update_option('geodir_ga_pass','');
116
-    update_option('geodir_ga_user','');
115
+	update_option('geodir_ga_pass','');
116
+	update_option('geodir_ga_user','');
117 117
 
118 118
 }
119 119
 
@@ -125,8 +125,8 @@  discard block
 block discarded – undo
125 125
  * @package GeoDirectory
126 126
  */
127 127
 function geodir_upgrade_153(){
128
-    geodir_create_page(esc_sql(_x('gd-info', 'page_slug', 'geodirectory')), 'geodir_info_page', __('Info', 'geodirectory'), '');
129
-    geodir_create_page(esc_sql(_x('gd-login', 'page_slug', 'geodirectory')), 'geodir_login_page', __('Login', 'geodirectory'), '');
128
+	geodir_create_page(esc_sql(_x('gd-info', 'page_slug', 'geodirectory')), 'geodir_info_page', __('Info', 'geodirectory'), '');
129
+	geodir_create_page(esc_sql(_x('gd-login', 'page_slug', 'geodirectory')), 'geodir_login_page', __('Login', 'geodirectory'), '');
130 130
 }
131 131
 
132 132
 /**
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
  * @package GeoDirectory
137 137
  */
138 138
 function geodir_upgrade_154(){
139
-    geodir_create_page(esc_sql(_x('gd-home', 'page_slug', 'geodirectory')), 'geodir_home_page', __('GD Home page', 'geodirectory'), '');
139
+	geodir_create_page(esc_sql(_x('gd-home', 'page_slug', 'geodirectory')), 'geodir_home_page', __('GD Home page', 'geodirectory'), '');
140 140
 }
141 141
 
142 142
 /**
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
  * @package GeoDirectory
147 147
  */
148 148
 function geodir_upgrade_152(){
149
-    gd_fix_address_detail_table_limit();
149
+	gd_fix_address_detail_table_limit();
150 150
 }
151 151
 
152 152
 
@@ -162,12 +162,12 @@  discard block
 block discarded – undo
162 162
  */
163 163
 function geodir_update_review_db()
164 164
 {
165
-    global $wpdb, $plugin_prefix;
165
+	global $wpdb, $plugin_prefix;
166 166
 
167
-    geodir_fix_review_date();
168
-    geodir_fix_review_post_status();
169
-    geodir_fix_review_content();
170
-    geodir_fix_review_location();
167
+	geodir_fix_review_date();
168
+	geodir_fix_review_post_status();
169
+	geodir_fix_review_content();
170
+	geodir_fix_review_location();
171 171
 
172 172
 }
173 173
 
@@ -180,8 +180,8 @@  discard block
 block discarded – undo
180 180
  */
181 181
 function geodir_fix_review_date()
182 182
 {
183
-    global $wpdb;
184
-    $wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.post_date = c.comment_date WHERE gdr.post_date='0000-00-00 00:00:00'");
183
+	global $wpdb;
184
+	$wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.post_date = c.comment_date WHERE gdr.post_date='0000-00-00 00:00:00'");
185 185
 }
186 186
 
187 187
 /**
@@ -193,8 +193,8 @@  discard block
 block discarded – undo
193 193
  */
194 194
 function geodir_fix_review_post_status()
195 195
 {
196
-    global $wpdb;
197
-    $wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->posts p ON gdr.post_id=p.ID SET gdr.post_status = 1 WHERE gdr.post_status IS NULL AND p.post_status='publish'");
196
+	global $wpdb;
197
+	$wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->posts p ON gdr.post_id=p.ID SET gdr.post_status = 1 WHERE gdr.post_status IS NULL AND p.post_status='publish'");
198 198
 }
199 199
 
200 200
 /**
@@ -207,12 +207,12 @@  discard block
 block discarded – undo
207 207
  */
208 208
 function geodir_fix_review_content()
209 209
 {
210
-    global $wpdb;
211
-    if ($wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.comment_content = c.comment_content WHERE gdr.comment_content IS NULL")) {
212
-        return true;
213
-    } else {
214
-        return false;
215
-    }
210
+	global $wpdb;
211
+	if ($wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.comment_content = c.comment_content WHERE gdr.comment_content IS NULL")) {
212
+		return true;
213
+	} else {
214
+		return false;
215
+	}
216 216
 }
217 217
 
218 218
 /**
@@ -225,20 +225,20 @@  discard block
 block discarded – undo
225 225
  */
226 226
 function geodir_fix_review_location()
227 227
 {
228
-    global $wpdb;
228
+	global $wpdb;
229 229
 
230
-    $all_postypes = geodir_get_posttypes();
230
+	$all_postypes = geodir_get_posttypes();
231 231
 
232
-    if (!empty($all_postypes)) {
233
-        foreach ($all_postypes as $key) {
234
-            // update each GD CTP
232
+	if (!empty($all_postypes)) {
233
+		foreach ($all_postypes as $key) {
234
+			// update each GD CTP
235 235
 
236
-            $wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN " . $wpdb->prefix . "geodir_" . $key . "_detail d ON gdr.post_id=d.post_id SET gdr.post_latitude = d.post_latitude, gdr.post_longitude = d.post_longitude, gdr.post_city = d.post_city,  gdr.post_region=d.post_region, gdr.post_country=d.post_country WHERE gdr.post_latitude IS NULL OR gdr.post_city IS NULL");
236
+			$wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN " . $wpdb->prefix . "geodir_" . $key . "_detail d ON gdr.post_id=d.post_id SET gdr.post_latitude = d.post_latitude, gdr.post_longitude = d.post_longitude, gdr.post_city = d.post_city,  gdr.post_region=d.post_region, gdr.post_country=d.post_country WHERE gdr.post_latitude IS NULL OR gdr.post_city IS NULL");
237 237
 
238
-        }
239
-        return true;
240
-    }
241
-    return false;
238
+		}
239
+		return true;
240
+	}
241
+	return false;
242 242
 }
243 243
 
244 244
 /**
@@ -250,82 +250,82 @@  discard block
 block discarded – undo
250 250
  */
251 251
 function geodir_fix_review_overall_rating()
252 252
 {
253
-    global $wpdb;
253
+	global $wpdb;
254 254
 
255
-    $all_postypes = geodir_get_posttypes();
255
+	$all_postypes = geodir_get_posttypes();
256 256
 
257
-    if (!empty($all_postypes)) {
258
-        foreach ($all_postypes as $key) {
259
-            // update each GD CTP
260
-            $reviews = $wpdb->get_results("SELECT post_id FROM " . $wpdb->prefix . "geodir_" . $key . "_detail d");
257
+	if (!empty($all_postypes)) {
258
+		foreach ($all_postypes as $key) {
259
+			// update each GD CTP
260
+			$reviews = $wpdb->get_results("SELECT post_id FROM " . $wpdb->prefix . "geodir_" . $key . "_detail d");
261 261
 
262
-            if (!empty($reviews)) {
263
-                foreach ($reviews as $post_id) {
264
-                    geodir_update_postrating($post_id->post_id, $key);
265
-                }
262
+			if (!empty($reviews)) {
263
+				foreach ($reviews as $post_id) {
264
+					geodir_update_postrating($post_id->post_id, $key);
265
+				}
266 266
 
267
-            }
267
+			}
268 268
 
269
-        }
269
+		}
270 270
 
271
-    }
271
+	}
272 272
 }
273 273
 
274 274
 
275 275
 function gd_convert_custom_field_display(){
276
-    global $wpdb;
276
+	global $wpdb;
277 277
 
278
-    $field_info = $wpdb->get_results("select * from " . GEODIR_CUSTOM_FIELDS_TABLE);
278
+	$field_info = $wpdb->get_results("select * from " . GEODIR_CUSTOM_FIELDS_TABLE);
279 279
 
280
-    $has_run = get_option('gd_convert_custom_field_display');
281
-    if($has_run){return;}
280
+	$has_run = get_option('gd_convert_custom_field_display');
281
+	if($has_run){return;}
282 282
 
283
-    // set the field_type_key for standard fields
284
-    $wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET field_type_key = field_type");
283
+	// set the field_type_key for standard fields
284
+	$wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET field_type_key = field_type");
285 285
 
286 286
 
287
-    if(is_array( $field_info)){
287
+	if(is_array( $field_info)){
288 288
 
289
-        foreach( $field_info as $cf){
289
+		foreach( $field_info as $cf){
290 290
 
291
-            $id = $cf->id;
291
+			$id = $cf->id;
292 292
 
293
-            if(!property_exists($cf,'show_in') || !$id){return;}
293
+			if(!property_exists($cf,'show_in') || !$id){return;}
294 294
 
295
-            $show_in_arr = array();
295
+			$show_in_arr = array();
296 296
 
297
-            if($cf->is_default){
298
-                $show_in_arr[] = "[detail]";
299
-            }
297
+			if($cf->is_default){
298
+				$show_in_arr[] = "[detail]";
299
+			}
300 300
 
301
-            if($cf->show_on_detail){
302
-                $show_in_arr[] = "[moreinfo]";
303
-            }
301
+			if($cf->show_on_detail){
302
+				$show_in_arr[] = "[moreinfo]";
303
+			}
304 304
 
305
-            if($cf->show_on_listing){
306
-                $show_in_arr[] = "[listing]";
307
-            }
305
+			if($cf->show_on_listing){
306
+				$show_in_arr[] = "[listing]";
307
+			}
308 308
 
309
-            if($cf->show_as_tab || $cf->htmlvar_name=='geodir_video' || $cf->htmlvar_name=='geodir_special_offers'){
310
-                $show_in_arr[] = "[owntab]";
311
-            }
309
+			if($cf->show_as_tab || $cf->htmlvar_name=='geodir_video' || $cf->htmlvar_name=='geodir_special_offers'){
310
+				$show_in_arr[] = "[owntab]";
311
+			}
312 312
 
313
-            if($cf->htmlvar_name=='post' || $cf->htmlvar_name=='geodir_contact' || $cf->htmlvar_name=='geodir_timing'){
314
-                $show_in_arr[] = "[mapbubble]";
315
-            }
313
+			if($cf->htmlvar_name=='post' || $cf->htmlvar_name=='geodir_contact' || $cf->htmlvar_name=='geodir_timing'){
314
+				$show_in_arr[] = "[mapbubble]";
315
+			}
316 316
 
317
-            if(!empty($show_in_arr )){
318
-                $show_in_arr = implode(',',$show_in_arr);
319
-            }else{
320
-                $show_in_arr = '';
321
-            }
317
+			if(!empty($show_in_arr )){
318
+				$show_in_arr = implode(',',$show_in_arr);
319
+			}else{
320
+				$show_in_arr = '';
321
+			}
322 322
 
323
-            $wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET show_in='$show_in_arr' WHERE id=$id");
323
+			$wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET show_in='$show_in_arr' WHERE id=$id");
324 324
 
325
-        }
325
+		}
326 326
 
327
-        update_option('gd_convert_custom_field_display',1);
328
-    }
327
+		update_option('gd_convert_custom_field_display',1);
328
+	}
329 329
 }
330 330
 
331 331
 ############################################
@@ -341,367 +341,367 @@  discard block
 block discarded – undo
341 341
  */
342 342
 function gd_install_theme_compat()
343 343
 {
344
-    global $wpdb;
344
+	global $wpdb;
345 345
 
346
-    $theme_compat = array();
347
-    $theme_compat = get_option('gd_theme_compats');
346
+	$theme_compat = array();
347
+	$theme_compat = get_option('gd_theme_compats');
348 348
 //GDF
349
-    $theme_compat['GeoDirectory_Framework'] = array(
350
-        'geodir_wrapper_open_id' => 'geodir_wrapper',
351
-        'geodir_wrapper_open_class' => '',
352
-        'geodir_wrapper_open_replace' => '',
353
-        'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
354
-        'geodir_wrapper_content_open_id' => 'geodir_content',
355
-        'geodir_wrapper_content_open_class' => '',
356
-        'geodir_wrapper_content_open_replace' => '',
357
-        'geodir_wrapper_content_close_replace' => '',
358
-        'geodir_article_open_id' => '',
359
-        'geodir_article_open_class' => '',
360
-        'geodir_article_open_replace' => '',
361
-        'geodir_article_close_replace' => '',
362
-        'geodir_sidebar_right_open_id' => '',
363
-        'geodir_sidebar_right_open_class' => '',
364
-        'geodir_sidebar_right_open_replace' => '<aside id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
365
-        'geodir_sidebar_right_close_replace' => '',
366
-        'geodir_sidebar_left_open_id' => '',
367
-        'geodir_sidebar_left_open_class' => '',
368
-        'geodir_sidebar_left_open_replace' => '<aside  id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
369
-        'geodir_sidebar_left_close_replace' => '',
370
-        'geodir_main_content_open_id' => '',
371
-        'geodir_main_content_open_class' => '',
372
-        'geodir_main_content_open_replace' => '<!-- removed -->',
373
-        'geodir_main_content_close_replace' => '<!-- removed -->',
374
-        'geodir_top_content_add' => '',
375
-        'geodir_before_main_content_add' => '<div class="clearfix geodir-common">',
376
-        'geodir_before_widget_filter' => '',
377
-        'geodir_after_widget_filter' => '',
378
-        'geodir_theme_compat_css' => '',
379
-        'geodir_theme_compat_js' => '',
380
-        'geodir_theme_compat_default_options' => '',
381
-        'geodir_theme_compat_code' => ''
382
-    );
349
+	$theme_compat['GeoDirectory_Framework'] = array(
350
+		'geodir_wrapper_open_id' => 'geodir_wrapper',
351
+		'geodir_wrapper_open_class' => '',
352
+		'geodir_wrapper_open_replace' => '',
353
+		'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
354
+		'geodir_wrapper_content_open_id' => 'geodir_content',
355
+		'geodir_wrapper_content_open_class' => '',
356
+		'geodir_wrapper_content_open_replace' => '',
357
+		'geodir_wrapper_content_close_replace' => '',
358
+		'geodir_article_open_id' => '',
359
+		'geodir_article_open_class' => '',
360
+		'geodir_article_open_replace' => '',
361
+		'geodir_article_close_replace' => '',
362
+		'geodir_sidebar_right_open_id' => '',
363
+		'geodir_sidebar_right_open_class' => '',
364
+		'geodir_sidebar_right_open_replace' => '<aside id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
365
+		'geodir_sidebar_right_close_replace' => '',
366
+		'geodir_sidebar_left_open_id' => '',
367
+		'geodir_sidebar_left_open_class' => '',
368
+		'geodir_sidebar_left_open_replace' => '<aside  id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
369
+		'geodir_sidebar_left_close_replace' => '',
370
+		'geodir_main_content_open_id' => '',
371
+		'geodir_main_content_open_class' => '',
372
+		'geodir_main_content_open_replace' => '<!-- removed -->',
373
+		'geodir_main_content_close_replace' => '<!-- removed -->',
374
+		'geodir_top_content_add' => '',
375
+		'geodir_before_main_content_add' => '<div class="clearfix geodir-common">',
376
+		'geodir_before_widget_filter' => '',
377
+		'geodir_after_widget_filter' => '',
378
+		'geodir_theme_compat_css' => '',
379
+		'geodir_theme_compat_js' => '',
380
+		'geodir_theme_compat_default_options' => '',
381
+		'geodir_theme_compat_code' => ''
382
+	);
383 383
 
384 384
 //Directory Theme
385
-    $theme_compat['Directory_Starter'] = array(
386
-        'geodir_wrapper_open_id' => 'geodir_wrapper',
387
-        'geodir_wrapper_open_class' => '',
388
-        'geodir_wrapper_open_replace' => '',
389
-        'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
390
-        'geodir_wrapper_content_open_id' => 'geodir_content',
391
-        'geodir_wrapper_content_open_class' => '',
392
-        'geodir_wrapper_content_open_replace' => '',
393
-        'geodir_wrapper_content_close_replace' => '',
394
-        'geodir_article_open_id' => '',
395
-        'geodir_article_open_class' => '',
396
-        'geodir_article_open_replace' => '',
397
-        'geodir_article_close_replace' => '',
398
-        'geodir_sidebar_right_open_id' => '',
399
-        'geodir_sidebar_right_open_class' => '',
400
-        'geodir_sidebar_right_open_replace' => '<aside id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
401
-        'geodir_sidebar_right_close_replace' => '',
402
-        'geodir_sidebar_left_open_id' => '',
403
-        'geodir_sidebar_left_open_class' => '',
404
-        'geodir_sidebar_left_open_replace' => '<aside  id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
405
-        'geodir_sidebar_left_close_replace' => '',
406
-        'geodir_main_content_open_id' => '',
407
-        'geodir_main_content_open_class' => '',
408
-        'geodir_main_content_open_replace' => '<!-- removed -->',
409
-        'geodir_main_content_close_replace' => '<!-- removed -->',
410
-        'geodir_top_content_add' => '',
411
-        'geodir_before_main_content_add' => '<div class="clearfix geodir-common">',
412
-        'geodir_before_widget_filter' => '',
413
-        'geodir_after_widget_filter' => '',
414
-        'geodir_theme_compat_css' => '',
415
-        'geodir_theme_compat_js' => '',
416
-        'geodir_theme_compat_default_options' => '',
417
-        'geodir_theme_compat_code' => ''
418
-    );
385
+	$theme_compat['Directory_Starter'] = array(
386
+		'geodir_wrapper_open_id' => 'geodir_wrapper',
387
+		'geodir_wrapper_open_class' => '',
388
+		'geodir_wrapper_open_replace' => '',
389
+		'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
390
+		'geodir_wrapper_content_open_id' => 'geodir_content',
391
+		'geodir_wrapper_content_open_class' => '',
392
+		'geodir_wrapper_content_open_replace' => '',
393
+		'geodir_wrapper_content_close_replace' => '',
394
+		'geodir_article_open_id' => '',
395
+		'geodir_article_open_class' => '',
396
+		'geodir_article_open_replace' => '',
397
+		'geodir_article_close_replace' => '',
398
+		'geodir_sidebar_right_open_id' => '',
399
+		'geodir_sidebar_right_open_class' => '',
400
+		'geodir_sidebar_right_open_replace' => '<aside id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
401
+		'geodir_sidebar_right_close_replace' => '',
402
+		'geodir_sidebar_left_open_id' => '',
403
+		'geodir_sidebar_left_open_class' => '',
404
+		'geodir_sidebar_left_open_replace' => '<aside  id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
405
+		'geodir_sidebar_left_close_replace' => '',
406
+		'geodir_main_content_open_id' => '',
407
+		'geodir_main_content_open_class' => '',
408
+		'geodir_main_content_open_replace' => '<!-- removed -->',
409
+		'geodir_main_content_close_replace' => '<!-- removed -->',
410
+		'geodir_top_content_add' => '',
411
+		'geodir_before_main_content_add' => '<div class="clearfix geodir-common">',
412
+		'geodir_before_widget_filter' => '',
413
+		'geodir_after_widget_filter' => '',
414
+		'geodir_theme_compat_css' => '',
415
+		'geodir_theme_compat_js' => '',
416
+		'geodir_theme_compat_default_options' => '',
417
+		'geodir_theme_compat_code' => ''
418
+	);
419 419
 
420 420
 //Jobby
421
-    $theme_compat['Jobby'] = $theme_compat['Directory_Starter'];
421
+	$theme_compat['Jobby'] = $theme_compat['Directory_Starter'];
422 422
 
423 423
 //GeoProperty
424
-    $theme_compat['GeoProperty'] = $theme_compat['Directory_Starter'];
424
+	$theme_compat['GeoProperty'] = $theme_compat['Directory_Starter'];
425 425
 
426 426
 //Avada
427
-    $theme_compat['Avada'] = array(
428
-        'geodir_wrapper_open_id' => '',
429
-        'geodir_wrapper_open_class' => '',
430
-        'geodir_wrapper_open_replace' => '<!-- removed -->',
431
-        'geodir_wrapper_close_replace' => '<!-- removed -->',
432
-        'geodir_wrapper_content_open_id' => 'content',
433
-        'geodir_wrapper_content_open_class' => '',
434
-        'geodir_wrapper_content_open_replace' => '',
435
-        'geodir_wrapper_content_close_replace' => '',
436
-        'geodir_article_open_id' => '',
437
-        'geodir_article_open_class' => '',
438
-        'geodir_article_open_replace' => '',
439
-        'geodir_article_close_replace' => '',
440
-        'geodir_sidebar_right_open_id' => '',
441
-        'geodir_sidebar_right_open_class' => '',
442
-        'geodir_sidebar_right_open_replace' => '<div id="sidebar" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
443
-        'geodir_sidebar_right_close_replace' => '</div><!-- end sidebar -->',
444
-        'geodir_sidebar_left_open_id' => '',
445
-        'geodir_sidebar_left_open_class' => '',
446
-        'geodir_sidebar_left_open_replace' => '<div id="sidebar" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
447
-        'geodir_sidebar_left_close_replace' => '</div><!-- end sidebar -->',
448
-        'geodir_main_content_open_id' => '',
449
-        'geodir_main_content_open_class' => '',
450
-        'geodir_main_content_open_replace' => '<!-- removed -->',
451
-        'geodir_main_content_close_replace' => '<!-- removed -->',
452
-        'geodir_top_content_add' => '',
453
-        'geodir_before_main_content_add' => '',
454
-        'geodir_before_widget_filter' => '',
455
-        'geodir_after_widget_filter' => '',
456
-        'geodir_theme_compat_css' => stripslashes('.geodir-sidebar-left{float:left}select,textarea{border-style:solid;border-width:1px}.top-menu li > div{visibility:visible}.geodir-chosen-container-single .chosen-single{height:auto}ul li#menu-item-gd-location-switcher ul{width:222px}ul li#menu-item-gd-location-switcher ul li{padding-right:0!important}#mobile-nav li#mobile-menu-item-gd-location-switcher li a{padding-left:10px;padding-right:10px}#menu-item-gd-location-switcher dd,#mobile-menu-item-gd-location-switcher{margin-left:0}#menu-item-gd-location-switcher dd a{display:block}.geodir-chosen-container .chosen-results li.highlighted{background-color:#eee;background-image:none;color:#444}#mobile-nav li.mobile-nav-item li a:before{content:\'\';margin:0}#mobile-nav li.mobile-nav-item li a{padding:10px;width:auto}.geodir-listing-search{text-align:center}.geodir-search{float:none;margin:0}.geodir-search select,.geodir-search .search_by_post,.geodir-search input[type="text"],.geodir-search button[type="button"], .geodir-search input[type="button"],.geodir-search input[type="submit"]{display:inline-block;float:none}.geodir-cat-list ul li,.map_category ul li{list-style-type:none}.wpgeo-avada .page-title ul li:after{content:\'\'}.top_banner_section{margin-bottom:0}.geodir-category-list-in{margin:0;padding:15px}.geodir_full_page .geodir-cat-list .widget-title{margin-top:0}.geodir_full_page .geodir-cat-list ul li{padding-left:0}.geodir-loc-bar{border:none;margin:0;padding:0}.geodir-loc-bar-in{padding:15px 0}.geodir_full_page section.widget{margin-bottom:20px}.sidebar .geodir-loginbox-list li{margin-bottom:10px;padding-bottom:10px}.sidebar .geodir-loginbox-list li a{display:block}.sidebar .geodir-chosen-container .chosen-results li{margin:0;padding:5px 6px}.sidebar .geodir-chosen-container .chosen-results li.highlighted{background:#eee;background-image:none;color:#000}.sidebar .geodir_category_list_view li.geodir-gridview{display:inline-block;margin-bottom:15px}.wpgeo-avada.double-sidebars #main #sidebar{margin-left:3%}.wpgeo-avada.double-sidebars #main #sidebar-2{margin-left:-100%}.wpgeo-avada.double-sidebars #content{float:left;margin-left:0}.geodir_full_page section.widget{margin-bottom: 0px;} .sidebar .widget .geodir-hide {display: none;}li.fusion-mobile-nav-item .geodir_location_tab_container a:before{content: "" !important; margin-right: auto !important;}li.fusion-mobile-nav-item .geodir_location_tab_container a{padding-left:5px !important;}'),
457
-        'geodir_theme_compat_js' => '',
458
-        'geodir_theme_compat_default_options' => '',
459
-        'geodir_theme_compat_code' => 'Avada'
460
-    );
427
+	$theme_compat['Avada'] = array(
428
+		'geodir_wrapper_open_id' => '',
429
+		'geodir_wrapper_open_class' => '',
430
+		'geodir_wrapper_open_replace' => '<!-- removed -->',
431
+		'geodir_wrapper_close_replace' => '<!-- removed -->',
432
+		'geodir_wrapper_content_open_id' => 'content',
433
+		'geodir_wrapper_content_open_class' => '',
434
+		'geodir_wrapper_content_open_replace' => '',
435
+		'geodir_wrapper_content_close_replace' => '',
436
+		'geodir_article_open_id' => '',
437
+		'geodir_article_open_class' => '',
438
+		'geodir_article_open_replace' => '',
439
+		'geodir_article_close_replace' => '',
440
+		'geodir_sidebar_right_open_id' => '',
441
+		'geodir_sidebar_right_open_class' => '',
442
+		'geodir_sidebar_right_open_replace' => '<div id="sidebar" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
443
+		'geodir_sidebar_right_close_replace' => '</div><!-- end sidebar -->',
444
+		'geodir_sidebar_left_open_id' => '',
445
+		'geodir_sidebar_left_open_class' => '',
446
+		'geodir_sidebar_left_open_replace' => '<div id="sidebar" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
447
+		'geodir_sidebar_left_close_replace' => '</div><!-- end sidebar -->',
448
+		'geodir_main_content_open_id' => '',
449
+		'geodir_main_content_open_class' => '',
450
+		'geodir_main_content_open_replace' => '<!-- removed -->',
451
+		'geodir_main_content_close_replace' => '<!-- removed -->',
452
+		'geodir_top_content_add' => '',
453
+		'geodir_before_main_content_add' => '',
454
+		'geodir_before_widget_filter' => '',
455
+		'geodir_after_widget_filter' => '',
456
+		'geodir_theme_compat_css' => stripslashes('.geodir-sidebar-left{float:left}select,textarea{border-style:solid;border-width:1px}.top-menu li > div{visibility:visible}.geodir-chosen-container-single .chosen-single{height:auto}ul li#menu-item-gd-location-switcher ul{width:222px}ul li#menu-item-gd-location-switcher ul li{padding-right:0!important}#mobile-nav li#mobile-menu-item-gd-location-switcher li a{padding-left:10px;padding-right:10px}#menu-item-gd-location-switcher dd,#mobile-menu-item-gd-location-switcher{margin-left:0}#menu-item-gd-location-switcher dd a{display:block}.geodir-chosen-container .chosen-results li.highlighted{background-color:#eee;background-image:none;color:#444}#mobile-nav li.mobile-nav-item li a:before{content:\'\';margin:0}#mobile-nav li.mobile-nav-item li a{padding:10px;width:auto}.geodir-listing-search{text-align:center}.geodir-search{float:none;margin:0}.geodir-search select,.geodir-search .search_by_post,.geodir-search input[type="text"],.geodir-search button[type="button"], .geodir-search input[type="button"],.geodir-search input[type="submit"]{display:inline-block;float:none}.geodir-cat-list ul li,.map_category ul li{list-style-type:none}.wpgeo-avada .page-title ul li:after{content:\'\'}.top_banner_section{margin-bottom:0}.geodir-category-list-in{margin:0;padding:15px}.geodir_full_page .geodir-cat-list .widget-title{margin-top:0}.geodir_full_page .geodir-cat-list ul li{padding-left:0}.geodir-loc-bar{border:none;margin:0;padding:0}.geodir-loc-bar-in{padding:15px 0}.geodir_full_page section.widget{margin-bottom:20px}.sidebar .geodir-loginbox-list li{margin-bottom:10px;padding-bottom:10px}.sidebar .geodir-loginbox-list li a{display:block}.sidebar .geodir-chosen-container .chosen-results li{margin:0;padding:5px 6px}.sidebar .geodir-chosen-container .chosen-results li.highlighted{background:#eee;background-image:none;color:#000}.sidebar .geodir_category_list_view li.geodir-gridview{display:inline-block;margin-bottom:15px}.wpgeo-avada.double-sidebars #main #sidebar{margin-left:3%}.wpgeo-avada.double-sidebars #main #sidebar-2{margin-left:-100%}.wpgeo-avada.double-sidebars #content{float:left;margin-left:0}.geodir_full_page section.widget{margin-bottom: 0px;} .sidebar .widget .geodir-hide {display: none;}li.fusion-mobile-nav-item .geodir_location_tab_container a:before{content: "" !important; margin-right: auto !important;}li.fusion-mobile-nav-item .geodir_location_tab_container a{padding-left:5px !important;}'),
457
+		'geodir_theme_compat_js' => '',
458
+		'geodir_theme_compat_default_options' => '',
459
+		'geodir_theme_compat_code' => 'Avada'
460
+	);
461 461
 
462 462
 //Enfold
463
-    $theme_compat['Enfold'] = array(
464
-        'geodir_wrapper_open_id' => '',
465
-        'geodir_wrapper_open_class' => '',
466
-        'geodir_wrapper_open_replace' => '',
467
-        'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
468
-        'geodir_wrapper_content_open_id' => '',
469
-        'geodir_wrapper_content_open_class' => '',
470
-        'geodir_wrapper_content_open_replace' => '',
471
-        'geodir_wrapper_content_close_replace' => '</div></main>',
472
-        'geodir_article_open_id' => '',
473
-        'geodir_article_open_class' => '',
474
-        'geodir_article_open_replace' => '',
475
-        'geodir_article_close_replace' => '',
476
-        'geodir_sidebar_right_open_id' => '',
477
-        'geodir_sidebar_right_open_class' => '',
478
-        'geodir_sidebar_right_open_replace' => '',
479
-        'geodir_sidebar_right_close_replace' => '</div></aside><!-- sidebar ends here-->',
480
-        'geodir_sidebar_left_open_id' => '',
481
-        'geodir_sidebar_left_open_class' => '',
482
-        'geodir_sidebar_left_open_replace' => '',
483
-        'geodir_sidebar_left_close_replace' => '</div></aside><!-- sidebar ends here-->',
484
-        'geodir_main_content_open_id' => '',
485
-        'geodir_main_content_open_class' => '',
486
-        'geodir_main_content_open_replace' => '',
487
-        'geodir_main_content_close_replace' => '',
488
-        'geodir_top_content_add' => '',
489
-        'geodir_before_main_content_add' => '',
490
-        'geodir_before_widget_filter' => '',
491
-        'geodir_after_widget_filter' => '',
492
-        'geodir_theme_compat_css' => stripslashes('.geodir_full_page .top_banner_section{margin-bottom:0}.widget .geodir-cat-list ul li{clear:none}.wpgeo-enfold .av-main-nav ul{width:222px}.geodir-listing-search .geodir-loc-bar{border-top:none;padding:0}#main .geodir-listing-search,.geodir-listing-search .geodir-loc-bar{margin-bottom:0}#main .geodir-loc-bar-in,#main .geodir-category-list-in{background-color:#fcfcfc;margin:20px 0;padding:20px}#main .geodir_full_page .geodir-loc-bar-in,#main .geodir_full_page .geodir-loc-bar,#main .geodir_full_page .geodir-category-list-in{margin-top:0;margin-bottom:0}#main .geodir-loc-bar-in{padding:20px}#main .geodir-search{margin:0;width:100%}#main .geodir-search select{margin:0 3% 0 0;padding:8px 10px;width:13%}#main .geodir-search input[type="text"]{margin:0 3% 0 0;padding:10px;width:32.4%}#main .geodir-search input[type="button"],#main .geodir-search input[type="submit"]{font-size:inherit;line-height:2.25;margin:0;padding:7px;width:13%}.enfold-home-top section.widget{margin:0;padding:0}.enfold-home-top .top_banner_section{margin-bottom:0}.enfold-home-top .geodir-loc-bar{background:#fcfcfc;border:none;margin:0;padding:0}#main .enfold-home-top .geodir-loc-bar-in{background:none;border:none;margin:0 auto;padding:20px 0}#main .geodir-breadcrumb{border-bottom-style:solid;border-bottom-width:1px}#gd-tabs dt{clear:none}#geodir_slider ul li{list-style-type:none;margin:0;padding:0}#respond{clear:both}#comments .comments-title span{display:inline;font-size:inherit;font-weight:700}#reviewsTab .comments-area .bypostauthor cite span{display:inline}#top #comments .commentlist .comment,#top #comments .commentlist .comment > div{min-height:0}.commentlist .commenttext{padding-top:15px}#comment_imagesdropbox{margin-bottom:20px}.wpgeo-enfold .geodir_category_list_view li{margin-left:0;padding:0}.widget ul.geodir-loginbox-list{overflow:visible}.geodir_category_list_view li .geodir-post-img{display:block}.wpgeo-enfold .geodir_event_listing_calendar tr.title{background:#ccc}@media only screen and (max-width:480px){.geodir_category_list_view li .geodir-content,.geodir_category_list_view li .geodir-post-img,.geodir_category_list_view li .geodir-addinfo{float:none;width:100%;margin:10px 0}#main .geodir-search input[type="text"],#main .geodir-search input[type="button"],#main .geodir-search input[type="submit"],#main .geodir-search select{margin:10px 0;width:100%}}#main .geodir_full_page section:last-child .geodir-loc-bar{margin-bottom: -1px;border-bottom: none;}'),
493
-        'geodir_theme_compat_js' => '',
494
-        'geodir_theme_compat_default_options' => '',
495
-        'geodir_theme_compat_code' => 'Enfold'
496
-    );
463
+	$theme_compat['Enfold'] = array(
464
+		'geodir_wrapper_open_id' => '',
465
+		'geodir_wrapper_open_class' => '',
466
+		'geodir_wrapper_open_replace' => '',
467
+		'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
468
+		'geodir_wrapper_content_open_id' => '',
469
+		'geodir_wrapper_content_open_class' => '',
470
+		'geodir_wrapper_content_open_replace' => '',
471
+		'geodir_wrapper_content_close_replace' => '</div></main>',
472
+		'geodir_article_open_id' => '',
473
+		'geodir_article_open_class' => '',
474
+		'geodir_article_open_replace' => '',
475
+		'geodir_article_close_replace' => '',
476
+		'geodir_sidebar_right_open_id' => '',
477
+		'geodir_sidebar_right_open_class' => '',
478
+		'geodir_sidebar_right_open_replace' => '',
479
+		'geodir_sidebar_right_close_replace' => '</div></aside><!-- sidebar ends here-->',
480
+		'geodir_sidebar_left_open_id' => '',
481
+		'geodir_sidebar_left_open_class' => '',
482
+		'geodir_sidebar_left_open_replace' => '',
483
+		'geodir_sidebar_left_close_replace' => '</div></aside><!-- sidebar ends here-->',
484
+		'geodir_main_content_open_id' => '',
485
+		'geodir_main_content_open_class' => '',
486
+		'geodir_main_content_open_replace' => '',
487
+		'geodir_main_content_close_replace' => '',
488
+		'geodir_top_content_add' => '',
489
+		'geodir_before_main_content_add' => '',
490
+		'geodir_before_widget_filter' => '',
491
+		'geodir_after_widget_filter' => '',
492
+		'geodir_theme_compat_css' => stripslashes('.geodir_full_page .top_banner_section{margin-bottom:0}.widget .geodir-cat-list ul li{clear:none}.wpgeo-enfold .av-main-nav ul{width:222px}.geodir-listing-search .geodir-loc-bar{border-top:none;padding:0}#main .geodir-listing-search,.geodir-listing-search .geodir-loc-bar{margin-bottom:0}#main .geodir-loc-bar-in,#main .geodir-category-list-in{background-color:#fcfcfc;margin:20px 0;padding:20px}#main .geodir_full_page .geodir-loc-bar-in,#main .geodir_full_page .geodir-loc-bar,#main .geodir_full_page .geodir-category-list-in{margin-top:0;margin-bottom:0}#main .geodir-loc-bar-in{padding:20px}#main .geodir-search{margin:0;width:100%}#main .geodir-search select{margin:0 3% 0 0;padding:8px 10px;width:13%}#main .geodir-search input[type="text"]{margin:0 3% 0 0;padding:10px;width:32.4%}#main .geodir-search input[type="button"],#main .geodir-search input[type="submit"]{font-size:inherit;line-height:2.25;margin:0;padding:7px;width:13%}.enfold-home-top section.widget{margin:0;padding:0}.enfold-home-top .top_banner_section{margin-bottom:0}.enfold-home-top .geodir-loc-bar{background:#fcfcfc;border:none;margin:0;padding:0}#main .enfold-home-top .geodir-loc-bar-in{background:none;border:none;margin:0 auto;padding:20px 0}#main .geodir-breadcrumb{border-bottom-style:solid;border-bottom-width:1px}#gd-tabs dt{clear:none}#geodir_slider ul li{list-style-type:none;margin:0;padding:0}#respond{clear:both}#comments .comments-title span{display:inline;font-size:inherit;font-weight:700}#reviewsTab .comments-area .bypostauthor cite span{display:inline}#top #comments .commentlist .comment,#top #comments .commentlist .comment > div{min-height:0}.commentlist .commenttext{padding-top:15px}#comment_imagesdropbox{margin-bottom:20px}.wpgeo-enfold .geodir_category_list_view li{margin-left:0;padding:0}.widget ul.geodir-loginbox-list{overflow:visible}.geodir_category_list_view li .geodir-post-img{display:block}.wpgeo-enfold .geodir_event_listing_calendar tr.title{background:#ccc}@media only screen and (max-width:480px){.geodir_category_list_view li .geodir-content,.geodir_category_list_view li .geodir-post-img,.geodir_category_list_view li .geodir-addinfo{float:none;width:100%;margin:10px 0}#main .geodir-search input[type="text"],#main .geodir-search input[type="button"],#main .geodir-search input[type="submit"],#main .geodir-search select{margin:10px 0;width:100%}}#main .geodir_full_page section:last-child .geodir-loc-bar{margin-bottom: -1px;border-bottom: none;}'),
493
+		'geodir_theme_compat_js' => '',
494
+		'geodir_theme_compat_default_options' => '',
495
+		'geodir_theme_compat_code' => 'Enfold'
496
+	);
497 497
 
498 498
 // X
499
-    $theme_compat['X'] = array(
500
-        'geodir_wrapper_open_id' => '',
501
-        'geodir_wrapper_open_class' => '',
502
-        'geodir_wrapper_open_replace' => '',
503
-        'geodir_wrapper_close_replace' => '',
504
-        'geodir_wrapper_content_open_id' => '',
505
-        'geodir_wrapper_content_open_class' => '',
506
-        'geodir_wrapper_content_open_replace' => '',
507
-        'geodir_wrapper_content_close_replace' => '',
508
-        'geodir_article_open_id' => '',
509
-        'geodir_article_open_class' => '',
510
-        'geodir_article_open_replace' => '',
511
-        'geodir_article_close_replace' => '',
512
-        'geodir_sidebar_right_open_id' => '',
513
-        'geodir_sidebar_right_open_class' => '',
514
-        'geodir_sidebar_right_open_replace' => '',
515
-        'geodir_sidebar_right_close_replace' => '',
516
-        'geodir_sidebar_left_open_id' => '',
517
-        'geodir_sidebar_left_open_class' => '',
518
-        'geodir_sidebar_left_open_replace' => '',
519
-        'geodir_sidebar_left_close_replace' => '',
520
-        'geodir_main_content_open_id' => '',
521
-        'geodir_main_content_open_class' => '',
522
-        'geodir_main_content_open_replace' => '',
523
-        'geodir_main_content_close_replace' => '',
524
-        'geodir_top_content_add' => '',
525
-        'geodir_before_main_content_add' => '',
526
-        'geodir_before_widget_filter' => '',
527
-        'geodir_after_widget_filter' => '',
528
-        'geodir_theme_compat_css' => stripslashes('.x-colophon.bottom{clear:both}#geodir-main-content,.geodir_flex-container{margin-top:16px}.geodir-x ul{list-style:none}.widget ul.geodir_category_list_view{border:none}.geodir_category_list_view li.geodir-gridview:last-child{border-bottom:1px solid #e1e1e1}.home .x-header-landmark{display:none}.geodir-x .x-main .geodir_advance_search_widget{margin:0}.geodir-x .top_banner_section{margin-bottom:0}.geodir-loc-bar{background:rgba(0,0,0,0.05);margin:0;padding:0}.geodir-loc-bar-in{background:none;border:none;padding:10px}.geodir-search{margin:0;width:100%}.widget .geodir-search select,.geodir-search input[type="text"],.geodir-search input[type="button"],.geodir-search input[type="submit"]{border:1px solid #ccc;box-shadow:none;height:auto;line-height:21px;margin:0 1% 0 0;padding:5px 10px}.widget .geodir-search select,.geodir-search input[type="text"]{width:28%}.geodir-search input[type="submit"],.geodir-search input[type="button"]{line-height:19px;margin-right:0;width:11%}.geodir-search input:hover[type="submit"],.geodir-search input:hover[type="button"]{background:#333;color:#fff}.geodir-cat-list .widget-title{margin-top:0}.geodir-x .geodir-category-list-in{background:rgba(0,0,0,0.05);border:none}.widget .geodir-cat-list ul.geodir-popular-cat-list{border:none;border-radius:0;box-shadow:none}.geodir_full_page .geodir-cat-list ul li{border:none}.geodir_full_page .geodir-cat-list ul li a{border:none}.post-type-archive .geodir-loc-bar{border:none;margin-top:20px}#menu-item-gd-location-switcher dd{margin-left:0}.geodir-chosen-container-single .chosen-single{height:auto}.widget ul.geodir-loginbox-list{overflow:visible}.geodir_full_page section.widget{clear:both}.x-ethos .entry-title{margin-bottom:20px}.x-ethos .geodir-chosen-container-single .chosen-single{padding:0 0 0 8px}.x-ethos .widget ul li a,.x-ethos .geodir_category_list_view li{color:#333}@media only screen and (max-width:767px){.widget .geodir-search select,.geodir-search input[type="text"],.geodir-search input[type="button"],.geodir-search input[type="submit"]{margin:0 0 10px;width:100%}}.geodir_full_page .geodir-loc-bar-in,.geodir_full_page .geodir-loc-bar,.geodir_full_page .geodir-category-list-in{margin-top:0;margin-bottom:0}.geodir_full_page .geodir-loc-bar-in,.geodir_full_page .geodir-category-list-in{border-bottom:1px solid rgba(0,0,0,0.1)}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}'),
529
-        'geodir_theme_compat_js' => '',
530
-        'geodir_theme_compat_default_options' => '',
531
-        'geodir_theme_compat_code' => 'X'
532
-    );
499
+	$theme_compat['X'] = array(
500
+		'geodir_wrapper_open_id' => '',
501
+		'geodir_wrapper_open_class' => '',
502
+		'geodir_wrapper_open_replace' => '',
503
+		'geodir_wrapper_close_replace' => '',
504
+		'geodir_wrapper_content_open_id' => '',
505
+		'geodir_wrapper_content_open_class' => '',
506
+		'geodir_wrapper_content_open_replace' => '',
507
+		'geodir_wrapper_content_close_replace' => '',
508
+		'geodir_article_open_id' => '',
509
+		'geodir_article_open_class' => '',
510
+		'geodir_article_open_replace' => '',
511
+		'geodir_article_close_replace' => '',
512
+		'geodir_sidebar_right_open_id' => '',
513
+		'geodir_sidebar_right_open_class' => '',
514
+		'geodir_sidebar_right_open_replace' => '',
515
+		'geodir_sidebar_right_close_replace' => '',
516
+		'geodir_sidebar_left_open_id' => '',
517
+		'geodir_sidebar_left_open_class' => '',
518
+		'geodir_sidebar_left_open_replace' => '',
519
+		'geodir_sidebar_left_close_replace' => '',
520
+		'geodir_main_content_open_id' => '',
521
+		'geodir_main_content_open_class' => '',
522
+		'geodir_main_content_open_replace' => '',
523
+		'geodir_main_content_close_replace' => '',
524
+		'geodir_top_content_add' => '',
525
+		'geodir_before_main_content_add' => '',
526
+		'geodir_before_widget_filter' => '',
527
+		'geodir_after_widget_filter' => '',
528
+		'geodir_theme_compat_css' => stripslashes('.x-colophon.bottom{clear:both}#geodir-main-content,.geodir_flex-container{margin-top:16px}.geodir-x ul{list-style:none}.widget ul.geodir_category_list_view{border:none}.geodir_category_list_view li.geodir-gridview:last-child{border-bottom:1px solid #e1e1e1}.home .x-header-landmark{display:none}.geodir-x .x-main .geodir_advance_search_widget{margin:0}.geodir-x .top_banner_section{margin-bottom:0}.geodir-loc-bar{background:rgba(0,0,0,0.05);margin:0;padding:0}.geodir-loc-bar-in{background:none;border:none;padding:10px}.geodir-search{margin:0;width:100%}.widget .geodir-search select,.geodir-search input[type="text"],.geodir-search input[type="button"],.geodir-search input[type="submit"]{border:1px solid #ccc;box-shadow:none;height:auto;line-height:21px;margin:0 1% 0 0;padding:5px 10px}.widget .geodir-search select,.geodir-search input[type="text"]{width:28%}.geodir-search input[type="submit"],.geodir-search input[type="button"]{line-height:19px;margin-right:0;width:11%}.geodir-search input:hover[type="submit"],.geodir-search input:hover[type="button"]{background:#333;color:#fff}.geodir-cat-list .widget-title{margin-top:0}.geodir-x .geodir-category-list-in{background:rgba(0,0,0,0.05);border:none}.widget .geodir-cat-list ul.geodir-popular-cat-list{border:none;border-radius:0;box-shadow:none}.geodir_full_page .geodir-cat-list ul li{border:none}.geodir_full_page .geodir-cat-list ul li a{border:none}.post-type-archive .geodir-loc-bar{border:none;margin-top:20px}#menu-item-gd-location-switcher dd{margin-left:0}.geodir-chosen-container-single .chosen-single{height:auto}.widget ul.geodir-loginbox-list{overflow:visible}.geodir_full_page section.widget{clear:both}.x-ethos .entry-title{margin-bottom:20px}.x-ethos .geodir-chosen-container-single .chosen-single{padding:0 0 0 8px}.x-ethos .widget ul li a,.x-ethos .geodir_category_list_view li{color:#333}@media only screen and (max-width:767px){.widget .geodir-search select,.geodir-search input[type="text"],.geodir-search input[type="button"],.geodir-search input[type="submit"]{margin:0 0 10px;width:100%}}.geodir_full_page .geodir-loc-bar-in,.geodir_full_page .geodir-loc-bar,.geodir_full_page .geodir-category-list-in{margin-top:0;margin-bottom:0}.geodir_full_page .geodir-loc-bar-in,.geodir_full_page .geodir-category-list-in{border-bottom:1px solid rgba(0,0,0,0.1)}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}'),
529
+		'geodir_theme_compat_js' => '',
530
+		'geodir_theme_compat_default_options' => '',
531
+		'geodir_theme_compat_code' => 'X'
532
+	);
533 533
 
534 534
 // Divi
535
-    $theme_compat['Divi'] = array(
536
-        'geodir_wrapper_open_id' => 'main-content',
537
-        'geodir_wrapper_open_class' => '',
538
-        'geodir_wrapper_open_replace' => '',
539
-        'geodir_wrapper_close_replace' => '',
540
-        'geodir_wrapper_content_open_id' => 'left-area',
541
-        'geodir_wrapper_content_open_class' => '',
542
-        'geodir_wrapper_content_open_replace' => '<div class="container"><div id="content-area" class="clearfix"><div id="[id]" class="[class]" role="main" >',
543
-        'geodir_wrapper_content_close_replace' => '',
544
-        'geodir_article_open_id' => '',
545
-        'geodir_article_open_class' => '',
546
-        'geodir_article_open_replace' => '',
547
-        'geodir_article_close_replace' => '',
548
-        'geodir_sidebar_right_open_id' => 'sidebar',
549
-        'geodir_sidebar_right_open_class' => '',
550
-        'geodir_sidebar_right_open_replace' => '<aside  id="[id]" class="" role="complementary" itemscope itemtype="[itemtype]" >',
551
-        'geodir_sidebar_right_close_replace' => '</aside><!-- sidebar ends here--></div></div>',
552
-        'geodir_sidebar_left_open_id' => 'sidebar',
553
-        'geodir_sidebar_left_open_class' => '',
554
-        'geodir_sidebar_left_open_replace' => '<aside  id="[id]" class="" role="complementary" itemscope itemtype="[itemtype]" >',
555
-        'geodir_sidebar_left_close_replace' => '</aside><!-- sidebar ends here--></div></div>',
556
-        'geodir_main_content_open_id' => '',
557
-        'geodir_main_content_open_class' => '',
558
-        'geodir_main_content_open_replace' => '',
559
-        'geodir_main_content_close_replace' => '',
560
-        'geodir_top_content_add' => '',
561
-        'geodir_before_main_content_add' => '',
562
-        'geodir_before_widget_filter' => '',
563
-        'geodir_after_widget_filter' => '',
564
-        'geodir_theme_compat_css' => stripslashes('#left-area ul.geodir-direction-nav{list-style-type:none}#sidebar .geodir-company_info{margin-left:30px}#sidebar .geodir-widget{float:none;margin:0 0 30px 30px}.geodir_full_page .geodir-loc-bar{padding:0;margin:0;border:none}.geodir_full_page .geodir-category-list-in{margin-top:0}.geodir_full_page .top_banner_section{margin-bottom:0}.archive .entry-header,.geodir-breadcrumb{border-bottom:1px solid #e2e2e2}.archive .entry-header h1,ul#breadcrumbs{margin:0 auto;width:1080px}#left-area ul.geodir_category_list_view{padding:10px 0}.nav li#menu-item-gd-location-switcher ul{width:222px}#menu-item-gd-location-switcher li.gd-location-switcher-menu-item{padding-right:0}#menu-item-gd-location-switcher dd{margin-left:0}#menu-item-gd-location-switcher .geodir_location_tab_container dd a{padding:5px;width:auto}@media only screen and ( max-width: 980px ){.geodir-loc-bar-in,.geodir-cat-list,ul#breadcrumbs{width:690px}}@media only screen and ( max-width: 767px ){.geodir-loc-bar-in,.geodir-cat-list,ul#breadcrumbs{width:400px}}@media only screen and ( max-width: 479px ){.geodir-loc-bar-in,.geodir-cat-list,ul#breadcrumbs{width:280px}}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}'),
565
-        'geodir_theme_compat_js' => '',
566
-        'geodir_theme_compat_default_options' => '',
567
-        'geodir_theme_compat_code' => 'Divi'
568
-    );
535
+	$theme_compat['Divi'] = array(
536
+		'geodir_wrapper_open_id' => 'main-content',
537
+		'geodir_wrapper_open_class' => '',
538
+		'geodir_wrapper_open_replace' => '',
539
+		'geodir_wrapper_close_replace' => '',
540
+		'geodir_wrapper_content_open_id' => 'left-area',
541
+		'geodir_wrapper_content_open_class' => '',
542
+		'geodir_wrapper_content_open_replace' => '<div class="container"><div id="content-area" class="clearfix"><div id="[id]" class="[class]" role="main" >',
543
+		'geodir_wrapper_content_close_replace' => '',
544
+		'geodir_article_open_id' => '',
545
+		'geodir_article_open_class' => '',
546
+		'geodir_article_open_replace' => '',
547
+		'geodir_article_close_replace' => '',
548
+		'geodir_sidebar_right_open_id' => 'sidebar',
549
+		'geodir_sidebar_right_open_class' => '',
550
+		'geodir_sidebar_right_open_replace' => '<aside  id="[id]" class="" role="complementary" itemscope itemtype="[itemtype]" >',
551
+		'geodir_sidebar_right_close_replace' => '</aside><!-- sidebar ends here--></div></div>',
552
+		'geodir_sidebar_left_open_id' => 'sidebar',
553
+		'geodir_sidebar_left_open_class' => '',
554
+		'geodir_sidebar_left_open_replace' => '<aside  id="[id]" class="" role="complementary" itemscope itemtype="[itemtype]" >',
555
+		'geodir_sidebar_left_close_replace' => '</aside><!-- sidebar ends here--></div></div>',
556
+		'geodir_main_content_open_id' => '',
557
+		'geodir_main_content_open_class' => '',
558
+		'geodir_main_content_open_replace' => '',
559
+		'geodir_main_content_close_replace' => '',
560
+		'geodir_top_content_add' => '',
561
+		'geodir_before_main_content_add' => '',
562
+		'geodir_before_widget_filter' => '',
563
+		'geodir_after_widget_filter' => '',
564
+		'geodir_theme_compat_css' => stripslashes('#left-area ul.geodir-direction-nav{list-style-type:none}#sidebar .geodir-company_info{margin-left:30px}#sidebar .geodir-widget{float:none;margin:0 0 30px 30px}.geodir_full_page .geodir-loc-bar{padding:0;margin:0;border:none}.geodir_full_page .geodir-category-list-in{margin-top:0}.geodir_full_page .top_banner_section{margin-bottom:0}.archive .entry-header,.geodir-breadcrumb{border-bottom:1px solid #e2e2e2}.archive .entry-header h1,ul#breadcrumbs{margin:0 auto;width:1080px}#left-area ul.geodir_category_list_view{padding:10px 0}.nav li#menu-item-gd-location-switcher ul{width:222px}#menu-item-gd-location-switcher li.gd-location-switcher-menu-item{padding-right:0}#menu-item-gd-location-switcher dd{margin-left:0}#menu-item-gd-location-switcher .geodir_location_tab_container dd a{padding:5px;width:auto}@media only screen and ( max-width: 980px ){.geodir-loc-bar-in,.geodir-cat-list,ul#breadcrumbs{width:690px}}@media only screen and ( max-width: 767px ){.geodir-loc-bar-in,.geodir-cat-list,ul#breadcrumbs{width:400px}}@media only screen and ( max-width: 479px ){.geodir-loc-bar-in,.geodir-cat-list,ul#breadcrumbs{width:280px}}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}'),
565
+		'geodir_theme_compat_js' => '',
566
+		'geodir_theme_compat_default_options' => '',
567
+		'geodir_theme_compat_code' => 'Divi'
568
+	);
569 569
 
570 570
 // Genesis
571
-    $theme_compat['Genesis'] = array(
572
-        'geodir_wrapper_open_id' => '',
573
-        'geodir_wrapper_open_class' => 'content-sidebar-wrap',
574
-        'geodir_wrapper_open_replace' => '',
575
-        'geodir_wrapper_close_replace' => '',
576
-        'geodir_wrapper_content_open_id' => '',
577
-        'geodir_wrapper_content_open_class' => 'content',
578
-        'geodir_wrapper_content_open_replace' => '<div class="[class]" role="main" >',
579
-        'geodir_wrapper_content_close_replace' => '',
580
-        'geodir_article_open_id' => '',
581
-        'geodir_article_open_class' => '',
582
-        'geodir_article_open_replace' => '',
583
-        'geodir_article_close_replace' => '',
584
-        'geodir_sidebar_right_open_id' => '',
585
-        'geodir_sidebar_right_open_class' => 'sidebar sidebar-primary widget-area',
586
-        'geodir_sidebar_right_open_replace' => '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]">',
587
-        'geodir_sidebar_right_close_replace' => '',
588
-        'geodir_sidebar_left_open_id' => '',
589
-        'geodir_sidebar_left_open_class' => 'sidebar sidebar-secondary widget-area',
590
-        'geodir_sidebar_left_open_replace' => '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]">',
591
-        'geodir_sidebar_left_close_replace' => '',
592
-        'geodir_main_content_open_id' => '',
593
-        'geodir_main_content_open_class' => '',
594
-        'geodir_main_content_open_replace' => '<main  id="[id]" class="entry [class]"  role="main">',
595
-        'geodir_main_content_close_replace' => '',
596
-        'geodir_top_content_add' => '',
597
-        'geodir_before_main_content_add' => '',
598
-        'geodir_before_widget_filter' => '',
599
-        'geodir_after_widget_filter' => '',
600
-        'geodir_location_switcher_menu_li_class_filter' => 'menu-item menu-item-gd-location-switcher menu-item-has-children gd-location-switcher',
601
-        'geodir_theme_compat_css' => stripslashes('.full-width-content #geodir-wrapper-content{width:100%}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}.content{float:left}.sidebar-content .content,.sidebar-content #geodir-wrapper-content{float:right}.sidebar .geodir-company_info{background-color:#fff;border:none}.geodir_full_page .geodir-loc-bar{padding:0;margin:0;border:none}.geodir_full_page .geodir-category-list-in{margin-top:0}.geodir_full_page .top_banner_section{margin-bottom:0}.geodir-breadcrumb-bar{margin-bottom:-35px} .search-page .entry-title,.listings-page .entry-title{font-size: 20px;}.site-inner .geodir-breadcrumb-bar{margin-bottom:0px}'),
602
-        'geodir_theme_compat_js' => '',
603
-        'geodir_theme_compat_default_options' => '',
604
-        'geodir_theme_compat_code' => 'Genesis'
605
-    );
571
+	$theme_compat['Genesis'] = array(
572
+		'geodir_wrapper_open_id' => '',
573
+		'geodir_wrapper_open_class' => 'content-sidebar-wrap',
574
+		'geodir_wrapper_open_replace' => '',
575
+		'geodir_wrapper_close_replace' => '',
576
+		'geodir_wrapper_content_open_id' => '',
577
+		'geodir_wrapper_content_open_class' => 'content',
578
+		'geodir_wrapper_content_open_replace' => '<div class="[class]" role="main" >',
579
+		'geodir_wrapper_content_close_replace' => '',
580
+		'geodir_article_open_id' => '',
581
+		'geodir_article_open_class' => '',
582
+		'geodir_article_open_replace' => '',
583
+		'geodir_article_close_replace' => '',
584
+		'geodir_sidebar_right_open_id' => '',
585
+		'geodir_sidebar_right_open_class' => 'sidebar sidebar-primary widget-area',
586
+		'geodir_sidebar_right_open_replace' => '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]">',
587
+		'geodir_sidebar_right_close_replace' => '',
588
+		'geodir_sidebar_left_open_id' => '',
589
+		'geodir_sidebar_left_open_class' => 'sidebar sidebar-secondary widget-area',
590
+		'geodir_sidebar_left_open_replace' => '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]">',
591
+		'geodir_sidebar_left_close_replace' => '',
592
+		'geodir_main_content_open_id' => '',
593
+		'geodir_main_content_open_class' => '',
594
+		'geodir_main_content_open_replace' => '<main  id="[id]" class="entry [class]"  role="main">',
595
+		'geodir_main_content_close_replace' => '',
596
+		'geodir_top_content_add' => '',
597
+		'geodir_before_main_content_add' => '',
598
+		'geodir_before_widget_filter' => '',
599
+		'geodir_after_widget_filter' => '',
600
+		'geodir_location_switcher_menu_li_class_filter' => 'menu-item menu-item-gd-location-switcher menu-item-has-children gd-location-switcher',
601
+		'geodir_theme_compat_css' => stripslashes('.full-width-content #geodir-wrapper-content{width:100%}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}.content{float:left}.sidebar-content .content,.sidebar-content #geodir-wrapper-content{float:right}.sidebar .geodir-company_info{background-color:#fff;border:none}.geodir_full_page .geodir-loc-bar{padding:0;margin:0;border:none}.geodir_full_page .geodir-category-list-in{margin-top:0}.geodir_full_page .top_banner_section{margin-bottom:0}.geodir-breadcrumb-bar{margin-bottom:-35px} .search-page .entry-title,.listings-page .entry-title{font-size: 20px;}.site-inner .geodir-breadcrumb-bar{margin-bottom:0px}'),
602
+		'geodir_theme_compat_js' => '',
603
+		'geodir_theme_compat_default_options' => '',
604
+		'geodir_theme_compat_code' => 'Genesis'
605
+	);
606 606
 
607 607
 // Jupiter
608
-    $theme_compat['Jupiter'] = array(
609
-        'geodir_wrapper_open_id' => '',
610
-        'geodir_wrapper_open_class' => '',
611
-        'geodir_wrapper_open_replace' => '<div id="theme-page"><div class="mk-main-wrapper-holder"><div  class="theme-page-wrapper mk-main-wrapper  mk-grid vc_row-fluid">',
612
-        'geodir_wrapper_close_replace' => '</div></div></div>',
613
-        'geodir_wrapper_content_open_id' => '',
614
-        'geodir_wrapper_content_open_class' => '',
615
-        'geodir_wrapper_content_open_replace' => '',
616
-        'geodir_wrapper_content_close_replace' => '',
617
-        'geodir_article_open_id' => '',
618
-        'geodir_article_open_class' => '',
619
-        'geodir_article_open_replace' => '',
620
-        'geodir_article_close_replace' => '',
621
-        'geodir_sidebar_right_open_id' => 'mk-sidebar',
622
-        'geodir_sidebar_right_open_class' => 'mk-builtin geodir-sidebar-right geodir-listings-sidebar-right',
623
-        'geodir_sidebar_right_open_replace' => '',
624
-        'geodir_sidebar_right_close_replace' => '',
625
-        'geodir_sidebar_left_open_id' => 'mk-sidebar',
626
-        'geodir_sidebar_left_open_class' => 'mk-builtin geodir-sidebar-right geodir-listings-sidebar-right',
627
-        'geodir_sidebar_left_open_replace' => '',
628
-        'geodir_sidebar_left_close_replace' => '',
629
-        'geodir_main_content_open_id' => '',
630
-        'geodir_main_content_open_class' => '',
631
-        'geodir_main_content_open_replace' => '',
632
-        'geodir_main_content_close_replace' => '',
633
-        'geodir_top_content_add' => '',
634
-        'geodir_before_main_content_add' => '',
635
-        'geodir_before_widget_filter' => '',
636
-        'geodir_after_widget_filter' => '',
637
-        'geodir_before_title_filter' => '<h3 class="widgettitle geodir-widget-title">',
638
-        'geodir_after_title_filter' => '',
639
-        'geodir_menu_li_class_filter' => 'menu-item menu-item-has-children no-mega-menu',
640
-        'geodir_sub_menu_ul_class_filter' => '',
641
-        'geodir_sub_menu_li_class_filter' => '',
642
-        'geodir_menu_a_class_filter' => 'menu-item-link',
643
-        'geodir_sub_menu_a_class_filter' => 'menu-item-link one-page-nav-item',
644
-        'geodir_location_switcher_menu_li_class_filter' => 'menu-item menu-item-type-social menu-item-type-social gd-location-switcher menu-item-has-children no-mega-menu',
645
-        'geodir_location_switcher_menu_a_class_filter' => 'menu-item-link',
646
-        'geodir_location_switcher_menu_sub_ul_class_filter' => '',
647
-        'geodir_location_switcher_menu_sub_li_class_filter' => '',
648
-        'geodir_theme_compat_css' => stripslashes('.geodir-widget li,.geodir_category_list_view li{margin:0}#theme-page h3.geodir-entry-title{font-size:14px}#menu-item-gd-location-switcher dd{line-height:44px}#menu-item-gd-location-switcher .geodir_location_sugestion{line-height:20px}.geodir_loginbox{overflow:visible}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}'),
649
-        'geodir_theme_compat_js' => '',
650
-        'geodir_theme_compat_default_options' => '',
651
-        'geodir_theme_compat_code' => 'Jupiter'
652
-    );
608
+	$theme_compat['Jupiter'] = array(
609
+		'geodir_wrapper_open_id' => '',
610
+		'geodir_wrapper_open_class' => '',
611
+		'geodir_wrapper_open_replace' => '<div id="theme-page"><div class="mk-main-wrapper-holder"><div  class="theme-page-wrapper mk-main-wrapper  mk-grid vc_row-fluid">',
612
+		'geodir_wrapper_close_replace' => '</div></div></div>',
613
+		'geodir_wrapper_content_open_id' => '',
614
+		'geodir_wrapper_content_open_class' => '',
615
+		'geodir_wrapper_content_open_replace' => '',
616
+		'geodir_wrapper_content_close_replace' => '',
617
+		'geodir_article_open_id' => '',
618
+		'geodir_article_open_class' => '',
619
+		'geodir_article_open_replace' => '',
620
+		'geodir_article_close_replace' => '',
621
+		'geodir_sidebar_right_open_id' => 'mk-sidebar',
622
+		'geodir_sidebar_right_open_class' => 'mk-builtin geodir-sidebar-right geodir-listings-sidebar-right',
623
+		'geodir_sidebar_right_open_replace' => '',
624
+		'geodir_sidebar_right_close_replace' => '',
625
+		'geodir_sidebar_left_open_id' => 'mk-sidebar',
626
+		'geodir_sidebar_left_open_class' => 'mk-builtin geodir-sidebar-right geodir-listings-sidebar-right',
627
+		'geodir_sidebar_left_open_replace' => '',
628
+		'geodir_sidebar_left_close_replace' => '',
629
+		'geodir_main_content_open_id' => '',
630
+		'geodir_main_content_open_class' => '',
631
+		'geodir_main_content_open_replace' => '',
632
+		'geodir_main_content_close_replace' => '',
633
+		'geodir_top_content_add' => '',
634
+		'geodir_before_main_content_add' => '',
635
+		'geodir_before_widget_filter' => '',
636
+		'geodir_after_widget_filter' => '',
637
+		'geodir_before_title_filter' => '<h3 class="widgettitle geodir-widget-title">',
638
+		'geodir_after_title_filter' => '',
639
+		'geodir_menu_li_class_filter' => 'menu-item menu-item-has-children no-mega-menu',
640
+		'geodir_sub_menu_ul_class_filter' => '',
641
+		'geodir_sub_menu_li_class_filter' => '',
642
+		'geodir_menu_a_class_filter' => 'menu-item-link',
643
+		'geodir_sub_menu_a_class_filter' => 'menu-item-link one-page-nav-item',
644
+		'geodir_location_switcher_menu_li_class_filter' => 'menu-item menu-item-type-social menu-item-type-social gd-location-switcher menu-item-has-children no-mega-menu',
645
+		'geodir_location_switcher_menu_a_class_filter' => 'menu-item-link',
646
+		'geodir_location_switcher_menu_sub_ul_class_filter' => '',
647
+		'geodir_location_switcher_menu_sub_li_class_filter' => '',
648
+		'geodir_theme_compat_css' => stripslashes('.geodir-widget li,.geodir_category_list_view li{margin:0}#theme-page h3.geodir-entry-title{font-size:14px}#menu-item-gd-location-switcher dd{line-height:44px}#menu-item-gd-location-switcher .geodir_location_sugestion{line-height:20px}.geodir_loginbox{overflow:visible}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}'),
649
+		'geodir_theme_compat_js' => '',
650
+		'geodir_theme_compat_default_options' => '',
651
+		'geodir_theme_compat_code' => 'Jupiter'
652
+	);
653 653
 
654 654
 // Multi News
655
-    $theme_compat['Multi_News'] = array(
656
-        'geodir_wrapper_open_id' => '',
657
-        'geodir_wrapper_open_class' => 'main-container clearfix',
658
-        'geodir_wrapper_open_replace' => '',
659
-        'geodir_wrapper_close_replace' => '',
660
-        'geodir_wrapper_content_open_id' => '',
661
-        'geodir_wrapper_content_open_class' => '',
662
-        'geodir_wrapper_content_open_replace' => '<div class="main-left" ><div class="main-content  "><div class="site-content page-wrap">',
663
-        'geodir_wrapper_content_close_replace' => '</div></div></div>',
664
-        'geodir_article_open_id' => '',
665
-        'geodir_article_open_class' => '',
666
-        'geodir_article_open_replace' => '',
667
-        'geodir_article_close_replace' => '',
668
-        'geodir_sidebar_right_open_id' => '',
669
-        'geodir_sidebar_right_open_class' => '',
670
-        'geodir_sidebar_right_open_replace' => '<aside  class="sidebar" role="complementary" itemscope itemtype="[itemtype]" >',
671
-        'geodir_sidebar_right_close_replace' => '',
672
-        'geodir_sidebar_left_open_id' => '',
673
-        'geodir_sidebar_left_open_class' => '',
674
-        'geodir_sidebar_left_open_replace' => '<aside  class="secondary-sidebar" role="complementary" itemscope itemtype="[itemtype]" >',
675
-        'geodir_sidebar_left_close_replace' => '',
676
-        'geodir_main_content_open_id' => '',
677
-        'geodir_main_content_open_class' => '',
678
-        'geodir_main_content_open_replace' => '<div class="site-content page-wrap">',
679
-        'geodir_main_content_close_replace' => '</div>',
680
-        'geodir_top_content_add' => '',
681
-        'geodir_before_main_content_add' => '',
682
-        'geodir_full_page_class_filter' => 'section full-width-section',
683
-        'geodir_before_widget_filter' => '',
684
-        'geodir_after_widget_filter' => '',
685
-        'geodir_before_title_filter' => '<div class="widget-title"><h2>',
686
-        'geodir_after_title_filter' => '</h2></div>',
687
-        'geodir_menu_li_class_filter' => '',
688
-        'geodir_sub_menu_ul_class_filter' => '',
689
-        'geodir_sub_menu_li_class_filter' => '',
690
-        'geodir_menu_a_class_filter' => '',
691
-        'geodir_sub_menu_a_class_filter' => '',
692
-        'geodir_location_switcher_menu_li_class_filter' => '',
693
-        'geodir_location_switcher_menu_a_class_filter' => '',
694
-        'geodir_location_switcher_menu_sub_ul_class_filter' => '',
695
-        'geodir_location_switcher_menu_sub_li_class_filter' => '',
696
-        'geodir_theme_compat_css' => stripslashes('.full-width-section .geodir-search{margin:0;width:100%}.geodir_full_page .geodir-search{margin:0 auto;float:none}.geodir-search input[type=button],.geodir-search input[type=submit]{width:13%}.geodir-search input[type=text]{border:1px solid #ddd;border-radius:0;padding:0 8px}.geodir-category-list-in,.geodir-loc-bar-in{background:#f2f2f2;border-color:#dbdbdb}.geodir-category-list-in{margin-top:0}.geodir-cat-list .widget-title h2{margin:-13px -13px 13px}.widget .geodir-cat-list ul li.geodir-pcat-show a:before{display:none!important}.widget .geodir-cat-list ul li.geodir-pcat-show i{margin-right:5px}.container .geodir-search select{margin:0 3% 0 0;padding:8px 10px;width:13%}#geodir_carousel,#geodir_slider{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;margin-bottom:20px!important;border:1px solid #e1e1e1;box-shadow:none}#geodir_carousel{padding:10px}.geodir-tabs-content ol.commentlist{margin:40px 0;padding:0}li#post_mapTab{min-height:400px}#reviewsTab ol.commentlist li{border-bottom:none}#reviewsTab ol.commentlist li article.comment{border-bottom:1px solid #e1e1e1;padding-bottom:10px}.comment-content .rating{display:none}.comment-respond .gd_rating{margin-bottom:20px}div.geodir-rating{width:85px!important}.comment-respond .comment-notes{margin-bottom:10px}.average-review span,.comment-form label,.dtreviewed,.geodir-details-sidebar-user-links a,.geodir-viewall,.geodir_more_info span,.reviewer,dl.geodir-tab-head dd a{font-family:"Archivo Narrow",sans-serif}section.comment-content{margin:0 0 0 12%}#reviewsTab .comments-area .comment-content{width:auto}section.comment-content .description,section.comment-content p{margin:15px 0}dl.geodir-tab-head dd a{background:#f3f3f3;margin-top:-1px;font-size:14px;padding:0 15px}dl.geodir-tab-head dd.geodir-tab-active a{padding-bottom:1px}.geodir-widget .geodir_list_heading,.geodir-widget h3.widget-title{padding:0 15px;background:#e9e9e9;border:1px solid #dbdbdb;height:38px;line-height:38px;color:#2d2d2d}.geodir-widget .geodir_list_heading h3{background:0 0;border:none}.geodir-widget .geodir_list_heading{margin:-13px -14px 13px}.geodir-map-listing-page{border-width:1px 0 0;border-style:solid;border-color:#dbdbdb}.geodir-sidebar-wrap .geodir-company_info{margin:15px}.geodir-details-sidebar-social-sharing iframe{float:left}.geodir-details-sidebar-rating{overflow:hidden}.geodir-details-sidebar-rating .gd_rating_show,.geodir-details-sidebar-rating .geodir-rating{float:left;margin-right:15px}.geodir-details-sidebar-rating span.item{float:left;margin-top:5px}.geodir-details-sidebar-rating .average-review{top:-4px;position:relative}.geodir-details-sidebar-rating span.item img{margin-top:5px}.geodir_full_page{background:#fff;border:1px solid #e1e1e1;-webkit-box-shadow:0 1px 0 #e5e5e5;box-shadow:0 1px 0 #e5e5e5;padding:15px;margin-bottom:20px;clear:both}.geodir_map_container .main_list img{margin:0 5px}.geodir_category_list_view li.geodir-gridview .geodir-post-img .geodir_thumbnail{margin-bottom:10px}.geodir-addinfo .geodir-pinpoint,.geodir-addinfo a i{margin-right:5px}.geodir_category_list_view li.geodir-gridview h3{font-size:18px;margin-bottom:10px}#related_listingTab ul.geodir_category_list_view{padding:0!important}#reviewsTab #comments .gd_rating{margin-top:5px}.widget .geodir_category_list_view li .geodir-entry-content,.widget .geodir_category_list_view li a:before{display:none!important}.geodir_category_list_view li .geodir-entry-title{margin-bottom:10px}.widget ul.geodir_category_list_view{padding:15px}.sidebar .widget .geodir_category_list_view li{width:calc(100% - 25px)}.widget .geodir-loginbox-list li{overflow:visible!important}.widget ul.chosen-results{margin:0!important}.main_list_selecter{margin-right:5px}.geodir-viewall{float:right;width:auto!important}.widget-title h2{padding:0 15px;background:#e9e9e9;border:1px solid #dbdbdb;height:38px;line-height:38px}.widget:first-child .geodir_list_heading .widget-title{margin-top:0}.geodir_list_heading .widget-title{float:left;width:80%;margin-top:0}.geodir_list_heading .widget-title h2{padding:0 px;background:0 0;border:none;height:auto;line-height:auto}.chosen-default:before{content:none;display:none;position:absolute;margin-left:-1000000px;float:left}#geodir-wrapper .entry-crumbs{margin-bottom:20px}.geodir-search .mom-select{float:left;width:150px;margin:5px;border:1px solid #ddd;height:40px}.iprelative .gm-style .gm-style-iw{width:100%!important}'),
697
-        'geodir_theme_compat_js' => 'jQuery(document).ready(function(e){e(".geodir_full_page").length&&""===e.trim(e(".geodir_full_page").html())&&e(".geodir_full_page").css({display:"none"})});',
698
-        'geodir_theme_compat_default_options' => '',
699
-        'geodir_theme_compat_code' => 'Multi_News'
700
-    );
701
-
702
-    update_option('gd_theme_compats', $theme_compat);
703
-
704
-    gd_set_theme_compat();// set the compat pack if avail
655
+	$theme_compat['Multi_News'] = array(
656
+		'geodir_wrapper_open_id' => '',
657
+		'geodir_wrapper_open_class' => 'main-container clearfix',
658
+		'geodir_wrapper_open_replace' => '',
659
+		'geodir_wrapper_close_replace' => '',
660
+		'geodir_wrapper_content_open_id' => '',
661
+		'geodir_wrapper_content_open_class' => '',
662
+		'geodir_wrapper_content_open_replace' => '<div class="main-left" ><div class="main-content  "><div class="site-content page-wrap">',
663
+		'geodir_wrapper_content_close_replace' => '</div></div></div>',
664
+		'geodir_article_open_id' => '',
665
+		'geodir_article_open_class' => '',
666
+		'geodir_article_open_replace' => '',
667
+		'geodir_article_close_replace' => '',
668
+		'geodir_sidebar_right_open_id' => '',
669
+		'geodir_sidebar_right_open_class' => '',
670
+		'geodir_sidebar_right_open_replace' => '<aside  class="sidebar" role="complementary" itemscope itemtype="[itemtype]" >',
671
+		'geodir_sidebar_right_close_replace' => '',
672
+		'geodir_sidebar_left_open_id' => '',
673
+		'geodir_sidebar_left_open_class' => '',
674
+		'geodir_sidebar_left_open_replace' => '<aside  class="secondary-sidebar" role="complementary" itemscope itemtype="[itemtype]" >',
675
+		'geodir_sidebar_left_close_replace' => '',
676
+		'geodir_main_content_open_id' => '',
677
+		'geodir_main_content_open_class' => '',
678
+		'geodir_main_content_open_replace' => '<div class="site-content page-wrap">',
679
+		'geodir_main_content_close_replace' => '</div>',
680
+		'geodir_top_content_add' => '',
681
+		'geodir_before_main_content_add' => '',
682
+		'geodir_full_page_class_filter' => 'section full-width-section',
683
+		'geodir_before_widget_filter' => '',
684
+		'geodir_after_widget_filter' => '',
685
+		'geodir_before_title_filter' => '<div class="widget-title"><h2>',
686
+		'geodir_after_title_filter' => '</h2></div>',
687
+		'geodir_menu_li_class_filter' => '',
688
+		'geodir_sub_menu_ul_class_filter' => '',
689
+		'geodir_sub_menu_li_class_filter' => '',
690
+		'geodir_menu_a_class_filter' => '',
691
+		'geodir_sub_menu_a_class_filter' => '',
692
+		'geodir_location_switcher_menu_li_class_filter' => '',
693
+		'geodir_location_switcher_menu_a_class_filter' => '',
694
+		'geodir_location_switcher_menu_sub_ul_class_filter' => '',
695
+		'geodir_location_switcher_menu_sub_li_class_filter' => '',
696
+		'geodir_theme_compat_css' => stripslashes('.full-width-section .geodir-search{margin:0;width:100%}.geodir_full_page .geodir-search{margin:0 auto;float:none}.geodir-search input[type=button],.geodir-search input[type=submit]{width:13%}.geodir-search input[type=text]{border:1px solid #ddd;border-radius:0;padding:0 8px}.geodir-category-list-in,.geodir-loc-bar-in{background:#f2f2f2;border-color:#dbdbdb}.geodir-category-list-in{margin-top:0}.geodir-cat-list .widget-title h2{margin:-13px -13px 13px}.widget .geodir-cat-list ul li.geodir-pcat-show a:before{display:none!important}.widget .geodir-cat-list ul li.geodir-pcat-show i{margin-right:5px}.container .geodir-search select{margin:0 3% 0 0;padding:8px 10px;width:13%}#geodir_carousel,#geodir_slider{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;margin-bottom:20px!important;border:1px solid #e1e1e1;box-shadow:none}#geodir_carousel{padding:10px}.geodir-tabs-content ol.commentlist{margin:40px 0;padding:0}li#post_mapTab{min-height:400px}#reviewsTab ol.commentlist li{border-bottom:none}#reviewsTab ol.commentlist li article.comment{border-bottom:1px solid #e1e1e1;padding-bottom:10px}.comment-content .rating{display:none}.comment-respond .gd_rating{margin-bottom:20px}div.geodir-rating{width:85px!important}.comment-respond .comment-notes{margin-bottom:10px}.average-review span,.comment-form label,.dtreviewed,.geodir-details-sidebar-user-links a,.geodir-viewall,.geodir_more_info span,.reviewer,dl.geodir-tab-head dd a{font-family:"Archivo Narrow",sans-serif}section.comment-content{margin:0 0 0 12%}#reviewsTab .comments-area .comment-content{width:auto}section.comment-content .description,section.comment-content p{margin:15px 0}dl.geodir-tab-head dd a{background:#f3f3f3;margin-top:-1px;font-size:14px;padding:0 15px}dl.geodir-tab-head dd.geodir-tab-active a{padding-bottom:1px}.geodir-widget .geodir_list_heading,.geodir-widget h3.widget-title{padding:0 15px;background:#e9e9e9;border:1px solid #dbdbdb;height:38px;line-height:38px;color:#2d2d2d}.geodir-widget .geodir_list_heading h3{background:0 0;border:none}.geodir-widget .geodir_list_heading{margin:-13px -14px 13px}.geodir-map-listing-page{border-width:1px 0 0;border-style:solid;border-color:#dbdbdb}.geodir-sidebar-wrap .geodir-company_info{margin:15px}.geodir-details-sidebar-social-sharing iframe{float:left}.geodir-details-sidebar-rating{overflow:hidden}.geodir-details-sidebar-rating .gd_rating_show,.geodir-details-sidebar-rating .geodir-rating{float:left;margin-right:15px}.geodir-details-sidebar-rating span.item{float:left;margin-top:5px}.geodir-details-sidebar-rating .average-review{top:-4px;position:relative}.geodir-details-sidebar-rating span.item img{margin-top:5px}.geodir_full_page{background:#fff;border:1px solid #e1e1e1;-webkit-box-shadow:0 1px 0 #e5e5e5;box-shadow:0 1px 0 #e5e5e5;padding:15px;margin-bottom:20px;clear:both}.geodir_map_container .main_list img{margin:0 5px}.geodir_category_list_view li.geodir-gridview .geodir-post-img .geodir_thumbnail{margin-bottom:10px}.geodir-addinfo .geodir-pinpoint,.geodir-addinfo a i{margin-right:5px}.geodir_category_list_view li.geodir-gridview h3{font-size:18px;margin-bottom:10px}#related_listingTab ul.geodir_category_list_view{padding:0!important}#reviewsTab #comments .gd_rating{margin-top:5px}.widget .geodir_category_list_view li .geodir-entry-content,.widget .geodir_category_list_view li a:before{display:none!important}.geodir_category_list_view li .geodir-entry-title{margin-bottom:10px}.widget ul.geodir_category_list_view{padding:15px}.sidebar .widget .geodir_category_list_view li{width:calc(100% - 25px)}.widget .geodir-loginbox-list li{overflow:visible!important}.widget ul.chosen-results{margin:0!important}.main_list_selecter{margin-right:5px}.geodir-viewall{float:right;width:auto!important}.widget-title h2{padding:0 15px;background:#e9e9e9;border:1px solid #dbdbdb;height:38px;line-height:38px}.widget:first-child .geodir_list_heading .widget-title{margin-top:0}.geodir_list_heading .widget-title{float:left;width:80%;margin-top:0}.geodir_list_heading .widget-title h2{padding:0 px;background:0 0;border:none;height:auto;line-height:auto}.chosen-default:before{content:none;display:none;position:absolute;margin-left:-1000000px;float:left}#geodir-wrapper .entry-crumbs{margin-bottom:20px}.geodir-search .mom-select{float:left;width:150px;margin:5px;border:1px solid #ddd;height:40px}.iprelative .gm-style .gm-style-iw{width:100%!important}'),
697
+		'geodir_theme_compat_js' => 'jQuery(document).ready(function(e){e(".geodir_full_page").length&&""===e.trim(e(".geodir_full_page").html())&&e(".geodir_full_page").css({display:"none"})});',
698
+		'geodir_theme_compat_default_options' => '',
699
+		'geodir_theme_compat_code' => 'Multi_News'
700
+	);
701
+
702
+	update_option('gd_theme_compats', $theme_compat);
703
+
704
+	gd_set_theme_compat();// set the compat pack if avail
705 705
 }
706 706
 
707 707
 
@@ -713,61 +713,61 @@  discard block
 block discarded – undo
713 713
  * @global object $wpdb WordPress Database object.
714 714
  */
715 715
 function gd_convert_virtual_pages(){
716
-    global $wpdb;
717
-
718
-    // Update the add listing page settings
719
-    $add_listing_page = $wpdb->get_var(
720
-        $wpdb->prepare(
721
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
722
-            array('add-listing')
723
-        )
724
-    );
725
-
726
-    if($add_listing_page){
727
-        wp_update_post( array('ID' => $add_listing_page, 'post_status' => 'publish') );
728
-        update_option( 'geodir_add_listing_page', $add_listing_page);
729
-    }
730
-
731
-    // Update the listing preview page settings
732
-    $listing_preview_page = $wpdb->get_var(
733
-        $wpdb->prepare(
734
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
735
-            array('listing-preview')
736
-        )
737
-    );
738
-
739
-    if($listing_preview_page){
740
-        wp_update_post( array('ID' => $listing_preview_page, 'post_status' => 'publish') );
741
-        update_option( 'geodir_preview_page', $listing_preview_page);
742
-    }
743
-
744
-    // Update the listing success page settings
745
-    $listing_success_page = $wpdb->get_var(
746
-        $wpdb->prepare(
747
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
748
-            array('listing-success')
749
-        )
750
-    );
751
-
752
-    if($listing_success_page){
753
-        wp_update_post( array('ID' => $listing_success_page, 'post_status' => 'publish') );
754
-        update_option( 'geodir_success_page', $listing_success_page);
755
-    }
756
-
757
-    // Update the listing success page settings
758
-    $location_page = $wpdb->get_var(
759
-        $wpdb->prepare(
760
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
761
-            array('location')
762
-        )
763
-    );
764
-
765
-    if($location_page){
766
-        $location_slug = get_option('geodir_location_prefix');
767
-        if(!$location_slug ){$location_slug  = 'location';}
768
-        wp_update_post( array('ID' => $location_page, 'post_status' => 'publish','post_name' => $location_slug) );
769
-        update_option( 'geodir_location_page', $location_page);
770
-    }
716
+	global $wpdb;
717
+
718
+	// Update the add listing page settings
719
+	$add_listing_page = $wpdb->get_var(
720
+		$wpdb->prepare(
721
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
722
+			array('add-listing')
723
+		)
724
+	);
725
+
726
+	if($add_listing_page){
727
+		wp_update_post( array('ID' => $add_listing_page, 'post_status' => 'publish') );
728
+		update_option( 'geodir_add_listing_page', $add_listing_page);
729
+	}
730
+
731
+	// Update the listing preview page settings
732
+	$listing_preview_page = $wpdb->get_var(
733
+		$wpdb->prepare(
734
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
735
+			array('listing-preview')
736
+		)
737
+	);
738
+
739
+	if($listing_preview_page){
740
+		wp_update_post( array('ID' => $listing_preview_page, 'post_status' => 'publish') );
741
+		update_option( 'geodir_preview_page', $listing_preview_page);
742
+	}
743
+
744
+	// Update the listing success page settings
745
+	$listing_success_page = $wpdb->get_var(
746
+		$wpdb->prepare(
747
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
748
+			array('listing-success')
749
+		)
750
+	);
751
+
752
+	if($listing_success_page){
753
+		wp_update_post( array('ID' => $listing_success_page, 'post_status' => 'publish') );
754
+		update_option( 'geodir_success_page', $listing_success_page);
755
+	}
756
+
757
+	// Update the listing success page settings
758
+	$location_page = $wpdb->get_var(
759
+		$wpdb->prepare(
760
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
761
+			array('location')
762
+		)
763
+	);
764
+
765
+	if($location_page){
766
+		$location_slug = get_option('geodir_location_prefix');
767
+		if(!$location_slug ){$location_slug  = 'location';}
768
+		wp_update_post( array('ID' => $location_page, 'post_status' => 'publish','post_name' => $location_slug) );
769
+		update_option( 'geodir_location_page', $location_page);
770
+	}
771 771
 
772 772
 }
773 773
 
@@ -781,31 +781,31 @@  discard block
 block discarded – undo
781 781
 function gd_fix_cpt_rewrite_slug()
782 782
 {
783 783
 
784
-    $alt_post_types = array();
785
-    $post_types = get_option('geodir_post_types');
784
+	$alt_post_types = array();
785
+	$post_types = get_option('geodir_post_types');
786 786
 
787 787
 
788
-    if (is_array($post_types)){
788
+	if (is_array($post_types)){
789 789
 
790
-        foreach ($post_types as $post_type => $args) {
790
+		foreach ($post_types as $post_type => $args) {
791 791
 
792 792
 
793
-            if(isset($args['rewrite']['slug'])){
794
-                $args['rewrite']['slug'] = str_replace("/%gd_taxonomy%","",$args['rewrite']['slug']);
795
-            }
793
+			if(isset($args['rewrite']['slug'])){
794
+				$args['rewrite']['slug'] = str_replace("/%gd_taxonomy%","",$args['rewrite']['slug']);
795
+			}
796 796
 
797
-                $alt_post_types[$post_type] = $args;
797
+				$alt_post_types[$post_type] = $args;
798 798
 
799
-        }
800
-    }
799
+		}
800
+	}
801 801
 
802
-    if(!empty($alt_post_types)) {
803
-        update_option('geodir_post_types',$alt_post_types);
804
-        }
802
+	if(!empty($alt_post_types)) {
803
+		update_option('geodir_post_types',$alt_post_types);
804
+		}
805 805
 
806 806
 
807
-    // flush the rewrite rules
808
-    flush_rewrite_rules();
807
+	// flush the rewrite rules
808
+	flush_rewrite_rules();
809 809
 }
810 810
 
811 811
 
@@ -818,18 +818,18 @@  discard block
 block discarded – undo
818 818
  */
819 819
 function gd_fix_address_detail_table_limit()
820 820
 {
821
-    global $wpdb;
822
-
823
-    $all_postypes = geodir_get_posttypes();
824
-
825
-    if (!empty($all_postypes)) {
826
-        foreach ($all_postypes as $key) {
827
-            // update each GD CTP
828
-            try {
829
-                $wpdb->query("ALTER TABLE " . $wpdb->prefix . "geodir_" . $key . "_detail MODIFY post_city VARCHAR( 50 ) NULL,MODIFY post_region VARCHAR( 50 ) NULL,MODIFY post_country VARCHAR( 50 ) NULL");
830
-            } catch(Exception $e) {
831
-                error_log( 'Error: ' . $e->getMessage() );
832
-            }
833
-        }
834
-    }
821
+	global $wpdb;
822
+
823
+	$all_postypes = geodir_get_posttypes();
824
+
825
+	if (!empty($all_postypes)) {
826
+		foreach ($all_postypes as $key) {
827
+			// update each GD CTP
828
+			try {
829
+				$wpdb->query("ALTER TABLE " . $wpdb->prefix . "geodir_" . $key . "_detail MODIFY post_city VARCHAR( 50 ) NULL,MODIFY post_region VARCHAR( 50 ) NULL,MODIFY post_country VARCHAR( 50 ) NULL");
830
+			} catch(Exception $e) {
831
+				error_log( 'Error: ' . $e->getMessage() );
832
+			}
833
+		}
834
+	}
835 835
 }
Please login to merge, or discard this patch.
Spacing   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
 global $wpdb;
11 11
 
12
-if (get_option('geodirectory' . '_db_version') != GEODIRECTORY_VERSION) {
12
+if (get_option('geodirectory'.'_db_version') != GEODIRECTORY_VERSION) {
13 13
     /**
14 14
      * Include custom database table related functions.
15 15
      *
@@ -48,9 +48,9 @@  discard block
 block discarded – undo
48 48
 
49 49
 
50 50
 
51
-    add_action('init', 'gd_fix_cpt_rewrite_slug', 11);// this needs to be kept for a few versions
51
+    add_action('init', 'gd_fix_cpt_rewrite_slug', 11); // this needs to be kept for a few versions
52 52
 
53
-    update_option('geodirectory' . '_db_version', GEODIRECTORY_VERSION);
53
+    update_option('geodirectory'.'_db_version', GEODIRECTORY_VERSION);
54 54
 
55 55
 }
56 56
 
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
  * @since 1.0.0
87 87
  * @package GeoDirectory
88 88
  */
89
-function geodir_upgrade_146(){
89
+function geodir_upgrade_146() {
90 90
     gd_convert_virtual_pages();
91 91
 }
92 92
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
  * @since 1.5.0
97 97
  * @package GeoDirectory
98 98
  */
99
-function geodir_upgrade_150(){
99
+function geodir_upgrade_150() {
100 100
     gd_fix_cpt_rewrite_slug();
101 101
 }
102 102
 
@@ -108,12 +108,12 @@  discard block
 block discarded – undo
108 108
  * @since 1.4.8
109 109
  * @package GeoDirectory
110 110
  */
111
-function geodir_upgrade_148(){
111
+function geodir_upgrade_148() {
112 112
     /*
113 113
      * Blank the users google password if present as we now use oAuth 2.0
114 114
      */
115
-    update_option('geodir_ga_pass','');
116
-    update_option('geodir_ga_user','');
115
+    update_option('geodir_ga_pass', '');
116
+    update_option('geodir_ga_user', '');
117 117
 
118 118
 }
119 119
 
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
  * @since 1.5.3
125 125
  * @package GeoDirectory
126 126
  */
127
-function geodir_upgrade_153(){
127
+function geodir_upgrade_153() {
128 128
     geodir_create_page(esc_sql(_x('gd-info', 'page_slug', 'geodirectory')), 'geodir_info_page', __('Info', 'geodirectory'), '');
129 129
     geodir_create_page(esc_sql(_x('gd-login', 'page_slug', 'geodirectory')), 'geodir_login_page', __('Login', 'geodirectory'), '');
130 130
 }
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
  * @since 1.5.3
136 136
  * @package GeoDirectory
137 137
  */
138
-function geodir_upgrade_154(){
138
+function geodir_upgrade_154() {
139 139
     geodir_create_page(esc_sql(_x('gd-home', 'page_slug', 'geodirectory')), 'geodir_home_page', __('GD Home page', 'geodirectory'), '');
140 140
 }
141 141
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
  * @since 1.5.2
146 146
  * @package GeoDirectory
147 147
  */
148
-function geodir_upgrade_152(){
148
+function geodir_upgrade_152() {
149 149
     gd_fix_address_detail_table_limit();
150 150
 }
151 151
 
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 function geodir_fix_review_date()
182 182
 {
183 183
     global $wpdb;
184
-    $wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.post_date = c.comment_date WHERE gdr.post_date='0000-00-00 00:00:00'");
184
+    $wpdb->query("UPDATE ".GEODIR_REVIEW_TABLE." gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.post_date = c.comment_date WHERE gdr.post_date='0000-00-00 00:00:00'");
185 185
 }
186 186
 
187 187
 /**
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
 function geodir_fix_review_post_status()
195 195
 {
196 196
     global $wpdb;
197
-    $wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->posts p ON gdr.post_id=p.ID SET gdr.post_status = 1 WHERE gdr.post_status IS NULL AND p.post_status='publish'");
197
+    $wpdb->query("UPDATE ".GEODIR_REVIEW_TABLE." gdr JOIN $wpdb->posts p ON gdr.post_id=p.ID SET gdr.post_status = 1 WHERE gdr.post_status IS NULL AND p.post_status='publish'");
198 198
 }
199 199
 
200 200
 /**
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
 function geodir_fix_review_content()
209 209
 {
210 210
     global $wpdb;
211
-    if ($wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.comment_content = c.comment_content WHERE gdr.comment_content IS NULL")) {
211
+    if ($wpdb->query("UPDATE ".GEODIR_REVIEW_TABLE." gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.comment_content = c.comment_content WHERE gdr.comment_content IS NULL")) {
212 212
         return true;
213 213
     } else {
214 214
         return false;
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
         foreach ($all_postypes as $key) {
234 234
             // update each GD CTP
235 235
 
236
-            $wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN " . $wpdb->prefix . "geodir_" . $key . "_detail d ON gdr.post_id=d.post_id SET gdr.post_latitude = d.post_latitude, gdr.post_longitude = d.post_longitude, gdr.post_city = d.post_city,  gdr.post_region=d.post_region, gdr.post_country=d.post_country WHERE gdr.post_latitude IS NULL OR gdr.post_city IS NULL");
236
+            $wpdb->query("UPDATE ".GEODIR_REVIEW_TABLE." gdr JOIN ".$wpdb->prefix."geodir_".$key."_detail d ON gdr.post_id=d.post_id SET gdr.post_latitude = d.post_latitude, gdr.post_longitude = d.post_longitude, gdr.post_city = d.post_city,  gdr.post_region=d.post_region, gdr.post_country=d.post_country WHERE gdr.post_latitude IS NULL OR gdr.post_city IS NULL");
237 237
 
238 238
         }
239 239
         return true;
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
     if (!empty($all_postypes)) {
258 258
         foreach ($all_postypes as $key) {
259 259
             // update each GD CTP
260
-            $reviews = $wpdb->get_results("SELECT post_id FROM " . $wpdb->prefix . "geodir_" . $key . "_detail d");
260
+            $reviews = $wpdb->get_results("SELECT post_id FROM ".$wpdb->prefix."geodir_".$key."_detail d");
261 261
 
262 262
             if (!empty($reviews)) {
263 263
                 foreach ($reviews as $post_id) {
@@ -272,51 +272,51 @@  discard block
 block discarded – undo
272 272
 }
273 273
 
274 274
 
275
-function gd_convert_custom_field_display(){
275
+function gd_convert_custom_field_display() {
276 276
     global $wpdb;
277 277
 
278
-    $field_info = $wpdb->get_results("select * from " . GEODIR_CUSTOM_FIELDS_TABLE);
278
+    $field_info = $wpdb->get_results("select * from ".GEODIR_CUSTOM_FIELDS_TABLE);
279 279
 
280 280
     $has_run = get_option('gd_convert_custom_field_display');
281
-    if($has_run){return;}
281
+    if ($has_run) {return; }
282 282
 
283 283
     // set the field_type_key for standard fields
284 284
     $wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET field_type_key = field_type");
285 285
 
286 286
 
287
-    if(is_array( $field_info)){
287
+    if (is_array($field_info)) {
288 288
 
289
-        foreach( $field_info as $cf){
289
+        foreach ($field_info as $cf) {
290 290
 
291 291
             $id = $cf->id;
292 292
 
293
-            if(!property_exists($cf,'show_in') || !$id){return;}
293
+            if (!property_exists($cf, 'show_in') || !$id) {return; }
294 294
 
295 295
             $show_in_arr = array();
296 296
 
297
-            if($cf->is_default){
297
+            if ($cf->is_default) {
298 298
                 $show_in_arr[] = "[detail]";
299 299
             }
300 300
 
301
-            if($cf->show_on_detail){
301
+            if ($cf->show_on_detail) {
302 302
                 $show_in_arr[] = "[moreinfo]";
303 303
             }
304 304
 
305
-            if($cf->show_on_listing){
305
+            if ($cf->show_on_listing) {
306 306
                 $show_in_arr[] = "[listing]";
307 307
             }
308 308
 
309
-            if($cf->show_as_tab || $cf->htmlvar_name=='geodir_video' || $cf->htmlvar_name=='geodir_special_offers'){
309
+            if ($cf->show_as_tab || $cf->htmlvar_name == 'geodir_video' || $cf->htmlvar_name == 'geodir_special_offers') {
310 310
                 $show_in_arr[] = "[owntab]";
311 311
             }
312 312
 
313
-            if($cf->htmlvar_name=='post' || $cf->htmlvar_name=='geodir_contact' || $cf->htmlvar_name=='geodir_timing'){
313
+            if ($cf->htmlvar_name == 'post' || $cf->htmlvar_name == 'geodir_contact' || $cf->htmlvar_name == 'geodir_timing') {
314 314
                 $show_in_arr[] = "[mapbubble]";
315 315
             }
316 316
 
317
-            if(!empty($show_in_arr )){
318
-                $show_in_arr = implode(',',$show_in_arr);
319
-            }else{
317
+            if (!empty($show_in_arr)) {
318
+                $show_in_arr = implode(',', $show_in_arr);
319
+            } else {
320 320
                 $show_in_arr = '';
321 321
             }
322 322
 
@@ -324,7 +324,7 @@  discard block
 block discarded – undo
324 324
 
325 325
         }
326 326
 
327
-        update_option('gd_convert_custom_field_display',1);
327
+        update_option('gd_convert_custom_field_display', 1);
328 328
     }
329 329
 }
330 330
 
@@ -701,7 +701,7 @@  discard block
 block discarded – undo
701 701
 
702 702
     update_option('gd_theme_compats', $theme_compat);
703 703
 
704
-    gd_set_theme_compat();// set the compat pack if avail
704
+    gd_set_theme_compat(); // set the compat pack if avail
705 705
 }
706 706
 
707 707
 
@@ -712,61 +712,61 @@  discard block
 block discarded – undo
712 712
  * @package GeoDirectory
713 713
  * @global object $wpdb WordPress Database object.
714 714
  */
715
-function gd_convert_virtual_pages(){
715
+function gd_convert_virtual_pages() {
716 716
     global $wpdb;
717 717
 
718 718
     // Update the add listing page settings
719 719
     $add_listing_page = $wpdb->get_var(
720 720
         $wpdb->prepare(
721
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
721
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
722 722
             array('add-listing')
723 723
         )
724 724
     );
725 725
 
726
-    if($add_listing_page){
727
-        wp_update_post( array('ID' => $add_listing_page, 'post_status' => 'publish') );
728
-        update_option( 'geodir_add_listing_page', $add_listing_page);
726
+    if ($add_listing_page) {
727
+        wp_update_post(array('ID' => $add_listing_page, 'post_status' => 'publish'));
728
+        update_option('geodir_add_listing_page', $add_listing_page);
729 729
     }
730 730
 
731 731
     // Update the listing preview page settings
732 732
     $listing_preview_page = $wpdb->get_var(
733 733
         $wpdb->prepare(
734
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
734
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
735 735
             array('listing-preview')
736 736
         )
737 737
     );
738 738
 
739
-    if($listing_preview_page){
740
-        wp_update_post( array('ID' => $listing_preview_page, 'post_status' => 'publish') );
741
-        update_option( 'geodir_preview_page', $listing_preview_page);
739
+    if ($listing_preview_page) {
740
+        wp_update_post(array('ID' => $listing_preview_page, 'post_status' => 'publish'));
741
+        update_option('geodir_preview_page', $listing_preview_page);
742 742
     }
743 743
 
744 744
     // Update the listing success page settings
745 745
     $listing_success_page = $wpdb->get_var(
746 746
         $wpdb->prepare(
747
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
747
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
748 748
             array('listing-success')
749 749
         )
750 750
     );
751 751
 
752
-    if($listing_success_page){
753
-        wp_update_post( array('ID' => $listing_success_page, 'post_status' => 'publish') );
754
-        update_option( 'geodir_success_page', $listing_success_page);
752
+    if ($listing_success_page) {
753
+        wp_update_post(array('ID' => $listing_success_page, 'post_status' => 'publish'));
754
+        update_option('geodir_success_page', $listing_success_page);
755 755
     }
756 756
 
757 757
     // Update the listing success page settings
758 758
     $location_page = $wpdb->get_var(
759 759
         $wpdb->prepare(
760
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
760
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
761 761
             array('location')
762 762
         )
763 763
     );
764 764
 
765
-    if($location_page){
765
+    if ($location_page) {
766 766
         $location_slug = get_option('geodir_location_prefix');
767
-        if(!$location_slug ){$location_slug  = 'location';}
768
-        wp_update_post( array('ID' => $location_page, 'post_status' => 'publish','post_name' => $location_slug) );
769
-        update_option( 'geodir_location_page', $location_page);
767
+        if (!$location_slug) {$location_slug = 'location'; }
768
+        wp_update_post(array('ID' => $location_page, 'post_status' => 'publish', 'post_name' => $location_slug));
769
+        update_option('geodir_location_page', $location_page);
770 770
     }
771 771
 
772 772
 }
@@ -785,13 +785,13 @@  discard block
 block discarded – undo
785 785
     $post_types = get_option('geodir_post_types');
786 786
 
787 787
 
788
-    if (is_array($post_types)){
788
+    if (is_array($post_types)) {
789 789
 
790 790
         foreach ($post_types as $post_type => $args) {
791 791
 
792 792
 
793
-            if(isset($args['rewrite']['slug'])){
794
-                $args['rewrite']['slug'] = str_replace("/%gd_taxonomy%","",$args['rewrite']['slug']);
793
+            if (isset($args['rewrite']['slug'])) {
794
+                $args['rewrite']['slug'] = str_replace("/%gd_taxonomy%", "", $args['rewrite']['slug']);
795 795
             }
796 796
 
797 797
                 $alt_post_types[$post_type] = $args;
@@ -799,8 +799,8 @@  discard block
 block discarded – undo
799 799
         }
800 800
     }
801 801
 
802
-    if(!empty($alt_post_types)) {
803
-        update_option('geodir_post_types',$alt_post_types);
802
+    if (!empty($alt_post_types)) {
803
+        update_option('geodir_post_types', $alt_post_types);
804 804
         }
805 805
 
806 806
 
@@ -826,9 +826,9 @@  discard block
 block discarded – undo
826 826
         foreach ($all_postypes as $key) {
827 827
             // update each GD CTP
828 828
             try {
829
-                $wpdb->query("ALTER TABLE " . $wpdb->prefix . "geodir_" . $key . "_detail MODIFY post_city VARCHAR( 50 ) NULL,MODIFY post_region VARCHAR( 50 ) NULL,MODIFY post_country VARCHAR( 50 ) NULL");
830
-            } catch(Exception $e) {
831
-                error_log( 'Error: ' . $e->getMessage() );
829
+                $wpdb->query("ALTER TABLE ".$wpdb->prefix."geodir_".$key."_detail MODIFY post_city VARCHAR( 50 ) NULL,MODIFY post_region VARCHAR( 50 ) NULL,MODIFY post_country VARCHAR( 50 ) NULL");
830
+            } catch (Exception $e) {
831
+                error_log('Error: '.$e->getMessage());
832 832
             }
833 833
         }
834 834
     }
Please login to merge, or discard this patch.