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