@@ -1844,6 +1844,7 @@ discard block |
||
1844 | 1844 | * @since 1.0.0 |
1845 | 1845 | * @package GeoDirectory |
1846 | 1846 | * @global object $current_user Current user object. |
1847 | + * @param string|null $input |
|
1847 | 1848 | * @return array Returns parsed data as array. |
1848 | 1849 | */ |
1849 | 1850 | function geodir_str_getcsv($input, $delimiter = ",", $enclosure = '"', $escape = "\\") |
@@ -2373,7 +2374,6 @@ discard block |
||
2373 | 2374 | * |
2374 | 2375 | * @since 1.6.9 |
2375 | 2376 | * |
2376 | - * @param array $settings Array of GeoDirectory general settings. |
|
2377 | 2377 | * @return array Array of settings. |
2378 | 2378 | */ |
2379 | 2379 | function geodir_uninstall_settings($general_settings) { |
@@ -24,8 +24,11 @@ discard block |
||
24 | 24 | global $current_tab; |
25 | 25 | geodir_redirect_to_admin_panel_on_installed(); |
26 | 26 | $current_tab = (isset($_GET['tab']) && $_GET['tab'] != '') ? $_GET['tab'] : 'general_settings'; |
27 | - if (!(isset($_REQUEST['action']))) // this will avoid Ajax requests |
|
28 | - geodir_handle_option_form_submit($current_tab); // located in admin function.php |
|
27 | + if (!(isset($_REQUEST['action']))) { |
|
28 | + // this will avoid Ajax requests |
|
29 | + geodir_handle_option_form_submit($current_tab); |
|
30 | + } |
|
31 | + // located in admin function.php |
|
29 | 32 | /** |
30 | 33 | * Called on the WordPress 'admin_init' hook this hookis used to call everything for the GD settings pages in the admin area. |
31 | 34 | * |
@@ -324,8 +327,9 @@ discard block |
||
324 | 327 | if (!empty($notification) && get_option('geodir_tiny_editor') == '1') { |
325 | 328 | |
326 | 329 | foreach ($notification as $key => $value) { |
327 | - if ($value['type'] == 'textarea') |
|
328 | - $notification[$key]['type'] = 'editor'; |
|
330 | + if ($value['type'] == 'textarea') { |
|
331 | + $notification[$key]['type'] = 'editor'; |
|
332 | + } |
|
329 | 333 | } |
330 | 334 | |
331 | 335 | } |
@@ -350,8 +354,9 @@ discard block |
||
350 | 354 | if (!empty($design_setting) && get_option('geodir_tiny_editor') == '1') { |
351 | 355 | |
352 | 356 | foreach ($design_setting as $key => $value) { |
353 | - if ($value['type'] == 'textarea' && $value['id'] == 'geodir_term_condition_content') |
|
354 | - $design_setting[$key]['type'] = 'editor'; |
|
357 | + if ($value['type'] == 'textarea' && $value['id'] == 'geodir_term_condition_content') { |
|
358 | + $design_setting[$key]['type'] = 'editor'; |
|
359 | + } |
|
355 | 360 | } |
356 | 361 | |
357 | 362 | } |
@@ -470,9 +475,9 @@ discard block |
||
470 | 475 | class="gd-draggable-form-items gd-<?php echo $val['field_type'];?> geodir-sort-<?php echo $val['htmlvar_name'];?>" href="javascript:void(0);"> |
471 | 476 | <?php if (isset($val['field_icon']) && strpos($val['field_icon'], 'fa fa-') !== false) { |
472 | 477 | echo '<i class="'.$val['field_icon'].'" aria-hidden="true"></i>'; |
473 | - }elseif(isset($val['field_icon']) && $val['field_icon'] ){ |
|
478 | + } elseif(isset($val['field_icon']) && $val['field_icon'] ){ |
|
474 | 479 | echo '<b style="background-image: url("'.$val['field_icon'].'")"></b>'; |
475 | - }else{ |
|
480 | + } else{ |
|
476 | 481 | echo '<i class="fa fa-cog" aria-hidden="true"></i>'; |
477 | 482 | }?> |
478 | 483 | <?php echo $val['site_title'];?> |
@@ -702,9 +707,9 @@ discard block |
||
702 | 707 | <?php |
703 | 708 | if($type=='predefined'){ |
704 | 709 | $cfs = geodir_custom_fields_predefined($listing_type); |
705 | - }elseif($type=='custom'){ |
|
710 | + } elseif($type=='custom'){ |
|
706 | 711 | $cfs = geodir_custom_fields_custom($listing_type); |
707 | - }else{ |
|
712 | + } else{ |
|
708 | 713 | $cfs = geodir_custom_fields($listing_type); |
709 | 714 | ?> |
710 | 715 | <ul class="full gd-cf-tooltip-wrap"> |
@@ -759,7 +764,7 @@ discard block |
||
759 | 764 | </li> |
760 | 765 | <?php |
761 | 766 | } |
762 | - }else{ |
|
767 | + } else{ |
|
763 | 768 | _e('There are no custom fields here yet.', 'geodirectory'); |
764 | 769 | } |
765 | 770 | ?> |
@@ -956,8 +961,9 @@ discard block |
||
956 | 961 | |
957 | 962 | if (!get_option('geodir_remove_unnecessary_fields')) { |
958 | 963 | |
959 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $plugin_prefix . "gd_place_detail WHERE field = 'categories'")) |
|
960 | - $wpdb->query("ALTER TABLE `" . $plugin_prefix . "gd_place_detail` DROP `categories`"); |
|
964 | + if ($wpdb->get_var("SHOW COLUMNS FROM " . $plugin_prefix . "gd_place_detail WHERE field = 'categories'")) { |
|
965 | + $wpdb->query("ALTER TABLE `" . $plugin_prefix . "gd_place_detail` DROP `categories`"); |
|
966 | + } |
|
961 | 967 | |
962 | 968 | update_option('geodir_remove_unnecessary_fields', '1'); |
963 | 969 | |
@@ -993,8 +999,9 @@ discard block |
||
993 | 999 | break; |
994 | 1000 | |
995 | 1001 | case 'diagnosis-fix' : |
996 | - if (isset($_REQUEST['diagnose_this']) && $_REQUEST['diagnose_this'] != '') |
|
997 | - $diagnose_this = sanitize_text_field($_REQUEST['diagnose_this']); |
|
1002 | + if (isset($_REQUEST['diagnose_this']) && $_REQUEST['diagnose_this'] != '') { |
|
1003 | + $diagnose_this = sanitize_text_field($_REQUEST['diagnose_this']); |
|
1004 | + } |
|
998 | 1005 | call_user_func('geodir_diagnose_' . $diagnose_this); |
999 | 1006 | exit(); |
1000 | 1007 | break; |
@@ -1609,11 +1616,11 @@ discard block |
||
1609 | 1616 | ////////////////////////////////// |
1610 | 1617 | $option_value = get_option('geodir_home_page'); |
1611 | 1618 | $page = get_post($option_value); |
1612 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1619 | + if(!empty($page)){$page_found = $page->ID;} else{$page_found = '';} |
|
1613 | 1620 | |
1614 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1615 | - $output_str .= "<li>" . __('GD Home page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1616 | - else { |
|
1621 | + if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') { |
|
1622 | + $output_str .= "<li>" . __('GD Home page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1623 | + } else { |
|
1617 | 1624 | $is_error_during_diagnose = true; |
1618 | 1625 | $output_str .= "<li><strong>" . __('GD Home page is missing.', 'geodirectory') . "</strong></li>"; |
1619 | 1626 | if ($fix) { |
@@ -1634,11 +1641,11 @@ discard block |
||
1634 | 1641 | ////////////////////////////////// |
1635 | 1642 | $option_value = get_option('geodir_add_listing_page'); |
1636 | 1643 | $page = get_post($option_value); |
1637 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1644 | + if(!empty($page)){$page_found = $page->ID;} else{$page_found = '';} |
|
1638 | 1645 | |
1639 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1640 | - $output_str .= "<li>" . __('Add Listing page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1641 | - else { |
|
1646 | + if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') { |
|
1647 | + $output_str .= "<li>" . __('Add Listing page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1648 | + } else { |
|
1642 | 1649 | $is_error_during_diagnose = true; |
1643 | 1650 | $output_str .= "<li><strong>" . __('Add Listing page is missing.', 'geodirectory') . "</strong></li>"; |
1644 | 1651 | if ($fix) { |
@@ -1660,11 +1667,11 @@ discard block |
||
1660 | 1667 | ////////////////////////////////// |
1661 | 1668 | $option_value = get_option('geodir_preview_page'); |
1662 | 1669 | $page = get_post($option_value); |
1663 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1670 | + if(!empty($page)){$page_found = $page->ID;} else{$page_found = '';} |
|
1664 | 1671 | |
1665 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1666 | - $output_str .= "<li>" . __('Listing Preview page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1667 | - else { |
|
1672 | + if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') { |
|
1673 | + $output_str .= "<li>" . __('Listing Preview page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1674 | + } else { |
|
1668 | 1675 | $is_error_during_diagnose = true; |
1669 | 1676 | $output_str .= "<li><strong>" . __('Listing Preview page is missing.', 'geodirectory') . "</strong></li>"; |
1670 | 1677 | if ($fix) { |
@@ -1685,11 +1692,11 @@ discard block |
||
1685 | 1692 | ////////////////////////////////// |
1686 | 1693 | $option_value = get_option('geodir_success_page'); |
1687 | 1694 | $page = get_post($option_value); |
1688 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1695 | + if(!empty($page)){$page_found = $page->ID;} else{$page_found = '';} |
|
1689 | 1696 | |
1690 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1691 | - $output_str .= "<li>" . __('Listing Success page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1692 | - else { |
|
1697 | + if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') { |
|
1698 | + $output_str .= "<li>" . __('Listing Success page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1699 | + } else { |
|
1693 | 1700 | $is_error_during_diagnose = true; |
1694 | 1701 | $output_str .= "<li><strong>" . __('Listing Success page is missing.', 'geodirectory') . "</strong></li>"; |
1695 | 1702 | if ($fix) { |
@@ -1710,11 +1717,11 @@ discard block |
||
1710 | 1717 | ////////////////////////////////// |
1711 | 1718 | $option_value = get_option('geodir_info_page'); |
1712 | 1719 | $page = get_post($option_value); |
1713 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1720 | + if(!empty($page)){$page_found = $page->ID;} else{$page_found = '';} |
|
1714 | 1721 | |
1715 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1716 | - $output_str .= "<li>" . __('Info page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1717 | - else { |
|
1722 | + if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') { |
|
1723 | + $output_str .= "<li>" . __('Info page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1724 | + } else { |
|
1718 | 1725 | $is_error_during_diagnose = true; |
1719 | 1726 | $output_str .= "<li><strong>" . __('Info page is missing.', 'geodirectory') . "</strong></li>"; |
1720 | 1727 | if ($fix) { |
@@ -1735,11 +1742,11 @@ discard block |
||
1735 | 1742 | ////////////////////////////////// |
1736 | 1743 | $option_value = get_option('geodir_login_page'); |
1737 | 1744 | $page = get_post($option_value); |
1738 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1745 | + if(!empty($page)){$page_found = $page->ID;} else{$page_found = '';} |
|
1739 | 1746 | |
1740 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1741 | - $output_str .= "<li>" . __('Login page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1742 | - else { |
|
1747 | + if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') { |
|
1748 | + $output_str .= "<li>" . __('Login page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1749 | + } else { |
|
1743 | 1750 | $is_error_during_diagnose = true; |
1744 | 1751 | $output_str .= "<li><strong>" . __('Login page is missing.', 'geodirectory') . "</strong></li>"; |
1745 | 1752 | if ($fix) { |
@@ -1760,11 +1767,11 @@ discard block |
||
1760 | 1767 | ////////////////////////////////// |
1761 | 1768 | $option_value = get_option('geodir_location_page'); |
1762 | 1769 | $page = get_post($option_value); |
1763 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1770 | + if(!empty($page)){$page_found = $page->ID;} else{$page_found = '';} |
|
1764 | 1771 | |
1765 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1766 | - $output_str .= "<li>" . __('Location page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1767 | - else { |
|
1772 | + if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') { |
|
1773 | + $output_str .= "<li>" . __('Location page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1774 | + } else { |
|
1768 | 1775 | $is_error_during_diagnose = true; |
1769 | 1776 | $output_str .= "<li><strong>" . __('Location page is missing.', 'geodirectory') . "</strong></li>"; |
1770 | 1777 | if ($fix) { |
@@ -2209,8 +2216,9 @@ discard block |
||
2209 | 2216 | ); |
2210 | 2217 | |
2211 | 2218 | $post_location_info = $request_info['post_location']; |
2212 | - if ($location_id = geodir_add_new_location($post_location_info)) |
|
2213 | - $post_location_id = $location_id; |
|
2219 | + if ($location_id = geodir_add_new_location($post_location_info)) { |
|
2220 | + $post_location_id = $location_id; |
|
2221 | + } |
|
2214 | 2222 | } else { |
2215 | 2223 | $post_location_id = 0; |
2216 | 2224 | } |
@@ -2273,8 +2281,9 @@ discard block |
||
2273 | 2281 | $attachment_set = ''; |
2274 | 2282 | |
2275 | 2283 | foreach ($attachment as $key => $val) { |
2276 | - if ($val != '') |
|
2277 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
2284 | + if ($val != '') { |
|
2285 | + $attachment_set .= $key . " = '" . $val . "', "; |
|
2286 | + } |
|
2278 | 2287 | } |
2279 | 2288 | $attachment_set = trim($attachment_set, ", "); |
2280 | 2289 | |
@@ -2370,8 +2379,7 @@ discard block |
||
2370 | 2379 | |
2371 | 2380 | $parts = json_decode($response['body']); |
2372 | 2381 | //print_r($parts); |
2373 | - if(!isset($parts->access_token)){echo $error_msg." - #1";exit;} |
|
2374 | - else{ |
|
2382 | + if(!isset($parts->access_token)){echo $error_msg." - #1";exit;} else{ |
|
2375 | 2383 | |
2376 | 2384 | update_option('gd_ga_access_token', $parts->access_token); |
2377 | 2385 | update_option('gd_ga_refresh_token', $parts->refresh_token); |
@@ -2379,17 +2387,16 @@ discard block |
||
2379 | 2387 | } |
2380 | 2388 | |
2381 | 2389 | |
2382 | - } |
|
2383 | - elseif(!empty($response['response']['code'])) { |
|
2390 | + } elseif(!empty($response['response']['code'])) { |
|
2384 | 2391 | $parts = json_decode($response['body']); |
2385 | 2392 | |
2386 | 2393 | if(isset($parts->error)){ |
2387 | 2394 | echo $parts->error.": ".$parts->error_description;exit; |
2388 | - }else{ |
|
2395 | + } else{ |
|
2389 | 2396 | echo $error_msg." - #2";exit; |
2390 | 2397 | } |
2391 | 2398 | |
2392 | - }else{ |
|
2399 | + } else{ |
|
2393 | 2400 | |
2394 | 2401 | echo $error_msg." - #3";exit; |
2395 | 2402 | |
@@ -2527,7 +2534,7 @@ discard block |
||
2527 | 2534 | ob_start(); |
2528 | 2535 | geodir_diagnose_version_clear(); |
2529 | 2536 | ob_end_clean(); |
2530 | - }else{ |
|
2537 | + } else{ |
|
2531 | 2538 | $output_str .= "<li><strong>" . __('Something went wrong.', 'geodirectory') . "</strong></li>"; |
2532 | 2539 | } |
2533 | 2540 |
@@ -10,33 +10,33 @@ discard block |
||
10 | 10 | |
11 | 11 | add_action('admin_init', 'geodir_admin_init'); |
12 | 12 | if (!function_exists('geodir_admin_init')) { |
13 | - /** |
|
14 | - * Adds GD setting pages in admin. |
|
15 | - * |
|
16 | - * @since 1.0.0 |
|
17 | - * @package GeoDirectory |
|
18 | - * @global string $current_tab The current settings tab name. |
|
19 | - */ |
|
20 | - function geodir_admin_init() |
|
21 | - { |
|
22 | - |
|
23 | - if (is_admin()): |
|
24 | - global $current_tab; |
|
25 | - geodir_redirect_to_admin_panel_on_installed(); |
|
26 | - $current_tab = (isset($_GET['tab']) && $_GET['tab'] != '') ? $_GET['tab'] : 'general_settings'; |
|
27 | - if (!(isset($_REQUEST['action']))) // this will avoid Ajax requests |
|
28 | - geodir_handle_option_form_submit($current_tab); // located in admin function.php |
|
29 | - /** |
|
30 | - * Called on the WordPress 'admin_init' hook this hookis used to call everything for the GD settings pages in the admin area. |
|
31 | - * |
|
32 | - * @since 1.0.0 |
|
33 | - */ |
|
34 | - do_action('admin_panel_init'); |
|
35 | - add_action('geodir_admin_option_form', 'geodir_get_admin_option_form', 1); |
|
36 | - |
|
37 | - |
|
38 | - endif; |
|
39 | - } |
|
13 | + /** |
|
14 | + * Adds GD setting pages in admin. |
|
15 | + * |
|
16 | + * @since 1.0.0 |
|
17 | + * @package GeoDirectory |
|
18 | + * @global string $current_tab The current settings tab name. |
|
19 | + */ |
|
20 | + function geodir_admin_init() |
|
21 | + { |
|
22 | + |
|
23 | + if (is_admin()): |
|
24 | + global $current_tab; |
|
25 | + geodir_redirect_to_admin_panel_on_installed(); |
|
26 | + $current_tab = (isset($_GET['tab']) && $_GET['tab'] != '') ? $_GET['tab'] : 'general_settings'; |
|
27 | + if (!(isset($_REQUEST['action']))) // this will avoid Ajax requests |
|
28 | + geodir_handle_option_form_submit($current_tab); // located in admin function.php |
|
29 | + /** |
|
30 | + * Called on the WordPress 'admin_init' hook this hookis used to call everything for the GD settings pages in the admin area. |
|
31 | + * |
|
32 | + * @since 1.0.0 |
|
33 | + */ |
|
34 | + do_action('admin_panel_init'); |
|
35 | + add_action('geodir_admin_option_form', 'geodir_get_admin_option_form', 1); |
|
36 | + |
|
37 | + |
|
38 | + endif; |
|
39 | + } |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | /** |
@@ -47,10 +47,10 @@ discard block |
||
47 | 47 | */ |
48 | 48 | function geodir_redirect_to_admin_panel_on_installed() |
49 | 49 | { |
50 | - if (get_option('geodir_installation_redirect', false)) { |
|
51 | - delete_option('geodir_installation_redirect'); |
|
52 | - wp_redirect(admin_url('admin.php?page=geodirectory&installed=yes')); |
|
53 | - } |
|
50 | + if (get_option('geodir_installation_redirect', false)) { |
|
51 | + delete_option('geodir_installation_redirect'); |
|
52 | + wp_redirect(admin_url('admin.php?page=geodirectory&installed=yes')); |
|
53 | + } |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | */ |
63 | 63 | function geodir_get_admin_option_form($current_tab) |
64 | 64 | { |
65 | - geodir_admin_option_form($current_tab);// defined in admin template tags.php |
|
65 | + geodir_admin_option_form($current_tab);// defined in admin template tags.php |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | |
@@ -86,24 +86,24 @@ discard block |
||
86 | 86 | */ |
87 | 87 | function geodir_conditional_admin_script_load() |
88 | 88 | { |
89 | - global $pagenow; |
|
89 | + global $pagenow; |
|
90 | 90 | |
91 | 91 | // Get the current post type |
92 | 92 | $post_type = geodir_admin_current_post_type(); |
93 | 93 | $geodir_post_types = geodir_get_posttypes(); |
94 | 94 | |
95 | 95 | if ((isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') || (($pagenow == 'post.php' || $pagenow == 'post-new.php' || $pagenow == 'edit.php') && $post_type && in_array($post_type, $geodir_post_types)) || ($pagenow == 'edit-tags.php' || $pagenow == 'term.php' || $pagenow == 'edit-comments.php' || $pagenow == 'comment.php')) { |
96 | - add_action('admin_enqueue_scripts', 'geodir_admin_scripts'); |
|
97 | - add_action('admin_enqueue_scripts', 'geodir_admin_styles'); |
|
98 | - add_action('admin_enqueue_scripts', 'geodir_admin_dequeue_scripts', 100); |
|
96 | + add_action('admin_enqueue_scripts', 'geodir_admin_scripts'); |
|
97 | + add_action('admin_enqueue_scripts', 'geodir_admin_styles'); |
|
98 | + add_action('admin_enqueue_scripts', 'geodir_admin_dequeue_scripts', 100); |
|
99 | 99 | |
100 | - // Disable VC editor for GD post types. |
|
101 | - if (class_exists('Vc_Role_Access_Controller')) { |
|
102 | - add_filter( 'vc_role_access_with_post_types_can', '__return_false', 100 ); |
|
103 | - } |
|
104 | - } |
|
100 | + // Disable VC editor for GD post types. |
|
101 | + if (class_exists('Vc_Role_Access_Controller')) { |
|
102 | + add_filter( 'vc_role_access_with_post_types_can', '__return_false', 100 ); |
|
103 | + } |
|
104 | + } |
|
105 | 105 | |
106 | - add_action('admin_enqueue_scripts', 'geodir_admin_styles_req'); |
|
106 | + add_action('admin_enqueue_scripts', 'geodir_admin_styles_req'); |
|
107 | 107 | |
108 | 108 | } |
109 | 109 | |
@@ -138,12 +138,12 @@ discard block |
||
138 | 138 | */ |
139 | 139 | function create_default_admin_main_nav() |
140 | 140 | { |
141 | - add_filter('geodir_settings_tabs_array', 'geodir_default_admin_main_tabs', 1); |
|
142 | - add_filter('geodir_settings_tabs_array', 'places_custom_fields_tab', 2); |
|
143 | - add_filter('geodir_settings_tabs_array', 'geodir_compatibility_setting_tab', 90); |
|
144 | - add_filter('geodir_settings_tabs_array', 'geodir_tools_setting_tab', 95); |
|
145 | - add_filter('geodir_settings_tabs_array', 'geodir_extend_geodirectory_setting_tab', 100); |
|
146 | - //add_filter('geodir_settings_tabs_array', 'geodir_hide_set_location_default',3); |
|
141 | + add_filter('geodir_settings_tabs_array', 'geodir_default_admin_main_tabs', 1); |
|
142 | + add_filter('geodir_settings_tabs_array', 'places_custom_fields_tab', 2); |
|
143 | + add_filter('geodir_settings_tabs_array', 'geodir_compatibility_setting_tab', 90); |
|
144 | + add_filter('geodir_settings_tabs_array', 'geodir_tools_setting_tab', 95); |
|
145 | + add_filter('geodir_settings_tabs_array', 'geodir_extend_geodirectory_setting_tab', 100); |
|
146 | + //add_filter('geodir_settings_tabs_array', 'geodir_hide_set_location_default',3); |
|
147 | 147 | |
148 | 148 | } |
149 | 149 | |
@@ -157,19 +157,19 @@ discard block |
||
157 | 157 | */ |
158 | 158 | function geodir_admin_list_columns() |
159 | 159 | { |
160 | - if ($post_types = geodir_get_posttypes()) { |
|
160 | + if ($post_types = geodir_get_posttypes()) { |
|
161 | 161 | |
162 | - foreach ($post_types as $post_type): |
|
163 | - add_filter("manage_edit-{$post_type}_columns", 'geodir_edit_post_columns', 100); |
|
164 | - //Filter-Payment-Manager to show Package |
|
165 | - add_action("manage_{$post_type}_posts_custom_column", 'geodir_manage_post_columns', 10, 2); |
|
162 | + foreach ($post_types as $post_type): |
|
163 | + add_filter("manage_edit-{$post_type}_columns", 'geodir_edit_post_columns', 100); |
|
164 | + //Filter-Payment-Manager to show Package |
|
165 | + add_action("manage_{$post_type}_posts_custom_column", 'geodir_manage_post_columns', 10, 2); |
|
166 | 166 | |
167 | - add_filter("manage_edit-{$post_type}_sortable_columns", 'geodir_post_sortable_columns'); |
|
167 | + add_filter("manage_edit-{$post_type}_sortable_columns", 'geodir_post_sortable_columns'); |
|
168 | 168 | |
169 | - // Filter bulk actions |
|
170 | - add_filter("bulk_actions-edit-{$post_type}", 'geodir_filter_bulk_actions', 10, 1); |
|
171 | - endforeach; |
|
172 | - } |
|
169 | + // Filter bulk actions |
|
170 | + add_filter("bulk_actions-edit-{$post_type}", 'geodir_filter_bulk_actions', 10, 1); |
|
171 | + endforeach; |
|
172 | + } |
|
173 | 173 | } |
174 | 174 | |
175 | 175 | /** |
@@ -182,15 +182,15 @@ discard block |
||
182 | 182 | */ |
183 | 183 | function geodir_default_admin_main_tabs($tabs) |
184 | 184 | { |
185 | - return $tabs = array( |
|
186 | - 'general_settings' => array('label' => __('General', 'geodirectory')), |
|
187 | - 'design_settings' => array('label' => __('Design', 'geodirectory')), |
|
188 | - 'permalink_settings' => array('label' => __('Permalinks', 'geodirectory')), |
|
189 | - 'title_meta_settings' => array('label' => __('Titles & Metas', 'geodirectory')), |
|
190 | - 'notifications_settings' => array('label' => __('Notifications', 'geodirectory')), |
|
191 | - 'default_location_settings' => array('label' => __('Set Default Location', 'geodirectory')), |
|
192 | - |
|
193 | - ); |
|
185 | + return $tabs = array( |
|
186 | + 'general_settings' => array('label' => __('General', 'geodirectory')), |
|
187 | + 'design_settings' => array('label' => __('Design', 'geodirectory')), |
|
188 | + 'permalink_settings' => array('label' => __('Permalinks', 'geodirectory')), |
|
189 | + 'title_meta_settings' => array('label' => __('Titles & Metas', 'geodirectory')), |
|
190 | + 'notifications_settings' => array('label' => __('Notifications', 'geodirectory')), |
|
191 | + 'default_location_settings' => array('label' => __('Set Default Location', 'geodirectory')), |
|
192 | + |
|
193 | + ); |
|
194 | 194 | } |
195 | 195 | |
196 | 196 | add_action('do_meta_boxes', 'geodir_remove_image_box'); |
@@ -203,16 +203,16 @@ discard block |
||
203 | 203 | */ |
204 | 204 | function geodir_remove_image_box() |
205 | 205 | { |
206 | - global $post; |
|
206 | + global $post; |
|
207 | 207 | |
208 | - $geodir_posttypes = geodir_get_posttypes(); |
|
208 | + $geodir_posttypes = geodir_get_posttypes(); |
|
209 | 209 | |
210 | - if (isset($post) && in_array($post->post_type, $geodir_posttypes)): |
|
210 | + if (isset($post) && in_array($post->post_type, $geodir_posttypes)): |
|
211 | 211 | |
212 | - remove_meta_box('postimagediv', $post->post_type, 'side'); |
|
213 | - remove_meta_box('revisionsdiv', $post->post_type, 'normal'); |
|
212 | + remove_meta_box('postimagediv', $post->post_type, 'side'); |
|
213 | + remove_meta_box('revisionsdiv', $post->post_type, 'normal'); |
|
214 | 214 | |
215 | - endif; |
|
215 | + endif; |
|
216 | 216 | |
217 | 217 | } |
218 | 218 | |
@@ -227,27 +227,27 @@ discard block |
||
227 | 227 | */ |
228 | 228 | function geodir_meta_box_add() |
229 | 229 | { |
230 | - global $post; |
|
230 | + global $post; |
|
231 | 231 | |
232 | - $geodir_post_types = geodir_get_posttypes('array'); |
|
233 | - $geodir_posttypes = array_keys($geodir_post_types); |
|
232 | + $geodir_post_types = geodir_get_posttypes('array'); |
|
233 | + $geodir_posttypes = array_keys($geodir_post_types); |
|
234 | 234 | |
235 | - if (isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)): |
|
235 | + if (isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)): |
|
236 | 236 | |
237 | - $geodir_posttype = $post->post_type; |
|
238 | - $post_typename = __($geodir_post_types[$geodir_posttype]['labels']['singular_name'], 'geodirectory'); |
|
239 | - $post_typename = geodir_ucwords($post_typename); |
|
237 | + $geodir_posttype = $post->post_type; |
|
238 | + $post_typename = __($geodir_post_types[$geodir_posttype]['labels']['singular_name'], 'geodirectory'); |
|
239 | + $post_typename = geodir_ucwords($post_typename); |
|
240 | 240 | |
241 | - // Filter-Payment-Manager |
|
241 | + // Filter-Payment-Manager |
|
242 | 242 | |
243 | - add_meta_box('geodir_post_images', $post_typename . ' ' . __('Attachments', 'geodirectory'), 'geodir_post_attachments', $geodir_posttype, 'side'); |
|
243 | + add_meta_box('geodir_post_images', $post_typename . ' ' . __('Attachments', 'geodirectory'), 'geodir_post_attachments', $geodir_posttype, 'side'); |
|
244 | 244 | |
245 | - add_meta_box('geodir_post_info', $post_typename . ' ' . __('Information', 'geodirectory'), 'geodir_post_info_setting', $geodir_posttype, 'normal', 'high'); |
|
245 | + add_meta_box('geodir_post_info', $post_typename . ' ' . __('Information', 'geodirectory'), 'geodir_post_info_setting', $geodir_posttype, 'normal', 'high'); |
|
246 | 246 | |
247 | - // no need of this box as all fields moved to main information box |
|
248 | - //add_meta_box( 'geodir_post_addinfo', $post_typename. ' ' .__('Additional Information' , 'geodirectory'), 'geodir_post_addinfo_setting', $geodir_posttype,'normal', 'high' ); |
|
247 | + // no need of this box as all fields moved to main information box |
|
248 | + //add_meta_box( 'geodir_post_addinfo', $post_typename. ' ' .__('Additional Information' , 'geodirectory'), 'geodir_post_addinfo_setting', $geodir_posttype,'normal', 'high' ); |
|
249 | 249 | |
250 | - endif; |
|
250 | + endif; |
|
251 | 251 | |
252 | 252 | } |
253 | 253 | |
@@ -271,23 +271,23 @@ discard block |
||
271 | 271 | function geodir_hide_post_taxonomy_meta_boxes() |
272 | 272 | { |
273 | 273 | |
274 | - $geodir_post_types = get_option('geodir_post_types'); |
|
274 | + $geodir_post_types = get_option('geodir_post_types'); |
|
275 | 275 | |
276 | - if (!empty($geodir_post_types)) { |
|
277 | - foreach ($geodir_post_types as $geodir_post_type => $geodir_posttype_info) { |
|
276 | + if (!empty($geodir_post_types)) { |
|
277 | + foreach ($geodir_post_types as $geodir_post_type => $geodir_posttype_info) { |
|
278 | 278 | |
279 | - $gd_taxonomy = geodir_get_taxonomies($geodir_post_type); |
|
279 | + $gd_taxonomy = geodir_get_taxonomies($geodir_post_type); |
|
280 | 280 | |
281 | - if(!empty($gd_taxonomy)) { |
|
282 | - foreach ($gd_taxonomy as $tax) { |
|
281 | + if(!empty($gd_taxonomy)) { |
|
282 | + foreach ($gd_taxonomy as $tax) { |
|
283 | 283 | |
284 | - remove_meta_box($tax . 'div', $geodir_post_type, 'normal'); |
|
284 | + remove_meta_box($tax . 'div', $geodir_post_type, 'normal'); |
|
285 | 285 | |
286 | - } |
|
287 | - } |
|
286 | + } |
|
287 | + } |
|
288 | 288 | |
289 | - } |
|
290 | - } |
|
289 | + } |
|
290 | + } |
|
291 | 291 | } |
292 | 292 | |
293 | 293 | add_filter('geodir_add_listing_map_restrict', 'geodir_add_listing_map_restrict'); |
@@ -301,12 +301,12 @@ discard block |
||
301 | 301 | */ |
302 | 302 | function geodir_add_listing_map_restrict($map_restirct) |
303 | 303 | { |
304 | - if (is_admin()) { |
|
305 | - if (isset($_REQUEST['tab']) && $_REQUEST['tab'] == 'default_location_settings') { |
|
306 | - $map_restirct = false; |
|
307 | - } |
|
308 | - } |
|
309 | - return $map_restirct; |
|
304 | + if (is_admin()) { |
|
305 | + if (isset($_REQUEST['tab']) && $_REQUEST['tab'] == 'default_location_settings') { |
|
306 | + $map_restirct = false; |
|
307 | + } |
|
308 | + } |
|
309 | + return $map_restirct; |
|
310 | 310 | } |
311 | 311 | |
312 | 312 | |
@@ -325,16 +325,16 @@ discard block |
||
325 | 325 | function geodir_enable_editor_on_notifications($notification) |
326 | 326 | { |
327 | 327 | |
328 | - if (!empty($notification) && get_option('geodir_tiny_editor') == '1') { |
|
328 | + if (!empty($notification) && get_option('geodir_tiny_editor') == '1') { |
|
329 | 329 | |
330 | - foreach ($notification as $key => $value) { |
|
331 | - if ($value['type'] == 'textarea') |
|
332 | - $notification[$key]['type'] = 'editor'; |
|
333 | - } |
|
330 | + foreach ($notification as $key => $value) { |
|
331 | + if ($value['type'] == 'textarea') |
|
332 | + $notification[$key]['type'] = 'editor'; |
|
333 | + } |
|
334 | 334 | |
335 | - } |
|
335 | + } |
|
336 | 336 | |
337 | - return $notification; |
|
337 | + return $notification; |
|
338 | 338 | } |
339 | 339 | |
340 | 340 | |
@@ -351,16 +351,16 @@ discard block |
||
351 | 351 | function geodir_enable_editor_on_design_settings($design_setting) |
352 | 352 | { |
353 | 353 | |
354 | - if (!empty($design_setting) && get_option('geodir_tiny_editor') == '1') { |
|
354 | + if (!empty($design_setting) && get_option('geodir_tiny_editor') == '1') { |
|
355 | 355 | |
356 | - foreach ($design_setting as $key => $value) { |
|
357 | - if ($value['type'] == 'textarea' && $value['id'] == 'geodir_term_condition_content') |
|
358 | - $design_setting[$key]['type'] = 'editor'; |
|
359 | - } |
|
356 | + foreach ($design_setting as $key => $value) { |
|
357 | + if ($value['type'] == 'textarea' && $value['id'] == 'geodir_term_condition_content') |
|
358 | + $design_setting[$key]['type'] = 'editor'; |
|
359 | + } |
|
360 | 360 | |
361 | - } |
|
361 | + } |
|
362 | 362 | |
363 | - return $design_setting; |
|
363 | + return $design_setting; |
|
364 | 364 | } |
365 | 365 | |
366 | 366 | /* ----------- START MANAGE CUSTOM FIELDS ---------------- */ |
@@ -368,15 +368,15 @@ discard block |
||
368 | 368 | add_action('geodir_manage_available_fields_custom', 'geodir_manage_available_fields_custom'); |
369 | 369 | |
370 | 370 | function geodir_manage_available_fields_predefined($sub_tab){ |
371 | - if($sub_tab=='custom_fields'){ |
|
372 | - geodir_custom_available_fields('predefined'); |
|
373 | - } |
|
371 | + if($sub_tab=='custom_fields'){ |
|
372 | + geodir_custom_available_fields('predefined'); |
|
373 | + } |
|
374 | 374 | } |
375 | 375 | |
376 | 376 | function geodir_manage_available_fields_custom($sub_tab){ |
377 | - if($sub_tab=='custom_fields'){ |
|
378 | - geodir_custom_available_fields('custom'); |
|
379 | - } |
|
377 | + if($sub_tab=='custom_fields'){ |
|
378 | + geodir_custom_available_fields('custom'); |
|
379 | + } |
|
380 | 380 | } |
381 | 381 | |
382 | 382 | |
@@ -395,16 +395,16 @@ discard block |
||
395 | 395 | function geodir_manage_available_fields($sub_tab) |
396 | 396 | { |
397 | 397 | |
398 | - switch ($sub_tab) { |
|
399 | - case 'custom_fields': |
|
400 | - geodir_custom_available_fields(); |
|
401 | - break; |
|
398 | + switch ($sub_tab) { |
|
399 | + case 'custom_fields': |
|
400 | + geodir_custom_available_fields(); |
|
401 | + break; |
|
402 | 402 | |
403 | - case 'sorting_options': |
|
404 | - geodir_sorting_options_available_fields(); |
|
405 | - break; |
|
403 | + case 'sorting_options': |
|
404 | + geodir_sorting_options_available_fields(); |
|
405 | + break; |
|
406 | 406 | |
407 | - } |
|
407 | + } |
|
408 | 408 | } |
409 | 409 | |
410 | 410 | |
@@ -420,16 +420,16 @@ discard block |
||
420 | 420 | function geodir_manage_selected_fields($sub_tab) |
421 | 421 | { |
422 | 422 | |
423 | - switch ($sub_tab) { |
|
424 | - case 'custom_fields': |
|
425 | - geodir_custom_selected_fields(); |
|
426 | - break; |
|
423 | + switch ($sub_tab) { |
|
424 | + case 'custom_fields': |
|
425 | + geodir_custom_selected_fields(); |
|
426 | + break; |
|
427 | 427 | |
428 | - case 'sorting_options': |
|
429 | - geodir_sorting_options_selected_fields(); |
|
430 | - break; |
|
428 | + case 'sorting_options': |
|
429 | + geodir_sorting_options_selected_fields(); |
|
430 | + break; |
|
431 | 431 | |
432 | - } |
|
432 | + } |
|
433 | 433 | } |
434 | 434 | |
435 | 435 | /** |
@@ -441,52 +441,52 @@ discard block |
||
441 | 441 | */ |
442 | 442 | function geodir_sorting_options_available_fields() |
443 | 443 | { |
444 | - global $wpdb; |
|
445 | - $listing_type = ($_REQUEST['listing_type'] != '') ? sanitize_text_field($_REQUEST['listing_type']) : 'gd_place'; |
|
446 | - ?> |
|
444 | + global $wpdb; |
|
445 | + $listing_type = ($_REQUEST['listing_type'] != '') ? sanitize_text_field($_REQUEST['listing_type']) : 'gd_place'; |
|
446 | + ?> |
|
447 | 447 | <input type="hidden" name="listing_type" id="new_post_type" value="<?php echo $listing_type;?>"/> |
448 | 448 | <input type="hidden" name="manage_field_type" class="manage_field_type" value="<?php echo sanitize_text_field($_REQUEST['subtab']); ?>"/> |
449 | 449 | <ul> |
450 | 450 | <?php |
451 | - $sort_options = geodir_get_custom_sort_options($listing_type); |
|
451 | + $sort_options = geodir_get_custom_sort_options($listing_type); |
|
452 | 452 | |
453 | - foreach ($sort_options as $key => $val) { |
|
454 | - $val = stripslashes_deep($val); // strip slashes |
|
455 | - |
|
456 | - $check_html_variable = $wpdb->get_var( |
|
457 | - $wpdb->prepare( |
|
458 | - "SELECT htmlvar_name FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE htmlvar_name = %s AND post_type = %s AND field_type=%s", |
|
459 | - array($val['htmlvar_name'], $listing_type, $val['field_type']) |
|
460 | - ) |
|
461 | - ); |
|
453 | + foreach ($sort_options as $key => $val) { |
|
454 | + $val = stripslashes_deep($val); // strip slashes |
|
455 | + |
|
456 | + $check_html_variable = $wpdb->get_var( |
|
457 | + $wpdb->prepare( |
|
458 | + "SELECT htmlvar_name FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE htmlvar_name = %s AND post_type = %s AND field_type=%s", |
|
459 | + array($val['htmlvar_name'], $listing_type, $val['field_type']) |
|
460 | + ) |
|
461 | + ); |
|
462 | 462 | |
463 | - $display = $check_html_variable ? ' style="display:none;"' : ''; |
|
464 | - ?> |
|
463 | + $display = $check_html_variable ? ' style="display:none;"' : ''; |
|
464 | + ?> |
|
465 | 465 | |
466 | 466 | <li class="gd-cf-tooltip-wrap" <?php echo $display;?>> |
467 | 467 | <?php |
468 | - if(isset($val['description']) && $val['description']){ |
|
469 | - echo '<div class="gdcf-tooltip">'.$val['description'].'</div>'; |
|
470 | - }?> |
|
468 | + if(isset($val['description']) && $val['description']){ |
|
469 | + echo '<div class="gdcf-tooltip">'.$val['description'].'</div>'; |
|
470 | + }?> |
|
471 | 471 | |
472 | 472 | <a id="gd-<?php echo $val['field_type'];?>-_-<?php echo $val['htmlvar_name'];?>" data-field-type-key="<?php echo $val['htmlvar_name'];?>" data-field-type="<?php echo $val['field_type'];?>" |
473 | 473 | title="<?php echo $val['site_title'];?>" |
474 | 474 | class="gd-draggable-form-items gd-<?php echo $val['field_type'];?> geodir-sort-<?php echo $val['htmlvar_name'];?>" href="javascript:void(0);"> |
475 | 475 | <?php if (isset($val['field_icon']) && strpos($val['field_icon'], 'fa fa-') !== false) { |
476 | - echo '<i class="'.$val['field_icon'].'" aria-hidden="true"></i>'; |
|
477 | - }elseif(isset($val['field_icon']) && $val['field_icon'] ){ |
|
478 | - echo '<b style="background-image: url("'.$val['field_icon'].'")"></b>'; |
|
479 | - }else{ |
|
480 | - echo '<i class="fa fa-cog" aria-hidden="true"></i>'; |
|
481 | - }?> |
|
476 | + echo '<i class="'.$val['field_icon'].'" aria-hidden="true"></i>'; |
|
477 | + }elseif(isset($val['field_icon']) && $val['field_icon'] ){ |
|
478 | + echo '<b style="background-image: url("'.$val['field_icon'].'")"></b>'; |
|
479 | + }else{ |
|
480 | + echo '<i class="fa fa-cog" aria-hidden="true"></i>'; |
|
481 | + }?> |
|
482 | 482 | <?php echo $val['site_title'];?> |
483 | 483 | </a> |
484 | 484 | </li> |
485 | 485 | |
486 | 486 | |
487 | 487 | <?php |
488 | - } |
|
489 | - ?> |
|
488 | + } |
|
489 | + ?> |
|
490 | 490 | </ul> |
491 | 491 | <?php |
492 | 492 | } |
@@ -500,28 +500,28 @@ discard block |
||
500 | 500 | */ |
501 | 501 | function geodir_sorting_options_selected_fields() |
502 | 502 | { |
503 | - $listing_type = ($_REQUEST['listing_type'] != '') ? sanitize_text_field($_REQUEST['listing_type']) : 'gd_place'; |
|
504 | - ?> |
|
503 | + $listing_type = ($_REQUEST['listing_type'] != '') ? sanitize_text_field($_REQUEST['listing_type']) : 'gd_place'; |
|
504 | + ?> |
|
505 | 505 | <input type="hidden" name="manage_field_type" class="manage_field_type" value="<?php echo sanitize_text_field($_REQUEST['subtab']); ?>"/> |
506 | 506 | <ul class="core"> |
507 | 507 | <?php |
508 | - global $wpdb; |
|
508 | + global $wpdb; |
|
509 | 509 | |
510 | - $fields = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE post_type = %s AND field_type != 'address' ORDER BY sort_order ASC", array($listing_type))); |
|
510 | + $fields = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE post_type = %s AND field_type != 'address' ORDER BY sort_order ASC", array($listing_type))); |
|
511 | 511 | |
512 | - if (!empty($fields)) { |
|
513 | - foreach ($fields as $field) { |
|
514 | - //$result_str = $field->id; |
|
515 | - $result_str = $field; |
|
516 | - $field_type = $field->field_type; |
|
517 | - $field_ins_upd = 'display'; |
|
512 | + if (!empty($fields)) { |
|
513 | + foreach ($fields as $field) { |
|
514 | + //$result_str = $field->id; |
|
515 | + $result_str = $field; |
|
516 | + $field_type = $field->field_type; |
|
517 | + $field_ins_upd = 'display'; |
|
518 | 518 | |
519 | - $default = false; |
|
519 | + $default = false; |
|
520 | 520 | |
521 | - geodir_custom_sort_field_adminhtml($field_type, $result_str, $field_ins_upd, $default); |
|
522 | - } |
|
523 | - } |
|
524 | - ?> |
|
521 | + geodir_custom_sort_field_adminhtml($field_type, $result_str, $field_ins_upd, $default); |
|
522 | + } |
|
523 | + } |
|
524 | + ?> |
|
525 | 525 | </ul> |
526 | 526 | <?php |
527 | 527 | } |
@@ -534,12 +534,12 @@ discard block |
||
534 | 534 | */ |
535 | 535 | function geodir_custom_fields_custom($post_type=''){ |
536 | 536 | |
537 | - $custom_fields = array(); |
|
537 | + $custom_fields = array(); |
|
538 | 538 | |
539 | - /** |
|
540 | - * @see `geodir_custom_fields` |
|
541 | - */ |
|
542 | - return apply_filters('geodir_custom_fields_custom',$custom_fields,$post_type); |
|
539 | + /** |
|
540 | + * @see `geodir_custom_fields` |
|
541 | + */ |
|
542 | + return apply_filters('geodir_custom_fields_custom',$custom_fields,$post_type); |
|
543 | 543 | } |
544 | 544 | |
545 | 545 | |
@@ -552,140 +552,140 @@ discard block |
||
552 | 552 | */ |
553 | 553 | function geodir_custom_fields($post_type=''){ |
554 | 554 | |
555 | - $custom_fields = array( |
|
556 | - 'text' => array( |
|
557 | - 'field_type' => 'text', |
|
558 | - 'class' => 'gd-text', |
|
559 | - 'icon' => 'fa fa-minus', |
|
560 | - 'name' => __('Text', 'geodirectory'), |
|
561 | - 'description' => __('Add any sort of text field, text or numbers', 'geodirectory') |
|
562 | - ), |
|
563 | - 'datepicker' => array( |
|
564 | - 'field_type' => 'datepicker', |
|
565 | - 'class' => 'gd-datepicker', |
|
566 | - 'icon' => 'fa fa-calendar', |
|
567 | - 'name' => __('Date', 'geodirectory'), |
|
568 | - 'description' => __('Adds a date picker.', 'geodirectory') |
|
569 | - ), |
|
570 | - 'textarea' => array( |
|
571 | - 'field_type' => 'textarea', |
|
572 | - 'class' => 'gd-textarea', |
|
573 | - 'icon' => 'fa fa-bars', |
|
574 | - 'name' => __('Textarea', 'geodirectory'), |
|
575 | - 'description' => __('Adds a textarea', 'geodirectory') |
|
576 | - ), |
|
577 | - 'time' => array( |
|
578 | - 'field_type' => 'time', |
|
579 | - 'class' => 'gd-time', |
|
580 | - 'icon' => 'fa fa-clock-o', |
|
581 | - 'name' => __('Time', 'geodirectory'), |
|
582 | - 'description' => __('Adds a time picker', 'geodirectory') |
|
583 | - ), |
|
584 | - 'checkbox' => array( |
|
585 | - 'field_type' => 'checkbox', |
|
586 | - 'class' => 'gd-checkbox', |
|
587 | - 'icon' => 'fa fa-check-square-o', |
|
588 | - 'name' => __('Checkbox', 'geodirectory'), |
|
589 | - 'description' => __('Adds a checkbox', 'geodirectory') |
|
590 | - ), |
|
591 | - 'phone' => array( |
|
592 | - 'field_type' => 'phone', |
|
593 | - 'class' => 'gd-phone', |
|
594 | - 'icon' => 'fa fa-phone', |
|
595 | - 'name' => __('Phone', 'geodirectory'), |
|
596 | - 'description' => __('Adds a phone input', 'geodirectory') |
|
597 | - ), |
|
598 | - 'radio' => array( |
|
599 | - 'field_type' => 'radio', |
|
600 | - 'class' => 'gd-radio', |
|
601 | - 'icon' => 'fa fa-dot-circle-o', |
|
602 | - 'name' => __('Radio', 'geodirectory'), |
|
603 | - 'description' => __('Adds a radio input', 'geodirectory') |
|
604 | - ), |
|
605 | - 'email' => array( |
|
606 | - 'field_type' => 'email', |
|
607 | - 'class' => 'gd-email', |
|
608 | - 'icon' => 'fa fa-envelope-o', |
|
609 | - 'name' => __('Email', 'geodirectory'), |
|
610 | - 'description' => __('Adds a email input', 'geodirectory') |
|
611 | - ), |
|
612 | - 'select' => array( |
|
613 | - 'field_type' => 'select', |
|
614 | - 'class' => 'gd-select', |
|
615 | - 'icon' => 'fa fa-caret-square-o-down', |
|
616 | - 'name' => __('Select', 'geodirectory'), |
|
617 | - 'description' => __('Adds a select input', 'geodirectory') |
|
618 | - ), |
|
619 | - 'multiselect' => array( |
|
620 | - 'field_type' => 'multiselect', |
|
621 | - 'class' => 'gd-multiselect', |
|
622 | - 'icon' => 'fa fa-caret-square-o-down', |
|
623 | - 'name' => __('Multi Select', 'geodirectory'), |
|
624 | - 'description' => __('Adds a multiselect input', 'geodirectory') |
|
625 | - ), |
|
626 | - 'url' => array( |
|
627 | - 'field_type' => 'url', |
|
628 | - 'class' => 'gd-url', |
|
629 | - 'icon' => 'fa fa-link', |
|
630 | - 'name' => __('URL', 'geodirectory'), |
|
631 | - 'description' => __('Adds a url input', 'geodirectory') |
|
632 | - ), |
|
633 | - 'html' => array( |
|
634 | - 'field_type' => 'html', |
|
635 | - 'class' => 'gd-html', |
|
636 | - 'icon' => 'fa fa-code', |
|
637 | - 'name' => __('HTML', 'geodirectory'), |
|
638 | - 'description' => __('Adds a html input textarea', 'geodirectory') |
|
639 | - ), |
|
640 | - 'file' => array( |
|
641 | - 'field_type' => 'file', |
|
642 | - 'class' => 'gd-file', |
|
643 | - 'icon' => 'fa fa-file', |
|
644 | - 'name' => __('File Upload', 'geodirectory'), |
|
645 | - 'description' => __('Adds a file input', 'geodirectory') |
|
646 | - ) |
|
647 | - ); |
|
648 | - |
|
649 | - /** |
|
650 | - * Filter the custom fields array to be able to add or remove items. |
|
651 | - * |
|
652 | - * @since 1.6.6 |
|
653 | - * |
|
654 | - * @param array $custom_fields { |
|
655 | - * The custom fields array to be filtered. |
|
656 | - * |
|
657 | - * @type string $field_type The type of field, eg: text, datepicker, textarea, time, checkbox, phone, radio, email, select, multiselect, url, html, file. |
|
658 | - * @type string $class The class for the field in backend. |
|
659 | - * @type string $icon Can be font-awesome class name or icon image url. |
|
660 | - * @type string $name The name of the field. |
|
661 | - * @type string $description A short description about the field. |
|
662 | - * @type array $defaults { |
|
663 | - * Optional. Used to set the default value of the field. |
|
664 | - * |
|
665 | - * @type string data_type The SQL data type for the field. VARCHAR, TEXT, TIME, TINYINT, INT, FLOAT, DATE |
|
666 | - * @type int decimal_point limit if using FLOAT data_type |
|
667 | - * @type string admin_title The admin title for the field. |
|
668 | - * @type string site_title This will be the title for the field on the frontend. |
|
669 | - * @type string admin_desc This will be shown below the field on the add listing form. |
|
670 | - * @type string htmlvar_name This is a unique identifier used in the HTML, it MUST NOT contain spaces or special characters. |
|
671 | - * @type bool is_active If false the field will not be displayed anywhere. |
|
672 | - * @type bool for_admin_use If true then only site admin can see and edit this field. |
|
673 | - * @type string default_value The default value for the input on the add listing page. |
|
674 | - * @type string show_in The locations to show in. [detail],[moreinfo],[listing],[owntab],[mapbubble] |
|
675 | - * @type bool is_required If true the field will be required on the add listing page. |
|
676 | - * @type string option_values The option values for select and multiselect only |
|
677 | - * @type string validation_pattern HTML5 validation pattern (text input only by default). |
|
678 | - * @type string validation_msg HTML5 validation message (text input only by default). |
|
679 | - * @type string required_msg Required warning message. |
|
680 | - * @type string field_icon Icon url or font awesome class. |
|
681 | - * @type string css_class Field custom css class for field custom style. |
|
682 | - * @type bool cat_sort If true the field will appear in the category sort options, if false the field will be hidden, leave blank to show option. |
|
683 | - * @type bool cat_sort If true the field will appear in the advanced search sort options, if false the field will be hidden, leave blank to show option. (advanced search addon required) |
|
684 | - * } |
|
685 | - * } |
|
686 | - * @param string $post_type The post type requested. |
|
687 | - */ |
|
688 | - return apply_filters('geodir_custom_fields',$custom_fields,$post_type); |
|
555 | + $custom_fields = array( |
|
556 | + 'text' => array( |
|
557 | + 'field_type' => 'text', |
|
558 | + 'class' => 'gd-text', |
|
559 | + 'icon' => 'fa fa-minus', |
|
560 | + 'name' => __('Text', 'geodirectory'), |
|
561 | + 'description' => __('Add any sort of text field, text or numbers', 'geodirectory') |
|
562 | + ), |
|
563 | + 'datepicker' => array( |
|
564 | + 'field_type' => 'datepicker', |
|
565 | + 'class' => 'gd-datepicker', |
|
566 | + 'icon' => 'fa fa-calendar', |
|
567 | + 'name' => __('Date', 'geodirectory'), |
|
568 | + 'description' => __('Adds a date picker.', 'geodirectory') |
|
569 | + ), |
|
570 | + 'textarea' => array( |
|
571 | + 'field_type' => 'textarea', |
|
572 | + 'class' => 'gd-textarea', |
|
573 | + 'icon' => 'fa fa-bars', |
|
574 | + 'name' => __('Textarea', 'geodirectory'), |
|
575 | + 'description' => __('Adds a textarea', 'geodirectory') |
|
576 | + ), |
|
577 | + 'time' => array( |
|
578 | + 'field_type' => 'time', |
|
579 | + 'class' => 'gd-time', |
|
580 | + 'icon' => 'fa fa-clock-o', |
|
581 | + 'name' => __('Time', 'geodirectory'), |
|
582 | + 'description' => __('Adds a time picker', 'geodirectory') |
|
583 | + ), |
|
584 | + 'checkbox' => array( |
|
585 | + 'field_type' => 'checkbox', |
|
586 | + 'class' => 'gd-checkbox', |
|
587 | + 'icon' => 'fa fa-check-square-o', |
|
588 | + 'name' => __('Checkbox', 'geodirectory'), |
|
589 | + 'description' => __('Adds a checkbox', 'geodirectory') |
|
590 | + ), |
|
591 | + 'phone' => array( |
|
592 | + 'field_type' => 'phone', |
|
593 | + 'class' => 'gd-phone', |
|
594 | + 'icon' => 'fa fa-phone', |
|
595 | + 'name' => __('Phone', 'geodirectory'), |
|
596 | + 'description' => __('Adds a phone input', 'geodirectory') |
|
597 | + ), |
|
598 | + 'radio' => array( |
|
599 | + 'field_type' => 'radio', |
|
600 | + 'class' => 'gd-radio', |
|
601 | + 'icon' => 'fa fa-dot-circle-o', |
|
602 | + 'name' => __('Radio', 'geodirectory'), |
|
603 | + 'description' => __('Adds a radio input', 'geodirectory') |
|
604 | + ), |
|
605 | + 'email' => array( |
|
606 | + 'field_type' => 'email', |
|
607 | + 'class' => 'gd-email', |
|
608 | + 'icon' => 'fa fa-envelope-o', |
|
609 | + 'name' => __('Email', 'geodirectory'), |
|
610 | + 'description' => __('Adds a email input', 'geodirectory') |
|
611 | + ), |
|
612 | + 'select' => array( |
|
613 | + 'field_type' => 'select', |
|
614 | + 'class' => 'gd-select', |
|
615 | + 'icon' => 'fa fa-caret-square-o-down', |
|
616 | + 'name' => __('Select', 'geodirectory'), |
|
617 | + 'description' => __('Adds a select input', 'geodirectory') |
|
618 | + ), |
|
619 | + 'multiselect' => array( |
|
620 | + 'field_type' => 'multiselect', |
|
621 | + 'class' => 'gd-multiselect', |
|
622 | + 'icon' => 'fa fa-caret-square-o-down', |
|
623 | + 'name' => __('Multi Select', 'geodirectory'), |
|
624 | + 'description' => __('Adds a multiselect input', 'geodirectory') |
|
625 | + ), |
|
626 | + 'url' => array( |
|
627 | + 'field_type' => 'url', |
|
628 | + 'class' => 'gd-url', |
|
629 | + 'icon' => 'fa fa-link', |
|
630 | + 'name' => __('URL', 'geodirectory'), |
|
631 | + 'description' => __('Adds a url input', 'geodirectory') |
|
632 | + ), |
|
633 | + 'html' => array( |
|
634 | + 'field_type' => 'html', |
|
635 | + 'class' => 'gd-html', |
|
636 | + 'icon' => 'fa fa-code', |
|
637 | + 'name' => __('HTML', 'geodirectory'), |
|
638 | + 'description' => __('Adds a html input textarea', 'geodirectory') |
|
639 | + ), |
|
640 | + 'file' => array( |
|
641 | + 'field_type' => 'file', |
|
642 | + 'class' => 'gd-file', |
|
643 | + 'icon' => 'fa fa-file', |
|
644 | + 'name' => __('File Upload', 'geodirectory'), |
|
645 | + 'description' => __('Adds a file input', 'geodirectory') |
|
646 | + ) |
|
647 | + ); |
|
648 | + |
|
649 | + /** |
|
650 | + * Filter the custom fields array to be able to add or remove items. |
|
651 | + * |
|
652 | + * @since 1.6.6 |
|
653 | + * |
|
654 | + * @param array $custom_fields { |
|
655 | + * The custom fields array to be filtered. |
|
656 | + * |
|
657 | + * @type string $field_type The type of field, eg: text, datepicker, textarea, time, checkbox, phone, radio, email, select, multiselect, url, html, file. |
|
658 | + * @type string $class The class for the field in backend. |
|
659 | + * @type string $icon Can be font-awesome class name or icon image url. |
|
660 | + * @type string $name The name of the field. |
|
661 | + * @type string $description A short description about the field. |
|
662 | + * @type array $defaults { |
|
663 | + * Optional. Used to set the default value of the field. |
|
664 | + * |
|
665 | + * @type string data_type The SQL data type for the field. VARCHAR, TEXT, TIME, TINYINT, INT, FLOAT, DATE |
|
666 | + * @type int decimal_point limit if using FLOAT data_type |
|
667 | + * @type string admin_title The admin title for the field. |
|
668 | + * @type string site_title This will be the title for the field on the frontend. |
|
669 | + * @type string admin_desc This will be shown below the field on the add listing form. |
|
670 | + * @type string htmlvar_name This is a unique identifier used in the HTML, it MUST NOT contain spaces or special characters. |
|
671 | + * @type bool is_active If false the field will not be displayed anywhere. |
|
672 | + * @type bool for_admin_use If true then only site admin can see and edit this field. |
|
673 | + * @type string default_value The default value for the input on the add listing page. |
|
674 | + * @type string show_in The locations to show in. [detail],[moreinfo],[listing],[owntab],[mapbubble] |
|
675 | + * @type bool is_required If true the field will be required on the add listing page. |
|
676 | + * @type string option_values The option values for select and multiselect only |
|
677 | + * @type string validation_pattern HTML5 validation pattern (text input only by default). |
|
678 | + * @type string validation_msg HTML5 validation message (text input only by default). |
|
679 | + * @type string required_msg Required warning message. |
|
680 | + * @type string field_icon Icon url or font awesome class. |
|
681 | + * @type string css_class Field custom css class for field custom style. |
|
682 | + * @type bool cat_sort If true the field will appear in the category sort options, if false the field will be hidden, leave blank to show option. |
|
683 | + * @type bool cat_sort If true the field will appear in the advanced search sort options, if false the field will be hidden, leave blank to show option. (advanced search addon required) |
|
684 | + * } |
|
685 | + * } |
|
686 | + * @param string $post_type The post type requested. |
|
687 | + */ |
|
688 | + return apply_filters('geodir_custom_fields',$custom_fields,$post_type); |
|
689 | 689 | } |
690 | 690 | |
691 | 691 | /** |
@@ -698,19 +698,19 @@ discard block |
||
698 | 698 | */ |
699 | 699 | function geodir_custom_available_fields($type='') |
700 | 700 | { |
701 | - $listing_type = ($_REQUEST['listing_type'] != '') ? sanitize_text_field($_REQUEST['listing_type']) : 'gd_place'; |
|
702 | - ?> |
|
701 | + $listing_type = ($_REQUEST['listing_type'] != '') ? sanitize_text_field($_REQUEST['listing_type']) : 'gd_place'; |
|
702 | + ?> |
|
703 | 703 | <input type="hidden" name="listing_type" id="new_post_type" value="<?php echo $listing_type;?>"/> |
704 | 704 | <input type="hidden" name="manage_field_type" class="manage_field_type" value="<?php echo sanitize_text_field($_REQUEST['subtab']); ?>" /> |
705 | 705 | |
706 | 706 | <?php |
707 | - if($type=='predefined'){ |
|
708 | - $cfs = geodir_custom_fields_predefined($listing_type); |
|
709 | - }elseif($type=='custom'){ |
|
710 | - $cfs = geodir_custom_fields_custom($listing_type); |
|
711 | - }else{ |
|
712 | - $cfs = geodir_custom_fields($listing_type); |
|
713 | - ?> |
|
707 | + if($type=='predefined'){ |
|
708 | + $cfs = geodir_custom_fields_predefined($listing_type); |
|
709 | + }elseif($type=='custom'){ |
|
710 | + $cfs = geodir_custom_fields_custom($listing_type); |
|
711 | + }else{ |
|
712 | + $cfs = geodir_custom_fields($listing_type); |
|
713 | + ?> |
|
714 | 714 | <ul class="full gd-cf-tooltip-wrap"> |
715 | 715 | <li> |
716 | 716 | <div class="gdcf-tooltip"> |
@@ -731,18 +731,18 @@ discard block |
||
731 | 731 | </ul> |
732 | 732 | |
733 | 733 | <?php |
734 | - } |
|
734 | + } |
|
735 | 735 | |
736 | - if(!empty($cfs)) { |
|
737 | - echo '<ul>'; |
|
738 | - foreach ( $cfs as $id => $cf ) { |
|
739 | - ?> |
|
736 | + if(!empty($cfs)) { |
|
737 | + echo '<ul>'; |
|
738 | + foreach ( $cfs as $id => $cf ) { |
|
739 | + ?> |
|
740 | 740 | |
741 | 741 | <li class="gd-cf-tooltip-wrap"> |
742 | 742 | <?php |
743 | - if ( isset( $cf['description'] ) && $cf['description'] ) { |
|
744 | - echo '<div class="gdcf-tooltip">' . $cf['description'] . '</div>'; |
|
745 | - } ?> |
|
743 | + if ( isset( $cf['description'] ) && $cf['description'] ) { |
|
744 | + echo '<div class="gdcf-tooltip">' . $cf['description'] . '</div>'; |
|
745 | + } ?> |
|
746 | 746 | |
747 | 747 | <a id="gd-<?php echo $id; ?>" |
748 | 748 | data-field-custom-type="<?php echo $type; ?>" |
@@ -752,21 +752,21 @@ discard block |
||
752 | 752 | href="javascript:void(0);"> |
753 | 753 | |
754 | 754 | <?php if ( isset( $cf['icon'] ) && strpos( $cf['icon'], 'fa fa-' ) !== false ) { |
755 | - echo '<i class="' . $cf['icon'] . '" aria-hidden="true"></i>'; |
|
756 | - } elseif ( isset( $cf['icon'] ) && $cf['icon'] ) { |
|
757 | - echo '<b style="background-image: url("' . $cf['icon'] . '")"></b>'; |
|
758 | - } else { |
|
759 | - echo '<i class="fa fa-cog" aria-hidden="true"></i>'; |
|
760 | - } ?> |
|
755 | + echo '<i class="' . $cf['icon'] . '" aria-hidden="true"></i>'; |
|
756 | + } elseif ( isset( $cf['icon'] ) && $cf['icon'] ) { |
|
757 | + echo '<b style="background-image: url("' . $cf['icon'] . '")"></b>'; |
|
758 | + } else { |
|
759 | + echo '<i class="fa fa-cog" aria-hidden="true"></i>'; |
|
760 | + } ?> |
|
761 | 761 | <?php echo $cf['name']; ?> |
762 | 762 | </a> |
763 | 763 | </li> |
764 | 764 | <?php |
765 | - } |
|
766 | - }else{ |
|
767 | - _e('There are no custom fields here yet.', 'geodirectory'); |
|
768 | - } |
|
769 | - ?> |
|
765 | + } |
|
766 | + }else{ |
|
767 | + _e('There are no custom fields here yet.', 'geodirectory'); |
|
768 | + } |
|
769 | + ?> |
|
770 | 770 | |
771 | 771 | |
772 | 772 | </ul> |
@@ -785,26 +785,26 @@ discard block |
||
785 | 785 | */ |
786 | 786 | function geodir_custom_selected_fields() |
787 | 787 | { |
788 | - $listing_type = ($_REQUEST['listing_type'] != '') ? sanitize_text_field($_REQUEST['listing_type']) : 'gd_place'; |
|
789 | - ?> |
|
788 | + $listing_type = ($_REQUEST['listing_type'] != '') ? sanitize_text_field($_REQUEST['listing_type']) : 'gd_place'; |
|
789 | + ?> |
|
790 | 790 | <input type="hidden" name="manage_field_type" class="manage_field_type" value="<?php echo sanitize_text_field($_REQUEST['subtab']); ?>"/> |
791 | 791 | <ul class="core"> |
792 | 792 | <?php |
793 | - global $wpdb; |
|
794 | - $fields = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type = %s ORDER BY sort_order ASC", array($listing_type))); |
|
795 | - |
|
796 | - if (!empty($fields)) { |
|
797 | - foreach ($fields as $field) { |
|
798 | - //$result_str = $field->id; |
|
799 | - $result_str = $field; |
|
800 | - $field_type = $field->field_type; |
|
801 | - $field_type_key = $field->field_type_key; |
|
802 | - $field_ins_upd = 'display'; |
|
803 | - |
|
804 | - geodir_custom_field_adminhtml($field_type, $result_str, $field_ins_upd,$field_type_key); |
|
805 | - } |
|
806 | - } |
|
807 | - ?></ul> |
|
793 | + global $wpdb; |
|
794 | + $fields = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type = %s ORDER BY sort_order ASC", array($listing_type))); |
|
795 | + |
|
796 | + if (!empty($fields)) { |
|
797 | + foreach ($fields as $field) { |
|
798 | + //$result_str = $field->id; |
|
799 | + $result_str = $field; |
|
800 | + $field_type = $field->field_type; |
|
801 | + $field_type_key = $field->field_type_key; |
|
802 | + $field_ins_upd = 'display'; |
|
803 | + |
|
804 | + geodir_custom_field_adminhtml($field_type, $result_str, $field_ins_upd,$field_type_key); |
|
805 | + } |
|
806 | + } |
|
807 | + ?></ul> |
|
808 | 808 | <?php |
809 | 809 | |
810 | 810 | } |
@@ -823,16 +823,16 @@ discard block |
||
823 | 823 | function geodir_custom_fields_panel_head($heading, $sub_tab, $listing_type) |
824 | 824 | { |
825 | 825 | |
826 | - switch ($sub_tab) { |
|
827 | - case 'custom_fields': |
|
828 | - $heading = sprintf(__('Manage %s Custom Fields', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
829 | - break; |
|
826 | + switch ($sub_tab) { |
|
827 | + case 'custom_fields': |
|
828 | + $heading = sprintf(__('Manage %s Custom Fields', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
829 | + break; |
|
830 | 830 | |
831 | - case 'sorting_options': |
|
832 | - $heading = sprintf(__('Manage %s Listing Sorting Options Fields', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
833 | - break; |
|
834 | - } |
|
835 | - return $heading; |
|
831 | + case 'sorting_options': |
|
832 | + $heading = sprintf(__('Manage %s Listing Sorting Options Fields', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
833 | + break; |
|
834 | + } |
|
835 | + return $heading; |
|
836 | 836 | } |
837 | 837 | |
838 | 838 | |
@@ -850,16 +850,16 @@ discard block |
||
850 | 850 | function geodir_cf_panel_available_fields_head($heading, $sub_tab, $listing_type) |
851 | 851 | { |
852 | 852 | |
853 | - switch ($sub_tab) { |
|
854 | - case 'custom_fields': |
|
855 | - $heading = sprintf(__('Add new %s form field', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
856 | - break; |
|
853 | + switch ($sub_tab) { |
|
854 | + case 'custom_fields': |
|
855 | + $heading = sprintf(__('Add new %s form field', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
856 | + break; |
|
857 | 857 | |
858 | - case 'sorting_options': |
|
859 | - $heading = sprintf(__('Available sorting options for %s listing and search results', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
860 | - break; |
|
861 | - } |
|
862 | - return $heading; |
|
858 | + case 'sorting_options': |
|
859 | + $heading = sprintf(__('Available sorting options for %s listing and search results', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
860 | + break; |
|
861 | + } |
|
862 | + return $heading; |
|
863 | 863 | } |
864 | 864 | |
865 | 865 | |
@@ -877,16 +877,16 @@ discard block |
||
877 | 877 | function geodir_cf_panel_available_fields_note($note, $sub_tab, $listing_type) |
878 | 878 | { |
879 | 879 | |
880 | - switch ($sub_tab) { |
|
881 | - case 'custom_fields': |
|
882 | - $note = sprintf(__('Click on any box below to add a field of that type to the add %s listing form. You can use a fieldset to group your fields.', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
883 | - break; |
|
880 | + switch ($sub_tab) { |
|
881 | + case 'custom_fields': |
|
882 | + $note = sprintf(__('Click on any box below to add a field of that type to the add %s listing form. You can use a fieldset to group your fields.', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
883 | + break; |
|
884 | 884 | |
885 | - case 'sorting_options': |
|
886 | - $note = sprintf(__('Click on any box below to make it appear in the sorting option dropdown on %s listing and search results.<br />To make a field available here, go to custom fields tab and expand any field from selected fields panel and tick the checkbox saying \'Include this field in sort option\'.', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
887 | - break; |
|
888 | - } |
|
889 | - return $note; |
|
885 | + case 'sorting_options': |
|
886 | + $note = sprintf(__('Click on any box below to make it appear in the sorting option dropdown on %s listing and search results.<br />To make a field available here, go to custom fields tab and expand any field from selected fields panel and tick the checkbox saying \'Include this field in sort option\'.', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
887 | + break; |
|
888 | + } |
|
889 | + return $note; |
|
890 | 890 | } |
891 | 891 | |
892 | 892 | |
@@ -904,16 +904,16 @@ discard block |
||
904 | 904 | function geodir_cf_panel_selected_fields_head($heading, $sub_tab, $listing_type) |
905 | 905 | { |
906 | 906 | |
907 | - switch ($sub_tab) { |
|
908 | - case 'custom_fields': |
|
909 | - $heading = sprintf(__('List of fields that will appear on add new %s listing form', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
910 | - break; |
|
907 | + switch ($sub_tab) { |
|
908 | + case 'custom_fields': |
|
909 | + $heading = sprintf(__('List of fields that will appear on add new %s listing form', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
910 | + break; |
|
911 | 911 | |
912 | - case 'sorting_options': |
|
913 | - $heading = sprintf(__('List of fields that will appear in %s listing and search results sorting option dropdown box.', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
914 | - break; |
|
915 | - } |
|
916 | - return $heading; |
|
912 | + case 'sorting_options': |
|
913 | + $heading = sprintf(__('List of fields that will appear in %s listing and search results sorting option dropdown box.', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
914 | + break; |
|
915 | + } |
|
916 | + return $heading; |
|
917 | 917 | } |
918 | 918 | |
919 | 919 | |
@@ -931,16 +931,16 @@ discard block |
||
931 | 931 | function geodir_cf_panel_selected_fields_note($note, $sub_tab, $listing_type) |
932 | 932 | { |
933 | 933 | |
934 | - switch ($sub_tab) { |
|
935 | - case 'custom_fields': |
|
936 | - $note = sprintf(__('Click to expand and view field related settings. You may drag and drop to arrange fields order on add %s listing form too.', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
937 | - break; |
|
934 | + switch ($sub_tab) { |
|
935 | + case 'custom_fields': |
|
936 | + $note = sprintf(__('Click to expand and view field related settings. You may drag and drop to arrange fields order on add %s listing form too.', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
937 | + break; |
|
938 | 938 | |
939 | - case 'sorting_options': |
|
940 | - $note = sprintf(__('Click to expand and view field related settings. You may drag and drop to arrange fields order in sorting option dropdown box on %s listing and search results page.', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
941 | - break; |
|
942 | - } |
|
943 | - return $note; |
|
939 | + case 'sorting_options': |
|
940 | + $note = sprintf(__('Click to expand and view field related settings. You may drag and drop to arrange fields order in sorting option dropdown box on %s listing and search results page.', 'geodirectory'), get_post_type_singular_label($listing_type, false, true)); |
|
941 | + break; |
|
942 | + } |
|
943 | + return $note; |
|
944 | 944 | } |
945 | 945 | |
946 | 946 | |
@@ -956,16 +956,16 @@ discard block |
||
956 | 956 | */ |
957 | 957 | function geodir_remove_unnecessary_fields() |
958 | 958 | { |
959 | - global $wpdb, $plugin_prefix; |
|
959 | + global $wpdb, $plugin_prefix; |
|
960 | 960 | |
961 | - if (!get_option('geodir_remove_unnecessary_fields')) { |
|
961 | + if (!get_option('geodir_remove_unnecessary_fields')) { |
|
962 | 962 | |
963 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $plugin_prefix . "gd_place_detail WHERE field = 'categories'")) |
|
964 | - $wpdb->query("ALTER TABLE `" . $plugin_prefix . "gd_place_detail` DROP `categories`"); |
|
963 | + if ($wpdb->get_var("SHOW COLUMNS FROM " . $plugin_prefix . "gd_place_detail WHERE field = 'categories'")) |
|
964 | + $wpdb->query("ALTER TABLE `" . $plugin_prefix . "gd_place_detail` DROP `categories`"); |
|
965 | 965 | |
966 | - update_option('geodir_remove_unnecessary_fields', '1'); |
|
966 | + update_option('geodir_remove_unnecessary_fields', '1'); |
|
967 | 967 | |
968 | - } |
|
968 | + } |
|
969 | 969 | |
970 | 970 | } |
971 | 971 | |
@@ -983,28 +983,28 @@ discard block |
||
983 | 983 | */ |
984 | 984 | function geodir_admin_ajax_handler() |
985 | 985 | { |
986 | - if (isset($_REQUEST['geodir_admin_ajax_action']) && $_REQUEST['geodir_admin_ajax_action'] != '') { |
|
987 | - $geodir_admin_ajax_action = $_REQUEST['geodir_admin_ajax_action']; |
|
988 | - $diagnose_this = ""; |
|
989 | - switch ($geodir_admin_ajax_action) { |
|
990 | - case 'diagnosis' : |
|
991 | - if (isset($_REQUEST['diagnose_this']) && $_REQUEST['diagnose_this'] != '') { |
|
992 | - $diagnose_this = sanitize_text_field($_REQUEST['diagnose_this']); |
|
993 | - call_user_func('geodir_diagnose_' . $diagnose_this); |
|
994 | - |
|
995 | - } |
|
996 | - exit(); |
|
997 | - break; |
|
998 | - |
|
999 | - case 'diagnosis-fix' : |
|
1000 | - if (isset($_REQUEST['diagnose_this']) && $_REQUEST['diagnose_this'] != '') |
|
1001 | - $diagnose_this = sanitize_text_field($_REQUEST['diagnose_this']); |
|
1002 | - call_user_func('geodir_diagnose_' . $diagnose_this); |
|
1003 | - exit(); |
|
1004 | - break; |
|
1005 | - } |
|
1006 | - } |
|
1007 | - exit(); |
|
986 | + if (isset($_REQUEST['geodir_admin_ajax_action']) && $_REQUEST['geodir_admin_ajax_action'] != '') { |
|
987 | + $geodir_admin_ajax_action = $_REQUEST['geodir_admin_ajax_action']; |
|
988 | + $diagnose_this = ""; |
|
989 | + switch ($geodir_admin_ajax_action) { |
|
990 | + case 'diagnosis' : |
|
991 | + if (isset($_REQUEST['diagnose_this']) && $_REQUEST['diagnose_this'] != '') { |
|
992 | + $diagnose_this = sanitize_text_field($_REQUEST['diagnose_this']); |
|
993 | + call_user_func('geodir_diagnose_' . $diagnose_this); |
|
994 | + |
|
995 | + } |
|
996 | + exit(); |
|
997 | + break; |
|
998 | + |
|
999 | + case 'diagnosis-fix' : |
|
1000 | + if (isset($_REQUEST['diagnose_this']) && $_REQUEST['diagnose_this'] != '') |
|
1001 | + $diagnose_this = sanitize_text_field($_REQUEST['diagnose_this']); |
|
1002 | + call_user_func('geodir_diagnose_' . $diagnose_this); |
|
1003 | + exit(); |
|
1004 | + break; |
|
1005 | + } |
|
1006 | + } |
|
1007 | + exit(); |
|
1008 | 1008 | } |
1009 | 1009 | |
1010 | 1010 | |
@@ -1022,127 +1022,127 @@ discard block |
||
1022 | 1022 | */ |
1023 | 1023 | function geodir_diagnose_multisite_table($filter_arr, $table, $tabel_name, $fix) |
1024 | 1024 | { |
1025 | - global $wpdb; |
|
1026 | - //$filter_arr['output_str'] .='###'.$table.'###'; |
|
1027 | - if ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak2'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak'") > 0) { |
|
1028 | - $filter_arr['output_str'] .= "<li>" . __('ERROR: You did not follow instructions! Now you will need to contact support to manually fix things.', 'geodirectory') . "</li>"; |
|
1029 | - $filter_arr['is_error_during_diagnose'] = true; |
|
1030 | - |
|
1031 | - } elseif ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") > 0) { |
|
1032 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('ERROR: %s_ms_bak table found', 'geodirectory'), $tabel_name) . "</li>"; |
|
1033 | - $filter_arr['is_error_during_diagnose'] = true; |
|
1034 | - $filter_arr['output_str'] .= "<li>" . __('IMPORTANT: This can be caused by out of date core or addons, please update core + addons before trying the fix OR YOU WILL HAVE A BAD TIME!', 'geodirectory') . "</li>"; |
|
1035 | - $filter_arr['is_error_during_diagnose'] = true; |
|
1036 | - |
|
1037 | - if ($fix) { |
|
1038 | - $ms_bak_count = $wpdb->get_var("SELECT COUNT(*) FROM " . $table . "_ms_bak");// get backup table count |
|
1039 | - $new_table_count = $wpdb->get_var("SELECT COUNT(*) FROM " . $wpdb->prefix . "$table");// get new table count |
|
1040 | - |
|
1041 | - if ($ms_bak_count == $new_table_count) {// if they are the same count rename to bak2 |
|
1042 | - //$filter_arr['output_str'] .= "<li>".sprintf( __('-->PROBLEM: %s table count is the same as new table, contact support' , 'geodirectory'), $table )."</li>" ; |
|
1043 | - |
|
1044 | - $wpdb->query("RENAME TABLE " . $table . "_ms_bak TO " . $table . "_ms_bak2");// rename bak table to new table |
|
1045 | - |
|
1046 | - if ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak2'") && $wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak'") == 0) { |
|
1047 | - $filter_arr['output_str'] .= "<li>" . __('-->FIXED: Renamed and backed up the tables', 'geodirectory') . "</li>"; |
|
1048 | - } else { |
|
1049 | - $filter_arr['output_str'] .= "<li>" . __('-->PROBLEM: Failed to rename tables, please contact support.', 'geodirectory') . "</li>"; |
|
1050 | - } |
|
1051 | - |
|
1052 | - } elseif ($ms_bak_count > $new_table_count) {//if backup is greater then restore it |
|
1053 | - |
|
1054 | - $wpdb->query("RENAME TABLE " . $wpdb->prefix . "$table TO " . $table . "_ms_bak2");// rename new table to bak2 |
|
1055 | - $wpdb->query("RENAME TABLE " . $table . "_ms_bak TO " . $wpdb->prefix . "$table");// rename bak table to new table |
|
1056 | - |
|
1057 | - if ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak2'") && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") && $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1058 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: restored largest table %s', 'geodirectory'), $table) . "</li>"; |
|
1059 | - } else { |
|
1060 | - $filter_arr['output_str'] .= "<li>" . __('-->PROBLEM: Failed to rename tables, please contact support.', 'geodirectory') . "</li>"; |
|
1061 | - } |
|
1062 | - |
|
1063 | - } elseif ($new_table_count > $ms_bak_count) {// we cant do much so rename the table to stop errors |
|
1064 | - |
|
1065 | - $wpdb->query("RENAME TABLE " . $table . "_ms_bak TO " . $table . "_ms_bak2");// rename ms_bak table to ms_bak2 |
|
1066 | - |
|
1067 | - if ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak'") == 0) { |
|
1068 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: table %s_ms_bak renamed and backed up', 'geodirectory'), $table) . "</li>"; |
|
1069 | - } else { |
|
1070 | - $filter_arr['output_str'] .= "<li>" . __('-->PROBLEM: Failed to rename tables, please contact support.', 'geodirectory') . "</li>"; |
|
1071 | - } |
|
1072 | - |
|
1073 | - } |
|
1074 | - |
|
1075 | - } |
|
1076 | - |
|
1077 | - |
|
1078 | - } elseif ($wpdb->query("SHOW TABLES LIKE '$table'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") > 0) { |
|
1079 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('ERROR: Two %s tables found', 'geodirectory'), $tabel_name) . "</li>"; |
|
1080 | - $filter_arr['is_error_during_diagnose'] = true; |
|
1081 | - |
|
1082 | - if ($fix) { |
|
1083 | - if ($wpdb->get_var("SELECT COUNT(*) FROM $table") == 0) {// if first table is empty just delete it |
|
1084 | - if ($wpdb->query("DROP TABLE IF EXISTS $table")) { |
|
1085 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Deleted table %s', 'geodirectory'), $table) . "</li>"; |
|
1086 | - } else { |
|
1087 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Delete table %s failed, please try manual delete from DB', 'geodirectory'), $table) . "</li>"; |
|
1088 | - } |
|
1089 | - |
|
1090 | - } elseif ($wpdb->get_var("SELECT COUNT(*) FROM " . $wpdb->prefix . "$table") == 0) {// if main table is empty but original is not, delete main and rename original |
|
1091 | - if ($wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "$table")) { |
|
1092 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Deleted table %s', 'geodirectory'), $wpdb->prefix . $table) . "</li>"; |
|
1093 | - } else { |
|
1094 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Delete table %s failed, please try manual delete from DB', 'geodirectory'), $wpdb->prefix . $table) . "</li>"; |
|
1095 | - } |
|
1096 | - if ($wpdb->query("RENAME TABLE $table TO " . $wpdb->prefix . "$table") || $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1097 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Table %s renamed to %s', 'geodirectory'), $table, $wpdb->prefix . $table) . "</li>"; |
|
1098 | - } else { |
|
1099 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Failed to rename table %s to %s, please try manually from DB', 'geodirectory'), $table, $wpdb->prefix . $table) . "</li>"; |
|
1100 | - } |
|
1101 | - } else {// else rename the original table to _ms_bak |
|
1102 | - if ($wpdb->query("RENAME TABLE $table TO " . $table . "_ms_bak") || $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1103 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Table contained info so we renamed %s to %s incase it is needed in future', 'geodirectory'), $table, $table . "_ms_bak") . "</li>"; |
|
1104 | - } else { |
|
1105 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Table %s could not be renamed to %s, this table has info so may need to be reviewed manually in the DB', 'geodirectory'), $table, $table . "_ms_bak") . "</li>"; |
|
1106 | - } |
|
1107 | - } |
|
1108 | - } |
|
1109 | - |
|
1110 | - } elseif ($wpdb->query("SHOW TABLES LIKE '$table'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") == 0) { |
|
1111 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('ERROR: %s table not converted', 'geodirectory'), $tabel_name) . "</li>"; |
|
1112 | - $filter_arr['is_error_during_diagnose'] = true; |
|
1113 | - |
|
1114 | - if ($fix) { |
|
1115 | - // if original table exists but new does not, rename |
|
1116 | - if ($wpdb->query("RENAME TABLE $table TO " . $wpdb->prefix . "$table") || $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1117 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Table %s renamed to %s', 'geodirectory'), $table, $wpdb->prefix . $table) . "</li>"; |
|
1118 | - } else { |
|
1119 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Failed to rename table %s to %s, please try manually from DB', 'geodirectory'), $table, $wpdb->prefix . $table) . "</li>"; |
|
1120 | - } |
|
1121 | - |
|
1122 | - } |
|
1123 | - |
|
1124 | - } elseif ($wpdb->query("SHOW TABLES LIKE '$table'") == 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") == 0) { |
|
1125 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('ERROR: %s table does not exist', 'geodirectory'), $tabel_name) . "</li>"; |
|
1126 | - $filter_arr['is_error_during_diagnose'] = true; |
|
1127 | - |
|
1128 | - if ($fix) { |
|
1129 | - // if original table does not exist try deleting db_vers of all addons so the initial db_install scripts run; |
|
1130 | - delete_option('geodirlocation_db_version'); |
|
1131 | - delete_option('geodirevents_db_version'); |
|
1132 | - delete_option('geodir_reviewrating_db_version'); |
|
1133 | - delete_option('gdevents_db_version'); |
|
1134 | - delete_option('geodirectory_db_version'); |
|
1135 | - delete_option('geodirclaim_db_version'); |
|
1136 | - delete_option('geodir_custom_posts_db_version'); |
|
1137 | - delete_option('geodir_reviewratings_db_version'); |
|
1138 | - delete_option('geodiradvancesearch_db_version'); |
|
1139 | - $filter_arr['output_str'] .= "<li>" . __('-->TRY: Please refresh page to run table install functions', 'geodirectory') . "</li>"; |
|
1140 | - } |
|
1141 | - |
|
1142 | - } else { |
|
1143 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('%s table converted correctly', 'geodirectory'), $tabel_name) . "</li>"; |
|
1144 | - } |
|
1145 | - return $filter_arr; |
|
1025 | + global $wpdb; |
|
1026 | + //$filter_arr['output_str'] .='###'.$table.'###'; |
|
1027 | + if ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak2'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak'") > 0) { |
|
1028 | + $filter_arr['output_str'] .= "<li>" . __('ERROR: You did not follow instructions! Now you will need to contact support to manually fix things.', 'geodirectory') . "</li>"; |
|
1029 | + $filter_arr['is_error_during_diagnose'] = true; |
|
1030 | + |
|
1031 | + } elseif ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") > 0) { |
|
1032 | + $filter_arr['output_str'] .= "<li>" . sprintf(__('ERROR: %s_ms_bak table found', 'geodirectory'), $tabel_name) . "</li>"; |
|
1033 | + $filter_arr['is_error_during_diagnose'] = true; |
|
1034 | + $filter_arr['output_str'] .= "<li>" . __('IMPORTANT: This can be caused by out of date core or addons, please update core + addons before trying the fix OR YOU WILL HAVE A BAD TIME!', 'geodirectory') . "</li>"; |
|
1035 | + $filter_arr['is_error_during_diagnose'] = true; |
|
1036 | + |
|
1037 | + if ($fix) { |
|
1038 | + $ms_bak_count = $wpdb->get_var("SELECT COUNT(*) FROM " . $table . "_ms_bak");// get backup table count |
|
1039 | + $new_table_count = $wpdb->get_var("SELECT COUNT(*) FROM " . $wpdb->prefix . "$table");// get new table count |
|
1040 | + |
|
1041 | + if ($ms_bak_count == $new_table_count) {// if they are the same count rename to bak2 |
|
1042 | + //$filter_arr['output_str'] .= "<li>".sprintf( __('-->PROBLEM: %s table count is the same as new table, contact support' , 'geodirectory'), $table )."</li>" ; |
|
1043 | + |
|
1044 | + $wpdb->query("RENAME TABLE " . $table . "_ms_bak TO " . $table . "_ms_bak2");// rename bak table to new table |
|
1045 | + |
|
1046 | + if ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak2'") && $wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak'") == 0) { |
|
1047 | + $filter_arr['output_str'] .= "<li>" . __('-->FIXED: Renamed and backed up the tables', 'geodirectory') . "</li>"; |
|
1048 | + } else { |
|
1049 | + $filter_arr['output_str'] .= "<li>" . __('-->PROBLEM: Failed to rename tables, please contact support.', 'geodirectory') . "</li>"; |
|
1050 | + } |
|
1051 | + |
|
1052 | + } elseif ($ms_bak_count > $new_table_count) {//if backup is greater then restore it |
|
1053 | + |
|
1054 | + $wpdb->query("RENAME TABLE " . $wpdb->prefix . "$table TO " . $table . "_ms_bak2");// rename new table to bak2 |
|
1055 | + $wpdb->query("RENAME TABLE " . $table . "_ms_bak TO " . $wpdb->prefix . "$table");// rename bak table to new table |
|
1056 | + |
|
1057 | + if ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak2'") && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") && $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1058 | + $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: restored largest table %s', 'geodirectory'), $table) . "</li>"; |
|
1059 | + } else { |
|
1060 | + $filter_arr['output_str'] .= "<li>" . __('-->PROBLEM: Failed to rename tables, please contact support.', 'geodirectory') . "</li>"; |
|
1061 | + } |
|
1062 | + |
|
1063 | + } elseif ($new_table_count > $ms_bak_count) {// we cant do much so rename the table to stop errors |
|
1064 | + |
|
1065 | + $wpdb->query("RENAME TABLE " . $table . "_ms_bak TO " . $table . "_ms_bak2");// rename ms_bak table to ms_bak2 |
|
1066 | + |
|
1067 | + if ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak'") == 0) { |
|
1068 | + $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: table %s_ms_bak renamed and backed up', 'geodirectory'), $table) . "</li>"; |
|
1069 | + } else { |
|
1070 | + $filter_arr['output_str'] .= "<li>" . __('-->PROBLEM: Failed to rename tables, please contact support.', 'geodirectory') . "</li>"; |
|
1071 | + } |
|
1072 | + |
|
1073 | + } |
|
1074 | + |
|
1075 | + } |
|
1076 | + |
|
1077 | + |
|
1078 | + } elseif ($wpdb->query("SHOW TABLES LIKE '$table'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") > 0) { |
|
1079 | + $filter_arr['output_str'] .= "<li>" . sprintf(__('ERROR: Two %s tables found', 'geodirectory'), $tabel_name) . "</li>"; |
|
1080 | + $filter_arr['is_error_during_diagnose'] = true; |
|
1081 | + |
|
1082 | + if ($fix) { |
|
1083 | + if ($wpdb->get_var("SELECT COUNT(*) FROM $table") == 0) {// if first table is empty just delete it |
|
1084 | + if ($wpdb->query("DROP TABLE IF EXISTS $table")) { |
|
1085 | + $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Deleted table %s', 'geodirectory'), $table) . "</li>"; |
|
1086 | + } else { |
|
1087 | + $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Delete table %s failed, please try manual delete from DB', 'geodirectory'), $table) . "</li>"; |
|
1088 | + } |
|
1089 | + |
|
1090 | + } elseif ($wpdb->get_var("SELECT COUNT(*) FROM " . $wpdb->prefix . "$table") == 0) {// if main table is empty but original is not, delete main and rename original |
|
1091 | + if ($wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "$table")) { |
|
1092 | + $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Deleted table %s', 'geodirectory'), $wpdb->prefix . $table) . "</li>"; |
|
1093 | + } else { |
|
1094 | + $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Delete table %s failed, please try manual delete from DB', 'geodirectory'), $wpdb->prefix . $table) . "</li>"; |
|
1095 | + } |
|
1096 | + if ($wpdb->query("RENAME TABLE $table TO " . $wpdb->prefix . "$table") || $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1097 | + $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Table %s renamed to %s', 'geodirectory'), $table, $wpdb->prefix . $table) . "</li>"; |
|
1098 | + } else { |
|
1099 | + $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Failed to rename table %s to %s, please try manually from DB', 'geodirectory'), $table, $wpdb->prefix . $table) . "</li>"; |
|
1100 | + } |
|
1101 | + } else {// else rename the original table to _ms_bak |
|
1102 | + if ($wpdb->query("RENAME TABLE $table TO " . $table . "_ms_bak") || $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1103 | + $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Table contained info so we renamed %s to %s incase it is needed in future', 'geodirectory'), $table, $table . "_ms_bak") . "</li>"; |
|
1104 | + } else { |
|
1105 | + $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Table %s could not be renamed to %s, this table has info so may need to be reviewed manually in the DB', 'geodirectory'), $table, $table . "_ms_bak") . "</li>"; |
|
1106 | + } |
|
1107 | + } |
|
1108 | + } |
|
1109 | + |
|
1110 | + } elseif ($wpdb->query("SHOW TABLES LIKE '$table'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") == 0) { |
|
1111 | + $filter_arr['output_str'] .= "<li>" . sprintf(__('ERROR: %s table not converted', 'geodirectory'), $tabel_name) . "</li>"; |
|
1112 | + $filter_arr['is_error_during_diagnose'] = true; |
|
1113 | + |
|
1114 | + if ($fix) { |
|
1115 | + // if original table exists but new does not, rename |
|
1116 | + if ($wpdb->query("RENAME TABLE $table TO " . $wpdb->prefix . "$table") || $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1117 | + $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Table %s renamed to %s', 'geodirectory'), $table, $wpdb->prefix . $table) . "</li>"; |
|
1118 | + } else { |
|
1119 | + $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Failed to rename table %s to %s, please try manually from DB', 'geodirectory'), $table, $wpdb->prefix . $table) . "</li>"; |
|
1120 | + } |
|
1121 | + |
|
1122 | + } |
|
1123 | + |
|
1124 | + } elseif ($wpdb->query("SHOW TABLES LIKE '$table'") == 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") == 0) { |
|
1125 | + $filter_arr['output_str'] .= "<li>" . sprintf(__('ERROR: %s table does not exist', 'geodirectory'), $tabel_name) . "</li>"; |
|
1126 | + $filter_arr['is_error_during_diagnose'] = true; |
|
1127 | + |
|
1128 | + if ($fix) { |
|
1129 | + // if original table does not exist try deleting db_vers of all addons so the initial db_install scripts run; |
|
1130 | + delete_option('geodirlocation_db_version'); |
|
1131 | + delete_option('geodirevents_db_version'); |
|
1132 | + delete_option('geodir_reviewrating_db_version'); |
|
1133 | + delete_option('gdevents_db_version'); |
|
1134 | + delete_option('geodirectory_db_version'); |
|
1135 | + delete_option('geodirclaim_db_version'); |
|
1136 | + delete_option('geodir_custom_posts_db_version'); |
|
1137 | + delete_option('geodir_reviewratings_db_version'); |
|
1138 | + delete_option('geodiradvancesearch_db_version'); |
|
1139 | + $filter_arr['output_str'] .= "<li>" . __('-->TRY: Please refresh page to run table install functions', 'geodirectory') . "</li>"; |
|
1140 | + } |
|
1141 | + |
|
1142 | + } else { |
|
1143 | + $filter_arr['output_str'] .= "<li>" . sprintf(__('%s table converted correctly', 'geodirectory'), $tabel_name) . "</li>"; |
|
1144 | + } |
|
1145 | + return $filter_arr; |
|
1146 | 1146 | } |
1147 | 1147 | |
1148 | 1148 | |
@@ -1156,111 +1156,111 @@ discard block |
||
1156 | 1156 | */ |
1157 | 1157 | function geodir_diagnose_tags_sync() |
1158 | 1158 | { |
1159 | - global $wpdb, $plugin_prefix; |
|
1160 | - $fix = isset($_POST['fix']) ? true : false; |
|
1161 | - $step = isset($_POST['step']) ? strip_tags(esc_sql($_POST['step'])) : 0; |
|
1162 | - $step_max_items = geodir_get_diagnose_step_max_items(); |
|
1163 | - $offset = (int) $step * $step_max_items; |
|
1164 | - $ptype = isset($_POST['ptype']) ? strip_tags(esc_sql($_POST['ptype'])) : false; |
|
1165 | - |
|
1166 | - $total_listings = geodir_total_listings_count(); |
|
1167 | - $total_ptype_listings = 0; |
|
1168 | - if ($ptype) { |
|
1169 | - $total_ptype_listings = geodir_total_listings_count($ptype); |
|
1170 | - } |
|
1171 | - $max_step = ceil($total_ptype_listings / $step_max_items) - 1; |
|
1159 | + global $wpdb, $plugin_prefix; |
|
1160 | + $fix = isset($_POST['fix']) ? true : false; |
|
1161 | + $step = isset($_POST['step']) ? strip_tags(esc_sql($_POST['step'])) : 0; |
|
1162 | + $step_max_items = geodir_get_diagnose_step_max_items(); |
|
1163 | + $offset = (int) $step * $step_max_items; |
|
1164 | + $ptype = isset($_POST['ptype']) ? strip_tags(esc_sql($_POST['ptype'])) : false; |
|
1165 | + |
|
1166 | + $total_listings = geodir_total_listings_count(); |
|
1167 | + $total_ptype_listings = 0; |
|
1168 | + if ($ptype) { |
|
1169 | + $total_ptype_listings = geodir_total_listings_count($ptype); |
|
1170 | + } |
|
1171 | + $max_step = ceil($total_ptype_listings / $step_max_items) - 1; |
|
1172 | 1172 | |
1173 | - //if($fix){echo 'true';}else{echo 'false';} |
|
1174 | - $is_error_during_diagnose = false; |
|
1175 | - $output_str = ''; |
|
1173 | + //if($fix){echo 'true';}else{echo 'false';} |
|
1174 | + $is_error_during_diagnose = false; |
|
1175 | + $output_str = ''; |
|
1176 | 1176 | |
1177 | - if ($ptype && !empty($ptype) && $total_listings > $step_max_items) { |
|
1178 | - $stepped_process = true; |
|
1179 | - } else { |
|
1180 | - $stepped_process = false; |
|
1181 | - } |
|
1182 | - |
|
1183 | - if ($stepped_process) { |
|
1184 | - $sql = $wpdb->prepare( "SELECT * FROM " . $wpdb->prefix . "geodir_" . $ptype . "_detail LIMIT %d OFFSET %d", $step_max_items, $offset ); |
|
1185 | - $posts = $wpdb->get_results( $sql ); |
|
1186 | - |
|
1187 | - if (!empty($posts)) { |
|
1188 | - |
|
1189 | - foreach ($posts as $p) { |
|
1190 | - $p->post_type = $ptype; |
|
1191 | - $raw_tags = wp_get_object_terms($p->post_id, $p->post_type . '_tags', array('fields' => 'names')); |
|
1192 | - if (empty($raw_tags)) { |
|
1193 | - $post_tags = ''; |
|
1194 | - } else { |
|
1195 | - $post_tags = implode(",", $raw_tags); |
|
1196 | - } |
|
1197 | - $tablename = $plugin_prefix . $p->post_type . '_detail'; |
|
1198 | - $wpdb->query($wpdb->prepare("UPDATE " . $tablename . " SET post_tags=%s WHERE post_id =%d", $post_tags, $p->post_id)); |
|
1199 | - |
|
1200 | - } |
|
1201 | - if ($step >= $max_step) { |
|
1202 | - $output_str = "done"; |
|
1203 | - } else { |
|
1204 | - $output_str = $step + 1; |
|
1205 | - } |
|
1206 | - } |
|
1207 | - |
|
1208 | - } else { |
|
1209 | - $all_postypes = geodir_get_posttypes(); |
|
1210 | - |
|
1211 | - if (!empty($all_postypes)) { |
|
1212 | - foreach ($all_postypes as $key) { |
|
1213 | - // update each GD CPT |
|
1214 | - $posts = $wpdb->get_results( "SELECT * FROM " . $wpdb->prefix . "geodir_" . $key . "_detail"); |
|
1215 | - |
|
1216 | - if (!empty($posts)) { |
|
1217 | - |
|
1218 | - foreach ($posts as $p) { |
|
1219 | - $p->post_type = $key; |
|
1220 | - $raw_tags = wp_get_object_terms($p->post_id, $p->post_type . '_tags', array('fields' => 'names')); |
|
1221 | - if (empty($raw_tags)) { |
|
1222 | - $post_tags = ''; |
|
1223 | - } else { |
|
1224 | - $post_tags = implode(",", $raw_tags); |
|
1225 | - } |
|
1226 | - $tablename = $plugin_prefix . $p->post_type . '_detail'; |
|
1227 | - $wpdb->query($wpdb->prepare("UPDATE " . $tablename . " SET post_tags=%s WHERE post_id =%d", $post_tags, $p->post_id)); |
|
1228 | - |
|
1229 | - } |
|
1230 | - $output_str .= "<li>" . $key . __(': Done', 'geodirectory') . "</li>"; |
|
1231 | - } |
|
1232 | - |
|
1233 | - } |
|
1234 | - |
|
1235 | - } |
|
1236 | - } |
|
1237 | - |
|
1238 | - |
|
1239 | - if ($is_error_during_diagnose) { |
|
1240 | - $info_div_class = "geodir_problem_info"; |
|
1241 | - $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='ratings' />"; |
|
1242 | - } else { |
|
1243 | - $info_div_class = "geodir_noproblem_info"; |
|
1244 | - $fix_button_txt = ''; |
|
1245 | - } |
|
1246 | - |
|
1247 | - if ($stepped_process) { |
|
1248 | - $percent = ($step/$max_step) * 100; |
|
1249 | - if ($output_str == 'done') { |
|
1250 | - echo $output_str; |
|
1251 | - } else { |
|
1252 | - $output = array( |
|
1253 | - 'step' => $output_str, |
|
1254 | - 'percent' => $percent |
|
1255 | - ); |
|
1256 | - echo json_encode($output); |
|
1257 | - } |
|
1258 | - } else { |
|
1259 | - echo "<ul class='$info_div_class'>"; |
|
1260 | - echo $output_str; |
|
1261 | - echo $fix_button_txt; |
|
1262 | - echo "</ul>"; |
|
1263 | - } |
|
1177 | + if ($ptype && !empty($ptype) && $total_listings > $step_max_items) { |
|
1178 | + $stepped_process = true; |
|
1179 | + } else { |
|
1180 | + $stepped_process = false; |
|
1181 | + } |
|
1182 | + |
|
1183 | + if ($stepped_process) { |
|
1184 | + $sql = $wpdb->prepare( "SELECT * FROM " . $wpdb->prefix . "geodir_" . $ptype . "_detail LIMIT %d OFFSET %d", $step_max_items, $offset ); |
|
1185 | + $posts = $wpdb->get_results( $sql ); |
|
1186 | + |
|
1187 | + if (!empty($posts)) { |
|
1188 | + |
|
1189 | + foreach ($posts as $p) { |
|
1190 | + $p->post_type = $ptype; |
|
1191 | + $raw_tags = wp_get_object_terms($p->post_id, $p->post_type . '_tags', array('fields' => 'names')); |
|
1192 | + if (empty($raw_tags)) { |
|
1193 | + $post_tags = ''; |
|
1194 | + } else { |
|
1195 | + $post_tags = implode(",", $raw_tags); |
|
1196 | + } |
|
1197 | + $tablename = $plugin_prefix . $p->post_type . '_detail'; |
|
1198 | + $wpdb->query($wpdb->prepare("UPDATE " . $tablename . " SET post_tags=%s WHERE post_id =%d", $post_tags, $p->post_id)); |
|
1199 | + |
|
1200 | + } |
|
1201 | + if ($step >= $max_step) { |
|
1202 | + $output_str = "done"; |
|
1203 | + } else { |
|
1204 | + $output_str = $step + 1; |
|
1205 | + } |
|
1206 | + } |
|
1207 | + |
|
1208 | + } else { |
|
1209 | + $all_postypes = geodir_get_posttypes(); |
|
1210 | + |
|
1211 | + if (!empty($all_postypes)) { |
|
1212 | + foreach ($all_postypes as $key) { |
|
1213 | + // update each GD CPT |
|
1214 | + $posts = $wpdb->get_results( "SELECT * FROM " . $wpdb->prefix . "geodir_" . $key . "_detail"); |
|
1215 | + |
|
1216 | + if (!empty($posts)) { |
|
1217 | + |
|
1218 | + foreach ($posts as $p) { |
|
1219 | + $p->post_type = $key; |
|
1220 | + $raw_tags = wp_get_object_terms($p->post_id, $p->post_type . '_tags', array('fields' => 'names')); |
|
1221 | + if (empty($raw_tags)) { |
|
1222 | + $post_tags = ''; |
|
1223 | + } else { |
|
1224 | + $post_tags = implode(",", $raw_tags); |
|
1225 | + } |
|
1226 | + $tablename = $plugin_prefix . $p->post_type . '_detail'; |
|
1227 | + $wpdb->query($wpdb->prepare("UPDATE " . $tablename . " SET post_tags=%s WHERE post_id =%d", $post_tags, $p->post_id)); |
|
1228 | + |
|
1229 | + } |
|
1230 | + $output_str .= "<li>" . $key . __(': Done', 'geodirectory') . "</li>"; |
|
1231 | + } |
|
1232 | + |
|
1233 | + } |
|
1234 | + |
|
1235 | + } |
|
1236 | + } |
|
1237 | + |
|
1238 | + |
|
1239 | + if ($is_error_during_diagnose) { |
|
1240 | + $info_div_class = "geodir_problem_info"; |
|
1241 | + $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='ratings' />"; |
|
1242 | + } else { |
|
1243 | + $info_div_class = "geodir_noproblem_info"; |
|
1244 | + $fix_button_txt = ''; |
|
1245 | + } |
|
1246 | + |
|
1247 | + if ($stepped_process) { |
|
1248 | + $percent = ($step/$max_step) * 100; |
|
1249 | + if ($output_str == 'done') { |
|
1250 | + echo $output_str; |
|
1251 | + } else { |
|
1252 | + $output = array( |
|
1253 | + 'step' => $output_str, |
|
1254 | + 'percent' => $percent |
|
1255 | + ); |
|
1256 | + echo json_encode($output); |
|
1257 | + } |
|
1258 | + } else { |
|
1259 | + echo "<ul class='$info_div_class'>"; |
|
1260 | + echo $output_str; |
|
1261 | + echo $fix_button_txt; |
|
1262 | + echo "</ul>"; |
|
1263 | + } |
|
1264 | 1264 | } |
1265 | 1265 | |
1266 | 1266 | /** |
@@ -1275,75 +1275,75 @@ discard block |
||
1275 | 1275 | */ |
1276 | 1276 | function geodir_diagnose_cats_sync() |
1277 | 1277 | { |
1278 | - global $wpdb, $plugin_prefix; |
|
1279 | - $fix = isset($_POST['fix']) ? true : false; |
|
1278 | + global $wpdb, $plugin_prefix; |
|
1279 | + $fix = isset($_POST['fix']) ? true : false; |
|
1280 | 1280 | |
1281 | - //if($fix){echo 'true';}else{echo 'false';} |
|
1282 | - $is_error_during_diagnose = false; |
|
1283 | - $output_str = ''; |
|
1281 | + //if($fix){echo 'true';}else{echo 'false';} |
|
1282 | + $is_error_during_diagnose = false; |
|
1283 | + $output_str = ''; |
|
1284 | 1284 | |
1285 | 1285 | |
1286 | - $all_postypes = geodir_get_posttypes(); |
|
1286 | + $all_postypes = geodir_get_posttypes(); |
|
1287 | 1287 | |
1288 | - if (!empty($all_postypes)) { |
|
1289 | - foreach ($all_postypes as $key) { |
|
1290 | - // update each GD CTP |
|
1291 | - $posts = $wpdb->get_results("SELECT * FROM " . $wpdb->prefix . "geodir_" . $key . "_detail d WHERE d." . $key . "category='' "); |
|
1288 | + if (!empty($all_postypes)) { |
|
1289 | + foreach ($all_postypes as $key) { |
|
1290 | + // update each GD CTP |
|
1291 | + $posts = $wpdb->get_results("SELECT * FROM " . $wpdb->prefix . "geodir_" . $key . "_detail d WHERE d." . $key . "category='' "); |
|
1292 | 1292 | |
1293 | - if (!empty($posts)) { |
|
1293 | + if (!empty($posts)) { |
|
1294 | 1294 | |
1295 | - foreach ($posts as $p) { |
|
1296 | - $p->post_type = $key; |
|
1297 | - $raw_cats = wp_get_object_terms($p->post_id, $p->post_type . 'category', array('fields' => 'ids')); |
|
1295 | + foreach ($posts as $p) { |
|
1296 | + $p->post_type = $key; |
|
1297 | + $raw_cats = wp_get_object_terms($p->post_id, $p->post_type . 'category', array('fields' => 'ids')); |
|
1298 | 1298 | |
1299 | - if (empty($raw_cats)) { |
|
1300 | - $post_categories = get_post_meta($p->post_id, 'post_categories', true); |
|
1299 | + if (empty($raw_cats)) { |
|
1300 | + $post_categories = get_post_meta($p->post_id, 'post_categories', true); |
|
1301 | 1301 | |
1302 | - if (!empty($post_categories) && !empty($post_categories[$p->post_type . 'category'])) { |
|
1303 | - $post_categories[$p->post_type . 'category'] = str_replace("d:", "", $post_categories[$p->post_type . 'category']); |
|
1304 | - foreach (explode(",", $post_categories[$p->post_type . 'category']) as $cat_part) { |
|
1305 | - if (is_numeric($cat_part)) { |
|
1306 | - $raw_cats[] = (int)$cat_part; |
|
1307 | - } |
|
1308 | - } |
|
1302 | + if (!empty($post_categories) && !empty($post_categories[$p->post_type . 'category'])) { |
|
1303 | + $post_categories[$p->post_type . 'category'] = str_replace("d:", "", $post_categories[$p->post_type . 'category']); |
|
1304 | + foreach (explode(",", $post_categories[$p->post_type . 'category']) as $cat_part) { |
|
1305 | + if (is_numeric($cat_part)) { |
|
1306 | + $raw_cats[] = (int)$cat_part; |
|
1307 | + } |
|
1308 | + } |
|
1309 | 1309 | |
1310 | - } |
|
1310 | + } |
|
1311 | 1311 | |
1312 | - if (!empty($raw_cats)) { |
|
1313 | - $term_taxonomy_ids = wp_set_object_terms($p->post_id, $raw_cats, $p->post_type . 'category'); |
|
1312 | + if (!empty($raw_cats)) { |
|
1313 | + $term_taxonomy_ids = wp_set_object_terms($p->post_id, $raw_cats, $p->post_type . 'category'); |
|
1314 | 1314 | |
1315 | - } |
|
1315 | + } |
|
1316 | 1316 | |
1317 | - } |
|
1317 | + } |
|
1318 | 1318 | |
1319 | 1319 | |
1320 | - if (empty($raw_cats)) { |
|
1321 | - $post_cats = ''; |
|
1322 | - } else { |
|
1323 | - $post_cats = ',' . implode(",", $raw_cats) . ','; |
|
1324 | - } |
|
1325 | - $tablename = $plugin_prefix . $p->post_type . '_detail'; |
|
1326 | - $wpdb->query($wpdb->prepare("UPDATE " . $tablename . " SET " . $p->post_type . "category=%s WHERE post_id =%d", $post_cats, $p->post_id)); |
|
1327 | - } |
|
1320 | + if (empty($raw_cats)) { |
|
1321 | + $post_cats = ''; |
|
1322 | + } else { |
|
1323 | + $post_cats = ',' . implode(",", $raw_cats) . ','; |
|
1324 | + } |
|
1325 | + $tablename = $plugin_prefix . $p->post_type . '_detail'; |
|
1326 | + $wpdb->query($wpdb->prepare("UPDATE " . $tablename . " SET " . $p->post_type . "category=%s WHERE post_id =%d", $post_cats, $p->post_id)); |
|
1327 | + } |
|
1328 | 1328 | |
1329 | - } |
|
1330 | - $output_str .= "<li>" . $key . __(': Done', 'geodirectory') . "</li>"; |
|
1329 | + } |
|
1330 | + $output_str .= "<li>" . $key . __(': Done', 'geodirectory') . "</li>"; |
|
1331 | 1331 | |
1332 | - } |
|
1332 | + } |
|
1333 | 1333 | |
1334 | - } |
|
1334 | + } |
|
1335 | 1335 | |
1336 | - if ($is_error_during_diagnose) { |
|
1337 | - $info_div_class = "geodir_problem_info"; |
|
1338 | - $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='ratings' />"; |
|
1339 | - } else { |
|
1340 | - $info_div_class = "geodir_noproblem_info"; |
|
1341 | - $fix_button_txt = ''; |
|
1342 | - } |
|
1343 | - echo "<ul class='$info_div_class'>"; |
|
1344 | - echo $output_str; |
|
1345 | - echo $fix_button_txt; |
|
1346 | - echo "</ul>"; |
|
1336 | + if ($is_error_during_diagnose) { |
|
1337 | + $info_div_class = "geodir_problem_info"; |
|
1338 | + $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='ratings' />"; |
|
1339 | + } else { |
|
1340 | + $info_div_class = "geodir_noproblem_info"; |
|
1341 | + $fix_button_txt = ''; |
|
1342 | + } |
|
1343 | + echo "<ul class='$info_div_class'>"; |
|
1344 | + echo $output_str; |
|
1345 | + echo $fix_button_txt; |
|
1346 | + echo "</ul>"; |
|
1347 | 1347 | |
1348 | 1348 | } |
1349 | 1349 | |
@@ -1357,61 +1357,61 @@ discard block |
||
1357 | 1357 | */ |
1358 | 1358 | function geodir_diagnose_version_clear() |
1359 | 1359 | { |
1360 | - global $wpdb, $plugin_prefix; |
|
1361 | - $fix = isset($_POST['fix']) ? true : false; |
|
1362 | - |
|
1363 | - //if($fix){echo 'true';}else{echo 'false';} |
|
1364 | - $is_error_during_diagnose = false; |
|
1365 | - $output_str = ''; |
|
1366 | - |
|
1367 | - |
|
1368 | - $gd_arr = array('GeoDirectory' => 'geodirectory_db_version', |
|
1369 | - 'Payment Manager' => 'geodir_payments_db_version', |
|
1370 | - 'GeoDirectory Framework' => 'gdf_db_version', |
|
1371 | - 'Advanced Search' => 'geodiradvancesearch_db_version', |
|
1372 | - 'Review Rating Manager' => 'geodir_reviewratings_db_version', |
|
1373 | - 'Claim Manager' => 'geodirclaim_db_version', |
|
1374 | - 'CPT Manager' => 'geodir_custom_posts_db_version', |
|
1375 | - 'Location Manager' => 'geodirlocation_db_version', |
|
1376 | - 'Payment Manager' => 'geodir_payments_db_version', |
|
1377 | - 'Events Manager' => 'geodirevents_db_version', |
|
1378 | - ); |
|
1379 | - |
|
1380 | - /** |
|
1381 | - * Filter the array of plugins to clear the version numbers for in the GD >Tools : clear all version numbers. |
|
1382 | - * |
|
1383 | - * @since 1.0.0 |
|
1384 | - * @param array $gd_arr The array or addons to clear, array('GeoDirectory' => 'geodirectory_db_version',... |
|
1385 | - */ |
|
1386 | - $ver_arr = apply_filters('geodir_db_version_name', $gd_arr); |
|
1387 | - |
|
1388 | - if (!empty($ver_arr)) { |
|
1389 | - foreach ($ver_arr as $key => $val) { |
|
1390 | - if (delete_option($val)) { |
|
1391 | - $output_str .= "<li>" . $key . __(' Version: Deleted', 'geodirectory') . "</li>"; |
|
1392 | - } else { |
|
1393 | - $output_str .= "<li>" . $key . __(' Version: Not Found', 'geodirectory') . "</li>"; |
|
1394 | - } |
|
1395 | - |
|
1396 | - } |
|
1397 | - |
|
1398 | - if ($output_str) { |
|
1399 | - $output_str .= "<li><strong>" . __(' Upgrade/install scripts will run on next page reload.', 'geodirectory') . "</strong></li>"; |
|
1400 | - } |
|
1401 | - |
|
1402 | - } |
|
1403 | - |
|
1404 | - if ($is_error_during_diagnose) { |
|
1405 | - $info_div_class = "geodir_problem_info"; |
|
1406 | - $fix_button_txt = ""; |
|
1407 | - } else { |
|
1408 | - $info_div_class = "geodir_noproblem_info"; |
|
1409 | - $fix_button_txt = ''; |
|
1410 | - } |
|
1411 | - echo "<ul class='$info_div_class'>"; |
|
1412 | - echo $output_str; |
|
1413 | - echo $fix_button_txt; |
|
1414 | - echo "</ul>"; |
|
1360 | + global $wpdb, $plugin_prefix; |
|
1361 | + $fix = isset($_POST['fix']) ? true : false; |
|
1362 | + |
|
1363 | + //if($fix){echo 'true';}else{echo 'false';} |
|
1364 | + $is_error_during_diagnose = false; |
|
1365 | + $output_str = ''; |
|
1366 | + |
|
1367 | + |
|
1368 | + $gd_arr = array('GeoDirectory' => 'geodirectory_db_version', |
|
1369 | + 'Payment Manager' => 'geodir_payments_db_version', |
|
1370 | + 'GeoDirectory Framework' => 'gdf_db_version', |
|
1371 | + 'Advanced Search' => 'geodiradvancesearch_db_version', |
|
1372 | + 'Review Rating Manager' => 'geodir_reviewratings_db_version', |
|
1373 | + 'Claim Manager' => 'geodirclaim_db_version', |
|
1374 | + 'CPT Manager' => 'geodir_custom_posts_db_version', |
|
1375 | + 'Location Manager' => 'geodirlocation_db_version', |
|
1376 | + 'Payment Manager' => 'geodir_payments_db_version', |
|
1377 | + 'Events Manager' => 'geodirevents_db_version', |
|
1378 | + ); |
|
1379 | + |
|
1380 | + /** |
|
1381 | + * Filter the array of plugins to clear the version numbers for in the GD >Tools : clear all version numbers. |
|
1382 | + * |
|
1383 | + * @since 1.0.0 |
|
1384 | + * @param array $gd_arr The array or addons to clear, array('GeoDirectory' => 'geodirectory_db_version',... |
|
1385 | + */ |
|
1386 | + $ver_arr = apply_filters('geodir_db_version_name', $gd_arr); |
|
1387 | + |
|
1388 | + if (!empty($ver_arr)) { |
|
1389 | + foreach ($ver_arr as $key => $val) { |
|
1390 | + if (delete_option($val)) { |
|
1391 | + $output_str .= "<li>" . $key . __(' Version: Deleted', 'geodirectory') . "</li>"; |
|
1392 | + } else { |
|
1393 | + $output_str .= "<li>" . $key . __(' Version: Not Found', 'geodirectory') . "</li>"; |
|
1394 | + } |
|
1395 | + |
|
1396 | + } |
|
1397 | + |
|
1398 | + if ($output_str) { |
|
1399 | + $output_str .= "<li><strong>" . __(' Upgrade/install scripts will run on next page reload.', 'geodirectory') . "</strong></li>"; |
|
1400 | + } |
|
1401 | + |
|
1402 | + } |
|
1403 | + |
|
1404 | + if ($is_error_during_diagnose) { |
|
1405 | + $info_div_class = "geodir_problem_info"; |
|
1406 | + $fix_button_txt = ""; |
|
1407 | + } else { |
|
1408 | + $info_div_class = "geodir_noproblem_info"; |
|
1409 | + $fix_button_txt = ''; |
|
1410 | + } |
|
1411 | + echo "<ul class='$info_div_class'>"; |
|
1412 | + echo $output_str; |
|
1413 | + echo $fix_button_txt; |
|
1414 | + echo "</ul>"; |
|
1415 | 1415 | |
1416 | 1416 | } |
1417 | 1417 | |
@@ -1425,59 +1425,59 @@ discard block |
||
1425 | 1425 | */ |
1426 | 1426 | function geodir_diagnose_ratings() |
1427 | 1427 | { |
1428 | - global $wpdb; |
|
1429 | - $fix = isset($_POST['fix']) ? true : false; |
|
1430 | - |
|
1431 | - //if($fix){echo 'true';}else{echo 'false';} |
|
1432 | - $is_error_during_diagnose = false; |
|
1433 | - $output_str = ''; |
|
1434 | - |
|
1435 | - // check review locations |
|
1436 | - if ($wpdb->get_results("SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE post_city='' OR post_city IS NULL OR post_latitude='' OR post_latitude IS NULL")) { |
|
1437 | - $output_str .= "<li>" . __('Review locations missing or broken', 'geodirectory') . "</li>"; |
|
1438 | - $is_error_during_diagnose = true; |
|
1439 | - |
|
1440 | - if ($fix) { |
|
1441 | - if (geodir_fix_review_location()) { |
|
1442 | - $output_str .= "<li><strong>" . __('-->FIXED: Review locations fixed', 'geodirectory') . "</strong></li>"; |
|
1443 | - } else { |
|
1444 | - $output_str .= "<li><strong>" . __('-->FAILED: Review locations fix failed', 'geodirectory') . "</strong></li>"; |
|
1445 | - } |
|
1446 | - } |
|
1447 | - |
|
1448 | - } else { |
|
1449 | - $output_str .= "<li>" . __('Review locations ok', 'geodirectory') . "</li>"; |
|
1450 | - } |
|
1451 | - |
|
1452 | - // check review content |
|
1453 | - if ($wpdb->get_results("SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_content IS NULL")) { |
|
1454 | - $output_str .= "<li>" . __('Review content missing or broken', 'geodirectory') . "</li>"; |
|
1455 | - $is_error_during_diagnose = true; |
|
1456 | - |
|
1457 | - if ($fix) { |
|
1458 | - if (geodir_fix_review_content()) { |
|
1459 | - $output_str .= "<li><strong>" . __('-->FIXED: Review content fixed', 'geodirectory') . "</strong></li>"; |
|
1460 | - } else { |
|
1461 | - $output_str .= "<li><strong>" . __('-->FAILED: Review content fix failed', 'geodirectory') . "</strong></li>"; |
|
1462 | - } |
|
1463 | - } |
|
1464 | - |
|
1465 | - } else { |
|
1466 | - $output_str .= "<li>" . __('Review content ok', 'geodirectory') . "</li>"; |
|
1467 | - } |
|
1468 | - |
|
1469 | - |
|
1470 | - if ($is_error_during_diagnose) { |
|
1471 | - $info_div_class = "geodir_problem_info"; |
|
1472 | - $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='ratings' />"; |
|
1473 | - } else { |
|
1474 | - $info_div_class = "geodir_noproblem_info"; |
|
1475 | - $fix_button_txt = ''; |
|
1476 | - } |
|
1477 | - echo "<ul class='$info_div_class'>"; |
|
1478 | - echo $output_str; |
|
1479 | - echo $fix_button_txt; |
|
1480 | - echo "</ul>"; |
|
1428 | + global $wpdb; |
|
1429 | + $fix = isset($_POST['fix']) ? true : false; |
|
1430 | + |
|
1431 | + //if($fix){echo 'true';}else{echo 'false';} |
|
1432 | + $is_error_during_diagnose = false; |
|
1433 | + $output_str = ''; |
|
1434 | + |
|
1435 | + // check review locations |
|
1436 | + if ($wpdb->get_results("SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE post_city='' OR post_city IS NULL OR post_latitude='' OR post_latitude IS NULL")) { |
|
1437 | + $output_str .= "<li>" . __('Review locations missing or broken', 'geodirectory') . "</li>"; |
|
1438 | + $is_error_during_diagnose = true; |
|
1439 | + |
|
1440 | + if ($fix) { |
|
1441 | + if (geodir_fix_review_location()) { |
|
1442 | + $output_str .= "<li><strong>" . __('-->FIXED: Review locations fixed', 'geodirectory') . "</strong></li>"; |
|
1443 | + } else { |
|
1444 | + $output_str .= "<li><strong>" . __('-->FAILED: Review locations fix failed', 'geodirectory') . "</strong></li>"; |
|
1445 | + } |
|
1446 | + } |
|
1447 | + |
|
1448 | + } else { |
|
1449 | + $output_str .= "<li>" . __('Review locations ok', 'geodirectory') . "</li>"; |
|
1450 | + } |
|
1451 | + |
|
1452 | + // check review content |
|
1453 | + if ($wpdb->get_results("SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_content IS NULL")) { |
|
1454 | + $output_str .= "<li>" . __('Review content missing or broken', 'geodirectory') . "</li>"; |
|
1455 | + $is_error_during_diagnose = true; |
|
1456 | + |
|
1457 | + if ($fix) { |
|
1458 | + if (geodir_fix_review_content()) { |
|
1459 | + $output_str .= "<li><strong>" . __('-->FIXED: Review content fixed', 'geodirectory') . "</strong></li>"; |
|
1460 | + } else { |
|
1461 | + $output_str .= "<li><strong>" . __('-->FAILED: Review content fix failed', 'geodirectory') . "</strong></li>"; |
|
1462 | + } |
|
1463 | + } |
|
1464 | + |
|
1465 | + } else { |
|
1466 | + $output_str .= "<li>" . __('Review content ok', 'geodirectory') . "</li>"; |
|
1467 | + } |
|
1468 | + |
|
1469 | + |
|
1470 | + if ($is_error_during_diagnose) { |
|
1471 | + $info_div_class = "geodir_problem_info"; |
|
1472 | + $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='ratings' />"; |
|
1473 | + } else { |
|
1474 | + $info_div_class = "geodir_noproblem_info"; |
|
1475 | + $fix_button_txt = ''; |
|
1476 | + } |
|
1477 | + echo "<ul class='$info_div_class'>"; |
|
1478 | + echo $output_str; |
|
1479 | + echo $fix_button_txt; |
|
1480 | + echo "</ul>"; |
|
1481 | 1481 | |
1482 | 1482 | } |
1483 | 1483 | |
@@ -1491,57 +1491,57 @@ discard block |
||
1491 | 1491 | */ |
1492 | 1492 | function geodir_diagnose_multisite_conversion() |
1493 | 1493 | { |
1494 | - global $wpdb; |
|
1495 | - $fix = isset($_POST['fix']) ? true : false; |
|
1496 | - //if($fix){echo 'true';}else{echo 'false';} |
|
1497 | - $is_error_during_diagnose = false; |
|
1498 | - $output_str = ''; |
|
1499 | - |
|
1500 | - $filter_arr = array(); |
|
1501 | - $filter_arr['output_str'] = $output_str; |
|
1502 | - $filter_arr['is_error_during_diagnose'] = $is_error_during_diagnose; |
|
1503 | - $table_arr = array('geodir_countries' => __('Countries', 'geodirectory'), |
|
1504 | - 'geodir_custom_fields' => __('Custom fields', 'geodirectory'), |
|
1505 | - 'geodir_post_icon' => __('Post icon', 'geodirectory'), |
|
1506 | - 'geodir_attachments' => __('Attachments', 'geodirectory'), |
|
1507 | - 'geodir_post_review' => __('Reviews', 'geodirectory'), |
|
1508 | - 'geodir_custom_sort_fields' => __('Custom sort fields', 'geodirectory'), |
|
1509 | - 'geodir_gd_place_detail' => __('Place detail', 'geodirectory') |
|
1510 | - ); |
|
1511 | - |
|
1512 | - // allow other addons to hook in and add their checks |
|
1513 | - |
|
1514 | - /** |
|
1515 | - * Filter the array of tables. |
|
1516 | - * |
|
1517 | - * Filter the array of tables to check during the GD>Tools multisite DB conversion tool check, this allows addons to add their DB tables to the checks. |
|
1518 | - * |
|
1519 | - * @since 1.0.0 |
|
1520 | - * @param array $table_arr The array of tables to check, array('geodir_countries' => __('Countries', 'geodirectory'),... |
|
1521 | - */ |
|
1522 | - $table_arr = apply_filters('geodir_diagnose_multisite_conversion', $table_arr); |
|
1523 | - |
|
1524 | - foreach ($table_arr as $table => $table_name) { |
|
1525 | - // Diagnose table |
|
1526 | - $filter_arr = geodir_diagnose_multisite_table($filter_arr, $table, $table_name, $fix); |
|
1527 | - } |
|
1528 | - |
|
1529 | - |
|
1530 | - $output_str = $filter_arr['output_str']; |
|
1531 | - $is_error_during_diagnose = $filter_arr['is_error_during_diagnose']; |
|
1532 | - |
|
1533 | - |
|
1534 | - if ($is_error_during_diagnose) { |
|
1535 | - $info_div_class = "geodir_problem_info"; |
|
1536 | - $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='multisite_conversion' />"; |
|
1537 | - } else { |
|
1538 | - $info_div_class = "geodir_noproblem_info"; |
|
1539 | - $fix_button_txt = ''; |
|
1540 | - } |
|
1541 | - echo "<ul class='$info_div_class'>"; |
|
1542 | - echo $output_str; |
|
1543 | - echo $fix_button_txt; |
|
1544 | - echo "</ul>"; |
|
1494 | + global $wpdb; |
|
1495 | + $fix = isset($_POST['fix']) ? true : false; |
|
1496 | + //if($fix){echo 'true';}else{echo 'false';} |
|
1497 | + $is_error_during_diagnose = false; |
|
1498 | + $output_str = ''; |
|
1499 | + |
|
1500 | + $filter_arr = array(); |
|
1501 | + $filter_arr['output_str'] = $output_str; |
|
1502 | + $filter_arr['is_error_during_diagnose'] = $is_error_during_diagnose; |
|
1503 | + $table_arr = array('geodir_countries' => __('Countries', 'geodirectory'), |
|
1504 | + 'geodir_custom_fields' => __('Custom fields', 'geodirectory'), |
|
1505 | + 'geodir_post_icon' => __('Post icon', 'geodirectory'), |
|
1506 | + 'geodir_attachments' => __('Attachments', 'geodirectory'), |
|
1507 | + 'geodir_post_review' => __('Reviews', 'geodirectory'), |
|
1508 | + 'geodir_custom_sort_fields' => __('Custom sort fields', 'geodirectory'), |
|
1509 | + 'geodir_gd_place_detail' => __('Place detail', 'geodirectory') |
|
1510 | + ); |
|
1511 | + |
|
1512 | + // allow other addons to hook in and add their checks |
|
1513 | + |
|
1514 | + /** |
|
1515 | + * Filter the array of tables. |
|
1516 | + * |
|
1517 | + * Filter the array of tables to check during the GD>Tools multisite DB conversion tool check, this allows addons to add their DB tables to the checks. |
|
1518 | + * |
|
1519 | + * @since 1.0.0 |
|
1520 | + * @param array $table_arr The array of tables to check, array('geodir_countries' => __('Countries', 'geodirectory'),... |
|
1521 | + */ |
|
1522 | + $table_arr = apply_filters('geodir_diagnose_multisite_conversion', $table_arr); |
|
1523 | + |
|
1524 | + foreach ($table_arr as $table => $table_name) { |
|
1525 | + // Diagnose table |
|
1526 | + $filter_arr = geodir_diagnose_multisite_table($filter_arr, $table, $table_name, $fix); |
|
1527 | + } |
|
1528 | + |
|
1529 | + |
|
1530 | + $output_str = $filter_arr['output_str']; |
|
1531 | + $is_error_during_diagnose = $filter_arr['is_error_during_diagnose']; |
|
1532 | + |
|
1533 | + |
|
1534 | + if ($is_error_during_diagnose) { |
|
1535 | + $info_div_class = "geodir_problem_info"; |
|
1536 | + $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='multisite_conversion' />"; |
|
1537 | + } else { |
|
1538 | + $info_div_class = "geodir_noproblem_info"; |
|
1539 | + $fix_button_txt = ''; |
|
1540 | + } |
|
1541 | + echo "<ul class='$info_div_class'>"; |
|
1542 | + echo $output_str; |
|
1543 | + echo $fix_button_txt; |
|
1544 | + echo "</ul>"; |
|
1545 | 1545 | } |
1546 | 1546 | |
1547 | 1547 | /** |
@@ -1559,39 +1559,39 @@ discard block |
||
1559 | 1559 | */ |
1560 | 1560 | function geodir_fix_virtual_page($slug, $page_title, $old_id, $option) |
1561 | 1561 | { |
1562 | - global $wpdb, $current_user; |
|
1563 | - |
|
1564 | - if (!empty($old_id)) { |
|
1565 | - wp_delete_post($old_id, true); |
|
1566 | - }//delete post if already there |
|
1567 | - else { |
|
1568 | - $page_found = $wpdb->get_var( |
|
1569 | - $wpdb->prepare( |
|
1570 | - "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;", |
|
1571 | - array($slug) |
|
1572 | - ) |
|
1573 | - ); |
|
1574 | - wp_delete_post($page_found, true); |
|
1575 | - |
|
1576 | - } |
|
1577 | - |
|
1578 | - $page_data = array( |
|
1579 | - 'post_status' => 'publish', |
|
1580 | - 'post_type' => 'page', |
|
1581 | - 'post_author' => $current_user->ID, |
|
1582 | - 'post_name' => $slug, |
|
1583 | - 'post_title' => $page_title, |
|
1584 | - 'post_content' => '', |
|
1585 | - 'post_parent' => 0, |
|
1586 | - 'comment_status' => 'closed' |
|
1587 | - ); |
|
1588 | - $page_id = wp_insert_post($page_data); |
|
1589 | - update_option($option, $page_id); |
|
1590 | - if ($page_id) { |
|
1591 | - return true; |
|
1592 | - } else { |
|
1593 | - return false; |
|
1594 | - } |
|
1562 | + global $wpdb, $current_user; |
|
1563 | + |
|
1564 | + if (!empty($old_id)) { |
|
1565 | + wp_delete_post($old_id, true); |
|
1566 | + }//delete post if already there |
|
1567 | + else { |
|
1568 | + $page_found = $wpdb->get_var( |
|
1569 | + $wpdb->prepare( |
|
1570 | + "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;", |
|
1571 | + array($slug) |
|
1572 | + ) |
|
1573 | + ); |
|
1574 | + wp_delete_post($page_found, true); |
|
1575 | + |
|
1576 | + } |
|
1577 | + |
|
1578 | + $page_data = array( |
|
1579 | + 'post_status' => 'publish', |
|
1580 | + 'post_type' => 'page', |
|
1581 | + 'post_author' => $current_user->ID, |
|
1582 | + 'post_name' => $slug, |
|
1583 | + 'post_title' => $page_title, |
|
1584 | + 'post_content' => '', |
|
1585 | + 'post_parent' => 0, |
|
1586 | + 'comment_status' => 'closed' |
|
1587 | + ); |
|
1588 | + $page_id = wp_insert_post($page_data); |
|
1589 | + update_option($option, $page_id); |
|
1590 | + if ($page_id) { |
|
1591 | + return true; |
|
1592 | + } else { |
|
1593 | + return false; |
|
1594 | + } |
|
1595 | 1595 | } |
1596 | 1596 | |
1597 | 1597 | /** |
@@ -1603,212 +1603,212 @@ discard block |
||
1603 | 1603 | */ |
1604 | 1604 | function geodir_diagnose_default_pages() |
1605 | 1605 | { |
1606 | - global $wpdb; |
|
1607 | - $is_error_during_diagnose = false; |
|
1608 | - $output_str = ''; |
|
1609 | - $fix = isset($_POST['fix']) ? true : false; |
|
1610 | - |
|
1611 | - ////////////////////////////////// |
|
1612 | - /* Diagnose GD Home Page Starts */ |
|
1613 | - ////////////////////////////////// |
|
1614 | - $option_value = get_option('geodir_home_page'); |
|
1615 | - $page = get_post($option_value); |
|
1616 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1617 | - |
|
1618 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1619 | - $output_str .= "<li>" . __('GD Home page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1620 | - else { |
|
1621 | - $is_error_during_diagnose = true; |
|
1622 | - $output_str .= "<li><strong>" . __('GD Home page is missing.', 'geodirectory') . "</strong></li>"; |
|
1623 | - if ($fix) { |
|
1624 | - if (geodir_fix_virtual_page('gd-home', __('GD Home page', 'geodirectory'), $page_found, 'geodir_home_page')) { |
|
1625 | - $output_str .= "<li><strong>" . __('-->FIXED: GD Home page fixed', 'geodirectory') . "</strong></li>"; |
|
1626 | - } else { |
|
1627 | - $output_str .= "<li><strong>" . __('-->FAILED: GD Home page fix failed', 'geodirectory') . "</strong></li>"; |
|
1628 | - } |
|
1629 | - } |
|
1630 | - } |
|
1631 | - |
|
1632 | - //////////////////////////////// |
|
1633 | - /* Diagnose GD Home Page Ends */ |
|
1634 | - //////////////////////////////// |
|
1635 | - |
|
1636 | - ////////////////////////////////// |
|
1637 | - /* Diagnose Add Listing Page Starts */ |
|
1638 | - ////////////////////////////////// |
|
1639 | - $option_value = get_option('geodir_add_listing_page'); |
|
1640 | - $page = get_post($option_value); |
|
1641 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1642 | - |
|
1643 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1644 | - $output_str .= "<li>" . __('Add Listing page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1645 | - else { |
|
1646 | - $is_error_during_diagnose = true; |
|
1647 | - $output_str .= "<li><strong>" . __('Add Listing page is missing.', 'geodirectory') . "</strong></li>"; |
|
1648 | - if ($fix) { |
|
1649 | - if (geodir_fix_virtual_page('add-listing', __('Add Listing', 'geodirectory'), $page_found, 'geodir_add_listing_page')) { |
|
1650 | - $output_str .= "<li><strong>" . __('-->FIXED: Add Listing page fixed', 'geodirectory') . "</strong></li>"; |
|
1651 | - } else { |
|
1652 | - $output_str .= "<li><strong>" . __('-->FAILED: Add Listing page fix failed', 'geodirectory') . "</strong></li>"; |
|
1653 | - } |
|
1654 | - } |
|
1655 | - } |
|
1656 | - |
|
1657 | - //////////////////////////////// |
|
1658 | - /* Diagnose Add Listing Page Ends */ |
|
1659 | - //////////////////////////////// |
|
1660 | - |
|
1661 | - |
|
1662 | - ////////////////////////////////// |
|
1663 | - /* Diagnose Listing Preview Page Starts */ |
|
1664 | - ////////////////////////////////// |
|
1665 | - $option_value = get_option('geodir_preview_page'); |
|
1666 | - $page = get_post($option_value); |
|
1667 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1668 | - |
|
1669 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1670 | - $output_str .= "<li>" . __('Listing Preview page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1671 | - else { |
|
1672 | - $is_error_during_diagnose = true; |
|
1673 | - $output_str .= "<li><strong>" . __('Listing Preview page is missing.', 'geodirectory') . "</strong></li>"; |
|
1674 | - if ($fix) { |
|
1675 | - if (geodir_fix_virtual_page('listing-preview', __('Listing Preview', 'geodirectory'), $page_found, 'geodir_preview_page')) { |
|
1676 | - $output_str .= "<li><strong>" . __('-->FIXED: Listing Preview page fixed', 'geodirectory') . "</strong></li>"; |
|
1677 | - } else { |
|
1678 | - $output_str .= "<li><strong>" . __('-->FAILED: Listing Preview page fix failed', 'geodirectory') . "</strong></li>"; |
|
1679 | - } |
|
1680 | - } |
|
1681 | - } |
|
1682 | - |
|
1683 | - //////////////////////////////// |
|
1684 | - /* Diagnose Listing Preview Page Ends */ |
|
1685 | - //////////////////////////////// |
|
1686 | - |
|
1687 | - ////////////////////////////////// |
|
1688 | - /* Diagnose Listing Success Page Starts */ |
|
1689 | - ////////////////////////////////// |
|
1690 | - $option_value = get_option('geodir_success_page'); |
|
1691 | - $page = get_post($option_value); |
|
1692 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1693 | - |
|
1694 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1695 | - $output_str .= "<li>" . __('Listing Success page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1696 | - else { |
|
1697 | - $is_error_during_diagnose = true; |
|
1698 | - $output_str .= "<li><strong>" . __('Listing Success page is missing.', 'geodirectory') . "</strong></li>"; |
|
1699 | - if ($fix) { |
|
1700 | - if (geodir_fix_virtual_page('listing-success', __('Listing Success', 'geodirectory'), $page_found, 'geodir_success_page')) { |
|
1701 | - $output_str .= "<li><strong>" . __('-->FIXED: Listing Success page fixed', 'geodirectory') . "</strong></li>"; |
|
1702 | - } else { |
|
1703 | - $output_str .= "<li><strong>" . __('-->FAILED: Listing Success page fix failed', 'geodirectory') . "</strong></li>"; |
|
1704 | - } |
|
1705 | - } |
|
1706 | - } |
|
1707 | - |
|
1708 | - //////////////////////////////// |
|
1709 | - /* Diagnose Listing Sucess Page Ends */ |
|
1710 | - //////////////////////////////// |
|
1711 | - |
|
1712 | - ////////////////////////////////// |
|
1713 | - /* Diagnose Info Page Starts */ |
|
1714 | - ////////////////////////////////// |
|
1715 | - $option_value = get_option('geodir_info_page'); |
|
1716 | - $page = get_post($option_value); |
|
1717 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1718 | - |
|
1719 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1720 | - $output_str .= "<li>" . __('Info page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1721 | - else { |
|
1722 | - $is_error_during_diagnose = true; |
|
1723 | - $output_str .= "<li><strong>" . __('Info page is missing.', 'geodirectory') . "</strong></li>"; |
|
1724 | - if ($fix) { |
|
1725 | - if (geodir_fix_virtual_page('gd-info', __('Info', 'geodirectory'), $page_found, 'geodir_info_page')) { |
|
1726 | - $output_str .= "<li><strong>" . __('-->FIXED: Info page fixed', 'geodirectory') . "</strong></li>"; |
|
1727 | - } else { |
|
1728 | - $output_str .= "<li><strong>" . __('-->FAILED: Info page fix failed', 'geodirectory') . "</strong></li>"; |
|
1729 | - } |
|
1730 | - } |
|
1731 | - } |
|
1732 | - |
|
1733 | - //////////////////////////////// |
|
1734 | - /* Diagnose Info Page Ends */ |
|
1735 | - //////////////////////////////// |
|
1736 | - |
|
1737 | - ////////////////////////////////// |
|
1738 | - /* Diagnose Login Page Starts */ |
|
1739 | - ////////////////////////////////// |
|
1740 | - $option_value = get_option('geodir_login_page'); |
|
1741 | - $page = get_post($option_value); |
|
1742 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1743 | - |
|
1744 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1745 | - $output_str .= "<li>" . __('Login page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1746 | - else { |
|
1747 | - $is_error_during_diagnose = true; |
|
1748 | - $output_str .= "<li><strong>" . __('Login page is missing.', 'geodirectory') . "</strong></li>"; |
|
1749 | - if ($fix) { |
|
1750 | - if (geodir_fix_virtual_page('gd-login', __('Login', 'geodirectory'), $page_found, 'geodir_login_page')) { |
|
1751 | - $output_str .= "<li><strong>" . __('-->FIXED: Login page fixed', 'geodirectory') . "</strong></li>"; |
|
1752 | - } else { |
|
1753 | - $output_str .= "<li><strong>" . __('-->FAILED: Login page fix failed', 'geodirectory') . "</strong></li>"; |
|
1754 | - } |
|
1755 | - } |
|
1756 | - } |
|
1757 | - |
|
1758 | - //////////////////////////////// |
|
1759 | - /* Diagnose Info Page Ends */ |
|
1760 | - //////////////////////////////// |
|
1761 | - |
|
1762 | - ////////////////////////////////// |
|
1763 | - /* Diagnose Location Page Starts */ |
|
1764 | - ////////////////////////////////// |
|
1765 | - $option_value = get_option('geodir_location_page'); |
|
1766 | - $page = get_post($option_value); |
|
1767 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1768 | - |
|
1769 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1770 | - $output_str .= "<li>" . __('Location page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1771 | - else { |
|
1772 | - $is_error_during_diagnose = true; |
|
1773 | - $output_str .= "<li><strong>" . __('Location page is missing.', 'geodirectory') . "</strong></li>"; |
|
1774 | - if ($fix) { |
|
1775 | - if (geodir_fix_virtual_page('location', __('Location', 'geodirectory'), $page_found, 'geodir_location_page')) { |
|
1776 | - $output_str .= "<li><strong>" . __('-->FIXED: Location page fixed', 'geodirectory') . "</strong></li>"; |
|
1777 | - } else { |
|
1778 | - $output_str .= "<li><strong>" . __('-->FAILED: Location page fix failed', 'geodirectory') . "</strong></li>"; |
|
1779 | - } |
|
1780 | - } |
|
1781 | - } |
|
1782 | - |
|
1783 | - //////////////////////////////// |
|
1784 | - /* Diagnose Location Page Ends */ |
|
1785 | - //////////////////////////////// |
|
1786 | - |
|
1787 | - $page_chk_arr = array('output_str'=>$output_str,'is_error_during_diagnose'=>$is_error_during_diagnose ); |
|
1788 | - /** |
|
1789 | - * This action is called at the end of the GD Tools page check function. |
|
1790 | - * |
|
1791 | - * @since 1.5.2 |
|
1792 | - */ |
|
1793 | - $page_chk_arr = apply_filters('geodir_diagnose_default_pages',$page_chk_arr); |
|
1794 | - |
|
1795 | - $output_str = $page_chk_arr['output_str']; |
|
1796 | - $is_error_during_diagnose = $page_chk_arr['is_error_during_diagnose']; |
|
1797 | - |
|
1798 | - if ($is_error_during_diagnose) { |
|
1799 | - if ($fix) { |
|
1800 | - flush_rewrite_rules(); |
|
1801 | - } |
|
1802 | - $info_div_class = "geodir_problem_info"; |
|
1803 | - $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='default_pages' />"; |
|
1804 | - } else { |
|
1805 | - $info_div_class = "geodir_noproblem_info"; |
|
1806 | - $fix_button_txt = ''; |
|
1807 | - } |
|
1808 | - echo "<ul class='$info_div_class'>"; |
|
1809 | - echo $output_str; |
|
1810 | - echo $fix_button_txt; |
|
1811 | - echo "</ul>"; |
|
1606 | + global $wpdb; |
|
1607 | + $is_error_during_diagnose = false; |
|
1608 | + $output_str = ''; |
|
1609 | + $fix = isset($_POST['fix']) ? true : false; |
|
1610 | + |
|
1611 | + ////////////////////////////////// |
|
1612 | + /* Diagnose GD Home Page Starts */ |
|
1613 | + ////////////////////////////////// |
|
1614 | + $option_value = get_option('geodir_home_page'); |
|
1615 | + $page = get_post($option_value); |
|
1616 | + if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1617 | + |
|
1618 | + if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1619 | + $output_str .= "<li>" . __('GD Home page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1620 | + else { |
|
1621 | + $is_error_during_diagnose = true; |
|
1622 | + $output_str .= "<li><strong>" . __('GD Home page is missing.', 'geodirectory') . "</strong></li>"; |
|
1623 | + if ($fix) { |
|
1624 | + if (geodir_fix_virtual_page('gd-home', __('GD Home page', 'geodirectory'), $page_found, 'geodir_home_page')) { |
|
1625 | + $output_str .= "<li><strong>" . __('-->FIXED: GD Home page fixed', 'geodirectory') . "</strong></li>"; |
|
1626 | + } else { |
|
1627 | + $output_str .= "<li><strong>" . __('-->FAILED: GD Home page fix failed', 'geodirectory') . "</strong></li>"; |
|
1628 | + } |
|
1629 | + } |
|
1630 | + } |
|
1631 | + |
|
1632 | + //////////////////////////////// |
|
1633 | + /* Diagnose GD Home Page Ends */ |
|
1634 | + //////////////////////////////// |
|
1635 | + |
|
1636 | + ////////////////////////////////// |
|
1637 | + /* Diagnose Add Listing Page Starts */ |
|
1638 | + ////////////////////////////////// |
|
1639 | + $option_value = get_option('geodir_add_listing_page'); |
|
1640 | + $page = get_post($option_value); |
|
1641 | + if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1642 | + |
|
1643 | + if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1644 | + $output_str .= "<li>" . __('Add Listing page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1645 | + else { |
|
1646 | + $is_error_during_diagnose = true; |
|
1647 | + $output_str .= "<li><strong>" . __('Add Listing page is missing.', 'geodirectory') . "</strong></li>"; |
|
1648 | + if ($fix) { |
|
1649 | + if (geodir_fix_virtual_page('add-listing', __('Add Listing', 'geodirectory'), $page_found, 'geodir_add_listing_page')) { |
|
1650 | + $output_str .= "<li><strong>" . __('-->FIXED: Add Listing page fixed', 'geodirectory') . "</strong></li>"; |
|
1651 | + } else { |
|
1652 | + $output_str .= "<li><strong>" . __('-->FAILED: Add Listing page fix failed', 'geodirectory') . "</strong></li>"; |
|
1653 | + } |
|
1654 | + } |
|
1655 | + } |
|
1656 | + |
|
1657 | + //////////////////////////////// |
|
1658 | + /* Diagnose Add Listing Page Ends */ |
|
1659 | + //////////////////////////////// |
|
1660 | + |
|
1661 | + |
|
1662 | + ////////////////////////////////// |
|
1663 | + /* Diagnose Listing Preview Page Starts */ |
|
1664 | + ////////////////////////////////// |
|
1665 | + $option_value = get_option('geodir_preview_page'); |
|
1666 | + $page = get_post($option_value); |
|
1667 | + if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1668 | + |
|
1669 | + if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1670 | + $output_str .= "<li>" . __('Listing Preview page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1671 | + else { |
|
1672 | + $is_error_during_diagnose = true; |
|
1673 | + $output_str .= "<li><strong>" . __('Listing Preview page is missing.', 'geodirectory') . "</strong></li>"; |
|
1674 | + if ($fix) { |
|
1675 | + if (geodir_fix_virtual_page('listing-preview', __('Listing Preview', 'geodirectory'), $page_found, 'geodir_preview_page')) { |
|
1676 | + $output_str .= "<li><strong>" . __('-->FIXED: Listing Preview page fixed', 'geodirectory') . "</strong></li>"; |
|
1677 | + } else { |
|
1678 | + $output_str .= "<li><strong>" . __('-->FAILED: Listing Preview page fix failed', 'geodirectory') . "</strong></li>"; |
|
1679 | + } |
|
1680 | + } |
|
1681 | + } |
|
1682 | + |
|
1683 | + //////////////////////////////// |
|
1684 | + /* Diagnose Listing Preview Page Ends */ |
|
1685 | + //////////////////////////////// |
|
1686 | + |
|
1687 | + ////////////////////////////////// |
|
1688 | + /* Diagnose Listing Success Page Starts */ |
|
1689 | + ////////////////////////////////// |
|
1690 | + $option_value = get_option('geodir_success_page'); |
|
1691 | + $page = get_post($option_value); |
|
1692 | + if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1693 | + |
|
1694 | + if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1695 | + $output_str .= "<li>" . __('Listing Success page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1696 | + else { |
|
1697 | + $is_error_during_diagnose = true; |
|
1698 | + $output_str .= "<li><strong>" . __('Listing Success page is missing.', 'geodirectory') . "</strong></li>"; |
|
1699 | + if ($fix) { |
|
1700 | + if (geodir_fix_virtual_page('listing-success', __('Listing Success', 'geodirectory'), $page_found, 'geodir_success_page')) { |
|
1701 | + $output_str .= "<li><strong>" . __('-->FIXED: Listing Success page fixed', 'geodirectory') . "</strong></li>"; |
|
1702 | + } else { |
|
1703 | + $output_str .= "<li><strong>" . __('-->FAILED: Listing Success page fix failed', 'geodirectory') . "</strong></li>"; |
|
1704 | + } |
|
1705 | + } |
|
1706 | + } |
|
1707 | + |
|
1708 | + //////////////////////////////// |
|
1709 | + /* Diagnose Listing Sucess Page Ends */ |
|
1710 | + //////////////////////////////// |
|
1711 | + |
|
1712 | + ////////////////////////////////// |
|
1713 | + /* Diagnose Info Page Starts */ |
|
1714 | + ////////////////////////////////// |
|
1715 | + $option_value = get_option('geodir_info_page'); |
|
1716 | + $page = get_post($option_value); |
|
1717 | + if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1718 | + |
|
1719 | + if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1720 | + $output_str .= "<li>" . __('Info page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1721 | + else { |
|
1722 | + $is_error_during_diagnose = true; |
|
1723 | + $output_str .= "<li><strong>" . __('Info page is missing.', 'geodirectory') . "</strong></li>"; |
|
1724 | + if ($fix) { |
|
1725 | + if (geodir_fix_virtual_page('gd-info', __('Info', 'geodirectory'), $page_found, 'geodir_info_page')) { |
|
1726 | + $output_str .= "<li><strong>" . __('-->FIXED: Info page fixed', 'geodirectory') . "</strong></li>"; |
|
1727 | + } else { |
|
1728 | + $output_str .= "<li><strong>" . __('-->FAILED: Info page fix failed', 'geodirectory') . "</strong></li>"; |
|
1729 | + } |
|
1730 | + } |
|
1731 | + } |
|
1732 | + |
|
1733 | + //////////////////////////////// |
|
1734 | + /* Diagnose Info Page Ends */ |
|
1735 | + //////////////////////////////// |
|
1736 | + |
|
1737 | + ////////////////////////////////// |
|
1738 | + /* Diagnose Login Page Starts */ |
|
1739 | + ////////////////////////////////// |
|
1740 | + $option_value = get_option('geodir_login_page'); |
|
1741 | + $page = get_post($option_value); |
|
1742 | + if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1743 | + |
|
1744 | + if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1745 | + $output_str .= "<li>" . __('Login page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1746 | + else { |
|
1747 | + $is_error_during_diagnose = true; |
|
1748 | + $output_str .= "<li><strong>" . __('Login page is missing.', 'geodirectory') . "</strong></li>"; |
|
1749 | + if ($fix) { |
|
1750 | + if (geodir_fix_virtual_page('gd-login', __('Login', 'geodirectory'), $page_found, 'geodir_login_page')) { |
|
1751 | + $output_str .= "<li><strong>" . __('-->FIXED: Login page fixed', 'geodirectory') . "</strong></li>"; |
|
1752 | + } else { |
|
1753 | + $output_str .= "<li><strong>" . __('-->FAILED: Login page fix failed', 'geodirectory') . "</strong></li>"; |
|
1754 | + } |
|
1755 | + } |
|
1756 | + } |
|
1757 | + |
|
1758 | + //////////////////////////////// |
|
1759 | + /* Diagnose Info Page Ends */ |
|
1760 | + //////////////////////////////// |
|
1761 | + |
|
1762 | + ////////////////////////////////// |
|
1763 | + /* Diagnose Location Page Starts */ |
|
1764 | + ////////////////////////////////// |
|
1765 | + $option_value = get_option('geodir_location_page'); |
|
1766 | + $page = get_post($option_value); |
|
1767 | + if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1768 | + |
|
1769 | + if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1770 | + $output_str .= "<li>" . __('Location page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1771 | + else { |
|
1772 | + $is_error_during_diagnose = true; |
|
1773 | + $output_str .= "<li><strong>" . __('Location page is missing.', 'geodirectory') . "</strong></li>"; |
|
1774 | + if ($fix) { |
|
1775 | + if (geodir_fix_virtual_page('location', __('Location', 'geodirectory'), $page_found, 'geodir_location_page')) { |
|
1776 | + $output_str .= "<li><strong>" . __('-->FIXED: Location page fixed', 'geodirectory') . "</strong></li>"; |
|
1777 | + } else { |
|
1778 | + $output_str .= "<li><strong>" . __('-->FAILED: Location page fix failed', 'geodirectory') . "</strong></li>"; |
|
1779 | + } |
|
1780 | + } |
|
1781 | + } |
|
1782 | + |
|
1783 | + //////////////////////////////// |
|
1784 | + /* Diagnose Location Page Ends */ |
|
1785 | + //////////////////////////////// |
|
1786 | + |
|
1787 | + $page_chk_arr = array('output_str'=>$output_str,'is_error_during_diagnose'=>$is_error_during_diagnose ); |
|
1788 | + /** |
|
1789 | + * This action is called at the end of the GD Tools page check function. |
|
1790 | + * |
|
1791 | + * @since 1.5.2 |
|
1792 | + */ |
|
1793 | + $page_chk_arr = apply_filters('geodir_diagnose_default_pages',$page_chk_arr); |
|
1794 | + |
|
1795 | + $output_str = $page_chk_arr['output_str']; |
|
1796 | + $is_error_during_diagnose = $page_chk_arr['is_error_during_diagnose']; |
|
1797 | + |
|
1798 | + if ($is_error_during_diagnose) { |
|
1799 | + if ($fix) { |
|
1800 | + flush_rewrite_rules(); |
|
1801 | + } |
|
1802 | + $info_div_class = "geodir_problem_info"; |
|
1803 | + $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='default_pages' />"; |
|
1804 | + } else { |
|
1805 | + $info_div_class = "geodir_noproblem_info"; |
|
1806 | + $fix_button_txt = ''; |
|
1807 | + } |
|
1808 | + echo "<ul class='$info_div_class'>"; |
|
1809 | + echo $output_str; |
|
1810 | + echo $fix_button_txt; |
|
1811 | + echo "</ul>"; |
|
1812 | 1812 | |
1813 | 1813 | } |
1814 | 1814 | |
@@ -1820,26 +1820,26 @@ discard block |
||
1820 | 1820 | * @global object $wpdb WordPress Database object. |
1821 | 1821 | */ |
1822 | 1822 | function geodir_diagnose_load_db_language() { |
1823 | - global $wpdb; |
|
1823 | + global $wpdb; |
|
1824 | 1824 | |
1825 | 1825 | $is_error_during_diagnose = geodirectory_load_db_language(); |
1826 | 1826 | |
1827 | - $output_str = ''; |
|
1828 | - $fix_button_txt = ''; |
|
1827 | + $output_str = ''; |
|
1828 | + $fix_button_txt = ''; |
|
1829 | 1829 | |
1830 | - if ($is_error_during_diagnose) { |
|
1831 | - $output_str .= "<li>" . __('Fail to load custom fields in to file for translation, please check file permission:', 'geodirectory') . ' ' . geodir_plugin_path() . '/db-language.php' . "</li>"; |
|
1830 | + if ($is_error_during_diagnose) { |
|
1831 | + $output_str .= "<li>" . __('Fail to load custom fields in to file for translation, please check file permission:', 'geodirectory') . ' ' . geodir_plugin_path() . '/db-language.php' . "</li>"; |
|
1832 | 1832 | $info_div_class = "geodir_problem_info"; |
1833 | - } else { |
|
1834 | - $output_str .= "<li>" . __('Load custom fields in to file for translation: ok', 'geodirectory') . "</li>"; |
|
1833 | + } else { |
|
1834 | + $output_str .= "<li>" . __('Load custom fields in to file for translation: ok', 'geodirectory') . "</li>"; |
|
1835 | 1835 | $info_div_class = "geodir_noproblem_info"; |
1836 | - $fix_button_txt = ''; |
|
1837 | - } |
|
1836 | + $fix_button_txt = ''; |
|
1837 | + } |
|
1838 | 1838 | |
1839 | 1839 | echo "<ul class='$info_div_class'>"; |
1840 | - echo $output_str; |
|
1841 | - echo $fix_button_txt; |
|
1842 | - echo "</ul>"; |
|
1840 | + echo $output_str; |
|
1841 | + echo $fix_button_txt; |
|
1842 | + echo "</ul>"; |
|
1843 | 1843 | |
1844 | 1844 | } |
1845 | 1845 | |
@@ -1870,23 +1870,23 @@ discard block |
||
1870 | 1870 | */ |
1871 | 1871 | function geodir_posts_clauses_request($clauses) |
1872 | 1872 | { |
1873 | - global $wpdb, $wp_query, $plugin_prefix; |
|
1873 | + global $wpdb, $wp_query, $plugin_prefix; |
|
1874 | 1874 | |
1875 | - if (is_admin() && !empty($wp_query->query_vars) && !empty($wp_query->query_vars['is_geodir_loop']) && !empty($wp_query->query_vars['orderby']) && $wp_query->query_vars['orderby'] == 'expire' && !empty($wp_query->query_vars['post_type']) && in_array($wp_query->query_vars['post_type'], geodir_get_posttypes()) && !empty($wp_query->query_vars['orderby']) && isset($clauses['join']) && isset($clauses['orderby']) && isset($clauses['fields'])) { |
|
1876 | - $table = $plugin_prefix . $wp_query->query_vars['post_type'] . '_detail'; |
|
1875 | + if (is_admin() && !empty($wp_query->query_vars) && !empty($wp_query->query_vars['is_geodir_loop']) && !empty($wp_query->query_vars['orderby']) && $wp_query->query_vars['orderby'] == 'expire' && !empty($wp_query->query_vars['post_type']) && in_array($wp_query->query_vars['post_type'], geodir_get_posttypes()) && !empty($wp_query->query_vars['orderby']) && isset($clauses['join']) && isset($clauses['orderby']) && isset($clauses['fields'])) { |
|
1876 | + $table = $plugin_prefix . $wp_query->query_vars['post_type'] . '_detail'; |
|
1877 | 1877 | |
1878 | - $join = $clauses['join'] . ' INNER JOIN ' . $table . ' AS gd_posts ON (gd_posts.post_id = ' . $wpdb->posts . '.ID)'; |
|
1879 | - $clauses['join'] = $join; |
|
1878 | + $join = $clauses['join'] . ' INNER JOIN ' . $table . ' AS gd_posts ON (gd_posts.post_id = ' . $wpdb->posts . '.ID)'; |
|
1879 | + $clauses['join'] = $join; |
|
1880 | 1880 | |
1881 | - $fields = $clauses['fields'] != '' ? $clauses['fields'] . ', ' : ''; |
|
1882 | - $fields .= 'IF(UNIX_TIMESTAMP(DATE_FORMAT(gd_posts.expire_date, "%Y-%m-%d")), UNIX_TIMESTAMP(DATE_FORMAT(gd_posts.expire_date, "%Y-%m-%d")), 253402300799) AS gd_expire'; |
|
1883 | - $clauses['fields'] = $fields; |
|
1881 | + $fields = $clauses['fields'] != '' ? $clauses['fields'] . ', ' : ''; |
|
1882 | + $fields .= 'IF(UNIX_TIMESTAMP(DATE_FORMAT(gd_posts.expire_date, "%Y-%m-%d")), UNIX_TIMESTAMP(DATE_FORMAT(gd_posts.expire_date, "%Y-%m-%d")), 253402300799) AS gd_expire'; |
|
1883 | + $clauses['fields'] = $fields; |
|
1884 | 1884 | |
1885 | - $order = !empty($wp_query->query_vars['order']) ? $wp_query->query_vars['order'] : 'ASC'; |
|
1886 | - $orderby = 'gd_expire ' . $order; |
|
1887 | - $clauses['orderby'] = $orderby; |
|
1888 | - } |
|
1889 | - return $clauses; |
|
1885 | + $order = !empty($wp_query->query_vars['order']) ? $wp_query->query_vars['order'] : 'ASC'; |
|
1886 | + $orderby = 'gd_expire ' . $order; |
|
1887 | + $clauses['orderby'] = $orderby; |
|
1888 | + } |
|
1889 | + return $clauses; |
|
1890 | 1890 | } |
1891 | 1891 | |
1892 | 1892 | |
@@ -1907,7 +1907,7 @@ discard block |
||
1907 | 1907 | */ |
1908 | 1908 | function gd_theme_switch_compat_check() |
1909 | 1909 | { |
1910 | - gd_set_theme_compat(); |
|
1910 | + gd_set_theme_compat(); |
|
1911 | 1911 | } |
1912 | 1912 | |
1913 | 1913 | /** |
@@ -1920,27 +1920,27 @@ discard block |
||
1920 | 1920 | */ |
1921 | 1921 | function geodir_str_getcsv($input, $delimiter = ",", $enclosure = '"', $escape = "\\") |
1922 | 1922 | { |
1923 | - if (function_exists('str_getcsv')) { |
|
1924 | - $fgetcsv = str_getcsv($input, $delimiter, $enclosure, $escape); |
|
1925 | - } else { |
|
1926 | - global $current_user; |
|
1927 | - $upload_dir = wp_upload_dir(); |
|
1928 | - |
|
1929 | - $file = $upload_dir['path'] . '/temp_' . $current_user->data->ID . '/geodir_tmp.csv'; |
|
1930 | - $handle = fopen($file, 'w'); |
|
1931 | - |
|
1932 | - fwrite($handle, $input); |
|
1933 | - fclose($handle); |
|
1934 | - |
|
1935 | - $handle = fopen($file, 'rt'); |
|
1936 | - if (PHP_VERSION >= '5.3.0') { |
|
1937 | - $fgetcsv = fgetcsv($handle, 0, $delimiter, $enclosure, $escape); |
|
1938 | - } else { |
|
1939 | - $fgetcsv = fgetcsv($handle, 0, $delimiter, $enclosure); |
|
1940 | - } |
|
1941 | - fclose($handle); |
|
1942 | - } |
|
1943 | - return $fgetcsv; |
|
1923 | + if (function_exists('str_getcsv')) { |
|
1924 | + $fgetcsv = str_getcsv($input, $delimiter, $enclosure, $escape); |
|
1925 | + } else { |
|
1926 | + global $current_user; |
|
1927 | + $upload_dir = wp_upload_dir(); |
|
1928 | + |
|
1929 | + $file = $upload_dir['path'] . '/temp_' . $current_user->data->ID . '/geodir_tmp.csv'; |
|
1930 | + $handle = fopen($file, 'w'); |
|
1931 | + |
|
1932 | + fwrite($handle, $input); |
|
1933 | + fclose($handle); |
|
1934 | + |
|
1935 | + $handle = fopen($file, 'rt'); |
|
1936 | + if (PHP_VERSION >= '5.3.0') { |
|
1937 | + $fgetcsv = fgetcsv($handle, 0, $delimiter, $enclosure, $escape); |
|
1938 | + } else { |
|
1939 | + $fgetcsv = fgetcsv($handle, 0, $delimiter, $enclosure); |
|
1940 | + } |
|
1941 | + fclose($handle); |
|
1942 | + } |
|
1943 | + return $fgetcsv; |
|
1944 | 1944 | } |
1945 | 1945 | |
1946 | 1946 | add_action('wp_ajax_gdImportCsv', 'geodir_ajax_import_csv'); |
@@ -1955,375 +1955,375 @@ discard block |
||
1955 | 1955 | */ |
1956 | 1956 | function geodir_ajax_import_csv() |
1957 | 1957 | { |
1958 | - error_reporting(0); // hide error to get clean json response |
|
1958 | + error_reporting(0); // hide error to get clean json response |
|
1959 | 1959 | |
1960 | - global $wpdb, $plugin_prefix, $current_user; |
|
1961 | - $uploads = wp_upload_dir(); |
|
1962 | - ini_set('auto_detect_line_endings', true); |
|
1960 | + global $wpdb, $plugin_prefix, $current_user; |
|
1961 | + $uploads = wp_upload_dir(); |
|
1962 | + ini_set('auto_detect_line_endings', true); |
|
1963 | 1963 | |
1964 | 1964 | $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses. |
1965 | 1965 | |
1966 | - $task = isset($_POST['task']) ? $_POST['task'] : ''; |
|
1967 | - $uploadedFile = isset($_POST['gddata']['uploadedFile']) ? $_POST['gddata']['uploadedFile'] : NULL; |
|
1968 | - $filename = $uploadedFile; |
|
1969 | - |
|
1970 | - $uploads = wp_upload_dir(); |
|
1971 | - $uploads_dir = $uploads['path']; |
|
1972 | - $image_name_arr = explode('/', $filename); |
|
1973 | - $filename = end($image_name_arr); |
|
1974 | - $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
1975 | - $return = array(); |
|
1976 | - $return['file'] = $uploadedFile; |
|
1977 | - $return['error'] = __('The uploaded file is not a valid csv file. Please try again.', 'geodirectory'); |
|
1978 | - |
|
1979 | - if (is_file($target_path) && file_exists($target_path) && $uploadedFile) { |
|
1980 | - $wp_filetype = wp_check_filetype_and_ext($target_path, $filename); |
|
1981 | - |
|
1982 | - if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') { |
|
1983 | - $return['error'] = NULL; |
|
1984 | - |
|
1985 | - $return['rows'] = 0; |
|
1986 | - |
|
1987 | - |
|
1988 | - |
|
1989 | - if (($handle = fopen($target_path, "r")) !== FALSE) { |
|
1990 | - while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) { |
|
1991 | - if(is_array($data) && !empty($data)) { |
|
1992 | - $file[] = '"' . implode('","', $data) . '"'; |
|
1993 | - } |
|
1994 | - } |
|
1995 | - fclose($handle); |
|
1996 | - $file = $file; |
|
1997 | - } |
|
1998 | - |
|
1999 | - |
|
2000 | - |
|
2001 | - $return['rows'] = (!empty($file) && count($file) > 1) ? count($file) - 1 : 0; |
|
2002 | - |
|
2003 | - |
|
2004 | - if (!$return['rows'] > 0) { |
|
2005 | - $return['error'] = __('No data found in csv file.', 'geodirectory'); |
|
2006 | - } |
|
2007 | - } |
|
2008 | - } |
|
2009 | - if ($task == 'prepare' || !empty($return['error'])) { |
|
2010 | - echo json_encode($return); |
|
2011 | - exit; |
|
2012 | - } |
|
2013 | - |
|
2014 | - $totRecords = isset($_POST['gddata']['totRecords']) ? $_POST['gddata']['totRecords'] : NULL; |
|
2015 | - $importlimit = isset($_POST['gddata']['importlimit']) ? $_POST['gddata']['importlimit'] : 1; |
|
2016 | - $count = $importlimit; |
|
2017 | - $requested_limit = $importlimit; |
|
2018 | - $tmpCnt = isset($_POST['gddata']['tmpcount']) ? $_POST['gddata']['tmpcount'] : 0; |
|
2019 | - |
|
2020 | - if ($count < $totRecords) { |
|
2021 | - $count = $tmpCnt + $count; |
|
2022 | - if ($count > $totRecords) { |
|
2023 | - $count = $totRecords; |
|
2024 | - } |
|
2025 | - } else { |
|
2026 | - $count = $totRecords; |
|
2027 | - } |
|
2028 | - |
|
2029 | - $total_records = 0; |
|
2030 | - $rowcount = 0; |
|
2031 | - $address_invalid = 0; |
|
2032 | - $blank_address = 0; |
|
2033 | - $upload_files = 0; |
|
2034 | - $invalid_post_type = 0; |
|
2035 | - $invalid_title = 0; |
|
2036 | - $customKeyarray = array(); |
|
2037 | - $gd_post_info = array(); |
|
2038 | - $post_location = array(); |
|
2039 | - $countpost = 0; |
|
2040 | - |
|
2041 | - if (!empty($file)) { |
|
2042 | - $columns = isset($file[0]) ? geodir_str_getcsv($file[0]) : NULL; |
|
2043 | - $customKeyarray = $columns; |
|
2044 | - |
|
2045 | - if (empty($columns) || (!empty($columns) && $columns[0] == '')) { |
|
2046 | - $return['error'] = CSV_INVAILD_FILE; |
|
2047 | - echo json_encode($return); |
|
2048 | - exit; |
|
2049 | - } |
|
2050 | - |
|
2051 | - for ($i = 1; $i <= $importlimit; $i++) { |
|
2052 | - $current_index = $tmpCnt + $i; |
|
2053 | - if (isset($file[$current_index])) { |
|
2054 | - $total_records++; |
|
2055 | - |
|
2056 | - $buffer = geodir_str_getcsv($file[$current_index]); |
|
2057 | - $post_title = addslashes($buffer[0]); |
|
2058 | - $current_post_author = $buffer[1]; |
|
2059 | - $post_desc = addslashes($buffer[2]); |
|
2060 | - $post_cat = array(); |
|
2061 | - $catids_arr = array(); |
|
2062 | - $post_cat = trim($buffer[3]); // comma seperated category name |
|
2063 | - |
|
2064 | - if ($post_cat) { |
|
2065 | - $post_cat_arr = explode(',', $post_cat); |
|
2066 | - |
|
2067 | - for ($c = 0; $c < count($post_cat_arr); $c++) { |
|
2068 | - $catid = wp_kses_normalize_entities(trim($post_cat_arr[$c])); |
|
2069 | - |
|
2070 | - if (!empty($buffer[5])) { |
|
2071 | - if (in_array($buffer[5], geodir_get_posttypes())) { |
|
2072 | - |
|
2073 | - $p_taxonomy = geodir_get_taxonomies(addslashes($buffer[5])); |
|
2074 | - |
|
2075 | - if (get_term_by('name', $catid, $p_taxonomy[0])) { |
|
2076 | - $cat = get_term_by('name', $catid, $p_taxonomy[0]); |
|
2077 | - $catids_arr[] = $cat->slug; |
|
2078 | - } else if (get_term_by('slug', $catid, $p_taxonomy[0])) { |
|
2079 | - $cat = get_term_by('slug', $catid, $p_taxonomy[0]); |
|
2080 | - $catids_arr[] = $cat->slug; |
|
2081 | - } else { |
|
2082 | - $ret = wp_insert_term($catid, $p_taxonomy[0]); |
|
2083 | - if ($ret && !is_wp_error($ret)) { |
|
2084 | - if (get_term_by('name', $catid, $p_taxonomy[0])) { |
|
2085 | - $cat = get_term_by('name', $catid, $p_taxonomy[0]); |
|
2086 | - $catids_arr[] = $cat->slug; |
|
2087 | - } elseif (get_term_by('slug', $catid, $p_taxonomy[0])) { |
|
2088 | - $cat = get_term_by('slug', $catid, $p_taxonomy[0]); |
|
2089 | - $catids_arr[] = $cat->slug; |
|
2090 | - } |
|
2091 | - } |
|
2092 | - } |
|
2093 | - } |
|
2094 | - } |
|
2095 | - } |
|
2096 | - } |
|
2097 | - |
|
2098 | - if (!$catids_arr) { |
|
2099 | - $catids_arr[] = 1; |
|
2100 | - } |
|
2101 | - |
|
2102 | - $post_tags = trim($buffer[4]); // comma seperated tags |
|
2103 | - |
|
2104 | - $tag_arr = ''; |
|
2105 | - if ($post_tags) { |
|
2106 | - $tag_arr = explode(',', $post_tags); |
|
2107 | - } |
|
2108 | - |
|
2109 | - $table = $plugin_prefix . $buffer[5] . '_detail'; // check table in database |
|
2110 | - |
|
2111 | - $error = ''; |
|
2112 | - if ($wpdb->get_var("SHOW TABLES LIKE '" . $table . "'") != $table) { |
|
2113 | - $invalid_post_type++; |
|
2114 | - continue; |
|
2115 | - } |
|
2116 | - |
|
2117 | - if ($post_title != '') { |
|
2118 | - $menu_order = 0; |
|
2119 | - $image_folder_name = 'uplaod/'; |
|
2120 | - |
|
2121 | - $image_names = array(); |
|
2122 | - |
|
2123 | - for ($c = 5; $c < count($customKeyarray); $c++) { |
|
2124 | - $gd_post_info[$customKeyarray[$c]] = addslashes($buffer[$c]); |
|
2125 | - |
|
2126 | - if ($customKeyarray[$c] == 'IMAGE') { |
|
2127 | - $buffer[$c] = trim($buffer[$c]); |
|
2128 | - |
|
2129 | - if (!empty($buffer[$c])) { |
|
2130 | - $image_names[] = $buffer[$c]; |
|
2131 | - } |
|
2132 | - } |
|
2133 | - |
|
2134 | - if ($customKeyarray[$c] == 'alive_days') { |
|
2135 | - if ($buffer[$c] != '0' && $buffer[$c] != '') { |
|
2136 | - $submitdata = date('Y-m-d'); |
|
2137 | - |
|
2138 | - $gd_post_info['expire_date'] = date('Y-m-d', strtotime($submitdata . "+" . addslashes($buffer[$c]) . " days")); |
|
2139 | - } else { |
|
2140 | - $gd_post_info['expire_date'] = 'Never'; |
|
2141 | - } |
|
2142 | - } |
|
2143 | - |
|
2144 | - if ($customKeyarray[$c] == 'post_city') { |
|
2145 | - $post_city = addslashes($buffer[$c]); |
|
2146 | - } |
|
2147 | - |
|
2148 | - if ($customKeyarray[$c] == 'post_region') { |
|
2149 | - $post_region = addslashes($buffer[$c]); |
|
2150 | - } |
|
2151 | - |
|
2152 | - if ($customKeyarray[$c] == 'post_country') { |
|
2153 | - $post_country = addslashes($buffer[$c]); |
|
2154 | - } |
|
2155 | - |
|
2156 | - if ($customKeyarray[$c] == 'post_latitude') { |
|
2157 | - $post_latitude = addslashes($buffer[$c]); |
|
2158 | - } |
|
2159 | - |
|
2160 | - if ($customKeyarray[$c] == 'post_longitude') { |
|
2161 | - $post_longitude = addslashes($buffer[$c]); |
|
2162 | - } |
|
1966 | + $task = isset($_POST['task']) ? $_POST['task'] : ''; |
|
1967 | + $uploadedFile = isset($_POST['gddata']['uploadedFile']) ? $_POST['gddata']['uploadedFile'] : NULL; |
|
1968 | + $filename = $uploadedFile; |
|
1969 | + |
|
1970 | + $uploads = wp_upload_dir(); |
|
1971 | + $uploads_dir = $uploads['path']; |
|
1972 | + $image_name_arr = explode('/', $filename); |
|
1973 | + $filename = end($image_name_arr); |
|
1974 | + $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
1975 | + $return = array(); |
|
1976 | + $return['file'] = $uploadedFile; |
|
1977 | + $return['error'] = __('The uploaded file is not a valid csv file. Please try again.', 'geodirectory'); |
|
1978 | + |
|
1979 | + if (is_file($target_path) && file_exists($target_path) && $uploadedFile) { |
|
1980 | + $wp_filetype = wp_check_filetype_and_ext($target_path, $filename); |
|
1981 | + |
|
1982 | + if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') { |
|
1983 | + $return['error'] = NULL; |
|
1984 | + |
|
1985 | + $return['rows'] = 0; |
|
1986 | + |
|
1987 | + |
|
1988 | + |
|
1989 | + if (($handle = fopen($target_path, "r")) !== FALSE) { |
|
1990 | + while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) { |
|
1991 | + if(is_array($data) && !empty($data)) { |
|
1992 | + $file[] = '"' . implode('","', $data) . '"'; |
|
1993 | + } |
|
1994 | + } |
|
1995 | + fclose($handle); |
|
1996 | + $file = $file; |
|
1997 | + } |
|
1998 | + |
|
1999 | + |
|
2000 | + |
|
2001 | + $return['rows'] = (!empty($file) && count($file) > 1) ? count($file) - 1 : 0; |
|
2002 | + |
|
2003 | + |
|
2004 | + if (!$return['rows'] > 0) { |
|
2005 | + $return['error'] = __('No data found in csv file.', 'geodirectory'); |
|
2006 | + } |
|
2007 | + } |
|
2008 | + } |
|
2009 | + if ($task == 'prepare' || !empty($return['error'])) { |
|
2010 | + echo json_encode($return); |
|
2011 | + exit; |
|
2012 | + } |
|
2013 | + |
|
2014 | + $totRecords = isset($_POST['gddata']['totRecords']) ? $_POST['gddata']['totRecords'] : NULL; |
|
2015 | + $importlimit = isset($_POST['gddata']['importlimit']) ? $_POST['gddata']['importlimit'] : 1; |
|
2016 | + $count = $importlimit; |
|
2017 | + $requested_limit = $importlimit; |
|
2018 | + $tmpCnt = isset($_POST['gddata']['tmpcount']) ? $_POST['gddata']['tmpcount'] : 0; |
|
2019 | + |
|
2020 | + if ($count < $totRecords) { |
|
2021 | + $count = $tmpCnt + $count; |
|
2022 | + if ($count > $totRecords) { |
|
2023 | + $count = $totRecords; |
|
2024 | + } |
|
2025 | + } else { |
|
2026 | + $count = $totRecords; |
|
2027 | + } |
|
2028 | + |
|
2029 | + $total_records = 0; |
|
2030 | + $rowcount = 0; |
|
2031 | + $address_invalid = 0; |
|
2032 | + $blank_address = 0; |
|
2033 | + $upload_files = 0; |
|
2034 | + $invalid_post_type = 0; |
|
2035 | + $invalid_title = 0; |
|
2036 | + $customKeyarray = array(); |
|
2037 | + $gd_post_info = array(); |
|
2038 | + $post_location = array(); |
|
2039 | + $countpost = 0; |
|
2040 | + |
|
2041 | + if (!empty($file)) { |
|
2042 | + $columns = isset($file[0]) ? geodir_str_getcsv($file[0]) : NULL; |
|
2043 | + $customKeyarray = $columns; |
|
2044 | + |
|
2045 | + if (empty($columns) || (!empty($columns) && $columns[0] == '')) { |
|
2046 | + $return['error'] = CSV_INVAILD_FILE; |
|
2047 | + echo json_encode($return); |
|
2048 | + exit; |
|
2049 | + } |
|
2050 | + |
|
2051 | + for ($i = 1; $i <= $importlimit; $i++) { |
|
2052 | + $current_index = $tmpCnt + $i; |
|
2053 | + if (isset($file[$current_index])) { |
|
2054 | + $total_records++; |
|
2055 | + |
|
2056 | + $buffer = geodir_str_getcsv($file[$current_index]); |
|
2057 | + $post_title = addslashes($buffer[0]); |
|
2058 | + $current_post_author = $buffer[1]; |
|
2059 | + $post_desc = addslashes($buffer[2]); |
|
2060 | + $post_cat = array(); |
|
2061 | + $catids_arr = array(); |
|
2062 | + $post_cat = trim($buffer[3]); // comma seperated category name |
|
2063 | + |
|
2064 | + if ($post_cat) { |
|
2065 | + $post_cat_arr = explode(',', $post_cat); |
|
2066 | + |
|
2067 | + for ($c = 0; $c < count($post_cat_arr); $c++) { |
|
2068 | + $catid = wp_kses_normalize_entities(trim($post_cat_arr[$c])); |
|
2069 | + |
|
2070 | + if (!empty($buffer[5])) { |
|
2071 | + if (in_array($buffer[5], geodir_get_posttypes())) { |
|
2072 | + |
|
2073 | + $p_taxonomy = geodir_get_taxonomies(addslashes($buffer[5])); |
|
2074 | + |
|
2075 | + if (get_term_by('name', $catid, $p_taxonomy[0])) { |
|
2076 | + $cat = get_term_by('name', $catid, $p_taxonomy[0]); |
|
2077 | + $catids_arr[] = $cat->slug; |
|
2078 | + } else if (get_term_by('slug', $catid, $p_taxonomy[0])) { |
|
2079 | + $cat = get_term_by('slug', $catid, $p_taxonomy[0]); |
|
2080 | + $catids_arr[] = $cat->slug; |
|
2081 | + } else { |
|
2082 | + $ret = wp_insert_term($catid, $p_taxonomy[0]); |
|
2083 | + if ($ret && !is_wp_error($ret)) { |
|
2084 | + if (get_term_by('name', $catid, $p_taxonomy[0])) { |
|
2085 | + $cat = get_term_by('name', $catid, $p_taxonomy[0]); |
|
2086 | + $catids_arr[] = $cat->slug; |
|
2087 | + } elseif (get_term_by('slug', $catid, $p_taxonomy[0])) { |
|
2088 | + $cat = get_term_by('slug', $catid, $p_taxonomy[0]); |
|
2089 | + $catids_arr[] = $cat->slug; |
|
2090 | + } |
|
2091 | + } |
|
2092 | + } |
|
2093 | + } |
|
2094 | + } |
|
2095 | + } |
|
2096 | + } |
|
2097 | + |
|
2098 | + if (!$catids_arr) { |
|
2099 | + $catids_arr[] = 1; |
|
2100 | + } |
|
2101 | + |
|
2102 | + $post_tags = trim($buffer[4]); // comma seperated tags |
|
2103 | + |
|
2104 | + $tag_arr = ''; |
|
2105 | + if ($post_tags) { |
|
2106 | + $tag_arr = explode(',', $post_tags); |
|
2107 | + } |
|
2108 | + |
|
2109 | + $table = $plugin_prefix . $buffer[5] . '_detail'; // check table in database |
|
2110 | + |
|
2111 | + $error = ''; |
|
2112 | + if ($wpdb->get_var("SHOW TABLES LIKE '" . $table . "'") != $table) { |
|
2113 | + $invalid_post_type++; |
|
2114 | + continue; |
|
2115 | + } |
|
2116 | + |
|
2117 | + if ($post_title != '') { |
|
2118 | + $menu_order = 0; |
|
2119 | + $image_folder_name = 'uplaod/'; |
|
2120 | + |
|
2121 | + $image_names = array(); |
|
2122 | + |
|
2123 | + for ($c = 5; $c < count($customKeyarray); $c++) { |
|
2124 | + $gd_post_info[$customKeyarray[$c]] = addslashes($buffer[$c]); |
|
2125 | + |
|
2126 | + if ($customKeyarray[$c] == 'IMAGE') { |
|
2127 | + $buffer[$c] = trim($buffer[$c]); |
|
2128 | + |
|
2129 | + if (!empty($buffer[$c])) { |
|
2130 | + $image_names[] = $buffer[$c]; |
|
2131 | + } |
|
2132 | + } |
|
2133 | + |
|
2134 | + if ($customKeyarray[$c] == 'alive_days') { |
|
2135 | + if ($buffer[$c] != '0' && $buffer[$c] != '') { |
|
2136 | + $submitdata = date('Y-m-d'); |
|
2137 | + |
|
2138 | + $gd_post_info['expire_date'] = date('Y-m-d', strtotime($submitdata . "+" . addslashes($buffer[$c]) . " days")); |
|
2139 | + } else { |
|
2140 | + $gd_post_info['expire_date'] = 'Never'; |
|
2141 | + } |
|
2142 | + } |
|
2143 | + |
|
2144 | + if ($customKeyarray[$c] == 'post_city') { |
|
2145 | + $post_city = addslashes($buffer[$c]); |
|
2146 | + } |
|
2147 | + |
|
2148 | + if ($customKeyarray[$c] == 'post_region') { |
|
2149 | + $post_region = addslashes($buffer[$c]); |
|
2150 | + } |
|
2151 | + |
|
2152 | + if ($customKeyarray[$c] == 'post_country') { |
|
2153 | + $post_country = addslashes($buffer[$c]); |
|
2154 | + } |
|
2155 | + |
|
2156 | + if ($customKeyarray[$c] == 'post_latitude') { |
|
2157 | + $post_latitude = addslashes($buffer[$c]); |
|
2158 | + } |
|
2159 | + |
|
2160 | + if ($customKeyarray[$c] == 'post_longitude') { |
|
2161 | + $post_longitude = addslashes($buffer[$c]); |
|
2162 | + } |
|
2163 | 2163 | |
2164 | 2164 | // Post status |
2165 | 2165 | if ($customKeyarray[$c] == 'post_status') { |
2166 | - $post_status = sanitize_key( $buffer[$c] ); |
|
2167 | - } |
|
2168 | - } |
|
2169 | - |
|
2170 | - /* ================ before array create ============== */ |
|
2171 | - $location_result = geodir_get_default_location(); |
|
2172 | - if ((!isset($gd_post_info['post_city']) || $gd_post_info['post_city'] == '') || (!isset($gd_post_info['post_region']) || $gd_post_info['post_region'] == '') || (!isset($gd_post_info['post_country']) || $gd_post_info['post_country'] == '') || (!isset($gd_post_info['post_address']) || $gd_post_info['post_address'] == '') || (!isset($gd_post_info['post_latitude']) || $gd_post_info['post_latitude'] == '') || (!isset($gd_post_info['post_longitude']) || $gd_post_info['post_longitude'] == '')) { |
|
2173 | - $blank_address++; |
|
2174 | - continue; |
|
2175 | - } else if ($location_result->location_id == 0) { |
|
2176 | - if ((geodir_strtolower($gd_post_info['post_city']) != geodir_strtolower($location_result->city)) || (geodir_strtolower($gd_post_info['post_region']) != geodir_strtolower($location_result->region)) || (geodir_strtolower($gd_post_info['post_country']) != geodir_strtolower($location_result->country))) { |
|
2177 | - $address_invalid++; |
|
2178 | - continue; |
|
2179 | - } |
|
2180 | - } |
|
2166 | + $post_status = sanitize_key( $buffer[$c] ); |
|
2167 | + } |
|
2168 | + } |
|
2169 | + |
|
2170 | + /* ================ before array create ============== */ |
|
2171 | + $location_result = geodir_get_default_location(); |
|
2172 | + if ((!isset($gd_post_info['post_city']) || $gd_post_info['post_city'] == '') || (!isset($gd_post_info['post_region']) || $gd_post_info['post_region'] == '') || (!isset($gd_post_info['post_country']) || $gd_post_info['post_country'] == '') || (!isset($gd_post_info['post_address']) || $gd_post_info['post_address'] == '') || (!isset($gd_post_info['post_latitude']) || $gd_post_info['post_latitude'] == '') || (!isset($gd_post_info['post_longitude']) || $gd_post_info['post_longitude'] == '')) { |
|
2173 | + $blank_address++; |
|
2174 | + continue; |
|
2175 | + } else if ($location_result->location_id == 0) { |
|
2176 | + if ((geodir_strtolower($gd_post_info['post_city']) != geodir_strtolower($location_result->city)) || (geodir_strtolower($gd_post_info['post_region']) != geodir_strtolower($location_result->region)) || (geodir_strtolower($gd_post_info['post_country']) != geodir_strtolower($location_result->country))) { |
|
2177 | + $address_invalid++; |
|
2178 | + continue; |
|
2179 | + } |
|
2180 | + } |
|
2181 | 2181 | |
2182 | 2182 | // Default post status |
2183 | 2183 | $default_status = 'publish'; |
2184 | 2184 | $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status; |
2185 | 2185 | $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status; |
2186 | 2186 | |
2187 | - $my_post['post_title'] = $post_title; |
|
2188 | - $my_post['post_content'] = $post_desc; |
|
2189 | - $my_post['post_type'] = addslashes($buffer[5]); |
|
2190 | - $my_post['post_author'] = $current_post_author; |
|
2191 | - $my_post['post_status'] = $post_status; |
|
2192 | - $my_post['post_category'] = $catids_arr; |
|
2193 | - $my_post['post_tags'] = $tag_arr; |
|
2194 | - |
|
2195 | - $gd_post_info['post_tags'] = $tag_arr; |
|
2196 | - $gd_post_info['post_title'] = $post_title; |
|
2197 | - $gd_post_info['post_status'] = $post_status; |
|
2198 | - $gd_post_info['submit_time'] = time(); |
|
2199 | - $gd_post_info['submit_ip'] = $_SERVER['REMOTE_ADDR']; |
|
2200 | - |
|
2201 | - $last_postid = wp_insert_post($my_post); |
|
2202 | - $countpost++; |
|
2203 | - |
|
2204 | - // Check if we need to save post location as new location |
|
2205 | - if ($location_result->location_id > 0) { |
|
2206 | - if (isset($post_city) && isset($post_region)) { |
|
2207 | - $request_info['post_location'] = array( |
|
2208 | - 'city' => $post_city, |
|
2209 | - 'region' => $post_region, |
|
2210 | - 'country' => $post_country, |
|
2211 | - 'geo_lat' => $post_latitude, |
|
2212 | - 'geo_lng' => $post_longitude |
|
2213 | - ); |
|
2214 | - |
|
2215 | - $post_location_info = $request_info['post_location']; |
|
2216 | - if ($location_id = geodir_add_new_location($post_location_info)) |
|
2217 | - $post_location_id = $location_id; |
|
2218 | - } else { |
|
2219 | - $post_location_id = 0; |
|
2220 | - } |
|
2221 | - } else { |
|
2222 | - $post_location_id = 0; |
|
2223 | - } |
|
2224 | - |
|
2225 | - /* ------- get default package info ----- */ |
|
2226 | - $payment_info = array(); |
|
2227 | - $package_info = array(); |
|
2228 | - |
|
2229 | - $package_info = (array)geodir_post_package_info($package_info, '', $buffer[5]); |
|
2230 | - $package_id = ''; |
|
2231 | - if (isset($gd_post_info['package_id']) && $gd_post_info['package_id'] != '') { |
|
2232 | - $package_id = $gd_post_info['package_id']; |
|
2233 | - } |
|
2234 | - |
|
2235 | - if (!empty($package_info)) { |
|
2236 | - $payment_info['package_id'] = $package_info['pid']; |
|
2237 | - |
|
2238 | - if (isset($package_info['alive_days']) && $package_info['alive_days'] != 0) { |
|
2239 | - $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['alive_days'] . " days")); |
|
2240 | - } else { |
|
2241 | - $payment_info['expire_date'] = 'Never'; |
|
2242 | - } |
|
2243 | - |
|
2244 | - $gd_post_info = array_merge($gd_post_info, $payment_info); |
|
2245 | - } |
|
2246 | - |
|
2247 | - $gd_post_info['post_location_id'] = $post_location_id; |
|
2248 | - |
|
2249 | - $post_type = get_post_type($last_postid); |
|
2250 | - |
|
2251 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2252 | - |
|
2253 | - geodir_save_post_info($last_postid, $gd_post_info); |
|
2254 | - |
|
2255 | - if (!empty($image_names)) { |
|
2256 | - $upload_files++; |
|
2257 | - $menu_order = 1; |
|
2258 | - |
|
2259 | - foreach ($image_names as $image_name) { |
|
2260 | - $img_name_arr = explode('.', $image_name); |
|
2261 | - |
|
2262 | - $uploads = wp_upload_dir(); |
|
2263 | - $sub_dir = $uploads['subdir']; |
|
2264 | - |
|
2265 | - $arr_file_type = wp_check_filetype($image_name); |
|
2266 | - $uploaded_file_type = $arr_file_type['type']; |
|
2267 | - |
|
2268 | - $attachment = array(); |
|
2269 | - $attachment['post_id'] = $last_postid; |
|
2270 | - $attachment['title'] = $img_name_arr[0]; |
|
2271 | - $attachment['content'] = ''; |
|
2272 | - $attachment['file'] = $sub_dir . '/' . $image_name; |
|
2273 | - $attachment['mime_type'] = $uploaded_file_type; |
|
2274 | - $attachment['menu_order'] = $menu_order; |
|
2275 | - $attachment['is_featured'] = 0; |
|
2276 | - |
|
2277 | - $attachment_set = ''; |
|
2278 | - |
|
2279 | - foreach ($attachment as $key => $val) { |
|
2280 | - if ($val != '') |
|
2281 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
2282 | - } |
|
2283 | - $attachment_set = trim($attachment_set, ", "); |
|
2284 | - |
|
2285 | - $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set); |
|
2286 | - |
|
2287 | - if ($menu_order == 1) { |
|
2288 | - $post_type = get_post_type($last_postid); |
|
2289 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($sub_dir . '/' . $image_name, $last_postid))); |
|
2290 | - } |
|
2291 | - $menu_order++; |
|
2292 | - } |
|
2293 | - } |
|
2294 | - |
|
2295 | - $gd_post_info['package_id'] = $package_id; |
|
2296 | - |
|
2297 | - /** This action is documented in geodirectory-functions/post-functions.php */ |
|
2298 | - do_action('geodir_after_save_listing', $last_postid, $gd_post_info); |
|
2299 | - |
|
2300 | - if (!empty($buffer[5])) { |
|
2301 | - if (in_array($buffer[5], geodir_get_posttypes())) { |
|
2302 | - $taxonomies = geodir_get_posttype_info(addslashes($buffer[5])); |
|
2303 | - wp_set_object_terms($last_postid, $my_post['post_tags'], $taxonomy = $taxonomies['taxonomies'][1]); |
|
2304 | - wp_set_object_terms($last_postid, $my_post['post_category'], $taxonomy = $taxonomies['taxonomies'][0]); |
|
2305 | - |
|
2306 | - $post_default_category = isset($my_post['post_default_category']) ? $my_post['post_default_category'] : ''; |
|
2307 | - $post_category_str = isset($my_post['post_category_str']) ? $my_post['post_category_str'] : ''; |
|
2308 | - geodir_set_postcat_structure($last_postid, $taxonomy, $post_default_category, $post_category_str); |
|
2309 | - } |
|
2310 | - } |
|
2311 | - } else { |
|
2312 | - $invalid_title++; |
|
2313 | - } |
|
2314 | - } |
|
2315 | - } |
|
2316 | - } |
|
2317 | - $return['rowcount'] = $countpost; |
|
2318 | - $return['invalidcount'] = $address_invalid; |
|
2319 | - $return['blank_address'] = $blank_address; |
|
2320 | - $return['upload_files'] = $upload_files; |
|
2321 | - $return['invalid_post_type'] = $invalid_post_type; |
|
2322 | - $return['invalid_title'] = $invalid_title; |
|
2323 | - $return['total_records'] = $total_records; |
|
2324 | - |
|
2325 | - echo json_encode($return); |
|
2326 | - exit; |
|
2187 | + $my_post['post_title'] = $post_title; |
|
2188 | + $my_post['post_content'] = $post_desc; |
|
2189 | + $my_post['post_type'] = addslashes($buffer[5]); |
|
2190 | + $my_post['post_author'] = $current_post_author; |
|
2191 | + $my_post['post_status'] = $post_status; |
|
2192 | + $my_post['post_category'] = $catids_arr; |
|
2193 | + $my_post['post_tags'] = $tag_arr; |
|
2194 | + |
|
2195 | + $gd_post_info['post_tags'] = $tag_arr; |
|
2196 | + $gd_post_info['post_title'] = $post_title; |
|
2197 | + $gd_post_info['post_status'] = $post_status; |
|
2198 | + $gd_post_info['submit_time'] = time(); |
|
2199 | + $gd_post_info['submit_ip'] = $_SERVER['REMOTE_ADDR']; |
|
2200 | + |
|
2201 | + $last_postid = wp_insert_post($my_post); |
|
2202 | + $countpost++; |
|
2203 | + |
|
2204 | + // Check if we need to save post location as new location |
|
2205 | + if ($location_result->location_id > 0) { |
|
2206 | + if (isset($post_city) && isset($post_region)) { |
|
2207 | + $request_info['post_location'] = array( |
|
2208 | + 'city' => $post_city, |
|
2209 | + 'region' => $post_region, |
|
2210 | + 'country' => $post_country, |
|
2211 | + 'geo_lat' => $post_latitude, |
|
2212 | + 'geo_lng' => $post_longitude |
|
2213 | + ); |
|
2214 | + |
|
2215 | + $post_location_info = $request_info['post_location']; |
|
2216 | + if ($location_id = geodir_add_new_location($post_location_info)) |
|
2217 | + $post_location_id = $location_id; |
|
2218 | + } else { |
|
2219 | + $post_location_id = 0; |
|
2220 | + } |
|
2221 | + } else { |
|
2222 | + $post_location_id = 0; |
|
2223 | + } |
|
2224 | + |
|
2225 | + /* ------- get default package info ----- */ |
|
2226 | + $payment_info = array(); |
|
2227 | + $package_info = array(); |
|
2228 | + |
|
2229 | + $package_info = (array)geodir_post_package_info($package_info, '', $buffer[5]); |
|
2230 | + $package_id = ''; |
|
2231 | + if (isset($gd_post_info['package_id']) && $gd_post_info['package_id'] != '') { |
|
2232 | + $package_id = $gd_post_info['package_id']; |
|
2233 | + } |
|
2234 | + |
|
2235 | + if (!empty($package_info)) { |
|
2236 | + $payment_info['package_id'] = $package_info['pid']; |
|
2237 | + |
|
2238 | + if (isset($package_info['alive_days']) && $package_info['alive_days'] != 0) { |
|
2239 | + $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['alive_days'] . " days")); |
|
2240 | + } else { |
|
2241 | + $payment_info['expire_date'] = 'Never'; |
|
2242 | + } |
|
2243 | + |
|
2244 | + $gd_post_info = array_merge($gd_post_info, $payment_info); |
|
2245 | + } |
|
2246 | + |
|
2247 | + $gd_post_info['post_location_id'] = $post_location_id; |
|
2248 | + |
|
2249 | + $post_type = get_post_type($last_postid); |
|
2250 | + |
|
2251 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
2252 | + |
|
2253 | + geodir_save_post_info($last_postid, $gd_post_info); |
|
2254 | + |
|
2255 | + if (!empty($image_names)) { |
|
2256 | + $upload_files++; |
|
2257 | + $menu_order = 1; |
|
2258 | + |
|
2259 | + foreach ($image_names as $image_name) { |
|
2260 | + $img_name_arr = explode('.', $image_name); |
|
2261 | + |
|
2262 | + $uploads = wp_upload_dir(); |
|
2263 | + $sub_dir = $uploads['subdir']; |
|
2264 | + |
|
2265 | + $arr_file_type = wp_check_filetype($image_name); |
|
2266 | + $uploaded_file_type = $arr_file_type['type']; |
|
2267 | + |
|
2268 | + $attachment = array(); |
|
2269 | + $attachment['post_id'] = $last_postid; |
|
2270 | + $attachment['title'] = $img_name_arr[0]; |
|
2271 | + $attachment['content'] = ''; |
|
2272 | + $attachment['file'] = $sub_dir . '/' . $image_name; |
|
2273 | + $attachment['mime_type'] = $uploaded_file_type; |
|
2274 | + $attachment['menu_order'] = $menu_order; |
|
2275 | + $attachment['is_featured'] = 0; |
|
2276 | + |
|
2277 | + $attachment_set = ''; |
|
2278 | + |
|
2279 | + foreach ($attachment as $key => $val) { |
|
2280 | + if ($val != '') |
|
2281 | + $attachment_set .= $key . " = '" . $val . "', "; |
|
2282 | + } |
|
2283 | + $attachment_set = trim($attachment_set, ", "); |
|
2284 | + |
|
2285 | + $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set); |
|
2286 | + |
|
2287 | + if ($menu_order == 1) { |
|
2288 | + $post_type = get_post_type($last_postid); |
|
2289 | + $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($sub_dir . '/' . $image_name, $last_postid))); |
|
2290 | + } |
|
2291 | + $menu_order++; |
|
2292 | + } |
|
2293 | + } |
|
2294 | + |
|
2295 | + $gd_post_info['package_id'] = $package_id; |
|
2296 | + |
|
2297 | + /** This action is documented in geodirectory-functions/post-functions.php */ |
|
2298 | + do_action('geodir_after_save_listing', $last_postid, $gd_post_info); |
|
2299 | + |
|
2300 | + if (!empty($buffer[5])) { |
|
2301 | + if (in_array($buffer[5], geodir_get_posttypes())) { |
|
2302 | + $taxonomies = geodir_get_posttype_info(addslashes($buffer[5])); |
|
2303 | + wp_set_object_terms($last_postid, $my_post['post_tags'], $taxonomy = $taxonomies['taxonomies'][1]); |
|
2304 | + wp_set_object_terms($last_postid, $my_post['post_category'], $taxonomy = $taxonomies['taxonomies'][0]); |
|
2305 | + |
|
2306 | + $post_default_category = isset($my_post['post_default_category']) ? $my_post['post_default_category'] : ''; |
|
2307 | + $post_category_str = isset($my_post['post_category_str']) ? $my_post['post_category_str'] : ''; |
|
2308 | + geodir_set_postcat_structure($last_postid, $taxonomy, $post_default_category, $post_category_str); |
|
2309 | + } |
|
2310 | + } |
|
2311 | + } else { |
|
2312 | + $invalid_title++; |
|
2313 | + } |
|
2314 | + } |
|
2315 | + } |
|
2316 | + } |
|
2317 | + $return['rowcount'] = $countpost; |
|
2318 | + $return['invalidcount'] = $address_invalid; |
|
2319 | + $return['blank_address'] = $blank_address; |
|
2320 | + $return['upload_files'] = $upload_files; |
|
2321 | + $return['invalid_post_type'] = $invalid_post_type; |
|
2322 | + $return['invalid_title'] = $invalid_title; |
|
2323 | + $return['total_records'] = $total_records; |
|
2324 | + |
|
2325 | + echo json_encode($return); |
|
2326 | + exit; |
|
2327 | 2327 | } |
2328 | 2328 | |
2329 | 2329 | // Add the tab in left sidebar menu fro import & export page. |
@@ -2343,9 +2343,9 @@ discard block |
||
2343 | 2343 | * @param $post object $post The post object of the post being saved. |
2344 | 2344 | */ |
2345 | 2345 | function geodir_update_location_prefix($post_id,$post){ |
2346 | - if($post->post_type=='page' && $post->post_name && $post_id==get_option('geodir_location_page')){ |
|
2347 | - update_option('geodir_location_prefix',$post->post_name); |
|
2348 | - } |
|
2346 | + if($post->post_type=='page' && $post->post_name && $post_id==get_option('geodir_location_page')){ |
|
2347 | + update_option('geodir_location_prefix',$post->post_name); |
|
2348 | + } |
|
2349 | 2349 | |
2350 | 2350 | } |
2351 | 2351 | |
@@ -2356,50 +2356,50 @@ discard block |
||
2356 | 2356 | function geodir_ga_callback(){ |
2357 | 2357 | |
2358 | 2358 | if(isset($_REQUEST['code']) && $_REQUEST['code']) { |
2359 | - $oAuthURL = "https://www.googleapis.com/oauth2/v3/token?"; |
|
2360 | - $code = "code=".$_REQUEST['code']; |
|
2361 | - $grant_type = "&grant_type=authorization_code"; |
|
2362 | - $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback"; |
|
2363 | - $client_id = "&client_id=".get_option('geodir_ga_client_id'); |
|
2364 | - $client_secret = "&client_secret=".get_option('geodir_ga_client_secret'); |
|
2359 | + $oAuthURL = "https://www.googleapis.com/oauth2/v3/token?"; |
|
2360 | + $code = "code=".$_REQUEST['code']; |
|
2361 | + $grant_type = "&grant_type=authorization_code"; |
|
2362 | + $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback"; |
|
2363 | + $client_id = "&client_id=".get_option('geodir_ga_client_id'); |
|
2364 | + $client_secret = "&client_secret=".get_option('geodir_ga_client_secret'); |
|
2365 | 2365 | |
2366 | - $auth_url = $oAuthURL . $code . $redirect_uri . $grant_type . $client_id .$client_secret; |
|
2366 | + $auth_url = $oAuthURL . $code . $redirect_uri . $grant_type . $client_id .$client_secret; |
|
2367 | 2367 | |
2368 | - $response = wp_remote_post($auth_url, array('timeout' => 15)); |
|
2368 | + $response = wp_remote_post($auth_url, array('timeout' => 15)); |
|
2369 | 2369 | |
2370 | - //print_r($response); |
|
2370 | + //print_r($response); |
|
2371 | 2371 | |
2372 | - $error_msg = __('Something went wrong','geodirectory'); |
|
2373 | - if(!empty($response['response']['code']) && $response['response']['code']==200){ |
|
2372 | + $error_msg = __('Something went wrong','geodirectory'); |
|
2373 | + if(!empty($response['response']['code']) && $response['response']['code']==200){ |
|
2374 | 2374 | |
2375 | - $parts = json_decode($response['body']); |
|
2376 | - //print_r($parts); |
|
2377 | - if(!isset($parts->access_token)){echo $error_msg." - #1";exit;} |
|
2378 | - else{ |
|
2375 | + $parts = json_decode($response['body']); |
|
2376 | + //print_r($parts); |
|
2377 | + if(!isset($parts->access_token)){echo $error_msg." - #1";exit;} |
|
2378 | + else{ |
|
2379 | 2379 | |
2380 | - update_option('gd_ga_access_token', $parts->access_token); |
|
2381 | - update_option('gd_ga_refresh_token', $parts->refresh_token); |
|
2382 | - ?><script>window.close();</script><?php |
|
2383 | - } |
|
2380 | + update_option('gd_ga_access_token', $parts->access_token); |
|
2381 | + update_option('gd_ga_refresh_token', $parts->refresh_token); |
|
2382 | + ?><script>window.close();</script><?php |
|
2383 | + } |
|
2384 | 2384 | |
2385 | 2385 | |
2386 | - } |
|
2387 | - elseif(!empty($response['response']['code'])) { |
|
2388 | - $parts = json_decode($response['body']); |
|
2386 | + } |
|
2387 | + elseif(!empty($response['response']['code'])) { |
|
2388 | + $parts = json_decode($response['body']); |
|
2389 | 2389 | |
2390 | - if(isset($parts->error)){ |
|
2391 | - echo $parts->error.": ".$parts->error_description;exit; |
|
2392 | - }else{ |
|
2393 | - echo $error_msg." - #2";exit; |
|
2394 | - } |
|
2390 | + if(isset($parts->error)){ |
|
2391 | + echo $parts->error.": ".$parts->error_description;exit; |
|
2392 | + }else{ |
|
2393 | + echo $error_msg." - #2";exit; |
|
2394 | + } |
|
2395 | 2395 | |
2396 | - }else{ |
|
2396 | + }else{ |
|
2397 | 2397 | |
2398 | - echo $error_msg." - #3";exit; |
|
2398 | + echo $error_msg." - #3";exit; |
|
2399 | 2399 | |
2400 | - } |
|
2400 | + } |
|
2401 | 2401 | } |
2402 | - exit; |
|
2402 | + exit; |
|
2403 | 2403 | } |
2404 | 2404 | |
2405 | 2405 | if (isset($_REQUEST['tab']) && $_REQUEST['tab'] == 'permalink_settings') { |
@@ -2415,45 +2415,45 @@ discard block |
||
2415 | 2415 | * @return array Array of settings. |
2416 | 2416 | */ |
2417 | 2417 | function geodir_uninstall_settings($general_settings) { |
2418 | - $settings = array(); |
|
2419 | - $settings[] = array('type' => 'title', 'id' => 'uninstall_settings', 'name' => __('Uninstall Settings', 'geodirectory')); |
|
2420 | - $settings[] = array('type' => 'sectionstart', 'id' => 'uninstall_settings_main', 'name' => __('Remove Data on Uninstall?', 'geodirectory' )); |
|
2418 | + $settings = array(); |
|
2419 | + $settings[] = array('type' => 'title', 'id' => 'uninstall_settings', 'name' => __('Uninstall Settings', 'geodirectory')); |
|
2420 | + $settings[] = array('type' => 'sectionstart', 'id' => 'uninstall_settings_main', 'name' => __('Remove Data on Uninstall?', 'geodirectory' )); |
|
2421 | 2421 | |
2422 | - $plugins = get_plugins(); |
|
2423 | - $un_plugins = apply_filters('geodir_plugins_uninstall_settings', array()); |
|
2422 | + $plugins = get_plugins(); |
|
2423 | + $un_plugins = apply_filters('geodir_plugins_uninstall_settings', array()); |
|
2424 | 2424 | |
2425 | - if (!empty($plugins) && !empty($un_plugins)) { |
|
2426 | - foreach ($plugins as $plugin => $data) { |
|
2427 | - $plugin_name = plugin_basename(dirname($plugin)); |
|
2425 | + if (!empty($plugins) && !empty($un_plugins)) { |
|
2426 | + foreach ($plugins as $plugin => $data) { |
|
2427 | + $plugin_name = plugin_basename(dirname($plugin)); |
|
2428 | 2428 | |
2429 | - if (in_array($plugin_name, $un_plugins)) { |
|
2430 | - $settings[] = array( |
|
2431 | - 'type' => 'checkbox', |
|
2432 | - 'id' => 'geodir_un_' . $plugin_name, |
|
2433 | - 'name' => $data['Name'], |
|
2434 | - 'desc' => __('Remove all data when deleted?', 'geodirectory'), |
|
2435 | - 'std' => '0' |
|
2436 | - ); |
|
2437 | - } |
|
2438 | - } |
|
2439 | - } |
|
2429 | + if (in_array($plugin_name, $un_plugins)) { |
|
2430 | + $settings[] = array( |
|
2431 | + 'type' => 'checkbox', |
|
2432 | + 'id' => 'geodir_un_' . $plugin_name, |
|
2433 | + 'name' => $data['Name'], |
|
2434 | + 'desc' => __('Remove all data when deleted?', 'geodirectory'), |
|
2435 | + 'std' => '0' |
|
2436 | + ); |
|
2437 | + } |
|
2438 | + } |
|
2439 | + } |
|
2440 | 2440 | |
2441 | - $settings[] = array('type' => 'sectionend', 'id' => 'uninstall_settings_main'); |
|
2441 | + $settings[] = array('type' => 'sectionend', 'id' => 'uninstall_settings_main'); |
|
2442 | 2442 | |
2443 | - /** |
|
2444 | - * Filter the uninstall settings array. |
|
2445 | - * |
|
2446 | - * @since 1.6.9 |
|
2447 | - * |
|
2448 | - * @param array $settings The settings array. |
|
2449 | - */ |
|
2450 | - $settings = apply_filters('geodir_uninstall_settings', $settings); |
|
2443 | + /** |
|
2444 | + * Filter the uninstall settings array. |
|
2445 | + * |
|
2446 | + * @since 1.6.9 |
|
2447 | + * |
|
2448 | + * @param array $settings The settings array. |
|
2449 | + */ |
|
2450 | + $settings = apply_filters('geodir_uninstall_settings', $settings); |
|
2451 | 2451 | |
2452 | - if (!empty($settings) && count($settings) > 3) { |
|
2453 | - return array_merge($general_settings, $settings); |
|
2454 | - } |
|
2452 | + if (!empty($settings) && count($settings) > 3) { |
|
2453 | + return array_merge($general_settings, $settings); |
|
2454 | + } |
|
2455 | 2455 | |
2456 | - return $general_settings; |
|
2456 | + return $general_settings; |
|
2457 | 2457 | } |
2458 | 2458 | add_filter('geodir_general_settings', 'geodir_uninstall_settings', 100, 1); |
2459 | 2459 | |
@@ -2463,7 +2463,7 @@ discard block |
||
2463 | 2463 | * @since 1.6.9 |
2464 | 2464 | */ |
2465 | 2465 | function geodir_uninstall_settings_desc() { |
2466 | - echo '<p class="gd-un-settings-desc">' . __('Select the plugin(s) for which all data should be completely removed when the plugin is deleted.', 'geodirectory') . '</p>'; |
|
2466 | + echo '<p class="gd-un-settings-desc">' . __('Select the plugin(s) for which all data should be completely removed when the plugin is deleted.', 'geodirectory') . '</p>'; |
|
2467 | 2467 | } |
2468 | 2468 | add_action('geodir_settings_uninstall_settings_main_start', 'geodir_uninstall_settings_desc'); |
2469 | 2469 | |
@@ -2479,18 +2479,18 @@ discard block |
||
2479 | 2479 | * @return array The settings array. |
2480 | 2480 | */ |
2481 | 2481 | function geodir_resave_settings($settings = array()) { |
2482 | - if (!empty($settings) && is_array($settings)) { |
|
2483 | - $c = 0; |
|
2482 | + if (!empty($settings) && is_array($settings)) { |
|
2483 | + $c = 0; |
|
2484 | 2484 | |
2485 | - foreach ($settings as $setting) { |
|
2486 | - if (!empty($setting['id']) && false !== ($value = get_option($setting['id']))) { |
|
2487 | - $settings[$c]['std'] = $value; |
|
2488 | - } |
|
2489 | - $c++; |
|
2490 | - } |
|
2491 | - } |
|
2492 | - |
|
2493 | - return $settings; |
|
2485 | + foreach ($settings as $setting) { |
|
2486 | + if (!empty($setting['id']) && false !== ($value = get_option($setting['id']))) { |
|
2487 | + $settings[$c]['std'] = $value; |
|
2488 | + } |
|
2489 | + $c++; |
|
2490 | + } |
|
2491 | + } |
|
2492 | + |
|
2493 | + return $settings; |
|
2494 | 2494 | } |
2495 | 2495 | |
2496 | 2496 | /** |
@@ -2502,9 +2502,9 @@ discard block |
||
2502 | 2502 | * @return array The modified settings. |
2503 | 2503 | */ |
2504 | 2504 | function geodir_core_uninstall_settings($settings) { |
2505 | - $settings[] = plugin_basename(dirname(dirname(__FILE__))); |
|
2505 | + $settings[] = plugin_basename(dirname(dirname(__FILE__))); |
|
2506 | 2506 | |
2507 | - return $settings; |
|
2507 | + return $settings; |
|
2508 | 2508 | } |
2509 | 2509 | add_filter('geodir_plugins_uninstall_settings', 'geodir_core_uninstall_settings', 10, 1); |
2510 | 2510 | |
@@ -2518,34 +2518,34 @@ discard block |
||
2518 | 2518 | */ |
2519 | 2519 | function geodir_diagnose_reload_db_countries() |
2520 | 2520 | { |
2521 | - global $wpdb, $plugin_prefix; |
|
2522 | - |
|
2523 | - $is_error_during_diagnose = false; |
|
2524 | - $output_str = ''; |
|
2525 | - |
|
2526 | - $delete = $wpdb->query("TRUNCATE TABLE ".GEODIR_COUNTRIES_TABLE); |
|
2527 | - |
|
2528 | - |
|
2529 | - if ($delete) { |
|
2530 | - $output_str .= "<li><strong>" . __('Table dropped, refresh page to reinstall.', 'geodirectory') . "</strong></li>"; |
|
2531 | - ob_start(); |
|
2532 | - geodir_diagnose_version_clear(); |
|
2533 | - ob_end_clean(); |
|
2534 | - }else{ |
|
2535 | - $output_str .= "<li><strong>" . __('Something went wrong.', 'geodirectory') . "</strong></li>"; |
|
2536 | - } |
|
2537 | - |
|
2538 | - if ($is_error_during_diagnose) { |
|
2539 | - $info_div_class = "geodir_problem_info"; |
|
2540 | - $fix_button_txt = ""; |
|
2541 | - } else { |
|
2542 | - $info_div_class = "geodir_noproblem_info"; |
|
2543 | - $fix_button_txt = ''; |
|
2544 | - } |
|
2545 | - echo "<ul class='$info_div_class'>"; |
|
2546 | - echo $output_str; |
|
2547 | - echo $fix_button_txt; |
|
2548 | - echo "</ul>"; |
|
2521 | + global $wpdb, $plugin_prefix; |
|
2522 | + |
|
2523 | + $is_error_during_diagnose = false; |
|
2524 | + $output_str = ''; |
|
2525 | + |
|
2526 | + $delete = $wpdb->query("TRUNCATE TABLE ".GEODIR_COUNTRIES_TABLE); |
|
2527 | + |
|
2528 | + |
|
2529 | + if ($delete) { |
|
2530 | + $output_str .= "<li><strong>" . __('Table dropped, refresh page to reinstall.', 'geodirectory') . "</strong></li>"; |
|
2531 | + ob_start(); |
|
2532 | + geodir_diagnose_version_clear(); |
|
2533 | + ob_end_clean(); |
|
2534 | + }else{ |
|
2535 | + $output_str .= "<li><strong>" . __('Something went wrong.', 'geodirectory') . "</strong></li>"; |
|
2536 | + } |
|
2537 | + |
|
2538 | + if ($is_error_during_diagnose) { |
|
2539 | + $info_div_class = "geodir_problem_info"; |
|
2540 | + $fix_button_txt = ""; |
|
2541 | + } else { |
|
2542 | + $info_div_class = "geodir_noproblem_info"; |
|
2543 | + $fix_button_txt = ''; |
|
2544 | + } |
|
2545 | + echo "<ul class='$info_div_class'>"; |
|
2546 | + echo $output_str; |
|
2547 | + echo $fix_button_txt; |
|
2548 | + echo "</ul>"; |
|
2549 | 2549 | } |
2550 | 2550 | |
2551 | 2551 | /** |
@@ -2558,11 +2558,11 @@ discard block |
||
2558 | 2558 | * @return array Filtered actions. |
2559 | 2559 | */ |
2560 | 2560 | function geodir_disable_quick_edit( $actions = array(), $row = null ) { |
2561 | - if ( isset( $actions['inline hide-if-no-js'] ) ) { |
|
2562 | - unset( $actions['inline hide-if-no-js'] ); |
|
2563 | - } |
|
2561 | + if ( isset( $actions['inline hide-if-no-js'] ) ) { |
|
2562 | + unset( $actions['inline hide-if-no-js'] ); |
|
2563 | + } |
|
2564 | 2564 | |
2565 | - return $actions; |
|
2565 | + return $actions; |
|
2566 | 2566 | } |
2567 | 2567 | |
2568 | 2568 | /** |
@@ -2576,26 +2576,26 @@ discard block |
||
2576 | 2576 | * @global bool $gd_cpt_screen True if current scrrrn has GD post type. |
2577 | 2577 | */ |
2578 | 2578 | function geodir_check_quick_edit() { |
2579 | - global $pagenow, $current_screen, $gd_cpt_screen; |
|
2580 | - |
|
2581 | - if ( ( $pagenow == 'edit.php' || $pagenow == 'edit-tags.php' ) && !empty( $current_screen->post_type ) ) { |
|
2582 | - if ( empty( $gd_cpt_screen ) ) { |
|
2583 | - if ( in_array( $current_screen->post_type, geodir_get_posttypes() ) ) { |
|
2584 | - $gd_cpt_screen = 'y'; |
|
2585 | - } else { |
|
2586 | - $gd_cpt_screen = 'n'; |
|
2587 | - } |
|
2588 | - } |
|
2589 | - |
|
2590 | - if ( $gd_cpt_screen == 'y' ) { |
|
2591 | - if ( $pagenow == 'edit.php' ) { |
|
2592 | - add_filter( 'post_row_actions', 'geodir_disable_quick_edit', 10, 2 ); |
|
2593 | - add_filter( 'page_row_actions', 'geodir_disable_quick_edit', 10, 2 ); |
|
2594 | - } elseif ( $pagenow == 'edit-tags.php' && !empty( $current_screen->taxonomy ) ) { |
|
2595 | - add_filter( $current_screen->taxonomy . '_row_actions', 'geodir_disable_quick_edit', 10, 2 ); |
|
2596 | - } |
|
2597 | - } |
|
2598 | - } |
|
2579 | + global $pagenow, $current_screen, $gd_cpt_screen; |
|
2580 | + |
|
2581 | + if ( ( $pagenow == 'edit.php' || $pagenow == 'edit-tags.php' ) && !empty( $current_screen->post_type ) ) { |
|
2582 | + if ( empty( $gd_cpt_screen ) ) { |
|
2583 | + if ( in_array( $current_screen->post_type, geodir_get_posttypes() ) ) { |
|
2584 | + $gd_cpt_screen = 'y'; |
|
2585 | + } else { |
|
2586 | + $gd_cpt_screen = 'n'; |
|
2587 | + } |
|
2588 | + } |
|
2589 | + |
|
2590 | + if ( $gd_cpt_screen == 'y' ) { |
|
2591 | + if ( $pagenow == 'edit.php' ) { |
|
2592 | + add_filter( 'post_row_actions', 'geodir_disable_quick_edit', 10, 2 ); |
|
2593 | + add_filter( 'page_row_actions', 'geodir_disable_quick_edit', 10, 2 ); |
|
2594 | + } elseif ( $pagenow == 'edit-tags.php' && !empty( $current_screen->taxonomy ) ) { |
|
2595 | + add_filter( $current_screen->taxonomy . '_row_actions', 'geodir_disable_quick_edit', 10, 2 ); |
|
2596 | + } |
|
2597 | + } |
|
2598 | + } |
|
2599 | 2599 | } |
2600 | 2600 | add_action( 'admin_head', 'geodir_check_quick_edit', 10 ); |
2601 | 2601 | |
@@ -2609,9 +2609,9 @@ discard block |
||
2609 | 2609 | * @return array Filtered bulk actions. |
2610 | 2610 | */ |
2611 | 2611 | function geodir_filter_bulk_actions( $actions ) { |
2612 | - if ( isset( $actions['edit'] ) ) { |
|
2613 | - unset( $actions['edit'] ); |
|
2614 | - } |
|
2612 | + if ( isset( $actions['edit'] ) ) { |
|
2613 | + unset( $actions['edit'] ); |
|
2614 | + } |
|
2615 | 2615 | |
2616 | - return $actions; |
|
2616 | + return $actions; |
|
2617 | 2617 | } |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | */ |
63 | 63 | function geodir_get_admin_option_form($current_tab) |
64 | 64 | { |
65 | - geodir_admin_option_form($current_tab);// defined in admin template tags.php |
|
65 | + geodir_admin_option_form($current_tab); // defined in admin template tags.php |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | add_action('geodir_update_options_compatibility_settings', 'geodir_update_options_compatibility_settings'); |
71 | 71 | add_action('geodir_update_options_default_location_settings', 'geodir_location_form_submit'); |
72 | 72 | add_action('geodir_before_admin_panel', 'geodir_before_admin_panel'); // this function is in admin_functions.php |
73 | -add_action('geodir_before_update_options', 'geodir_before_update_options',10,2); |
|
73 | +add_action('geodir_before_update_options', 'geodir_before_update_options', 10, 2); |
|
74 | 74 | |
75 | 75 | //add_action('geodir_before_admin_panel', 'geodir_autoinstall_admin_header'); |
76 | 76 | |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | |
100 | 100 | // Disable VC editor for GD post types. |
101 | 101 | if (class_exists('Vc_Role_Access_Controller')) { |
102 | - add_filter( 'vc_role_access_with_post_types_can', '__return_false', 100 ); |
|
102 | + add_filter('vc_role_access_with_post_types_can', '__return_false', 100); |
|
103 | 103 | } |
104 | 104 | } |
105 | 105 | |
@@ -126,8 +126,8 @@ discard block |
||
126 | 126 | add_action('admin_panel_init', 'geodir_admin_list_columns', 2); |
127 | 127 | |
128 | 128 | /* --- insert dummy post action ---*/ |
129 | -add_action('geodir_insert_dummy_posts', 'geodir_insert_dummy_posts', 1,3); |
|
130 | -add_action('geodir_delete_dummy_posts', 'geodir_delete_dummy_posts', 1,3); |
|
129 | +add_action('geodir_insert_dummy_posts', 'geodir_insert_dummy_posts', 1, 3); |
|
130 | +add_action('geodir_delete_dummy_posts', 'geodir_delete_dummy_posts', 1, 3); |
|
131 | 131 | |
132 | 132 | |
133 | 133 | /** |
@@ -240,9 +240,9 @@ discard block |
||
240 | 240 | |
241 | 241 | // Filter-Payment-Manager |
242 | 242 | |
243 | - add_meta_box('geodir_post_images', $post_typename . ' ' . __('Attachments', 'geodirectory'), 'geodir_post_attachments', $geodir_posttype, 'side'); |
|
243 | + add_meta_box('geodir_post_images', $post_typename.' '.__('Attachments', 'geodirectory'), 'geodir_post_attachments', $geodir_posttype, 'side'); |
|
244 | 244 | |
245 | - add_meta_box('geodir_post_info', $post_typename . ' ' . __('Information', 'geodirectory'), 'geodir_post_info_setting', $geodir_posttype, 'normal', 'high'); |
|
245 | + add_meta_box('geodir_post_info', $post_typename.' '.__('Information', 'geodirectory'), 'geodir_post_info_setting', $geodir_posttype, 'normal', 'high'); |
|
246 | 246 | |
247 | 247 | // no need of this box as all fields moved to main information box |
248 | 248 | //add_meta_box( 'geodir_post_addinfo', $post_typename. ' ' .__('Additional Information' , 'geodirectory'), 'geodir_post_addinfo_setting', $geodir_posttype,'normal', 'high' ); |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | |
252 | 252 | } |
253 | 253 | |
254 | -add_action('save_post', 'geodir_post_information_save',10,2); |
|
254 | +add_action('save_post', 'geodir_post_information_save', 10, 2); |
|
255 | 255 | |
256 | 256 | |
257 | 257 | |
@@ -278,10 +278,10 @@ discard block |
||
278 | 278 | |
279 | 279 | $gd_taxonomy = geodir_get_taxonomies($geodir_post_type); |
280 | 280 | |
281 | - if(!empty($gd_taxonomy)) { |
|
281 | + if (!empty($gd_taxonomy)) { |
|
282 | 282 | foreach ($gd_taxonomy as $tax) { |
283 | 283 | |
284 | - remove_meta_box($tax . 'div', $geodir_post_type, 'normal'); |
|
284 | + remove_meta_box($tax.'div', $geodir_post_type, 'normal'); |
|
285 | 285 | |
286 | 286 | } |
287 | 287 | } |
@@ -367,14 +367,14 @@ discard block |
||
367 | 367 | add_action('geodir_manage_available_fields_predefined', 'geodir_manage_available_fields_predefined'); |
368 | 368 | add_action('geodir_manage_available_fields_custom', 'geodir_manage_available_fields_custom'); |
369 | 369 | |
370 | -function geodir_manage_available_fields_predefined($sub_tab){ |
|
371 | - if($sub_tab=='custom_fields'){ |
|
370 | +function geodir_manage_available_fields_predefined($sub_tab) { |
|
371 | + if ($sub_tab == 'custom_fields') { |
|
372 | 372 | geodir_custom_available_fields('predefined'); |
373 | 373 | } |
374 | 374 | } |
375 | 375 | |
376 | -function geodir_manage_available_fields_custom($sub_tab){ |
|
377 | - if($sub_tab=='custom_fields'){ |
|
376 | +function geodir_manage_available_fields_custom($sub_tab) { |
|
377 | + if ($sub_tab == 'custom_fields') { |
|
378 | 378 | geodir_custom_available_fields('custom'); |
379 | 379 | } |
380 | 380 | } |
@@ -444,7 +444,7 @@ discard block |
||
444 | 444 | global $wpdb; |
445 | 445 | $listing_type = ($_REQUEST['listing_type'] != '') ? sanitize_text_field($_REQUEST['listing_type']) : 'gd_place'; |
446 | 446 | ?> |
447 | - <input type="hidden" name="listing_type" id="new_post_type" value="<?php echo $listing_type;?>"/> |
|
447 | + <input type="hidden" name="listing_type" id="new_post_type" value="<?php echo $listing_type; ?>"/> |
|
448 | 448 | <input type="hidden" name="manage_field_type" class="manage_field_type" value="<?php echo sanitize_text_field($_REQUEST['subtab']); ?>"/> |
449 | 449 | <ul> |
450 | 450 | <?php |
@@ -455,7 +455,7 @@ discard block |
||
455 | 455 | |
456 | 456 | $check_html_variable = $wpdb->get_var( |
457 | 457 | $wpdb->prepare( |
458 | - "SELECT htmlvar_name FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE htmlvar_name = %s AND post_type = %s AND field_type=%s", |
|
458 | + "SELECT htmlvar_name FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." WHERE htmlvar_name = %s AND post_type = %s AND field_type=%s", |
|
459 | 459 | array($val['htmlvar_name'], $listing_type, $val['field_type']) |
460 | 460 | ) |
461 | 461 | ); |
@@ -463,23 +463,23 @@ discard block |
||
463 | 463 | $display = $check_html_variable ? ' style="display:none;"' : ''; |
464 | 464 | ?> |
465 | 465 | |
466 | - <li class="gd-cf-tooltip-wrap" <?php echo $display;?>> |
|
466 | + <li class="gd-cf-tooltip-wrap" <?php echo $display; ?>> |
|
467 | 467 | <?php |
468 | - if(isset($val['description']) && $val['description']){ |
|
468 | + if (isset($val['description']) && $val['description']) { |
|
469 | 469 | echo '<div class="gdcf-tooltip">'.$val['description'].'</div>'; |
470 | 470 | }?> |
471 | 471 | |
472 | - <a id="gd-<?php echo $val['field_type'];?>-_-<?php echo $val['htmlvar_name'];?>" data-field-type-key="<?php echo $val['htmlvar_name'];?>" data-field-type="<?php echo $val['field_type'];?>" |
|
473 | - title="<?php echo $val['site_title'];?>" |
|
474 | - class="gd-draggable-form-items gd-<?php echo $val['field_type'];?> geodir-sort-<?php echo $val['htmlvar_name'];?>" href="javascript:void(0);"> |
|
472 | + <a id="gd-<?php echo $val['field_type']; ?>-_-<?php echo $val['htmlvar_name']; ?>" data-field-type-key="<?php echo $val['htmlvar_name']; ?>" data-field-type="<?php echo $val['field_type']; ?>" |
|
473 | + title="<?php echo $val['site_title']; ?>" |
|
474 | + class="gd-draggable-form-items gd-<?php echo $val['field_type']; ?> geodir-sort-<?php echo $val['htmlvar_name']; ?>" href="javascript:void(0);"> |
|
475 | 475 | <?php if (isset($val['field_icon']) && strpos($val['field_icon'], 'fa fa-') !== false) { |
476 | 476 | echo '<i class="'.$val['field_icon'].'" aria-hidden="true"></i>'; |
477 | - }elseif(isset($val['field_icon']) && $val['field_icon'] ){ |
|
477 | + }elseif (isset($val['field_icon']) && $val['field_icon']) { |
|
478 | 478 | echo '<b style="background-image: url("'.$val['field_icon'].'")"></b>'; |
479 | - }else{ |
|
479 | + } else { |
|
480 | 480 | echo '<i class="fa fa-cog" aria-hidden="true"></i>'; |
481 | 481 | }?> |
482 | - <?php echo $val['site_title'];?> |
|
482 | + <?php echo $val['site_title']; ?> |
|
483 | 483 | </a> |
484 | 484 | </li> |
485 | 485 | |
@@ -507,7 +507,7 @@ discard block |
||
507 | 507 | <?php |
508 | 508 | global $wpdb; |
509 | 509 | |
510 | - $fields = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE post_type = %s AND field_type != 'address' ORDER BY sort_order ASC", array($listing_type))); |
|
510 | + $fields = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." WHERE post_type = %s AND field_type != 'address' ORDER BY sort_order ASC", array($listing_type))); |
|
511 | 511 | |
512 | 512 | if (!empty($fields)) { |
513 | 513 | foreach ($fields as $field) { |
@@ -532,14 +532,14 @@ discard block |
||
532 | 532 | * @since 1.6.9 |
533 | 533 | * @package GeoDirectory |
534 | 534 | */ |
535 | -function geodir_custom_fields_custom($post_type=''){ |
|
535 | +function geodir_custom_fields_custom($post_type = '') { |
|
536 | 536 | |
537 | 537 | $custom_fields = array(); |
538 | 538 | |
539 | 539 | /** |
540 | 540 | * @see `geodir_custom_fields` |
541 | 541 | */ |
542 | - return apply_filters('geodir_custom_fields_custom',$custom_fields,$post_type); |
|
542 | + return apply_filters('geodir_custom_fields_custom', $custom_fields, $post_type); |
|
543 | 543 | } |
544 | 544 | |
545 | 545 | |
@@ -550,7 +550,7 @@ discard block |
||
550 | 550 | * @since 1.6.6 |
551 | 551 | * @package GeoDirectory |
552 | 552 | */ |
553 | -function geodir_custom_fields($post_type=''){ |
|
553 | +function geodir_custom_fields($post_type = '') { |
|
554 | 554 | |
555 | 555 | $custom_fields = array( |
556 | 556 | 'text' => array( |
@@ -685,7 +685,7 @@ discard block |
||
685 | 685 | * } |
686 | 686 | * @param string $post_type The post type requested. |
687 | 687 | */ |
688 | - return apply_filters('geodir_custom_fields',$custom_fields,$post_type); |
|
688 | + return apply_filters('geodir_custom_fields', $custom_fields, $post_type); |
|
689 | 689 | } |
690 | 690 | |
691 | 691 | /** |
@@ -696,25 +696,25 @@ discard block |
||
696 | 696 | * @param string $type The custom field type, predefined, custom or blank for default |
697 | 697 | * @package GeoDirectory |
698 | 698 | */ |
699 | -function geodir_custom_available_fields($type='') |
|
699 | +function geodir_custom_available_fields($type = '') |
|
700 | 700 | { |
701 | 701 | $listing_type = ($_REQUEST['listing_type'] != '') ? sanitize_text_field($_REQUEST['listing_type']) : 'gd_place'; |
702 | 702 | ?> |
703 | - <input type="hidden" name="listing_type" id="new_post_type" value="<?php echo $listing_type;?>"/> |
|
703 | + <input type="hidden" name="listing_type" id="new_post_type" value="<?php echo $listing_type; ?>"/> |
|
704 | 704 | <input type="hidden" name="manage_field_type" class="manage_field_type" value="<?php echo sanitize_text_field($_REQUEST['subtab']); ?>" /> |
705 | 705 | |
706 | 706 | <?php |
707 | - if($type=='predefined'){ |
|
707 | + if ($type == 'predefined') { |
|
708 | 708 | $cfs = geodir_custom_fields_predefined($listing_type); |
709 | - }elseif($type=='custom'){ |
|
709 | + }elseif ($type == 'custom') { |
|
710 | 710 | $cfs = geodir_custom_fields_custom($listing_type); |
711 | - }else{ |
|
711 | + } else { |
|
712 | 712 | $cfs = geodir_custom_fields($listing_type); |
713 | 713 | ?> |
714 | 714 | <ul class="full gd-cf-tooltip-wrap"> |
715 | 715 | <li> |
716 | 716 | <div class="gdcf-tooltip"> |
717 | - <?php _e('This adds a section separator with a title.', 'geodirectory');?> |
|
717 | + <?php _e('This adds a section separator with a title.', 'geodirectory'); ?> |
|
718 | 718 | </div> |
719 | 719 | <a id="gt-fieldset" |
720 | 720 | class="gd-draggable-form-items gt-fieldset" |
@@ -725,7 +725,7 @@ discard block |
||
725 | 725 | |
726 | 726 | <i class="fa fa-long-arrow-left " aria-hidden="true"></i> |
727 | 727 | <i class="fa fa-long-arrow-right " aria-hidden="true"></i> |
728 | - <?php _e('Fieldset (section separator)', 'geodirectory');?> |
|
728 | + <?php _e('Fieldset (section separator)', 'geodirectory'); ?> |
|
729 | 729 | </a> |
730 | 730 | </li> |
731 | 731 | </ul> |
@@ -733,15 +733,15 @@ discard block |
||
733 | 733 | <?php |
734 | 734 | } |
735 | 735 | |
736 | - if(!empty($cfs)) { |
|
736 | + if (!empty($cfs)) { |
|
737 | 737 | echo '<ul>'; |
738 | - foreach ( $cfs as $id => $cf ) { |
|
738 | + foreach ($cfs as $id => $cf) { |
|
739 | 739 | ?> |
740 | 740 | |
741 | 741 | <li class="gd-cf-tooltip-wrap"> |
742 | 742 | <?php |
743 | - if ( isset( $cf['description'] ) && $cf['description'] ) { |
|
744 | - echo '<div class="gdcf-tooltip">' . $cf['description'] . '</div>'; |
|
743 | + if (isset($cf['description']) && $cf['description']) { |
|
744 | + echo '<div class="gdcf-tooltip">'.$cf['description'].'</div>'; |
|
745 | 745 | } ?> |
746 | 746 | |
747 | 747 | <a id="gd-<?php echo $id; ?>" |
@@ -751,10 +751,10 @@ discard block |
||
751 | 751 | class="gd-draggable-form-items <?php echo $cf['class']; ?>" |
752 | 752 | href="javascript:void(0);"> |
753 | 753 | |
754 | - <?php if ( isset( $cf['icon'] ) && strpos( $cf['icon'], 'fa fa-' ) !== false ) { |
|
755 | - echo '<i class="' . $cf['icon'] . '" aria-hidden="true"></i>'; |
|
756 | - } elseif ( isset( $cf['icon'] ) && $cf['icon'] ) { |
|
757 | - echo '<b style="background-image: url("' . $cf['icon'] . '")"></b>'; |
|
754 | + <?php if (isset($cf['icon']) && strpos($cf['icon'], 'fa fa-') !== false) { |
|
755 | + echo '<i class="'.$cf['icon'].'" aria-hidden="true"></i>'; |
|
756 | + } elseif (isset($cf['icon']) && $cf['icon']) { |
|
757 | + echo '<b style="background-image: url("'.$cf['icon'].'")"></b>'; |
|
758 | 758 | } else { |
759 | 759 | echo '<i class="fa fa-cog" aria-hidden="true"></i>'; |
760 | 760 | } ?> |
@@ -763,7 +763,7 @@ discard block |
||
763 | 763 | </li> |
764 | 764 | <?php |
765 | 765 | } |
766 | - }else{ |
|
766 | + } else { |
|
767 | 767 | _e('There are no custom fields here yet.', 'geodirectory'); |
768 | 768 | } |
769 | 769 | ?> |
@@ -791,7 +791,7 @@ discard block |
||
791 | 791 | <ul class="core"> |
792 | 792 | <?php |
793 | 793 | global $wpdb; |
794 | - $fields = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type = %s ORDER BY sort_order ASC", array($listing_type))); |
|
794 | + $fields = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type = %s ORDER BY sort_order ASC", array($listing_type))); |
|
795 | 795 | |
796 | 796 | if (!empty($fields)) { |
797 | 797 | foreach ($fields as $field) { |
@@ -801,7 +801,7 @@ discard block |
||
801 | 801 | $field_type_key = $field->field_type_key; |
802 | 802 | $field_ins_upd = 'display'; |
803 | 803 | |
804 | - geodir_custom_field_adminhtml($field_type, $result_str, $field_ins_upd,$field_type_key); |
|
804 | + geodir_custom_field_adminhtml($field_type, $result_str, $field_ins_upd, $field_type_key); |
|
805 | 805 | } |
806 | 806 | } |
807 | 807 | ?></ul> |
@@ -960,8 +960,8 @@ discard block |
||
960 | 960 | |
961 | 961 | if (!get_option('geodir_remove_unnecessary_fields')) { |
962 | 962 | |
963 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $plugin_prefix . "gd_place_detail WHERE field = 'categories'")) |
|
964 | - $wpdb->query("ALTER TABLE `" . $plugin_prefix . "gd_place_detail` DROP `categories`"); |
|
963 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$plugin_prefix."gd_place_detail WHERE field = 'categories'")) |
|
964 | + $wpdb->query("ALTER TABLE `".$plugin_prefix."gd_place_detail` DROP `categories`"); |
|
965 | 965 | |
966 | 966 | update_option('geodir_remove_unnecessary_fields', '1'); |
967 | 967 | |
@@ -990,7 +990,7 @@ discard block |
||
990 | 990 | case 'diagnosis' : |
991 | 991 | if (isset($_REQUEST['diagnose_this']) && $_REQUEST['diagnose_this'] != '') { |
992 | 992 | $diagnose_this = sanitize_text_field($_REQUEST['diagnose_this']); |
993 | - call_user_func('geodir_diagnose_' . $diagnose_this); |
|
993 | + call_user_func('geodir_diagnose_'.$diagnose_this); |
|
994 | 994 | |
995 | 995 | } |
996 | 996 | exit(); |
@@ -999,7 +999,7 @@ discard block |
||
999 | 999 | case 'diagnosis-fix' : |
1000 | 1000 | if (isset($_REQUEST['diagnose_this']) && $_REQUEST['diagnose_this'] != '') |
1001 | 1001 | $diagnose_this = sanitize_text_field($_REQUEST['diagnose_this']); |
1002 | - call_user_func('geodir_diagnose_' . $diagnose_this); |
|
1002 | + call_user_func('geodir_diagnose_'.$diagnose_this); |
|
1003 | 1003 | exit(); |
1004 | 1004 | break; |
1005 | 1005 | } |
@@ -1024,50 +1024,50 @@ discard block |
||
1024 | 1024 | { |
1025 | 1025 | global $wpdb; |
1026 | 1026 | //$filter_arr['output_str'] .='###'.$table.'###'; |
1027 | - if ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak2'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak'") > 0) { |
|
1028 | - $filter_arr['output_str'] .= "<li>" . __('ERROR: You did not follow instructions! Now you will need to contact support to manually fix things.', 'geodirectory') . "</li>"; |
|
1027 | + if ($wpdb->query("SHOW TABLES LIKE '".$table."_ms_bak2'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$table."_ms_bak'") > 0) { |
|
1028 | + $filter_arr['output_str'] .= "<li>".__('ERROR: You did not follow instructions! Now you will need to contact support to manually fix things.', 'geodirectory')."</li>"; |
|
1029 | 1029 | $filter_arr['is_error_during_diagnose'] = true; |
1030 | 1030 | |
1031 | - } elseif ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") > 0) { |
|
1032 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('ERROR: %s_ms_bak table found', 'geodirectory'), $tabel_name) . "</li>"; |
|
1031 | + } elseif ($wpdb->query("SHOW TABLES LIKE '".$table."_ms_bak'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."$table'") > 0) { |
|
1032 | + $filter_arr['output_str'] .= "<li>".sprintf(__('ERROR: %s_ms_bak table found', 'geodirectory'), $tabel_name)."</li>"; |
|
1033 | 1033 | $filter_arr['is_error_during_diagnose'] = true; |
1034 | - $filter_arr['output_str'] .= "<li>" . __('IMPORTANT: This can be caused by out of date core or addons, please update core + addons before trying the fix OR YOU WILL HAVE A BAD TIME!', 'geodirectory') . "</li>"; |
|
1034 | + $filter_arr['output_str'] .= "<li>".__('IMPORTANT: This can be caused by out of date core or addons, please update core + addons before trying the fix OR YOU WILL HAVE A BAD TIME!', 'geodirectory')."</li>"; |
|
1035 | 1035 | $filter_arr['is_error_during_diagnose'] = true; |
1036 | 1036 | |
1037 | 1037 | if ($fix) { |
1038 | - $ms_bak_count = $wpdb->get_var("SELECT COUNT(*) FROM " . $table . "_ms_bak");// get backup table count |
|
1039 | - $new_table_count = $wpdb->get_var("SELECT COUNT(*) FROM " . $wpdb->prefix . "$table");// get new table count |
|
1038 | + $ms_bak_count = $wpdb->get_var("SELECT COUNT(*) FROM ".$table."_ms_bak"); // get backup table count |
|
1039 | + $new_table_count = $wpdb->get_var("SELECT COUNT(*) FROM ".$wpdb->prefix."$table"); // get new table count |
|
1040 | 1040 | |
1041 | 1041 | if ($ms_bak_count == $new_table_count) {// if they are the same count rename to bak2 |
1042 | 1042 | //$filter_arr['output_str'] .= "<li>".sprintf( __('-->PROBLEM: %s table count is the same as new table, contact support' , 'geodirectory'), $table )."</li>" ; |
1043 | 1043 | |
1044 | - $wpdb->query("RENAME TABLE " . $table . "_ms_bak TO " . $table . "_ms_bak2");// rename bak table to new table |
|
1044 | + $wpdb->query("RENAME TABLE ".$table."_ms_bak TO ".$table."_ms_bak2"); // rename bak table to new table |
|
1045 | 1045 | |
1046 | - if ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak2'") && $wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak'") == 0) { |
|
1047 | - $filter_arr['output_str'] .= "<li>" . __('-->FIXED: Renamed and backed up the tables', 'geodirectory') . "</li>"; |
|
1046 | + if ($wpdb->query("SHOW TABLES LIKE '".$table."_ms_bak2'") && $wpdb->query("SHOW TABLES LIKE '".$table."_ms_bak'") == 0) { |
|
1047 | + $filter_arr['output_str'] .= "<li>".__('-->FIXED: Renamed and backed up the tables', 'geodirectory')."</li>"; |
|
1048 | 1048 | } else { |
1049 | - $filter_arr['output_str'] .= "<li>" . __('-->PROBLEM: Failed to rename tables, please contact support.', 'geodirectory') . "</li>"; |
|
1049 | + $filter_arr['output_str'] .= "<li>".__('-->PROBLEM: Failed to rename tables, please contact support.', 'geodirectory')."</li>"; |
|
1050 | 1050 | } |
1051 | 1051 | |
1052 | 1052 | } elseif ($ms_bak_count > $new_table_count) {//if backup is greater then restore it |
1053 | 1053 | |
1054 | - $wpdb->query("RENAME TABLE " . $wpdb->prefix . "$table TO " . $table . "_ms_bak2");// rename new table to bak2 |
|
1055 | - $wpdb->query("RENAME TABLE " . $table . "_ms_bak TO " . $wpdb->prefix . "$table");// rename bak table to new table |
|
1054 | + $wpdb->query("RENAME TABLE ".$wpdb->prefix."$table TO ".$table."_ms_bak2"); // rename new table to bak2 |
|
1055 | + $wpdb->query("RENAME TABLE ".$table."_ms_bak TO ".$wpdb->prefix."$table"); // rename bak table to new table |
|
1056 | 1056 | |
1057 | - if ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak2'") && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") && $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1058 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: restored largest table %s', 'geodirectory'), $table) . "</li>"; |
|
1057 | + if ($wpdb->query("SHOW TABLES LIKE '".$table."_ms_bak2'") && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."$table'") && $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1058 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->FIXED: restored largest table %s', 'geodirectory'), $table)."</li>"; |
|
1059 | 1059 | } else { |
1060 | - $filter_arr['output_str'] .= "<li>" . __('-->PROBLEM: Failed to rename tables, please contact support.', 'geodirectory') . "</li>"; |
|
1060 | + $filter_arr['output_str'] .= "<li>".__('-->PROBLEM: Failed to rename tables, please contact support.', 'geodirectory')."</li>"; |
|
1061 | 1061 | } |
1062 | 1062 | |
1063 | 1063 | } elseif ($new_table_count > $ms_bak_count) {// we cant do much so rename the table to stop errors |
1064 | 1064 | |
1065 | - $wpdb->query("RENAME TABLE " . $table . "_ms_bak TO " . $table . "_ms_bak2");// rename ms_bak table to ms_bak2 |
|
1065 | + $wpdb->query("RENAME TABLE ".$table."_ms_bak TO ".$table."_ms_bak2"); // rename ms_bak table to ms_bak2 |
|
1066 | 1066 | |
1067 | - if ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak'") == 0) { |
|
1068 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: table %s_ms_bak renamed and backed up', 'geodirectory'), $table) . "</li>"; |
|
1067 | + if ($wpdb->query("SHOW TABLES LIKE '".$table."_ms_bak'") == 0) { |
|
1068 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->FIXED: table %s_ms_bak renamed and backed up', 'geodirectory'), $table)."</li>"; |
|
1069 | 1069 | } else { |
1070 | - $filter_arr['output_str'] .= "<li>" . __('-->PROBLEM: Failed to rename tables, please contact support.', 'geodirectory') . "</li>"; |
|
1070 | + $filter_arr['output_str'] .= "<li>".__('-->PROBLEM: Failed to rename tables, please contact support.', 'geodirectory')."</li>"; |
|
1071 | 1071 | } |
1072 | 1072 | |
1073 | 1073 | } |
@@ -1075,54 +1075,54 @@ discard block |
||
1075 | 1075 | } |
1076 | 1076 | |
1077 | 1077 | |
1078 | - } elseif ($wpdb->query("SHOW TABLES LIKE '$table'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") > 0) { |
|
1079 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('ERROR: Two %s tables found', 'geodirectory'), $tabel_name) . "</li>"; |
|
1078 | + } elseif ($wpdb->query("SHOW TABLES LIKE '$table'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."$table'") > 0) { |
|
1079 | + $filter_arr['output_str'] .= "<li>".sprintf(__('ERROR: Two %s tables found', 'geodirectory'), $tabel_name)."</li>"; |
|
1080 | 1080 | $filter_arr['is_error_during_diagnose'] = true; |
1081 | 1081 | |
1082 | 1082 | if ($fix) { |
1083 | 1083 | if ($wpdb->get_var("SELECT COUNT(*) FROM $table") == 0) {// if first table is empty just delete it |
1084 | 1084 | if ($wpdb->query("DROP TABLE IF EXISTS $table")) { |
1085 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Deleted table %s', 'geodirectory'), $table) . "</li>"; |
|
1085 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->FIXED: Deleted table %s', 'geodirectory'), $table)."</li>"; |
|
1086 | 1086 | } else { |
1087 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Delete table %s failed, please try manual delete from DB', 'geodirectory'), $table) . "</li>"; |
|
1087 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->PROBLEM: Delete table %s failed, please try manual delete from DB', 'geodirectory'), $table)."</li>"; |
|
1088 | 1088 | } |
1089 | 1089 | |
1090 | - } elseif ($wpdb->get_var("SELECT COUNT(*) FROM " . $wpdb->prefix . "$table") == 0) {// if main table is empty but original is not, delete main and rename original |
|
1091 | - if ($wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "$table")) { |
|
1092 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Deleted table %s', 'geodirectory'), $wpdb->prefix . $table) . "</li>"; |
|
1090 | + } elseif ($wpdb->get_var("SELECT COUNT(*) FROM ".$wpdb->prefix."$table") == 0) {// if main table is empty but original is not, delete main and rename original |
|
1091 | + if ($wpdb->query("DROP TABLE IF EXISTS ".$wpdb->prefix."$table")) { |
|
1092 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->FIXED: Deleted table %s', 'geodirectory'), $wpdb->prefix.$table)."</li>"; |
|
1093 | 1093 | } else { |
1094 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Delete table %s failed, please try manual delete from DB', 'geodirectory'), $wpdb->prefix . $table) . "</li>"; |
|
1094 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->PROBLEM: Delete table %s failed, please try manual delete from DB', 'geodirectory'), $wpdb->prefix.$table)."</li>"; |
|
1095 | 1095 | } |
1096 | - if ($wpdb->query("RENAME TABLE $table TO " . $wpdb->prefix . "$table") || $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1097 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Table %s renamed to %s', 'geodirectory'), $table, $wpdb->prefix . $table) . "</li>"; |
|
1096 | + if ($wpdb->query("RENAME TABLE $table TO ".$wpdb->prefix."$table") || $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1097 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->FIXED: Table %s renamed to %s', 'geodirectory'), $table, $wpdb->prefix.$table)."</li>"; |
|
1098 | 1098 | } else { |
1099 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Failed to rename table %s to %s, please try manually from DB', 'geodirectory'), $table, $wpdb->prefix . $table) . "</li>"; |
|
1099 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->PROBLEM: Failed to rename table %s to %s, please try manually from DB', 'geodirectory'), $table, $wpdb->prefix.$table)."</li>"; |
|
1100 | 1100 | } |
1101 | 1101 | } else {// else rename the original table to _ms_bak |
1102 | - if ($wpdb->query("RENAME TABLE $table TO " . $table . "_ms_bak") || $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1103 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Table contained info so we renamed %s to %s incase it is needed in future', 'geodirectory'), $table, $table . "_ms_bak") . "</li>"; |
|
1102 | + if ($wpdb->query("RENAME TABLE $table TO ".$table."_ms_bak") || $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1103 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->FIXED: Table contained info so we renamed %s to %s incase it is needed in future', 'geodirectory'), $table, $table."_ms_bak")."</li>"; |
|
1104 | 1104 | } else { |
1105 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Table %s could not be renamed to %s, this table has info so may need to be reviewed manually in the DB', 'geodirectory'), $table, $table . "_ms_bak") . "</li>"; |
|
1105 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->PROBLEM: Table %s could not be renamed to %s, this table has info so may need to be reviewed manually in the DB', 'geodirectory'), $table, $table."_ms_bak")."</li>"; |
|
1106 | 1106 | } |
1107 | 1107 | } |
1108 | 1108 | } |
1109 | 1109 | |
1110 | - } elseif ($wpdb->query("SHOW TABLES LIKE '$table'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") == 0) { |
|
1111 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('ERROR: %s table not converted', 'geodirectory'), $tabel_name) . "</li>"; |
|
1110 | + } elseif ($wpdb->query("SHOW TABLES LIKE '$table'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."$table'") == 0) { |
|
1111 | + $filter_arr['output_str'] .= "<li>".sprintf(__('ERROR: %s table not converted', 'geodirectory'), $tabel_name)."</li>"; |
|
1112 | 1112 | $filter_arr['is_error_during_diagnose'] = true; |
1113 | 1113 | |
1114 | 1114 | if ($fix) { |
1115 | 1115 | // if original table exists but new does not, rename |
1116 | - if ($wpdb->query("RENAME TABLE $table TO " . $wpdb->prefix . "$table") || $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1117 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Table %s renamed to %s', 'geodirectory'), $table, $wpdb->prefix . $table) . "</li>"; |
|
1116 | + if ($wpdb->query("RENAME TABLE $table TO ".$wpdb->prefix."$table") || $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1117 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->FIXED: Table %s renamed to %s', 'geodirectory'), $table, $wpdb->prefix.$table)."</li>"; |
|
1118 | 1118 | } else { |
1119 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Failed to rename table %s to %s, please try manually from DB', 'geodirectory'), $table, $wpdb->prefix . $table) . "</li>"; |
|
1119 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->PROBLEM: Failed to rename table %s to %s, please try manually from DB', 'geodirectory'), $table, $wpdb->prefix.$table)."</li>"; |
|
1120 | 1120 | } |
1121 | 1121 | |
1122 | 1122 | } |
1123 | 1123 | |
1124 | - } elseif ($wpdb->query("SHOW TABLES LIKE '$table'") == 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") == 0) { |
|
1125 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('ERROR: %s table does not exist', 'geodirectory'), $tabel_name) . "</li>"; |
|
1124 | + } elseif ($wpdb->query("SHOW TABLES LIKE '$table'") == 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."$table'") == 0) { |
|
1125 | + $filter_arr['output_str'] .= "<li>".sprintf(__('ERROR: %s table does not exist', 'geodirectory'), $tabel_name)."</li>"; |
|
1126 | 1126 | $filter_arr['is_error_during_diagnose'] = true; |
1127 | 1127 | |
1128 | 1128 | if ($fix) { |
@@ -1136,11 +1136,11 @@ discard block |
||
1136 | 1136 | delete_option('geodir_custom_posts_db_version'); |
1137 | 1137 | delete_option('geodir_reviewratings_db_version'); |
1138 | 1138 | delete_option('geodiradvancesearch_db_version'); |
1139 | - $filter_arr['output_str'] .= "<li>" . __('-->TRY: Please refresh page to run table install functions', 'geodirectory') . "</li>"; |
|
1139 | + $filter_arr['output_str'] .= "<li>".__('-->TRY: Please refresh page to run table install functions', 'geodirectory')."</li>"; |
|
1140 | 1140 | } |
1141 | 1141 | |
1142 | 1142 | } else { |
1143 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('%s table converted correctly', 'geodirectory'), $tabel_name) . "</li>"; |
|
1143 | + $filter_arr['output_str'] .= "<li>".sprintf(__('%s table converted correctly', 'geodirectory'), $tabel_name)."</li>"; |
|
1144 | 1144 | } |
1145 | 1145 | return $filter_arr; |
1146 | 1146 | } |
@@ -1181,21 +1181,21 @@ discard block |
||
1181 | 1181 | } |
1182 | 1182 | |
1183 | 1183 | if ($stepped_process) { |
1184 | - $sql = $wpdb->prepare( "SELECT * FROM " . $wpdb->prefix . "geodir_" . $ptype . "_detail LIMIT %d OFFSET %d", $step_max_items, $offset ); |
|
1185 | - $posts = $wpdb->get_results( $sql ); |
|
1184 | + $sql = $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."geodir_".$ptype."_detail LIMIT %d OFFSET %d", $step_max_items, $offset); |
|
1185 | + $posts = $wpdb->get_results($sql); |
|
1186 | 1186 | |
1187 | 1187 | if (!empty($posts)) { |
1188 | 1188 | |
1189 | 1189 | foreach ($posts as $p) { |
1190 | 1190 | $p->post_type = $ptype; |
1191 | - $raw_tags = wp_get_object_terms($p->post_id, $p->post_type . '_tags', array('fields' => 'names')); |
|
1191 | + $raw_tags = wp_get_object_terms($p->post_id, $p->post_type.'_tags', array('fields' => 'names')); |
|
1192 | 1192 | if (empty($raw_tags)) { |
1193 | 1193 | $post_tags = ''; |
1194 | 1194 | } else { |
1195 | 1195 | $post_tags = implode(",", $raw_tags); |
1196 | 1196 | } |
1197 | - $tablename = $plugin_prefix . $p->post_type . '_detail'; |
|
1198 | - $wpdb->query($wpdb->prepare("UPDATE " . $tablename . " SET post_tags=%s WHERE post_id =%d", $post_tags, $p->post_id)); |
|
1197 | + $tablename = $plugin_prefix.$p->post_type.'_detail'; |
|
1198 | + $wpdb->query($wpdb->prepare("UPDATE ".$tablename." SET post_tags=%s WHERE post_id =%d", $post_tags, $p->post_id)); |
|
1199 | 1199 | |
1200 | 1200 | } |
1201 | 1201 | if ($step >= $max_step) { |
@@ -1211,23 +1211,23 @@ discard block |
||
1211 | 1211 | if (!empty($all_postypes)) { |
1212 | 1212 | foreach ($all_postypes as $key) { |
1213 | 1213 | // update each GD CPT |
1214 | - $posts = $wpdb->get_results( "SELECT * FROM " . $wpdb->prefix . "geodir_" . $key . "_detail"); |
|
1214 | + $posts = $wpdb->get_results("SELECT * FROM ".$wpdb->prefix."geodir_".$key."_detail"); |
|
1215 | 1215 | |
1216 | 1216 | if (!empty($posts)) { |
1217 | 1217 | |
1218 | 1218 | foreach ($posts as $p) { |
1219 | 1219 | $p->post_type = $key; |
1220 | - $raw_tags = wp_get_object_terms($p->post_id, $p->post_type . '_tags', array('fields' => 'names')); |
|
1220 | + $raw_tags = wp_get_object_terms($p->post_id, $p->post_type.'_tags', array('fields' => 'names')); |
|
1221 | 1221 | if (empty($raw_tags)) { |
1222 | 1222 | $post_tags = ''; |
1223 | 1223 | } else { |
1224 | 1224 | $post_tags = implode(",", $raw_tags); |
1225 | 1225 | } |
1226 | - $tablename = $plugin_prefix . $p->post_type . '_detail'; |
|
1227 | - $wpdb->query($wpdb->prepare("UPDATE " . $tablename . " SET post_tags=%s WHERE post_id =%d", $post_tags, $p->post_id)); |
|
1226 | + $tablename = $plugin_prefix.$p->post_type.'_detail'; |
|
1227 | + $wpdb->query($wpdb->prepare("UPDATE ".$tablename." SET post_tags=%s WHERE post_id =%d", $post_tags, $p->post_id)); |
|
1228 | 1228 | |
1229 | 1229 | } |
1230 | - $output_str .= "<li>" . $key . __(': Done', 'geodirectory') . "</li>"; |
|
1230 | + $output_str .= "<li>".$key.__(': Done', 'geodirectory')."</li>"; |
|
1231 | 1231 | } |
1232 | 1232 | |
1233 | 1233 | } |
@@ -1238,14 +1238,14 @@ discard block |
||
1238 | 1238 | |
1239 | 1239 | if ($is_error_during_diagnose) { |
1240 | 1240 | $info_div_class = "geodir_problem_info"; |
1241 | - $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='ratings' />"; |
|
1241 | + $fix_button_txt = "<input type='button' value='".__('Fix', 'geodirectory')."' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='ratings' />"; |
|
1242 | 1242 | } else { |
1243 | 1243 | $info_div_class = "geodir_noproblem_info"; |
1244 | 1244 | $fix_button_txt = ''; |
1245 | 1245 | } |
1246 | 1246 | |
1247 | 1247 | if ($stepped_process) { |
1248 | - $percent = ($step/$max_step) * 100; |
|
1248 | + $percent = ($step / $max_step) * 100; |
|
1249 | 1249 | if ($output_str == 'done') { |
1250 | 1250 | echo $output_str; |
1251 | 1251 | } else { |
@@ -1288,29 +1288,29 @@ discard block |
||
1288 | 1288 | if (!empty($all_postypes)) { |
1289 | 1289 | foreach ($all_postypes as $key) { |
1290 | 1290 | // update each GD CTP |
1291 | - $posts = $wpdb->get_results("SELECT * FROM " . $wpdb->prefix . "geodir_" . $key . "_detail d WHERE d." . $key . "category='' "); |
|
1291 | + $posts = $wpdb->get_results("SELECT * FROM ".$wpdb->prefix."geodir_".$key."_detail d WHERE d.".$key."category='' "); |
|
1292 | 1292 | |
1293 | 1293 | if (!empty($posts)) { |
1294 | 1294 | |
1295 | 1295 | foreach ($posts as $p) { |
1296 | 1296 | $p->post_type = $key; |
1297 | - $raw_cats = wp_get_object_terms($p->post_id, $p->post_type . 'category', array('fields' => 'ids')); |
|
1297 | + $raw_cats = wp_get_object_terms($p->post_id, $p->post_type.'category', array('fields' => 'ids')); |
|
1298 | 1298 | |
1299 | 1299 | if (empty($raw_cats)) { |
1300 | 1300 | $post_categories = get_post_meta($p->post_id, 'post_categories', true); |
1301 | 1301 | |
1302 | - if (!empty($post_categories) && !empty($post_categories[$p->post_type . 'category'])) { |
|
1303 | - $post_categories[$p->post_type . 'category'] = str_replace("d:", "", $post_categories[$p->post_type . 'category']); |
|
1304 | - foreach (explode(",", $post_categories[$p->post_type . 'category']) as $cat_part) { |
|
1302 | + if (!empty($post_categories) && !empty($post_categories[$p->post_type.'category'])) { |
|
1303 | + $post_categories[$p->post_type.'category'] = str_replace("d:", "", $post_categories[$p->post_type.'category']); |
|
1304 | + foreach (explode(",", $post_categories[$p->post_type.'category']) as $cat_part) { |
|
1305 | 1305 | if (is_numeric($cat_part)) { |
1306 | - $raw_cats[] = (int)$cat_part; |
|
1306 | + $raw_cats[] = (int) $cat_part; |
|
1307 | 1307 | } |
1308 | 1308 | } |
1309 | 1309 | |
1310 | 1310 | } |
1311 | 1311 | |
1312 | 1312 | if (!empty($raw_cats)) { |
1313 | - $term_taxonomy_ids = wp_set_object_terms($p->post_id, $raw_cats, $p->post_type . 'category'); |
|
1313 | + $term_taxonomy_ids = wp_set_object_terms($p->post_id, $raw_cats, $p->post_type.'category'); |
|
1314 | 1314 | |
1315 | 1315 | } |
1316 | 1316 | |
@@ -1320,14 +1320,14 @@ discard block |
||
1320 | 1320 | if (empty($raw_cats)) { |
1321 | 1321 | $post_cats = ''; |
1322 | 1322 | } else { |
1323 | - $post_cats = ',' . implode(",", $raw_cats) . ','; |
|
1323 | + $post_cats = ','.implode(",", $raw_cats).','; |
|
1324 | 1324 | } |
1325 | - $tablename = $plugin_prefix . $p->post_type . '_detail'; |
|
1326 | - $wpdb->query($wpdb->prepare("UPDATE " . $tablename . " SET " . $p->post_type . "category=%s WHERE post_id =%d", $post_cats, $p->post_id)); |
|
1325 | + $tablename = $plugin_prefix.$p->post_type.'_detail'; |
|
1326 | + $wpdb->query($wpdb->prepare("UPDATE ".$tablename." SET ".$p->post_type."category=%s WHERE post_id =%d", $post_cats, $p->post_id)); |
|
1327 | 1327 | } |
1328 | 1328 | |
1329 | 1329 | } |
1330 | - $output_str .= "<li>" . $key . __(': Done', 'geodirectory') . "</li>"; |
|
1330 | + $output_str .= "<li>".$key.__(': Done', 'geodirectory')."</li>"; |
|
1331 | 1331 | |
1332 | 1332 | } |
1333 | 1333 | |
@@ -1335,7 +1335,7 @@ discard block |
||
1335 | 1335 | |
1336 | 1336 | if ($is_error_during_diagnose) { |
1337 | 1337 | $info_div_class = "geodir_problem_info"; |
1338 | - $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='ratings' />"; |
|
1338 | + $fix_button_txt = "<input type='button' value='".__('Fix', 'geodirectory')."' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='ratings' />"; |
|
1339 | 1339 | } else { |
1340 | 1340 | $info_div_class = "geodir_noproblem_info"; |
1341 | 1341 | $fix_button_txt = ''; |
@@ -1388,15 +1388,15 @@ discard block |
||
1388 | 1388 | if (!empty($ver_arr)) { |
1389 | 1389 | foreach ($ver_arr as $key => $val) { |
1390 | 1390 | if (delete_option($val)) { |
1391 | - $output_str .= "<li>" . $key . __(' Version: Deleted', 'geodirectory') . "</li>"; |
|
1391 | + $output_str .= "<li>".$key.__(' Version: Deleted', 'geodirectory')."</li>"; |
|
1392 | 1392 | } else { |
1393 | - $output_str .= "<li>" . $key . __(' Version: Not Found', 'geodirectory') . "</li>"; |
|
1393 | + $output_str .= "<li>".$key.__(' Version: Not Found', 'geodirectory')."</li>"; |
|
1394 | 1394 | } |
1395 | 1395 | |
1396 | 1396 | } |
1397 | 1397 | |
1398 | 1398 | if ($output_str) { |
1399 | - $output_str .= "<li><strong>" . __(' Upgrade/install scripts will run on next page reload.', 'geodirectory') . "</strong></li>"; |
|
1399 | + $output_str .= "<li><strong>".__(' Upgrade/install scripts will run on next page reload.', 'geodirectory')."</strong></li>"; |
|
1400 | 1400 | } |
1401 | 1401 | |
1402 | 1402 | } |
@@ -1433,43 +1433,43 @@ discard block |
||
1433 | 1433 | $output_str = ''; |
1434 | 1434 | |
1435 | 1435 | // check review locations |
1436 | - if ($wpdb->get_results("SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE post_city='' OR post_city IS NULL OR post_latitude='' OR post_latitude IS NULL")) { |
|
1437 | - $output_str .= "<li>" . __('Review locations missing or broken', 'geodirectory') . "</li>"; |
|
1436 | + if ($wpdb->get_results("SELECT * FROM ".GEODIR_REVIEW_TABLE." WHERE post_city='' OR post_city IS NULL OR post_latitude='' OR post_latitude IS NULL")) { |
|
1437 | + $output_str .= "<li>".__('Review locations missing or broken', 'geodirectory')."</li>"; |
|
1438 | 1438 | $is_error_during_diagnose = true; |
1439 | 1439 | |
1440 | 1440 | if ($fix) { |
1441 | 1441 | if (geodir_fix_review_location()) { |
1442 | - $output_str .= "<li><strong>" . __('-->FIXED: Review locations fixed', 'geodirectory') . "</strong></li>"; |
|
1442 | + $output_str .= "<li><strong>".__('-->FIXED: Review locations fixed', 'geodirectory')."</strong></li>"; |
|
1443 | 1443 | } else { |
1444 | - $output_str .= "<li><strong>" . __('-->FAILED: Review locations fix failed', 'geodirectory') . "</strong></li>"; |
|
1444 | + $output_str .= "<li><strong>".__('-->FAILED: Review locations fix failed', 'geodirectory')."</strong></li>"; |
|
1445 | 1445 | } |
1446 | 1446 | } |
1447 | 1447 | |
1448 | 1448 | } else { |
1449 | - $output_str .= "<li>" . __('Review locations ok', 'geodirectory') . "</li>"; |
|
1449 | + $output_str .= "<li>".__('Review locations ok', 'geodirectory')."</li>"; |
|
1450 | 1450 | } |
1451 | 1451 | |
1452 | 1452 | // check review content |
1453 | - if ($wpdb->get_results("SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_content IS NULL")) { |
|
1454 | - $output_str .= "<li>" . __('Review content missing or broken', 'geodirectory') . "</li>"; |
|
1453 | + if ($wpdb->get_results("SELECT * FROM ".GEODIR_REVIEW_TABLE." WHERE comment_content IS NULL")) { |
|
1454 | + $output_str .= "<li>".__('Review content missing or broken', 'geodirectory')."</li>"; |
|
1455 | 1455 | $is_error_during_diagnose = true; |
1456 | 1456 | |
1457 | 1457 | if ($fix) { |
1458 | 1458 | if (geodir_fix_review_content()) { |
1459 | - $output_str .= "<li><strong>" . __('-->FIXED: Review content fixed', 'geodirectory') . "</strong></li>"; |
|
1459 | + $output_str .= "<li><strong>".__('-->FIXED: Review content fixed', 'geodirectory')."</strong></li>"; |
|
1460 | 1460 | } else { |
1461 | - $output_str .= "<li><strong>" . __('-->FAILED: Review content fix failed', 'geodirectory') . "</strong></li>"; |
|
1461 | + $output_str .= "<li><strong>".__('-->FAILED: Review content fix failed', 'geodirectory')."</strong></li>"; |
|
1462 | 1462 | } |
1463 | 1463 | } |
1464 | 1464 | |
1465 | 1465 | } else { |
1466 | - $output_str .= "<li>" . __('Review content ok', 'geodirectory') . "</li>"; |
|
1466 | + $output_str .= "<li>".__('Review content ok', 'geodirectory')."</li>"; |
|
1467 | 1467 | } |
1468 | 1468 | |
1469 | 1469 | |
1470 | 1470 | if ($is_error_during_diagnose) { |
1471 | 1471 | $info_div_class = "geodir_problem_info"; |
1472 | - $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='ratings' />"; |
|
1472 | + $fix_button_txt = "<input type='button' value='".__('Fix', 'geodirectory')."' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='ratings' />"; |
|
1473 | 1473 | } else { |
1474 | 1474 | $info_div_class = "geodir_noproblem_info"; |
1475 | 1475 | $fix_button_txt = ''; |
@@ -1533,7 +1533,7 @@ discard block |
||
1533 | 1533 | |
1534 | 1534 | if ($is_error_during_diagnose) { |
1535 | 1535 | $info_div_class = "geodir_problem_info"; |
1536 | - $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='multisite_conversion' />"; |
|
1536 | + $fix_button_txt = "<input type='button' value='".__('Fix', 'geodirectory')."' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='multisite_conversion' />"; |
|
1537 | 1537 | } else { |
1538 | 1538 | $info_div_class = "geodir_noproblem_info"; |
1539 | 1539 | $fix_button_txt = ''; |
@@ -1567,7 +1567,7 @@ discard block |
||
1567 | 1567 | else { |
1568 | 1568 | $page_found = $wpdb->get_var( |
1569 | 1569 | $wpdb->prepare( |
1570 | - "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;", |
|
1570 | + "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s LIMIT 1;", |
|
1571 | 1571 | array($slug) |
1572 | 1572 | ) |
1573 | 1573 | ); |
@@ -1613,18 +1613,18 @@ discard block |
||
1613 | 1613 | ////////////////////////////////// |
1614 | 1614 | $option_value = get_option('geodir_home_page'); |
1615 | 1615 | $page = get_post($option_value); |
1616 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1616 | + if (!empty($page)) {$page_found = $page->ID; } else {$page_found = ''; } |
|
1617 | 1617 | |
1618 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1619 | - $output_str .= "<li>" . __('GD Home page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1618 | + if (!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status == 'publish') |
|
1619 | + $output_str .= "<li>".__('GD Home page exists with proper setting.', 'geodirectory')."</li>"; |
|
1620 | 1620 | else { |
1621 | 1621 | $is_error_during_diagnose = true; |
1622 | - $output_str .= "<li><strong>" . __('GD Home page is missing.', 'geodirectory') . "</strong></li>"; |
|
1622 | + $output_str .= "<li><strong>".__('GD Home page is missing.', 'geodirectory')."</strong></li>"; |
|
1623 | 1623 | if ($fix) { |
1624 | 1624 | if (geodir_fix_virtual_page('gd-home', __('GD Home page', 'geodirectory'), $page_found, 'geodir_home_page')) { |
1625 | - $output_str .= "<li><strong>" . __('-->FIXED: GD Home page fixed', 'geodirectory') . "</strong></li>"; |
|
1625 | + $output_str .= "<li><strong>".__('-->FIXED: GD Home page fixed', 'geodirectory')."</strong></li>"; |
|
1626 | 1626 | } else { |
1627 | - $output_str .= "<li><strong>" . __('-->FAILED: GD Home page fix failed', 'geodirectory') . "</strong></li>"; |
|
1627 | + $output_str .= "<li><strong>".__('-->FAILED: GD Home page fix failed', 'geodirectory')."</strong></li>"; |
|
1628 | 1628 | } |
1629 | 1629 | } |
1630 | 1630 | } |
@@ -1638,18 +1638,18 @@ discard block |
||
1638 | 1638 | ////////////////////////////////// |
1639 | 1639 | $option_value = get_option('geodir_add_listing_page'); |
1640 | 1640 | $page = get_post($option_value); |
1641 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1641 | + if (!empty($page)) {$page_found = $page->ID; } else {$page_found = ''; } |
|
1642 | 1642 | |
1643 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1644 | - $output_str .= "<li>" . __('Add Listing page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1643 | + if (!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status == 'publish') |
|
1644 | + $output_str .= "<li>".__('Add Listing page exists with proper setting.', 'geodirectory')."</li>"; |
|
1645 | 1645 | else { |
1646 | 1646 | $is_error_during_diagnose = true; |
1647 | - $output_str .= "<li><strong>" . __('Add Listing page is missing.', 'geodirectory') . "</strong></li>"; |
|
1647 | + $output_str .= "<li><strong>".__('Add Listing page is missing.', 'geodirectory')."</strong></li>"; |
|
1648 | 1648 | if ($fix) { |
1649 | 1649 | if (geodir_fix_virtual_page('add-listing', __('Add Listing', 'geodirectory'), $page_found, 'geodir_add_listing_page')) { |
1650 | - $output_str .= "<li><strong>" . __('-->FIXED: Add Listing page fixed', 'geodirectory') . "</strong></li>"; |
|
1650 | + $output_str .= "<li><strong>".__('-->FIXED: Add Listing page fixed', 'geodirectory')."</strong></li>"; |
|
1651 | 1651 | } else { |
1652 | - $output_str .= "<li><strong>" . __('-->FAILED: Add Listing page fix failed', 'geodirectory') . "</strong></li>"; |
|
1652 | + $output_str .= "<li><strong>".__('-->FAILED: Add Listing page fix failed', 'geodirectory')."</strong></li>"; |
|
1653 | 1653 | } |
1654 | 1654 | } |
1655 | 1655 | } |
@@ -1664,18 +1664,18 @@ discard block |
||
1664 | 1664 | ////////////////////////////////// |
1665 | 1665 | $option_value = get_option('geodir_preview_page'); |
1666 | 1666 | $page = get_post($option_value); |
1667 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1667 | + if (!empty($page)) {$page_found = $page->ID; } else {$page_found = ''; } |
|
1668 | 1668 | |
1669 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1670 | - $output_str .= "<li>" . __('Listing Preview page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1669 | + if (!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status == 'publish') |
|
1670 | + $output_str .= "<li>".__('Listing Preview page exists with proper setting.', 'geodirectory')."</li>"; |
|
1671 | 1671 | else { |
1672 | 1672 | $is_error_during_diagnose = true; |
1673 | - $output_str .= "<li><strong>" . __('Listing Preview page is missing.', 'geodirectory') . "</strong></li>"; |
|
1673 | + $output_str .= "<li><strong>".__('Listing Preview page is missing.', 'geodirectory')."</strong></li>"; |
|
1674 | 1674 | if ($fix) { |
1675 | 1675 | if (geodir_fix_virtual_page('listing-preview', __('Listing Preview', 'geodirectory'), $page_found, 'geodir_preview_page')) { |
1676 | - $output_str .= "<li><strong>" . __('-->FIXED: Listing Preview page fixed', 'geodirectory') . "</strong></li>"; |
|
1676 | + $output_str .= "<li><strong>".__('-->FIXED: Listing Preview page fixed', 'geodirectory')."</strong></li>"; |
|
1677 | 1677 | } else { |
1678 | - $output_str .= "<li><strong>" . __('-->FAILED: Listing Preview page fix failed', 'geodirectory') . "</strong></li>"; |
|
1678 | + $output_str .= "<li><strong>".__('-->FAILED: Listing Preview page fix failed', 'geodirectory')."</strong></li>"; |
|
1679 | 1679 | } |
1680 | 1680 | } |
1681 | 1681 | } |
@@ -1689,18 +1689,18 @@ discard block |
||
1689 | 1689 | ////////////////////////////////// |
1690 | 1690 | $option_value = get_option('geodir_success_page'); |
1691 | 1691 | $page = get_post($option_value); |
1692 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1692 | + if (!empty($page)) {$page_found = $page->ID; } else {$page_found = ''; } |
|
1693 | 1693 | |
1694 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1695 | - $output_str .= "<li>" . __('Listing Success page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1694 | + if (!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status == 'publish') |
|
1695 | + $output_str .= "<li>".__('Listing Success page exists with proper setting.', 'geodirectory')."</li>"; |
|
1696 | 1696 | else { |
1697 | 1697 | $is_error_during_diagnose = true; |
1698 | - $output_str .= "<li><strong>" . __('Listing Success page is missing.', 'geodirectory') . "</strong></li>"; |
|
1698 | + $output_str .= "<li><strong>".__('Listing Success page is missing.', 'geodirectory')."</strong></li>"; |
|
1699 | 1699 | if ($fix) { |
1700 | 1700 | if (geodir_fix_virtual_page('listing-success', __('Listing Success', 'geodirectory'), $page_found, 'geodir_success_page')) { |
1701 | - $output_str .= "<li><strong>" . __('-->FIXED: Listing Success page fixed', 'geodirectory') . "</strong></li>"; |
|
1701 | + $output_str .= "<li><strong>".__('-->FIXED: Listing Success page fixed', 'geodirectory')."</strong></li>"; |
|
1702 | 1702 | } else { |
1703 | - $output_str .= "<li><strong>" . __('-->FAILED: Listing Success page fix failed', 'geodirectory') . "</strong></li>"; |
|
1703 | + $output_str .= "<li><strong>".__('-->FAILED: Listing Success page fix failed', 'geodirectory')."</strong></li>"; |
|
1704 | 1704 | } |
1705 | 1705 | } |
1706 | 1706 | } |
@@ -1714,18 +1714,18 @@ discard block |
||
1714 | 1714 | ////////////////////////////////// |
1715 | 1715 | $option_value = get_option('geodir_info_page'); |
1716 | 1716 | $page = get_post($option_value); |
1717 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1717 | + if (!empty($page)) {$page_found = $page->ID; } else {$page_found = ''; } |
|
1718 | 1718 | |
1719 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1720 | - $output_str .= "<li>" . __('Info page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1719 | + if (!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status == 'publish') |
|
1720 | + $output_str .= "<li>".__('Info page exists with proper setting.', 'geodirectory')."</li>"; |
|
1721 | 1721 | else { |
1722 | 1722 | $is_error_during_diagnose = true; |
1723 | - $output_str .= "<li><strong>" . __('Info page is missing.', 'geodirectory') . "</strong></li>"; |
|
1723 | + $output_str .= "<li><strong>".__('Info page is missing.', 'geodirectory')."</strong></li>"; |
|
1724 | 1724 | if ($fix) { |
1725 | 1725 | if (geodir_fix_virtual_page('gd-info', __('Info', 'geodirectory'), $page_found, 'geodir_info_page')) { |
1726 | - $output_str .= "<li><strong>" . __('-->FIXED: Info page fixed', 'geodirectory') . "</strong></li>"; |
|
1726 | + $output_str .= "<li><strong>".__('-->FIXED: Info page fixed', 'geodirectory')."</strong></li>"; |
|
1727 | 1727 | } else { |
1728 | - $output_str .= "<li><strong>" . __('-->FAILED: Info page fix failed', 'geodirectory') . "</strong></li>"; |
|
1728 | + $output_str .= "<li><strong>".__('-->FAILED: Info page fix failed', 'geodirectory')."</strong></li>"; |
|
1729 | 1729 | } |
1730 | 1730 | } |
1731 | 1731 | } |
@@ -1739,18 +1739,18 @@ discard block |
||
1739 | 1739 | ////////////////////////////////// |
1740 | 1740 | $option_value = get_option('geodir_login_page'); |
1741 | 1741 | $page = get_post($option_value); |
1742 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1742 | + if (!empty($page)) {$page_found = $page->ID; } else {$page_found = ''; } |
|
1743 | 1743 | |
1744 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1745 | - $output_str .= "<li>" . __('Login page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1744 | + if (!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status == 'publish') |
|
1745 | + $output_str .= "<li>".__('Login page exists with proper setting.', 'geodirectory')."</li>"; |
|
1746 | 1746 | else { |
1747 | 1747 | $is_error_during_diagnose = true; |
1748 | - $output_str .= "<li><strong>" . __('Login page is missing.', 'geodirectory') . "</strong></li>"; |
|
1748 | + $output_str .= "<li><strong>".__('Login page is missing.', 'geodirectory')."</strong></li>"; |
|
1749 | 1749 | if ($fix) { |
1750 | 1750 | if (geodir_fix_virtual_page('gd-login', __('Login', 'geodirectory'), $page_found, 'geodir_login_page')) { |
1751 | - $output_str .= "<li><strong>" . __('-->FIXED: Login page fixed', 'geodirectory') . "</strong></li>"; |
|
1751 | + $output_str .= "<li><strong>".__('-->FIXED: Login page fixed', 'geodirectory')."</strong></li>"; |
|
1752 | 1752 | } else { |
1753 | - $output_str .= "<li><strong>" . __('-->FAILED: Login page fix failed', 'geodirectory') . "</strong></li>"; |
|
1753 | + $output_str .= "<li><strong>".__('-->FAILED: Login page fix failed', 'geodirectory')."</strong></li>"; |
|
1754 | 1754 | } |
1755 | 1755 | } |
1756 | 1756 | } |
@@ -1764,18 +1764,18 @@ discard block |
||
1764 | 1764 | ////////////////////////////////// |
1765 | 1765 | $option_value = get_option('geodir_location_page'); |
1766 | 1766 | $page = get_post($option_value); |
1767 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1767 | + if (!empty($page)) {$page_found = $page->ID; } else {$page_found = ''; } |
|
1768 | 1768 | |
1769 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1770 | - $output_str .= "<li>" . __('Location page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1769 | + if (!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status == 'publish') |
|
1770 | + $output_str .= "<li>".__('Location page exists with proper setting.', 'geodirectory')."</li>"; |
|
1771 | 1771 | else { |
1772 | 1772 | $is_error_during_diagnose = true; |
1773 | - $output_str .= "<li><strong>" . __('Location page is missing.', 'geodirectory') . "</strong></li>"; |
|
1773 | + $output_str .= "<li><strong>".__('Location page is missing.', 'geodirectory')."</strong></li>"; |
|
1774 | 1774 | if ($fix) { |
1775 | 1775 | if (geodir_fix_virtual_page('location', __('Location', 'geodirectory'), $page_found, 'geodir_location_page')) { |
1776 | - $output_str .= "<li><strong>" . __('-->FIXED: Location page fixed', 'geodirectory') . "</strong></li>"; |
|
1776 | + $output_str .= "<li><strong>".__('-->FIXED: Location page fixed', 'geodirectory')."</strong></li>"; |
|
1777 | 1777 | } else { |
1778 | - $output_str .= "<li><strong>" . __('-->FAILED: Location page fix failed', 'geodirectory') . "</strong></li>"; |
|
1778 | + $output_str .= "<li><strong>".__('-->FAILED: Location page fix failed', 'geodirectory')."</strong></li>"; |
|
1779 | 1779 | } |
1780 | 1780 | } |
1781 | 1781 | } |
@@ -1784,13 +1784,13 @@ discard block |
||
1784 | 1784 | /* Diagnose Location Page Ends */ |
1785 | 1785 | //////////////////////////////// |
1786 | 1786 | |
1787 | - $page_chk_arr = array('output_str'=>$output_str,'is_error_during_diagnose'=>$is_error_during_diagnose ); |
|
1787 | + $page_chk_arr = array('output_str'=>$output_str, 'is_error_during_diagnose'=>$is_error_during_diagnose); |
|
1788 | 1788 | /** |
1789 | 1789 | * This action is called at the end of the GD Tools page check function. |
1790 | 1790 | * |
1791 | 1791 | * @since 1.5.2 |
1792 | 1792 | */ |
1793 | - $page_chk_arr = apply_filters('geodir_diagnose_default_pages',$page_chk_arr); |
|
1793 | + $page_chk_arr = apply_filters('geodir_diagnose_default_pages', $page_chk_arr); |
|
1794 | 1794 | |
1795 | 1795 | $output_str = $page_chk_arr['output_str']; |
1796 | 1796 | $is_error_during_diagnose = $page_chk_arr['is_error_during_diagnose']; |
@@ -1800,7 +1800,7 @@ discard block |
||
1800 | 1800 | flush_rewrite_rules(); |
1801 | 1801 | } |
1802 | 1802 | $info_div_class = "geodir_problem_info"; |
1803 | - $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='default_pages' />"; |
|
1803 | + $fix_button_txt = "<input type='button' value='".__('Fix', 'geodirectory')."' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='default_pages' />"; |
|
1804 | 1804 | } else { |
1805 | 1805 | $info_div_class = "geodir_noproblem_info"; |
1806 | 1806 | $fix_button_txt = ''; |
@@ -1828,10 +1828,10 @@ discard block |
||
1828 | 1828 | $fix_button_txt = ''; |
1829 | 1829 | |
1830 | 1830 | if ($is_error_during_diagnose) { |
1831 | - $output_str .= "<li>" . __('Fail to load custom fields in to file for translation, please check file permission:', 'geodirectory') . ' ' . geodir_plugin_path() . '/db-language.php' . "</li>"; |
|
1831 | + $output_str .= "<li>".__('Fail to load custom fields in to file for translation, please check file permission:', 'geodirectory').' '.geodir_plugin_path().'/db-language.php'."</li>"; |
|
1832 | 1832 | $info_div_class = "geodir_problem_info"; |
1833 | 1833 | } else { |
1834 | - $output_str .= "<li>" . __('Load custom fields in to file for translation: ok', 'geodirectory') . "</li>"; |
|
1834 | + $output_str .= "<li>".__('Load custom fields in to file for translation: ok', 'geodirectory')."</li>"; |
|
1835 | 1835 | $info_div_class = "geodir_noproblem_info"; |
1836 | 1836 | $fix_button_txt = ''; |
1837 | 1837 | } |
@@ -1873,17 +1873,17 @@ discard block |
||
1873 | 1873 | global $wpdb, $wp_query, $plugin_prefix; |
1874 | 1874 | |
1875 | 1875 | if (is_admin() && !empty($wp_query->query_vars) && !empty($wp_query->query_vars['is_geodir_loop']) && !empty($wp_query->query_vars['orderby']) && $wp_query->query_vars['orderby'] == 'expire' && !empty($wp_query->query_vars['post_type']) && in_array($wp_query->query_vars['post_type'], geodir_get_posttypes()) && !empty($wp_query->query_vars['orderby']) && isset($clauses['join']) && isset($clauses['orderby']) && isset($clauses['fields'])) { |
1876 | - $table = $plugin_prefix . $wp_query->query_vars['post_type'] . '_detail'; |
|
1876 | + $table = $plugin_prefix.$wp_query->query_vars['post_type'].'_detail'; |
|
1877 | 1877 | |
1878 | - $join = $clauses['join'] . ' INNER JOIN ' . $table . ' AS gd_posts ON (gd_posts.post_id = ' . $wpdb->posts . '.ID)'; |
|
1878 | + $join = $clauses['join'].' INNER JOIN '.$table.' AS gd_posts ON (gd_posts.post_id = '.$wpdb->posts.'.ID)'; |
|
1879 | 1879 | $clauses['join'] = $join; |
1880 | 1880 | |
1881 | - $fields = $clauses['fields'] != '' ? $clauses['fields'] . ', ' : ''; |
|
1881 | + $fields = $clauses['fields'] != '' ? $clauses['fields'].', ' : ''; |
|
1882 | 1882 | $fields .= 'IF(UNIX_TIMESTAMP(DATE_FORMAT(gd_posts.expire_date, "%Y-%m-%d")), UNIX_TIMESTAMP(DATE_FORMAT(gd_posts.expire_date, "%Y-%m-%d")), 253402300799) AS gd_expire'; |
1883 | 1883 | $clauses['fields'] = $fields; |
1884 | 1884 | |
1885 | 1885 | $order = !empty($wp_query->query_vars['order']) ? $wp_query->query_vars['order'] : 'ASC'; |
1886 | - $orderby = 'gd_expire ' . $order; |
|
1886 | + $orderby = 'gd_expire '.$order; |
|
1887 | 1887 | $clauses['orderby'] = $orderby; |
1888 | 1888 | } |
1889 | 1889 | return $clauses; |
@@ -1926,7 +1926,7 @@ discard block |
||
1926 | 1926 | global $current_user; |
1927 | 1927 | $upload_dir = wp_upload_dir(); |
1928 | 1928 | |
1929 | - $file = $upload_dir['path'] . '/temp_' . $current_user->data->ID . '/geodir_tmp.csv'; |
|
1929 | + $file = $upload_dir['path'].'/temp_'.$current_user->data->ID.'/geodir_tmp.csv'; |
|
1930 | 1930 | $handle = fopen($file, 'w'); |
1931 | 1931 | |
1932 | 1932 | fwrite($handle, $input); |
@@ -1971,7 +1971,7 @@ discard block |
||
1971 | 1971 | $uploads_dir = $uploads['path']; |
1972 | 1972 | $image_name_arr = explode('/', $filename); |
1973 | 1973 | $filename = end($image_name_arr); |
1974 | - $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
1974 | + $target_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$filename; |
|
1975 | 1975 | $return = array(); |
1976 | 1976 | $return['file'] = $uploadedFile; |
1977 | 1977 | $return['error'] = __('The uploaded file is not a valid csv file. Please try again.', 'geodirectory'); |
@@ -1988,8 +1988,8 @@ discard block |
||
1988 | 1988 | |
1989 | 1989 | if (($handle = fopen($target_path, "r")) !== FALSE) { |
1990 | 1990 | while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) { |
1991 | - if(is_array($data) && !empty($data)) { |
|
1992 | - $file[] = '"' . implode('","', $data) . '"'; |
|
1991 | + if (is_array($data) && !empty($data)) { |
|
1992 | + $file[] = '"'.implode('","', $data).'"'; |
|
1993 | 1993 | } |
1994 | 1994 | } |
1995 | 1995 | fclose($handle); |
@@ -2106,10 +2106,10 @@ discard block |
||
2106 | 2106 | $tag_arr = explode(',', $post_tags); |
2107 | 2107 | } |
2108 | 2108 | |
2109 | - $table = $plugin_prefix . $buffer[5] . '_detail'; // check table in database |
|
2109 | + $table = $plugin_prefix.$buffer[5].'_detail'; // check table in database |
|
2110 | 2110 | |
2111 | 2111 | $error = ''; |
2112 | - if ($wpdb->get_var("SHOW TABLES LIKE '" . $table . "'") != $table) { |
|
2112 | + if ($wpdb->get_var("SHOW TABLES LIKE '".$table."'") != $table) { |
|
2113 | 2113 | $invalid_post_type++; |
2114 | 2114 | continue; |
2115 | 2115 | } |
@@ -2135,7 +2135,7 @@ discard block |
||
2135 | 2135 | if ($buffer[$c] != '0' && $buffer[$c] != '') { |
2136 | 2136 | $submitdata = date('Y-m-d'); |
2137 | 2137 | |
2138 | - $gd_post_info['expire_date'] = date('Y-m-d', strtotime($submitdata . "+" . addslashes($buffer[$c]) . " days")); |
|
2138 | + $gd_post_info['expire_date'] = date('Y-m-d', strtotime($submitdata."+".addslashes($buffer[$c])." days")); |
|
2139 | 2139 | } else { |
2140 | 2140 | $gd_post_info['expire_date'] = 'Never'; |
2141 | 2141 | } |
@@ -2163,7 +2163,7 @@ discard block |
||
2163 | 2163 | |
2164 | 2164 | // Post status |
2165 | 2165 | if ($customKeyarray[$c] == 'post_status') { |
2166 | - $post_status = sanitize_key( $buffer[$c] ); |
|
2166 | + $post_status = sanitize_key($buffer[$c]); |
|
2167 | 2167 | } |
2168 | 2168 | } |
2169 | 2169 | |
@@ -2181,8 +2181,8 @@ discard block |
||
2181 | 2181 | |
2182 | 2182 | // Default post status |
2183 | 2183 | $default_status = 'publish'; |
2184 | - $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status; |
|
2185 | - $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status; |
|
2184 | + $post_status = !empty($post_status) ? sanitize_key($post_status) : $default_status; |
|
2185 | + $post_status = !empty($wp_post_statuses) && !isset($wp_post_statuses[$post_status]) ? $default_status : $post_status; |
|
2186 | 2186 | |
2187 | 2187 | $my_post['post_title'] = $post_title; |
2188 | 2188 | $my_post['post_content'] = $post_desc; |
@@ -2226,7 +2226,7 @@ discard block |
||
2226 | 2226 | $payment_info = array(); |
2227 | 2227 | $package_info = array(); |
2228 | 2228 | |
2229 | - $package_info = (array)geodir_post_package_info($package_info, '', $buffer[5]); |
|
2229 | + $package_info = (array) geodir_post_package_info($package_info, '', $buffer[5]); |
|
2230 | 2230 | $package_id = ''; |
2231 | 2231 | if (isset($gd_post_info['package_id']) && $gd_post_info['package_id'] != '') { |
2232 | 2232 | $package_id = $gd_post_info['package_id']; |
@@ -2236,7 +2236,7 @@ discard block |
||
2236 | 2236 | $payment_info['package_id'] = $package_info['pid']; |
2237 | 2237 | |
2238 | 2238 | if (isset($package_info['alive_days']) && $package_info['alive_days'] != 0) { |
2239 | - $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['alive_days'] . " days")); |
|
2239 | + $payment_info['expire_date'] = date('Y-m-d', strtotime("+".$package_info['alive_days']." days")); |
|
2240 | 2240 | } else { |
2241 | 2241 | $payment_info['expire_date'] = 'Never'; |
2242 | 2242 | } |
@@ -2248,7 +2248,7 @@ discard block |
||
2248 | 2248 | |
2249 | 2249 | $post_type = get_post_type($last_postid); |
2250 | 2250 | |
2251 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2251 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2252 | 2252 | |
2253 | 2253 | geodir_save_post_info($last_postid, $gd_post_info); |
2254 | 2254 | |
@@ -2269,7 +2269,7 @@ discard block |
||
2269 | 2269 | $attachment['post_id'] = $last_postid; |
2270 | 2270 | $attachment['title'] = $img_name_arr[0]; |
2271 | 2271 | $attachment['content'] = ''; |
2272 | - $attachment['file'] = $sub_dir . '/' . $image_name; |
|
2272 | + $attachment['file'] = $sub_dir.'/'.$image_name; |
|
2273 | 2273 | $attachment['mime_type'] = $uploaded_file_type; |
2274 | 2274 | $attachment['menu_order'] = $menu_order; |
2275 | 2275 | $attachment['is_featured'] = 0; |
@@ -2278,15 +2278,15 @@ discard block |
||
2278 | 2278 | |
2279 | 2279 | foreach ($attachment as $key => $val) { |
2280 | 2280 | if ($val != '') |
2281 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
2281 | + $attachment_set .= $key." = '".$val."', "; |
|
2282 | 2282 | } |
2283 | 2283 | $attachment_set = trim($attachment_set, ", "); |
2284 | 2284 | |
2285 | - $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set); |
|
2285 | + $wpdb->query("INSERT INTO ".GEODIR_ATTACHMENT_TABLE." SET ".$attachment_set); |
|
2286 | 2286 | |
2287 | 2287 | if ($menu_order == 1) { |
2288 | 2288 | $post_type = get_post_type($last_postid); |
2289 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($sub_dir . '/' . $image_name, $last_postid))); |
|
2289 | + $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($sub_dir.'/'.$image_name, $last_postid))); |
|
2290 | 2290 | } |
2291 | 2291 | $menu_order++; |
2292 | 2292 | } |
@@ -2327,11 +2327,11 @@ discard block |
||
2327 | 2327 | } |
2328 | 2328 | |
2329 | 2329 | // Add the tab in left sidebar menu fro import & export page. |
2330 | -add_filter( 'geodir_settings_tabs_array', 'geodir_import_export_tab', 94 ); |
|
2330 | +add_filter('geodir_settings_tabs_array', 'geodir_import_export_tab', 94); |
|
2331 | 2331 | |
2332 | 2332 | // Handle ajax request for import/export. |
2333 | -add_action( 'wp_ajax_geodir_import_export', 'geodir_ajax_import_export' ); |
|
2334 | -add_action( 'wp_ajax_nopriv_geodir_import_exportn', 'geodir_ajax_import_export' ); |
|
2333 | +add_action('wp_ajax_geodir_import_export', 'geodir_ajax_import_export'); |
|
2334 | +add_action('wp_ajax_nopriv_geodir_import_exportn', 'geodir_ajax_import_export'); |
|
2335 | 2335 | |
2336 | 2336 | |
2337 | 2337 | /** |
@@ -2342,40 +2342,40 @@ discard block |
||
2342 | 2342 | * @param $post_id int $post_id The post ID of the post being saved. |
2343 | 2343 | * @param $post object $post The post object of the post being saved. |
2344 | 2344 | */ |
2345 | -function geodir_update_location_prefix($post_id,$post){ |
|
2346 | - if($post->post_type=='page' && $post->post_name && $post_id==get_option('geodir_location_page')){ |
|
2347 | - update_option('geodir_location_prefix',$post->post_name); |
|
2345 | +function geodir_update_location_prefix($post_id, $post) { |
|
2346 | + if ($post->post_type == 'page' && $post->post_name && $post_id == get_option('geodir_location_page')) { |
|
2347 | + update_option('geodir_location_prefix', $post->post_name); |
|
2348 | 2348 | } |
2349 | 2349 | |
2350 | 2350 | } |
2351 | 2351 | |
2352 | -add_action('save_post', 'geodir_update_location_prefix',10,2); |
|
2352 | +add_action('save_post', 'geodir_update_location_prefix', 10, 2); |
|
2353 | 2353 | |
2354 | -add_action( 'wp_ajax_geodir_ga_callback', 'geodir_ga_callback' ); |
|
2354 | +add_action('wp_ajax_geodir_ga_callback', 'geodir_ga_callback'); |
|
2355 | 2355 | |
2356 | -function geodir_ga_callback(){ |
|
2356 | +function geodir_ga_callback() { |
|
2357 | 2357 | |
2358 | -if(isset($_REQUEST['code']) && $_REQUEST['code']) { |
|
2358 | +if (isset($_REQUEST['code']) && $_REQUEST['code']) { |
|
2359 | 2359 | $oAuthURL = "https://www.googleapis.com/oauth2/v3/token?"; |
2360 | 2360 | $code = "code=".$_REQUEST['code']; |
2361 | 2361 | $grant_type = "&grant_type=authorization_code"; |
2362 | - $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback"; |
|
2362 | + $redirect_uri = "&redirect_uri=".admin_url('admin-ajax.php')."?action=geodir_ga_callback"; |
|
2363 | 2363 | $client_id = "&client_id=".get_option('geodir_ga_client_id'); |
2364 | 2364 | $client_secret = "&client_secret=".get_option('geodir_ga_client_secret'); |
2365 | 2365 | |
2366 | - $auth_url = $oAuthURL . $code . $redirect_uri . $grant_type . $client_id .$client_secret; |
|
2366 | + $auth_url = $oAuthURL.$code.$redirect_uri.$grant_type.$client_id.$client_secret; |
|
2367 | 2367 | |
2368 | 2368 | $response = wp_remote_post($auth_url, array('timeout' => 15)); |
2369 | 2369 | |
2370 | 2370 | //print_r($response); |
2371 | 2371 | |
2372 | - $error_msg = __('Something went wrong','geodirectory'); |
|
2373 | - if(!empty($response['response']['code']) && $response['response']['code']==200){ |
|
2372 | + $error_msg = __('Something went wrong', 'geodirectory'); |
|
2373 | + if (!empty($response['response']['code']) && $response['response']['code'] == 200) { |
|
2374 | 2374 | |
2375 | 2375 | $parts = json_decode($response['body']); |
2376 | 2376 | //print_r($parts); |
2377 | - if(!isset($parts->access_token)){echo $error_msg." - #1";exit;} |
|
2378 | - else{ |
|
2377 | + if (!isset($parts->access_token)) {echo $error_msg." - #1"; exit; } |
|
2378 | + else { |
|
2379 | 2379 | |
2380 | 2380 | update_option('gd_ga_access_token', $parts->access_token); |
2381 | 2381 | update_option('gd_ga_refresh_token', $parts->refresh_token); |
@@ -2384,18 +2384,18 @@ discard block |
||
2384 | 2384 | |
2385 | 2385 | |
2386 | 2386 | } |
2387 | - elseif(!empty($response['response']['code'])) { |
|
2387 | + elseif (!empty($response['response']['code'])) { |
|
2388 | 2388 | $parts = json_decode($response['body']); |
2389 | 2389 | |
2390 | - if(isset($parts->error)){ |
|
2391 | - echo $parts->error.": ".$parts->error_description;exit; |
|
2392 | - }else{ |
|
2393 | - echo $error_msg." - #2";exit; |
|
2390 | + if (isset($parts->error)) { |
|
2391 | + echo $parts->error.": ".$parts->error_description; exit; |
|
2392 | + } else { |
|
2393 | + echo $error_msg." - #2"; exit; |
|
2394 | 2394 | } |
2395 | 2395 | |
2396 | - }else{ |
|
2396 | + } else { |
|
2397 | 2397 | |
2398 | - echo $error_msg." - #3";exit; |
|
2398 | + echo $error_msg." - #3"; exit; |
|
2399 | 2399 | |
2400 | 2400 | } |
2401 | 2401 | } |
@@ -2417,7 +2417,7 @@ discard block |
||
2417 | 2417 | function geodir_uninstall_settings($general_settings) { |
2418 | 2418 | $settings = array(); |
2419 | 2419 | $settings[] = array('type' => 'title', 'id' => 'uninstall_settings', 'name' => __('Uninstall Settings', 'geodirectory')); |
2420 | - $settings[] = array('type' => 'sectionstart', 'id' => 'uninstall_settings_main', 'name' => __('Remove Data on Uninstall?', 'geodirectory' )); |
|
2420 | + $settings[] = array('type' => 'sectionstart', 'id' => 'uninstall_settings_main', 'name' => __('Remove Data on Uninstall?', 'geodirectory')); |
|
2421 | 2421 | |
2422 | 2422 | $plugins = get_plugins(); |
2423 | 2423 | $un_plugins = apply_filters('geodir_plugins_uninstall_settings', array()); |
@@ -2429,7 +2429,7 @@ discard block |
||
2429 | 2429 | if (in_array($plugin_name, $un_plugins)) { |
2430 | 2430 | $settings[] = array( |
2431 | 2431 | 'type' => 'checkbox', |
2432 | - 'id' => 'geodir_un_' . $plugin_name, |
|
2432 | + 'id' => 'geodir_un_'.$plugin_name, |
|
2433 | 2433 | 'name' => $data['Name'], |
2434 | 2434 | 'desc' => __('Remove all data when deleted?', 'geodirectory'), |
2435 | 2435 | 'std' => '0' |
@@ -2463,7 +2463,7 @@ discard block |
||
2463 | 2463 | * @since 1.6.9 |
2464 | 2464 | */ |
2465 | 2465 | function geodir_uninstall_settings_desc() { |
2466 | - echo '<p class="gd-un-settings-desc">' . __('Select the plugin(s) for which all data should be completely removed when the plugin is deleted.', 'geodirectory') . '</p>'; |
|
2466 | + echo '<p class="gd-un-settings-desc">'.__('Select the plugin(s) for which all data should be completely removed when the plugin is deleted.', 'geodirectory').'</p>'; |
|
2467 | 2467 | } |
2468 | 2468 | add_action('geodir_settings_uninstall_settings_main_start', 'geodir_uninstall_settings_desc'); |
2469 | 2469 | |
@@ -2527,12 +2527,12 @@ discard block |
||
2527 | 2527 | |
2528 | 2528 | |
2529 | 2529 | if ($delete) { |
2530 | - $output_str .= "<li><strong>" . __('Table dropped, refresh page to reinstall.', 'geodirectory') . "</strong></li>"; |
|
2530 | + $output_str .= "<li><strong>".__('Table dropped, refresh page to reinstall.', 'geodirectory')."</strong></li>"; |
|
2531 | 2531 | ob_start(); |
2532 | 2532 | geodir_diagnose_version_clear(); |
2533 | 2533 | ob_end_clean(); |
2534 | - }else{ |
|
2535 | - $output_str .= "<li><strong>" . __('Something went wrong.', 'geodirectory') . "</strong></li>"; |
|
2534 | + } else { |
|
2535 | + $output_str .= "<li><strong>".__('Something went wrong.', 'geodirectory')."</strong></li>"; |
|
2536 | 2536 | } |
2537 | 2537 | |
2538 | 2538 | if ($is_error_during_diagnose) { |
@@ -2557,9 +2557,9 @@ discard block |
||
2557 | 2557 | * @param object $row The post|taxonomy object. |
2558 | 2558 | * @return array Filtered actions. |
2559 | 2559 | */ |
2560 | -function geodir_disable_quick_edit( $actions = array(), $row = null ) { |
|
2561 | - if ( isset( $actions['inline hide-if-no-js'] ) ) { |
|
2562 | - unset( $actions['inline hide-if-no-js'] ); |
|
2560 | +function geodir_disable_quick_edit($actions = array(), $row = null) { |
|
2561 | + if (isset($actions['inline hide-if-no-js'])) { |
|
2562 | + unset($actions['inline hide-if-no-js']); |
|
2563 | 2563 | } |
2564 | 2564 | |
2565 | 2565 | return $actions; |
@@ -2578,26 +2578,26 @@ discard block |
||
2578 | 2578 | function geodir_check_quick_edit() { |
2579 | 2579 | global $pagenow, $current_screen, $gd_cpt_screen; |
2580 | 2580 | |
2581 | - if ( ( $pagenow == 'edit.php' || $pagenow == 'edit-tags.php' ) && !empty( $current_screen->post_type ) ) { |
|
2582 | - if ( empty( $gd_cpt_screen ) ) { |
|
2583 | - if ( in_array( $current_screen->post_type, geodir_get_posttypes() ) ) { |
|
2581 | + if (($pagenow == 'edit.php' || $pagenow == 'edit-tags.php') && !empty($current_screen->post_type)) { |
|
2582 | + if (empty($gd_cpt_screen)) { |
|
2583 | + if (in_array($current_screen->post_type, geodir_get_posttypes())) { |
|
2584 | 2584 | $gd_cpt_screen = 'y'; |
2585 | 2585 | } else { |
2586 | 2586 | $gd_cpt_screen = 'n'; |
2587 | 2587 | } |
2588 | 2588 | } |
2589 | 2589 | |
2590 | - if ( $gd_cpt_screen == 'y' ) { |
|
2591 | - if ( $pagenow == 'edit.php' ) { |
|
2592 | - add_filter( 'post_row_actions', 'geodir_disable_quick_edit', 10, 2 ); |
|
2593 | - add_filter( 'page_row_actions', 'geodir_disable_quick_edit', 10, 2 ); |
|
2594 | - } elseif ( $pagenow == 'edit-tags.php' && !empty( $current_screen->taxonomy ) ) { |
|
2595 | - add_filter( $current_screen->taxonomy . '_row_actions', 'geodir_disable_quick_edit', 10, 2 ); |
|
2590 | + if ($gd_cpt_screen == 'y') { |
|
2591 | + if ($pagenow == 'edit.php') { |
|
2592 | + add_filter('post_row_actions', 'geodir_disable_quick_edit', 10, 2); |
|
2593 | + add_filter('page_row_actions', 'geodir_disable_quick_edit', 10, 2); |
|
2594 | + } elseif ($pagenow == 'edit-tags.php' && !empty($current_screen->taxonomy)) { |
|
2595 | + add_filter($current_screen->taxonomy.'_row_actions', 'geodir_disable_quick_edit', 10, 2); |
|
2596 | 2596 | } |
2597 | 2597 | } |
2598 | 2598 | } |
2599 | 2599 | } |
2600 | -add_action( 'admin_head', 'geodir_check_quick_edit', 10 ); |
|
2600 | +add_action('admin_head', 'geodir_check_quick_edit', 10); |
|
2601 | 2601 | |
2602 | 2602 | /** |
2603 | 2603 | * Filter the bulk actions for GD CPT. |
@@ -2608,9 +2608,9 @@ discard block |
||
2608 | 2608 | * @param array $actions An array of the available bulk actions. |
2609 | 2609 | * @return array Filtered bulk actions. |
2610 | 2610 | */ |
2611 | -function geodir_filter_bulk_actions( $actions ) { |
|
2612 | - if ( isset( $actions['edit'] ) ) { |
|
2613 | - unset( $actions['edit'] ); |
|
2611 | +function geodir_filter_bulk_actions($actions) { |
|
2612 | + if (isset($actions['edit'])) { |
|
2613 | + unset($actions['edit']); |
|
2614 | 2614 | } |
2615 | 2615 | |
2616 | 2616 | return $actions; |
@@ -10,21 +10,21 @@ |
||
10 | 10 | |
11 | 11 | // Exit if accessed directly. |
12 | 12 | if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { |
13 | - exit; |
|
13 | + exit; |
|
14 | 14 | } |
15 | 15 | |
16 | 16 | global $wpdb; |
17 | 17 | |
18 | 18 | if (get_option('geodir_un_geodirectory')) { |
19 | - $wpdb->hide_errors(); |
|
19 | + $wpdb->hide_errors(); |
|
20 | 20 | |
21 | - /* |
|
21 | + /* |
|
22 | 22 | if (!defined('GEODIRECTORY_VERSION')) { |
23 | 23 | // Load plugin file. |
24 | 24 | include_once('geodirectory.php'); |
25 | 25 | } |
26 | 26 | */ |
27 | 27 | |
28 | - // Delete default data. |
|
29 | - delete_option('geodir_default_data_installed'); |
|
28 | + // Delete default data. |
|
29 | + delete_option('geodir_default_data_installed'); |
|
30 | 30 | } |
31 | 31 | \ No newline at end of file |
@@ -9,7 +9,7 @@ |
||
9 | 9 | */ |
10 | 10 | |
11 | 11 | // Exit if accessed directly. |
12 | -if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { |
|
12 | +if (!defined('WP_UNINSTALL_PLUGIN')) { |
|
13 | 13 | exit; |
14 | 14 | } |
15 | 15 |
@@ -15,296 +15,296 @@ discard block |
||
15 | 15 | */ |
16 | 16 | function geodir_register_sidebar() |
17 | 17 | { |
18 | - global $geodir_sidebars; |
|
19 | - |
|
20 | - if (function_exists('register_sidebar')) { |
|
21 | - /*===========================*/ |
|
22 | - /* Home page sidebars start*/ |
|
23 | - /*===========================*/ |
|
24 | - |
|
25 | - /** |
|
26 | - * Filter the `$before_widget` widget opening HTML tag. |
|
27 | - * |
|
28 | - * @since 1.0.0 |
|
29 | - * @param string $var The HTML string to filter. Default = '<section id="%1$s" class="widget geodir-widget %2$s">'. |
|
30 | - * @see 'geodir_after_widget' |
|
31 | - */ |
|
32 | - $before_widget = apply_filters('geodir_before_widget', '<section id="%1$s" class="widget geodir-widget %2$s">'); |
|
33 | - /** |
|
34 | - * Filter the `$after_widget` widget closing HTML tag. |
|
35 | - * |
|
36 | - * @since 1.0.0 |
|
37 | - * @param string $var The HTML string to filter. Default = '</section>'. |
|
38 | - * @see 'geodir_before_widget' |
|
39 | - */ |
|
40 | - $after_widget = apply_filters('geodir_after_widget', '</section>'); |
|
41 | - /** |
|
42 | - * Filter the `$before_title` widget title opening HTML tag. |
|
43 | - * |
|
44 | - * @since 1.0.0 |
|
45 | - * @param string $var The HTML string to filter. Default = '<h3 class="widget-title">'. |
|
46 | - * @see 'geodir_after_title' |
|
47 | - */ |
|
48 | - $before_title = apply_filters('geodir_before_title', '<h3 class="widget-title">'); |
|
49 | - /** |
|
50 | - * Filter the `$after_title` widget title closing HTML tag. |
|
51 | - * |
|
52 | - * @since 1.0.0 |
|
53 | - * @param string $var The HTML string to filter. Default = '</h3>'. |
|
54 | - * @see 'geodir_before_title' |
|
55 | - */ |
|
56 | - $after_title = apply_filters('geodir_after_title', '</h3>'); |
|
57 | - |
|
58 | - if (get_option('geodir_show_home_top_section')) { |
|
59 | - register_sidebars(1, array('id' => 'geodir_home_top', 'name' => __('GD Home Top Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
60 | - |
|
61 | - $geodir_sidebars[] = 'geodir_home_top'; |
|
62 | - } |
|
63 | - |
|
64 | - if (get_option('geodir_show_home_contant_section')) { |
|
65 | - register_sidebars(1, array('id' => 'geodir_home_content', 'name' => __('GD Home Content Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
18 | + global $geodir_sidebars; |
|
66 | 19 | |
67 | - $geodir_sidebars[] = 'geodir_home_content'; |
|
68 | - } |
|
20 | + if (function_exists('register_sidebar')) { |
|
21 | + /*===========================*/ |
|
22 | + /* Home page sidebars start*/ |
|
23 | + /*===========================*/ |
|
69 | 24 | |
70 | - if (get_option('geodir_show_home_right_section')) { |
|
71 | - register_sidebars(1, array('id' => 'geodir_home_right', 'name' => __('GD Home Right Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
25 | + /** |
|
26 | + * Filter the `$before_widget` widget opening HTML tag. |
|
27 | + * |
|
28 | + * @since 1.0.0 |
|
29 | + * @param string $var The HTML string to filter. Default = '<section id="%1$s" class="widget geodir-widget %2$s">'. |
|
30 | + * @see 'geodir_after_widget' |
|
31 | + */ |
|
32 | + $before_widget = apply_filters('geodir_before_widget', '<section id="%1$s" class="widget geodir-widget %2$s">'); |
|
33 | + /** |
|
34 | + * Filter the `$after_widget` widget closing HTML tag. |
|
35 | + * |
|
36 | + * @since 1.0.0 |
|
37 | + * @param string $var The HTML string to filter. Default = '</section>'. |
|
38 | + * @see 'geodir_before_widget' |
|
39 | + */ |
|
40 | + $after_widget = apply_filters('geodir_after_widget', '</section>'); |
|
41 | + /** |
|
42 | + * Filter the `$before_title` widget title opening HTML tag. |
|
43 | + * |
|
44 | + * @since 1.0.0 |
|
45 | + * @param string $var The HTML string to filter. Default = '<h3 class="widget-title">'. |
|
46 | + * @see 'geodir_after_title' |
|
47 | + */ |
|
48 | + $before_title = apply_filters('geodir_before_title', '<h3 class="widget-title">'); |
|
49 | + /** |
|
50 | + * Filter the `$after_title` widget title closing HTML tag. |
|
51 | + * |
|
52 | + * @since 1.0.0 |
|
53 | + * @param string $var The HTML string to filter. Default = '</h3>'. |
|
54 | + * @see 'geodir_before_title' |
|
55 | + */ |
|
56 | + $after_title = apply_filters('geodir_after_title', '</h3>'); |
|
57 | + |
|
58 | + if (get_option('geodir_show_home_top_section')) { |
|
59 | + register_sidebars(1, array('id' => 'geodir_home_top', 'name' => __('GD Home Top Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
72 | 60 | |
73 | - $geodir_sidebars[] = 'geodir_home_right'; |
|
74 | - } |
|
61 | + $geodir_sidebars[] = 'geodir_home_top'; |
|
62 | + } |
|
75 | 63 | |
76 | - if (get_option('geodir_show_home_left_section')) { |
|
77 | - register_sidebars(1, array('id' => 'geodir_home_left', 'name' => __('GD Home Left Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
64 | + if (get_option('geodir_show_home_contant_section')) { |
|
65 | + register_sidebars(1, array('id' => 'geodir_home_content', 'name' => __('GD Home Content Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
78 | 66 | |
79 | - $geodir_sidebars[] = 'geodir_home_left'; |
|
80 | - } |
|
67 | + $geodir_sidebars[] = 'geodir_home_content'; |
|
68 | + } |
|
81 | 69 | |
82 | - if (get_option('geodir_show_home_bottom_section')) { |
|
83 | - register_sidebars(1, array('id' => 'geodir_home_bottom', 'name' => __('GD Home Bottom Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
70 | + if (get_option('geodir_show_home_right_section')) { |
|
71 | + register_sidebars(1, array('id' => 'geodir_home_right', 'name' => __('GD Home Right Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
84 | 72 | |
85 | - $geodir_sidebars[] = 'geodir_home_bottom'; |
|
86 | - } |
|
73 | + $geodir_sidebars[] = 'geodir_home_right'; |
|
74 | + } |
|
87 | 75 | |
88 | - /*===========================*/ |
|
89 | - /* Home page sidebars end*/ |
|
90 | - /*===========================*/ |
|
76 | + if (get_option('geodir_show_home_left_section')) { |
|
77 | + register_sidebars(1, array('id' => 'geodir_home_left', 'name' => __('GD Home Left Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
91 | 78 | |
92 | - /*===========================*/ |
|
93 | - /* Listing page sidebars start*/ |
|
94 | - /*===========================*/ |
|
79 | + $geodir_sidebars[] = 'geodir_home_left'; |
|
80 | + } |
|
95 | 81 | |
96 | - if (get_option('geodir_show_listing_top_section')) { |
|
97 | - register_sidebars(1, array('id' => 'geodir_listing_top', 'name' => __('GD Listing Top Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
82 | + if (get_option('geodir_show_home_bottom_section')) { |
|
83 | + register_sidebars(1, array('id' => 'geodir_home_bottom', 'name' => __('GD Home Bottom Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
98 | 84 | |
99 | - $geodir_sidebars[] = 'geodir_listing_top'; |
|
100 | - } |
|
85 | + $geodir_sidebars[] = 'geodir_home_bottom'; |
|
86 | + } |
|
101 | 87 | |
102 | - if (get_option('geodir_show_listing_left_section')) { |
|
103 | - register_sidebars(1, array('id' => 'geodir_listing_left_sidebar', 'name' => __('GD Listing Left Sidebar', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
88 | + /*===========================*/ |
|
89 | + /* Home page sidebars end*/ |
|
90 | + /*===========================*/ |
|
104 | 91 | |
105 | - $geodir_sidebars[] = 'geodir_listing_left_sidebar'; |
|
106 | - } |
|
92 | + /*===========================*/ |
|
93 | + /* Listing page sidebars start*/ |
|
94 | + /*===========================*/ |
|
107 | 95 | |
108 | - if (get_option('geodir_show_listing_right_section')) { |
|
109 | - register_sidebars(1, array('id' => 'geodir_listing_right_sidebar', 'name' => __('GD Listing Right Sidebar', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
96 | + if (get_option('geodir_show_listing_top_section')) { |
|
97 | + register_sidebars(1, array('id' => 'geodir_listing_top', 'name' => __('GD Listing Top Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
110 | 98 | |
111 | - $geodir_sidebars[] = 'geodir_listing_right_sidebar'; |
|
112 | - } |
|
99 | + $geodir_sidebars[] = 'geodir_listing_top'; |
|
100 | + } |
|
113 | 101 | |
114 | - if (get_option('geodir_show_listing_bottom_section')) { |
|
115 | - register_sidebars(1, array('id' => 'geodir_listing_bottom', 'name' => __('GD Listing Bottom Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
102 | + if (get_option('geodir_show_listing_left_section')) { |
|
103 | + register_sidebars(1, array('id' => 'geodir_listing_left_sidebar', 'name' => __('GD Listing Left Sidebar', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
116 | 104 | |
117 | - $geodir_sidebars[] = 'geodir_listing_bottom'; |
|
118 | - } |
|
105 | + $geodir_sidebars[] = 'geodir_listing_left_sidebar'; |
|
106 | + } |
|
119 | 107 | |
120 | - /*===========================*/ |
|
121 | - /* Listing page sidebars start*/ |
|
122 | - /*===========================*/ |
|
108 | + if (get_option('geodir_show_listing_right_section')) { |
|
109 | + register_sidebars(1, array('id' => 'geodir_listing_right_sidebar', 'name' => __('GD Listing Right Sidebar', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
123 | 110 | |
124 | - /*===========================*/ |
|
125 | - /* Search page sidebars start*/ |
|
126 | - /*===========================*/ |
|
111 | + $geodir_sidebars[] = 'geodir_listing_right_sidebar'; |
|
112 | + } |
|
127 | 113 | |
128 | - if (get_option('geodir_show_search_top_section')) { |
|
129 | - register_sidebars(1, array('id' => 'geodir_search_top', 'name' => __('GD Search Top Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
114 | + if (get_option('geodir_show_listing_bottom_section')) { |
|
115 | + register_sidebars(1, array('id' => 'geodir_listing_bottom', 'name' => __('GD Listing Bottom Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
130 | 116 | |
131 | - $geodir_sidebars[] = 'geodir_search_top'; |
|
132 | - } |
|
117 | + $geodir_sidebars[] = 'geodir_listing_bottom'; |
|
118 | + } |
|
133 | 119 | |
134 | - if (get_option('geodir_show_search_left_section')) { |
|
135 | - register_sidebars(1, array('id' => 'geodir_search_left_sidebar', 'name' => __('GD Search Left Sidebar', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
120 | + /*===========================*/ |
|
121 | + /* Listing page sidebars start*/ |
|
122 | + /*===========================*/ |
|
136 | 123 | |
137 | - $geodir_sidebars[] = 'geodir_search_left_sidebar'; |
|
138 | - } |
|
124 | + /*===========================*/ |
|
125 | + /* Search page sidebars start*/ |
|
126 | + /*===========================*/ |
|
139 | 127 | |
140 | - if (get_option('geodir_show_search_right_section')) { |
|
141 | - register_sidebars(1, array('id' => 'geodir_search_right_sidebar', 'name' => __('GD Search Right Sidebar', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
128 | + if (get_option('geodir_show_search_top_section')) { |
|
129 | + register_sidebars(1, array('id' => 'geodir_search_top', 'name' => __('GD Search Top Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
142 | 130 | |
143 | - $geodir_sidebars[] = 'geodir_search_right_sidebar'; |
|
144 | - } |
|
131 | + $geodir_sidebars[] = 'geodir_search_top'; |
|
132 | + } |
|
145 | 133 | |
146 | - if (get_option('geodir_show_search_bottom_section')) { |
|
147 | - register_sidebars(1, array('id' => 'geodir_search_bottom', 'name' => __('GD Search Bottom Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
134 | + if (get_option('geodir_show_search_left_section')) { |
|
135 | + register_sidebars(1, array('id' => 'geodir_search_left_sidebar', 'name' => __('GD Search Left Sidebar', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
148 | 136 | |
149 | - $geodir_sidebars[] = 'geodir_search_bottom'; |
|
150 | - } |
|
137 | + $geodir_sidebars[] = 'geodir_search_left_sidebar'; |
|
138 | + } |
|
151 | 139 | |
152 | - /*===========================*/ |
|
153 | - /* Search page sidebars end*/ |
|
154 | - /*===========================*/ |
|
140 | + if (get_option('geodir_show_search_right_section')) { |
|
141 | + register_sidebars(1, array('id' => 'geodir_search_right_sidebar', 'name' => __('GD Search Right Sidebar', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
155 | 142 | |
156 | - /*==================================*/ |
|
157 | - /* Detail/Single page sidebars start*/ |
|
158 | - /*==================================*/ |
|
159 | - if (get_option('geodir_show_detail_top_section')) { |
|
160 | - register_sidebars(1, array('id' => 'geodir_detail_top', 'name' => __('GD Detail Top Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
143 | + $geodir_sidebars[] = 'geodir_search_right_sidebar'; |
|
144 | + } |
|
161 | 145 | |
162 | - $geodir_sidebars[] = 'geodir_detail_top'; |
|
163 | - } |
|
146 | + if (get_option('geodir_show_search_bottom_section')) { |
|
147 | + register_sidebars(1, array('id' => 'geodir_search_bottom', 'name' => __('GD Search Bottom Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
164 | 148 | |
165 | - register_sidebars(1, array('id' => 'geodir_detail_sidebar', 'name' => __('GD Detail Sidebar', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
149 | + $geodir_sidebars[] = 'geodir_search_bottom'; |
|
150 | + } |
|
166 | 151 | |
167 | - $geodir_sidebars[] = 'geodir_detail_sidebar'; |
|
152 | + /*===========================*/ |
|
153 | + /* Search page sidebars end*/ |
|
154 | + /*===========================*/ |
|
168 | 155 | |
169 | - if (get_option('geodir_show_detail_bottom_section')) { |
|
170 | - register_sidebars(1, array('id' => 'geodir_detail_bottom', 'name' => __('GD Detail Bottom Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
156 | + /*==================================*/ |
|
157 | + /* Detail/Single page sidebars start*/ |
|
158 | + /*==================================*/ |
|
159 | + if (get_option('geodir_show_detail_top_section')) { |
|
160 | + register_sidebars(1, array('id' => 'geodir_detail_top', 'name' => __('GD Detail Top Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
171 | 161 | |
172 | - $geodir_sidebars[] = 'geodir_detail_bottom'; |
|
173 | - } |
|
162 | + $geodir_sidebars[] = 'geodir_detail_top'; |
|
163 | + } |
|
174 | 164 | |
175 | - /*==================================*/ |
|
176 | - /* Detail/Single page sidebars end*/ |
|
177 | - /*==================================*/ |
|
165 | + register_sidebars(1, array('id' => 'geodir_detail_sidebar', 'name' => __('GD Detail Sidebar', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
178 | 166 | |
179 | - /*==================================*/ |
|
180 | - /* Author page sidebars start */ |
|
181 | - /*==================================*/ |
|
167 | + $geodir_sidebars[] = 'geodir_detail_sidebar'; |
|
182 | 168 | |
183 | - if (get_option('geodir_show_author_top_section')) { |
|
184 | - register_sidebars(1, array('id' => 'geodir_author_top', 'name' => __('GD Author Top Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
169 | + if (get_option('geodir_show_detail_bottom_section')) { |
|
170 | + register_sidebars(1, array('id' => 'geodir_detail_bottom', 'name' => __('GD Detail Bottom Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
185 | 171 | |
186 | - $geodir_sidebars[] = 'geodir_author_top'; |
|
187 | - } |
|
172 | + $geodir_sidebars[] = 'geodir_detail_bottom'; |
|
173 | + } |
|
188 | 174 | |
189 | - if (get_option('geodir_show_author_left_section')) { |
|
190 | - register_sidebars(1, array('id' => 'geodir_author_left_sidebar', 'name' => __('GD Author Left Sidebar', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
175 | + /*==================================*/ |
|
176 | + /* Detail/Single page sidebars end*/ |
|
177 | + /*==================================*/ |
|
191 | 178 | |
192 | - $geodir_sidebars[] = 'geodir_author_left_sidebar'; |
|
193 | - } |
|
179 | + /*==================================*/ |
|
180 | + /* Author page sidebars start */ |
|
181 | + /*==================================*/ |
|
194 | 182 | |
195 | - if (get_option('geodir_show_author_right_section')) { |
|
196 | - register_sidebars(1, array('id' => 'geodir_author_right_sidebar', 'name' => __('GD Author Right Sidebar', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
183 | + if (get_option('geodir_show_author_top_section')) { |
|
184 | + register_sidebars(1, array('id' => 'geodir_author_top', 'name' => __('GD Author Top Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
197 | 185 | |
198 | - $geodir_sidebars[] = 'geodir_author_right_sidebar'; |
|
199 | - } |
|
186 | + $geodir_sidebars[] = 'geodir_author_top'; |
|
187 | + } |
|
200 | 188 | |
201 | - if (get_option('geodir_show_author_bottom_section')) { |
|
202 | - register_sidebars(1, array('id' => 'geodir_author_bottom', 'name' => __('GD Author Bottom Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
189 | + if (get_option('geodir_show_author_left_section')) { |
|
190 | + register_sidebars(1, array('id' => 'geodir_author_left_sidebar', 'name' => __('GD Author Left Sidebar', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
203 | 191 | |
204 | - $geodir_sidebars[] = 'geodir_author_bottom'; |
|
205 | - } |
|
192 | + $geodir_sidebars[] = 'geodir_author_left_sidebar'; |
|
193 | + } |
|
206 | 194 | |
207 | - /*==================================*/ |
|
208 | - /* Author page sidebars end */ |
|
209 | - /*==================================*/ |
|
195 | + if (get_option('geodir_show_author_right_section')) { |
|
196 | + register_sidebars(1, array('id' => 'geodir_author_right_sidebar', 'name' => __('GD Author Right Sidebar', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
210 | 197 | |
211 | - /*==================================*/ |
|
212 | - /* Add listing page sidebars start */ |
|
213 | - /*==================================*/ |
|
198 | + $geodir_sidebars[] = 'geodir_author_right_sidebar'; |
|
199 | + } |
|
214 | 200 | |
215 | - register_sidebars(1, array('id' => 'geodir_add_listing_sidebar', 'name' => __('GD Add Listing Right Sidebar', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
201 | + if (get_option('geodir_show_author_bottom_section')) { |
|
202 | + register_sidebars(1, array('id' => 'geodir_author_bottom', 'name' => __('GD Author Bottom Section', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
216 | 203 | |
217 | - $geodir_sidebars[] = 'geodir_add_listing_sidebar'; |
|
204 | + $geodir_sidebars[] = 'geodir_author_bottom'; |
|
205 | + } |
|
218 | 206 | |
219 | - /*==================================*/ |
|
220 | - /* Add listing page sidebars end */ |
|
221 | - /*==================================*/ |
|
207 | + /*==================================*/ |
|
208 | + /* Author page sidebars end */ |
|
209 | + /*==================================*/ |
|
222 | 210 | |
223 | - } |
|
211 | + /*==================================*/ |
|
212 | + /* Add listing page sidebars start */ |
|
213 | + /*==================================*/ |
|
214 | + |
|
215 | + register_sidebars(1, array('id' => 'geodir_add_listing_sidebar', 'name' => __('GD Add Listing Right Sidebar', 'geodirectory'), 'before_widget' => $before_widget, 'after_widget' => $after_widget, 'before_title' => $before_title, 'after_title' => $after_title)); |
|
216 | + |
|
217 | + $geodir_sidebars[] = 'geodir_add_listing_sidebar'; |
|
218 | + |
|
219 | + /*==================================*/ |
|
220 | + /* Add listing page sidebars end */ |
|
221 | + /*==================================*/ |
|
222 | + |
|
223 | + } |
|
224 | 224 | } |
225 | 225 | |
226 | 226 | |
227 | 227 | if (!function_exists('register_geodir_widgets')) { |
228 | - /** |
|
229 | - * Registers all Widgets. |
|
230 | - * |
|
231 | - * @since 1.0.0 |
|
232 | - * @package GeoDirectory |
|
233 | - */ |
|
234 | - function register_geodir_widgets() |
|
235 | - { |
|
236 | - /** |
|
237 | - * Login Widget. |
|
238 | - * |
|
239 | - * @since 1.0.0 |
|
240 | - */ |
|
241 | - class geodir_loginwidget extends WP_Widget |
|
242 | - { |
|
243 | - /** |
|
244 | - * Register the login widget with WordPress. |
|
245 | - * |
|
246 | - * @since 1.0.0 |
|
247 | - * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
248 | - */ |
|
249 | - public function __construct() { |
|
250 | - $widget_ops = array('classname' => 'geodir_loginbox', 'description' => __('Geodirectory Loginbox Widget', 'geodirectory')); |
|
251 | - parent::__construct( |
|
252 | - 'geodir_loginbox', // Base ID |
|
253 | - __('GD > Loginbox', 'geodirectory'), // Name |
|
254 | - $widget_ops// Args |
|
255 | - ); |
|
256 | - } |
|
257 | - |
|
258 | - /** |
|
259 | - * Front-end display content for login widget. |
|
260 | - * |
|
261 | - * @since 1.0.0 |
|
262 | - * @since 1.5.1 Declare function public. |
|
263 | - * |
|
264 | - * @param array $args Widget arguments. |
|
265 | - * @param array $instance Saved values from database. |
|
266 | - */ |
|
267 | - public function widget($args, $instance) |
|
268 | - { |
|
269 | - geodir_loginwidget_output($args, $instance); |
|
270 | - } |
|
271 | - |
|
272 | - /** |
|
273 | - * Sanitize login widget form values as they are saved. |
|
274 | - * |
|
275 | - * @since 1.0.0 |
|
276 | - * @since 1.5.1 Declare function public. |
|
277 | - * |
|
278 | - * @param array $new_instance Values just sent to be saved. |
|
279 | - * @param array $old_instance Previously saved values from database. |
|
280 | - * |
|
281 | - * @return array Updated safe values to be saved. |
|
282 | - */ |
|
283 | - public function update($new_instance, $old_instance) |
|
284 | - { |
|
285 | - //save the widget |
|
286 | - $instance = $old_instance; |
|
287 | - $instance['title'] = strip_tags($new_instance['title']); |
|
288 | - |
|
289 | - return $instance; |
|
290 | - } |
|
291 | - |
|
292 | - /** |
|
293 | - * Back-end login widget settings form. |
|
294 | - * |
|
295 | - * @since 1.0.0 |
|
296 | - * @since 1.5.1 Declare function public. |
|
297 | - * |
|
298 | - * @param array $instance Previously saved values from database. |
|
299 | - * @return string|void |
|
300 | - */ |
|
301 | - public function form($instance) |
|
302 | - { |
|
303 | - //widgetform in backend |
|
304 | - $instance = wp_parse_args((array)$instance, array('title' => '', 't1' => '', 't2' => '', 't3' => '', 'img1' => '', 'desc1' => '')); |
|
305 | - $title = strip_tags($instance['title']); |
|
306 | - |
|
307 | - ?> |
|
228 | + /** |
|
229 | + * Registers all Widgets. |
|
230 | + * |
|
231 | + * @since 1.0.0 |
|
232 | + * @package GeoDirectory |
|
233 | + */ |
|
234 | + function register_geodir_widgets() |
|
235 | + { |
|
236 | + /** |
|
237 | + * Login Widget. |
|
238 | + * |
|
239 | + * @since 1.0.0 |
|
240 | + */ |
|
241 | + class geodir_loginwidget extends WP_Widget |
|
242 | + { |
|
243 | + /** |
|
244 | + * Register the login widget with WordPress. |
|
245 | + * |
|
246 | + * @since 1.0.0 |
|
247 | + * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
248 | + */ |
|
249 | + public function __construct() { |
|
250 | + $widget_ops = array('classname' => 'geodir_loginbox', 'description' => __('Geodirectory Loginbox Widget', 'geodirectory')); |
|
251 | + parent::__construct( |
|
252 | + 'geodir_loginbox', // Base ID |
|
253 | + __('GD > Loginbox', 'geodirectory'), // Name |
|
254 | + $widget_ops// Args |
|
255 | + ); |
|
256 | + } |
|
257 | + |
|
258 | + /** |
|
259 | + * Front-end display content for login widget. |
|
260 | + * |
|
261 | + * @since 1.0.0 |
|
262 | + * @since 1.5.1 Declare function public. |
|
263 | + * |
|
264 | + * @param array $args Widget arguments. |
|
265 | + * @param array $instance Saved values from database. |
|
266 | + */ |
|
267 | + public function widget($args, $instance) |
|
268 | + { |
|
269 | + geodir_loginwidget_output($args, $instance); |
|
270 | + } |
|
271 | + |
|
272 | + /** |
|
273 | + * Sanitize login widget form values as they are saved. |
|
274 | + * |
|
275 | + * @since 1.0.0 |
|
276 | + * @since 1.5.1 Declare function public. |
|
277 | + * |
|
278 | + * @param array $new_instance Values just sent to be saved. |
|
279 | + * @param array $old_instance Previously saved values from database. |
|
280 | + * |
|
281 | + * @return array Updated safe values to be saved. |
|
282 | + */ |
|
283 | + public function update($new_instance, $old_instance) |
|
284 | + { |
|
285 | + //save the widget |
|
286 | + $instance = $old_instance; |
|
287 | + $instance['title'] = strip_tags($new_instance['title']); |
|
288 | + |
|
289 | + return $instance; |
|
290 | + } |
|
291 | + |
|
292 | + /** |
|
293 | + * Back-end login widget settings form. |
|
294 | + * |
|
295 | + * @since 1.0.0 |
|
296 | + * @since 1.5.1 Declare function public. |
|
297 | + * |
|
298 | + * @param array $instance Previously saved values from database. |
|
299 | + * @return string|void |
|
300 | + */ |
|
301 | + public function form($instance) |
|
302 | + { |
|
303 | + //widgetform in backend |
|
304 | + $instance = wp_parse_args((array)$instance, array('title' => '', 't1' => '', 't2' => '', 't3' => '', 'img1' => '', 'desc1' => '')); |
|
305 | + $title = strip_tags($instance['title']); |
|
306 | + |
|
307 | + ?> |
|
308 | 308 | <p><label |
309 | 309 | for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Widget Title', 'geodirectory'); ?> |
310 | 310 | : <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" |
@@ -313,64 +313,64 @@ discard block |
||
313 | 313 | |
314 | 314 | |
315 | 315 | <?php |
316 | - } |
|
317 | - } |
|
318 | - |
|
319 | - register_widget('geodir_loginwidget'); |
|
320 | - |
|
321 | - |
|
322 | - /** |
|
323 | - * GeoDirectory Social Like Widget. |
|
324 | - * |
|
325 | - * @since 1.0.0 |
|
326 | - */ |
|
327 | - class geodir_social_like_widget extends WP_Widget |
|
328 | - { |
|
329 | - |
|
330 | - /** |
|
331 | - * Register the social like widget with WordPress. |
|
332 | - * |
|
333 | - * @since 1.0.0 |
|
334 | - * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
335 | - */ |
|
336 | - public function __construct() { |
|
337 | - $widget_ops = array('classname' => 'geodir_social_like_widget', 'description' => __('GD > Twitter,Facebook and Google+ buttons', 'geodirectory')); |
|
338 | - parent::__construct( |
|
339 | - 'social_like_widget', // Base ID |
|
340 | - __('GD > Social Like', 'geodirectory'), // Name |
|
341 | - $widget_ops// Args |
|
342 | - ); |
|
343 | - } |
|
344 | - |
|
345 | - /** |
|
346 | - * Front-end display content for social like widget. |
|
347 | - * |
|
348 | - * @since 1.0.0 |
|
349 | - * @since 1.5.1 Declare function public. |
|
350 | - * |
|
351 | - * @param array $args Widget arguments. |
|
352 | - * @param array $instance Saved values from database. |
|
353 | - */ |
|
354 | - public function widget($args, $instance) |
|
355 | - { |
|
356 | - // prints the widget |
|
357 | - extract($args, EXTR_SKIP); |
|
358 | - |
|
359 | - /** |
|
360 | - * Filter the widget title text. |
|
361 | - * |
|
362 | - * @since 1.0.0 |
|
363 | - * @global object $current_user Current user object. |
|
364 | - * @param string $title The widget title text. |
|
365 | - */ |
|
366 | - $title = empty($instance['title']) ? ' ' : apply_filters('widget_title', $instance['title']); |
|
367 | - |
|
368 | - global $current_user, $post; |
|
369 | - echo $before_widget; |
|
370 | - ?> |
|
316 | + } |
|
317 | + } |
|
318 | + |
|
319 | + register_widget('geodir_loginwidget'); |
|
320 | + |
|
321 | + |
|
322 | + /** |
|
323 | + * GeoDirectory Social Like Widget. |
|
324 | + * |
|
325 | + * @since 1.0.0 |
|
326 | + */ |
|
327 | + class geodir_social_like_widget extends WP_Widget |
|
328 | + { |
|
329 | + |
|
330 | + /** |
|
331 | + * Register the social like widget with WordPress. |
|
332 | + * |
|
333 | + * @since 1.0.0 |
|
334 | + * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
335 | + */ |
|
336 | + public function __construct() { |
|
337 | + $widget_ops = array('classname' => 'geodir_social_like_widget', 'description' => __('GD > Twitter,Facebook and Google+ buttons', 'geodirectory')); |
|
338 | + parent::__construct( |
|
339 | + 'social_like_widget', // Base ID |
|
340 | + __('GD > Social Like', 'geodirectory'), // Name |
|
341 | + $widget_ops// Args |
|
342 | + ); |
|
343 | + } |
|
344 | + |
|
345 | + /** |
|
346 | + * Front-end display content for social like widget. |
|
347 | + * |
|
348 | + * @since 1.0.0 |
|
349 | + * @since 1.5.1 Declare function public. |
|
350 | + * |
|
351 | + * @param array $args Widget arguments. |
|
352 | + * @param array $instance Saved values from database. |
|
353 | + */ |
|
354 | + public function widget($args, $instance) |
|
355 | + { |
|
356 | + // prints the widget |
|
357 | + extract($args, EXTR_SKIP); |
|
358 | + |
|
359 | + /** |
|
360 | + * Filter the widget title text. |
|
361 | + * |
|
362 | + * @since 1.0.0 |
|
363 | + * @global object $current_user Current user object. |
|
364 | + * @param string $title The widget title text. |
|
365 | + */ |
|
366 | + $title = empty($instance['title']) ? ' ' : apply_filters('widget_title', $instance['title']); |
|
367 | + |
|
368 | + global $current_user, $post; |
|
369 | + echo $before_widget; |
|
370 | + ?> |
|
371 | 371 | |
372 | 372 | <?php //if ( get_option('gd_tweet_button') ) { |
373 | - ?> |
|
373 | + ?> |
|
374 | 374 | |
375 | 375 | <a href="http://twitter.com/share" |
376 | 376 | class="twitter-share-button"><?php _e('Tweet', 'geodirectory');?></a> |
@@ -378,23 +378,23 @@ discard block |
||
378 | 378 | <script type="text/javascript" src="//platform.twitter.com/widgets.js"></script> |
379 | 379 | |
380 | 380 | <?php //} |
381 | - ?> |
|
381 | + ?> |
|
382 | 382 | |
383 | 383 | <?php // if ( get_option('gd_facebook_button') ) { |
384 | - ?> |
|
384 | + ?> |
|
385 | 385 | |
386 | 386 | <iframe <?php if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false)) { |
387 | - echo 'allowtransparency="true"'; |
|
388 | - }?> class="facebook" |
|
387 | + echo 'allowtransparency="true"'; |
|
388 | + }?> class="facebook" |
|
389 | 389 | src="//www.facebook.com/plugins/like.php?href=<?php echo urlencode(geodir_curPageURL()); ?>&layout=button_count&show_faces=false&width=100&action=like&colorscheme=light" |
390 | 390 | style="border:none; overflow:hidden; width:100px; height:20px"></iframe> |
391 | 391 | |
392 | 392 | |
393 | 393 | <?php //} |
394 | - ?> |
|
394 | + ?> |
|
395 | 395 | |
396 | 396 | <?php //if ( get_option('gd_google_button') ) { |
397 | - ?> |
|
397 | + ?> |
|
398 | 398 | <script> |
399 | 399 | window.___gcfg = { |
400 | 400 | parsetags: 'explicit' |
@@ -408,118 +408,118 @@ discard block |
||
408 | 408 | "count": "true" |
409 | 409 | });</script> |
410 | 410 | <?php //} |
411 | - echo $after_widget; |
|
412 | - |
|
413 | - } |
|
414 | - |
|
415 | - /** |
|
416 | - * Sanitize social like widget form values as they are saved. |
|
417 | - * |
|
418 | - * @since 1.0.0 |
|
419 | - * @since 1.5.1 Declare function public. |
|
420 | - * |
|
421 | - * @param array $new_instance Values just sent to be saved. |
|
422 | - * @param array $old_instance Previously saved values from database. |
|
423 | - * |
|
424 | - * @return array Updated safe values to be saved. |
|
425 | - */ |
|
426 | - public function update($new_instance, $old_instance) |
|
427 | - { |
|
428 | - //save the widget |
|
429 | - $instance = $old_instance; |
|
430 | - $instance['title'] = strip_tags($new_instance['title']); |
|
431 | - return $instance; |
|
432 | - } |
|
433 | - |
|
434 | - /** |
|
435 | - * Back-end social like widget settings form. |
|
436 | - * |
|
437 | - * @since 1.0.0 |
|
438 | - * @since 1.5.1 Declare function public. |
|
439 | - * |
|
440 | - * @param array $instance Previously saved values from database. |
|
441 | - * @return string|void |
|
442 | - */ |
|
443 | - public function form($instance) |
|
444 | - { |
|
445 | - //widgetform in backend |
|
446 | - $instance = wp_parse_args((array)$instance, array('title' => '')); |
|
447 | - $title = strip_tags($instance['title']); |
|
448 | - ?> |
|
411 | + echo $after_widget; |
|
412 | + |
|
413 | + } |
|
414 | + |
|
415 | + /** |
|
416 | + * Sanitize social like widget form values as they are saved. |
|
417 | + * |
|
418 | + * @since 1.0.0 |
|
419 | + * @since 1.5.1 Declare function public. |
|
420 | + * |
|
421 | + * @param array $new_instance Values just sent to be saved. |
|
422 | + * @param array $old_instance Previously saved values from database. |
|
423 | + * |
|
424 | + * @return array Updated safe values to be saved. |
|
425 | + */ |
|
426 | + public function update($new_instance, $old_instance) |
|
427 | + { |
|
428 | + //save the widget |
|
429 | + $instance = $old_instance; |
|
430 | + $instance['title'] = strip_tags($new_instance['title']); |
|
431 | + return $instance; |
|
432 | + } |
|
433 | + |
|
434 | + /** |
|
435 | + * Back-end social like widget settings form. |
|
436 | + * |
|
437 | + * @since 1.0.0 |
|
438 | + * @since 1.5.1 Declare function public. |
|
439 | + * |
|
440 | + * @param array $instance Previously saved values from database. |
|
441 | + * @return string|void |
|
442 | + */ |
|
443 | + public function form($instance) |
|
444 | + { |
|
445 | + //widgetform in backend |
|
446 | + $instance = wp_parse_args((array)$instance, array('title' => '')); |
|
447 | + $title = strip_tags($instance['title']); |
|
448 | + ?> |
|
449 | 449 | <p>No settings for this widget</p> |
450 | 450 | |
451 | 451 | |
452 | 452 | <?php |
453 | - } |
|
454 | - } |
|
455 | - |
|
456 | - register_widget('geodir_social_like_widget'); |
|
457 | - |
|
458 | - |
|
459 | - /** |
|
460 | - * GeoDirectory Feedburner Subscribe widget. |
|
461 | - * |
|
462 | - * @since 1.0.0 |
|
463 | - */ |
|
464 | - class geodirsubscribeWidget extends WP_Widget |
|
465 | - { |
|
466 | - |
|
467 | - /** |
|
468 | - * Register the feedburner subscribe widget with WordPress. |
|
469 | - * |
|
470 | - * @since 1.0.0 |
|
471 | - * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
472 | - */ |
|
473 | - public function __construct() { |
|
474 | - $widget_ops = array('classname' => 'geodir-subscribe', 'description' => __('GD > Google Feedburner Subscribe', 'geodirectory')); |
|
475 | - parent::__construct( |
|
476 | - 'widget_subscribeWidget', // Base ID |
|
477 | - __('GD > Subscribe', 'geodirectory'), // Name |
|
478 | - $widget_ops// Args |
|
479 | - ); |
|
480 | - } |
|
481 | - |
|
482 | - /** |
|
483 | - * Front-end display content for feedburner subscribe widget. |
|
484 | - * |
|
485 | - * @since 1.0.0 |
|
486 | - * @since 1.5.1 Declare function public. |
|
487 | - * |
|
488 | - * @param array $args Widget arguments. |
|
489 | - * @param array $instance Saved values from database. |
|
490 | - */ |
|
491 | - public function widget($args, $instance) |
|
492 | - { |
|
493 | - // prints the widget |
|
494 | - extract($args, EXTR_SKIP); |
|
495 | - |
|
496 | - /** |
|
497 | - * Filter the widget instance id. |
|
498 | - * |
|
499 | - * @since 1.0.0 |
|
500 | - * @param string $id The widget instance id. |
|
501 | - */ |
|
502 | - $id = empty($instance['id']) ? '' : apply_filters('widget_id', $instance['id']); |
|
503 | - |
|
504 | - /** This filter is documented in geodirectory_widgets.php */ |
|
505 | - $title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory')); |
|
506 | - |
|
507 | - /** |
|
508 | - * Filter the widget text. |
|
509 | - * |
|
510 | - * @since 1.0.0 |
|
511 | - * @param string $text The widget text. |
|
512 | - */ |
|
513 | - $text = empty($instance['text']) ? '' : apply_filters('widget_text', $instance['text']); |
|
514 | - |
|
515 | - echo $before_widget; |
|
516 | - ?> |
|
453 | + } |
|
454 | + } |
|
455 | + |
|
456 | + register_widget('geodir_social_like_widget'); |
|
457 | + |
|
458 | + |
|
459 | + /** |
|
460 | + * GeoDirectory Feedburner Subscribe widget. |
|
461 | + * |
|
462 | + * @since 1.0.0 |
|
463 | + */ |
|
464 | + class geodirsubscribeWidget extends WP_Widget |
|
465 | + { |
|
466 | + |
|
467 | + /** |
|
468 | + * Register the feedburner subscribe widget with WordPress. |
|
469 | + * |
|
470 | + * @since 1.0.0 |
|
471 | + * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
472 | + */ |
|
473 | + public function __construct() { |
|
474 | + $widget_ops = array('classname' => 'geodir-subscribe', 'description' => __('GD > Google Feedburner Subscribe', 'geodirectory')); |
|
475 | + parent::__construct( |
|
476 | + 'widget_subscribeWidget', // Base ID |
|
477 | + __('GD > Subscribe', 'geodirectory'), // Name |
|
478 | + $widget_ops// Args |
|
479 | + ); |
|
480 | + } |
|
481 | + |
|
482 | + /** |
|
483 | + * Front-end display content for feedburner subscribe widget. |
|
484 | + * |
|
485 | + * @since 1.0.0 |
|
486 | + * @since 1.5.1 Declare function public. |
|
487 | + * |
|
488 | + * @param array $args Widget arguments. |
|
489 | + * @param array $instance Saved values from database. |
|
490 | + */ |
|
491 | + public function widget($args, $instance) |
|
492 | + { |
|
493 | + // prints the widget |
|
494 | + extract($args, EXTR_SKIP); |
|
495 | + |
|
496 | + /** |
|
497 | + * Filter the widget instance id. |
|
498 | + * |
|
499 | + * @since 1.0.0 |
|
500 | + * @param string $id The widget instance id. |
|
501 | + */ |
|
502 | + $id = empty($instance['id']) ? '' : apply_filters('widget_id', $instance['id']); |
|
503 | + |
|
504 | + /** This filter is documented in geodirectory_widgets.php */ |
|
505 | + $title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory')); |
|
506 | + |
|
507 | + /** |
|
508 | + * Filter the widget text. |
|
509 | + * |
|
510 | + * @since 1.0.0 |
|
511 | + * @param string $text The widget text. |
|
512 | + */ |
|
513 | + $text = empty($instance['text']) ? '' : apply_filters('widget_text', $instance['text']); |
|
514 | + |
|
515 | + echo $before_widget; |
|
516 | + ?> |
|
517 | 517 | |
518 | 518 | <?php echo $before_title . $title; ?> <a href="<?php if ($id) { |
519 | - echo 'http://feeds2.feedburner.com/' . $id; |
|
520 | - } else { |
|
521 | - bloginfo('rss_url'); |
|
522 | - } ?>"><i class="fa fa-rss-square"></i> </a><?php echo $after_title;?> |
|
519 | + echo 'http://feeds2.feedburner.com/' . $id; |
|
520 | + } else { |
|
521 | + bloginfo('rss_url'); |
|
522 | + } ?>"><i class="fa fa-rss-square"></i> </a><?php echo $after_title;?> |
|
523 | 523 | |
524 | 524 | <?php if ($text <> "") { ?> |
525 | 525 | |
@@ -544,57 +544,57 @@ discard block |
||
544 | 544 | </form> |
545 | 545 | |
546 | 546 | <?php |
547 | - echo $after_widget; |
|
547 | + echo $after_widget; |
|
548 | 548 | |
549 | - } |
|
549 | + } |
|
550 | 550 | |
551 | - /** |
|
552 | - * Sanitize feedburner subscribe widget form values as they are saved. |
|
553 | - * |
|
554 | - * @since 1.0.0 |
|
555 | - * @since 1.5.1 Declare function public. |
|
556 | - * |
|
557 | - * @param array $new_instance Values just sent to be saved. |
|
558 | - * @param array $old_instance Previously saved values from database. |
|
559 | - * |
|
560 | - * @return array Updated safe values to be saved. |
|
561 | - */ |
|
562 | - public function update($new_instance, $old_instance) |
|
563 | - { |
|
551 | + /** |
|
552 | + * Sanitize feedburner subscribe widget form values as they are saved. |
|
553 | + * |
|
554 | + * @since 1.0.0 |
|
555 | + * @since 1.5.1 Declare function public. |
|
556 | + * |
|
557 | + * @param array $new_instance Values just sent to be saved. |
|
558 | + * @param array $old_instance Previously saved values from database. |
|
559 | + * |
|
560 | + * @return array Updated safe values to be saved. |
|
561 | + */ |
|
562 | + public function update($new_instance, $old_instance) |
|
563 | + { |
|
564 | 564 | |
565 | - //save the widget |
|
566 | - $instance = $old_instance; |
|
567 | - $instance['id'] = strip_tags($new_instance['id']); |
|
568 | - $instance['title'] = ($new_instance['title']); |
|
569 | - $instance['text'] = ($new_instance['text']); |
|
565 | + //save the widget |
|
566 | + $instance = $old_instance; |
|
567 | + $instance['id'] = strip_tags($new_instance['id']); |
|
568 | + $instance['title'] = ($new_instance['title']); |
|
569 | + $instance['text'] = ($new_instance['text']); |
|
570 | 570 | |
571 | 571 | |
572 | - return $instance; |
|
573 | - } |
|
572 | + return $instance; |
|
573 | + } |
|
574 | 574 | |
575 | - /** |
|
576 | - * Back-end feedburner subscribe widget settings form. |
|
577 | - * |
|
578 | - * @since 1.0.0 |
|
579 | - * @since 1.5.1 Declare function public. |
|
580 | - * |
|
581 | - * @param array $instance Previously saved values from database. |
|
582 | - * @return string|void |
|
583 | - */ |
|
584 | - public function form($instance) |
|
585 | - { |
|
586 | - //widgetform in backend |
|
587 | - $instance = wp_parse_args((array)$instance, array('title' => '', 'id' => '', 'advt1' => '', 'text' => '', 'twitter' => '', 'facebook' => '', 'digg' => '', 'myspace' => '')); |
|
575 | + /** |
|
576 | + * Back-end feedburner subscribe widget settings form. |
|
577 | + * |
|
578 | + * @since 1.0.0 |
|
579 | + * @since 1.5.1 Declare function public. |
|
580 | + * |
|
581 | + * @param array $instance Previously saved values from database. |
|
582 | + * @return string|void |
|
583 | + */ |
|
584 | + public function form($instance) |
|
585 | + { |
|
586 | + //widgetform in backend |
|
587 | + $instance = wp_parse_args((array)$instance, array('title' => '', 'id' => '', 'advt1' => '', 'text' => '', 'twitter' => '', 'facebook' => '', 'digg' => '', 'myspace' => '')); |
|
588 | 588 | |
589 | - $id = strip_tags($instance['id']); |
|
589 | + $id = strip_tags($instance['id']); |
|
590 | 590 | |
591 | - $title = strip_tags($instance['title']); |
|
591 | + $title = strip_tags($instance['title']); |
|
592 | 592 | |
593 | - $text = strip_tags($instance['text']); |
|
593 | + $text = strip_tags($instance['text']); |
|
594 | 594 | |
595 | 595 | |
596 | 596 | |
597 | - ?> |
|
597 | + ?> |
|
598 | 598 | <p><label |
599 | 599 | for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title', 'geodirectory');?>: |
600 | 600 | <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" |
@@ -613,101 +613,101 @@ discard block |
||
613 | 613 | name="<?php echo $this->get_field_name('text'); ?>"><?php echo esc_attr($text); ?></textarea></label> |
614 | 614 | </p> |
615 | 615 | <?php |
616 | - } |
|
617 | - } |
|
618 | - |
|
619 | - register_widget('geodirsubscribeWidget'); |
|
620 | - |
|
621 | - /** |
|
622 | - * GeoDirectory advertise widget. |
|
623 | - * |
|
624 | - * @since 1.0.0 |
|
625 | - */ |
|
626 | - class geodiradvtwidget extends WP_Widget |
|
627 | - { |
|
628 | - |
|
629 | - /** |
|
630 | - * Register the advertise widget with WordPress. |
|
631 | - * |
|
632 | - * @since 1.0.0 |
|
633 | - * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
634 | - */ |
|
635 | - public function __construct() { |
|
636 | - $widget_ops = array('classname' => 'GeoDirectory Advertise', 'description' => __('GD > common advertise widget in sidebar, bottom section', 'geodirectory')); |
|
637 | - parent::__construct( |
|
638 | - 'advtwidget', // Base ID |
|
639 | - __('GD > Advertise', 'geodirectory'), // Name |
|
640 | - $widget_ops// Args |
|
641 | - ); |
|
642 | - } |
|
643 | - |
|
644 | - |
|
645 | - /** |
|
646 | - * Front-end display content for advertise widget. |
|
647 | - * |
|
648 | - * @since 1.0.0 |
|
649 | - * @since 1.5.1 Declare function public. |
|
650 | - * |
|
651 | - * @param array $args Widget arguments. |
|
652 | - * @param array $instance Saved values from database. |
|
653 | - */ |
|
654 | - public function widget($args, $instance) |
|
655 | - { |
|
656 | - |
|
657 | - // prints the widget |
|
658 | - |
|
659 | - extract($args, EXTR_SKIP); |
|
660 | - |
|
661 | - /** |
|
662 | - * Filter the description text. |
|
663 | - * |
|
664 | - * @since 1.0.0 |
|
665 | - * @param string $desc1 The widget description text. |
|
666 | - */ |
|
667 | - $desc1 = empty($instance['desc1']) ? ' ' : apply_filters('widget_desc1', $instance['desc1']); |
|
668 | - echo $before_widget; |
|
669 | - ?> |
|
616 | + } |
|
617 | + } |
|
618 | + |
|
619 | + register_widget('geodirsubscribeWidget'); |
|
620 | + |
|
621 | + /** |
|
622 | + * GeoDirectory advertise widget. |
|
623 | + * |
|
624 | + * @since 1.0.0 |
|
625 | + */ |
|
626 | + class geodiradvtwidget extends WP_Widget |
|
627 | + { |
|
628 | + |
|
629 | + /** |
|
630 | + * Register the advertise widget with WordPress. |
|
631 | + * |
|
632 | + * @since 1.0.0 |
|
633 | + * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
634 | + */ |
|
635 | + public function __construct() { |
|
636 | + $widget_ops = array('classname' => 'GeoDirectory Advertise', 'description' => __('GD > common advertise widget in sidebar, bottom section', 'geodirectory')); |
|
637 | + parent::__construct( |
|
638 | + 'advtwidget', // Base ID |
|
639 | + __('GD > Advertise', 'geodirectory'), // Name |
|
640 | + $widget_ops// Args |
|
641 | + ); |
|
642 | + } |
|
643 | + |
|
644 | + |
|
645 | + /** |
|
646 | + * Front-end display content for advertise widget. |
|
647 | + * |
|
648 | + * @since 1.0.0 |
|
649 | + * @since 1.5.1 Declare function public. |
|
650 | + * |
|
651 | + * @param array $args Widget arguments. |
|
652 | + * @param array $instance Saved values from database. |
|
653 | + */ |
|
654 | + public function widget($args, $instance) |
|
655 | + { |
|
656 | + |
|
657 | + // prints the widget |
|
658 | + |
|
659 | + extract($args, EXTR_SKIP); |
|
660 | + |
|
661 | + /** |
|
662 | + * Filter the description text. |
|
663 | + * |
|
664 | + * @since 1.0.0 |
|
665 | + * @param string $desc1 The widget description text. |
|
666 | + */ |
|
667 | + $desc1 = empty($instance['desc1']) ? ' ' : apply_filters('widget_desc1', $instance['desc1']); |
|
668 | + echo $before_widget; |
|
669 | + ?> |
|
670 | 670 | <?php if ($desc1 <> "") { ?> |
671 | 671 | <?php echo $desc1; ?> |
672 | 672 | <?php } |
673 | - echo $after_widget; |
|
674 | - } |
|
675 | - |
|
676 | - /** |
|
677 | - * Sanitize advertise widget form values as they are saved. |
|
678 | - * |
|
679 | - * @since 1.0.0 |
|
680 | - * @since 1.5.1 Declare function public. |
|
681 | - * |
|
682 | - * @param array $new_instance Values just sent to be saved. |
|
683 | - * @param array $old_instance Previously saved values from database. |
|
684 | - * |
|
685 | - * @return array Updated safe values to be saved. |
|
686 | - */ |
|
687 | - public function update($new_instance, $old_instance) |
|
688 | - { |
|
689 | - //save the widget |
|
690 | - $instance = $old_instance; |
|
691 | - $instance['desc1'] = ($new_instance['desc1']); |
|
692 | - return $instance; |
|
693 | - } |
|
694 | - |
|
695 | - /** |
|
696 | - * Back-end advertise widget settings form. |
|
697 | - * |
|
698 | - * @since 1.0.0 |
|
699 | - * @since 1.5.1 Declare function public. |
|
700 | - * |
|
701 | - * @param array $instance Previously saved values from database. |
|
702 | - * @return string|void |
|
703 | - */ |
|
704 | - public function form($instance) |
|
705 | - { |
|
706 | - //widgetform in backend |
|
707 | - $instance = wp_parse_args((array)$instance, array('title' => '', 't1' => '', 't2' => '', 't3' => '', 'img1' => '', 'desc1' => '')); |
|
708 | - |
|
709 | - $desc1 = ($instance['desc1']); |
|
710 | - ?> |
|
673 | + echo $after_widget; |
|
674 | + } |
|
675 | + |
|
676 | + /** |
|
677 | + * Sanitize advertise widget form values as they are saved. |
|
678 | + * |
|
679 | + * @since 1.0.0 |
|
680 | + * @since 1.5.1 Declare function public. |
|
681 | + * |
|
682 | + * @param array $new_instance Values just sent to be saved. |
|
683 | + * @param array $old_instance Previously saved values from database. |
|
684 | + * |
|
685 | + * @return array Updated safe values to be saved. |
|
686 | + */ |
|
687 | + public function update($new_instance, $old_instance) |
|
688 | + { |
|
689 | + //save the widget |
|
690 | + $instance = $old_instance; |
|
691 | + $instance['desc1'] = ($new_instance['desc1']); |
|
692 | + return $instance; |
|
693 | + } |
|
694 | + |
|
695 | + /** |
|
696 | + * Back-end advertise widget settings form. |
|
697 | + * |
|
698 | + * @since 1.0.0 |
|
699 | + * @since 1.5.1 Declare function public. |
|
700 | + * |
|
701 | + * @param array $instance Previously saved values from database. |
|
702 | + * @return string|void |
|
703 | + */ |
|
704 | + public function form($instance) |
|
705 | + { |
|
706 | + //widgetform in backend |
|
707 | + $instance = wp_parse_args((array)$instance, array('title' => '', 't1' => '', 't2' => '', 't3' => '', 'img1' => '', 'desc1' => '')); |
|
708 | + |
|
709 | + $desc1 = ($instance['desc1']); |
|
710 | + ?> |
|
711 | 711 | <p><label |
712 | 712 | for="<?php echo $this->get_field_id('desc1'); ?>"><?php _e('Your Advt code (ex.google adsense, etc.)', 'geodirectory');?> |
713 | 713 | <textarea class="widefat" rows="6" cols="20" id="<?php echo $this->get_field_id('desc1'); ?>" |
@@ -715,65 +715,65 @@ discard block |
||
715 | 715 | </p> |
716 | 716 | |
717 | 717 | <?php |
718 | - } |
|
719 | - } |
|
720 | - |
|
721 | - register_widget('geodiradvtwidget'); |
|
722 | - |
|
723 | - /** |
|
724 | - * GeoDirectory Flickr widget. |
|
725 | - * |
|
726 | - * @since 1.0.0 |
|
727 | - */ |
|
728 | - class GeodirFlickrWidget extends WP_Widget |
|
729 | - { |
|
730 | - |
|
731 | - /** |
|
732 | - * Register the flickr widget with WordPress. |
|
733 | - * |
|
734 | - * @since 1.0.0 |
|
735 | - * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
736 | - */ |
|
737 | - public function __construct() { |
|
738 | - $widget_ops = array('classname' => 'Geo Dir Flickr Photos ', 'description' => __('GD > Flickr Photos', 'geodirectory')); |
|
739 | - parent::__construct( |
|
740 | - 'widget_flickrwidget', // Base ID |
|
741 | - __('GD > Flickr Photos', 'geodirectory'), // Name |
|
742 | - $widget_ops// Args |
|
743 | - ); |
|
744 | - } |
|
745 | - |
|
746 | - /** |
|
747 | - * Front-end display content for flickr widget. |
|
748 | - * |
|
749 | - * @since 1.0.0 |
|
750 | - * @since 1.5.1 Declare function public. |
|
751 | - * |
|
752 | - * @param array $args Widget arguments. |
|
753 | - * @param array $instance Saved values from database. |
|
754 | - */ |
|
755 | - public function widget($args, $instance) |
|
756 | - { |
|
757 | - |
|
758 | - // prints the widget |
|
759 | - extract($args, EXTR_SKIP); |
|
760 | - |
|
761 | - echo $before_widget; |
|
762 | - |
|
763 | - /** This filter is documented in geodirectory_widgets.php */ |
|
764 | - $id = empty($instance['id']) ? ' ' : apply_filters('widget_id', $instance['id']); |
|
765 | - |
|
766 | - /** |
|
767 | - * Filter the widget number. |
|
768 | - * |
|
769 | - * This is used in the flicker widget to show how many images to show. |
|
770 | - * |
|
771 | - * @since 1.0.0 |
|
772 | - * @param string $number The image count. |
|
773 | - */ |
|
774 | - $number = empty($instance['number']) ? ' ' : apply_filters('widget_number', $instance['number']); |
|
775 | - echo $before_title . __('Photo Gallery', 'geodirectory') . $after_title; |
|
776 | - ?> |
|
718 | + } |
|
719 | + } |
|
720 | + |
|
721 | + register_widget('geodiradvtwidget'); |
|
722 | + |
|
723 | + /** |
|
724 | + * GeoDirectory Flickr widget. |
|
725 | + * |
|
726 | + * @since 1.0.0 |
|
727 | + */ |
|
728 | + class GeodirFlickrWidget extends WP_Widget |
|
729 | + { |
|
730 | + |
|
731 | + /** |
|
732 | + * Register the flickr widget with WordPress. |
|
733 | + * |
|
734 | + * @since 1.0.0 |
|
735 | + * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
736 | + */ |
|
737 | + public function __construct() { |
|
738 | + $widget_ops = array('classname' => 'Geo Dir Flickr Photos ', 'description' => __('GD > Flickr Photos', 'geodirectory')); |
|
739 | + parent::__construct( |
|
740 | + 'widget_flickrwidget', // Base ID |
|
741 | + __('GD > Flickr Photos', 'geodirectory'), // Name |
|
742 | + $widget_ops// Args |
|
743 | + ); |
|
744 | + } |
|
745 | + |
|
746 | + /** |
|
747 | + * Front-end display content for flickr widget. |
|
748 | + * |
|
749 | + * @since 1.0.0 |
|
750 | + * @since 1.5.1 Declare function public. |
|
751 | + * |
|
752 | + * @param array $args Widget arguments. |
|
753 | + * @param array $instance Saved values from database. |
|
754 | + */ |
|
755 | + public function widget($args, $instance) |
|
756 | + { |
|
757 | + |
|
758 | + // prints the widget |
|
759 | + extract($args, EXTR_SKIP); |
|
760 | + |
|
761 | + echo $before_widget; |
|
762 | + |
|
763 | + /** This filter is documented in geodirectory_widgets.php */ |
|
764 | + $id = empty($instance['id']) ? ' ' : apply_filters('widget_id', $instance['id']); |
|
765 | + |
|
766 | + /** |
|
767 | + * Filter the widget number. |
|
768 | + * |
|
769 | + * This is used in the flicker widget to show how many images to show. |
|
770 | + * |
|
771 | + * @since 1.0.0 |
|
772 | + * @param string $number The image count. |
|
773 | + */ |
|
774 | + $number = empty($instance['number']) ? ' ' : apply_filters('widget_number', $instance['number']); |
|
775 | + echo $before_title . __('Photo Gallery', 'geodirectory') . $after_title; |
|
776 | + ?> |
|
777 | 777 | |
778 | 778 | <div class="geodir-flickr clearfix"> |
779 | 779 | |
@@ -784,45 +784,45 @@ discard block |
||
784 | 784 | |
785 | 785 | |
786 | 786 | <?php echo $after_widget; |
787 | - } |
|
788 | - |
|
789 | - /** |
|
790 | - * Sanitize flickr widget form values as they are saved. |
|
791 | - * |
|
792 | - * @since 1.0.0 |
|
793 | - * @since 1.5.1 Declare function public. |
|
794 | - * |
|
795 | - * @param array $new_instance Values just sent to be saved. |
|
796 | - * @param array $old_instance Previously saved values from database. |
|
797 | - * |
|
798 | - * @return array Updated safe values to be saved. |
|
799 | - */ |
|
800 | - public function update($new_instance, $old_instance) |
|
801 | - { |
|
802 | - //save the widget |
|
803 | - $instance = $old_instance; |
|
804 | - $instance['id'] = strip_tags($new_instance['id']); |
|
805 | - $instance['number'] = strip_tags($new_instance['number']); |
|
806 | - return $instance; |
|
807 | - } |
|
808 | - |
|
809 | - /** |
|
810 | - * Back-end flickr widget settings form. |
|
811 | - * |
|
812 | - * @since 1.0.0 |
|
813 | - * @since 1.5.1 Declare function public. |
|
814 | - * |
|
815 | - * @param array $instance Previously saved values from database. |
|
816 | - * @return string|void |
|
817 | - */ |
|
818 | - public function form($instance) |
|
819 | - { |
|
820 | - |
|
821 | - //widgetform in backend |
|
822 | - $instance = wp_parse_args((array)$instance, array('title' => '', 'id' => '', 'number' => '')); |
|
823 | - $id = strip_tags($instance['id']); |
|
824 | - $number = strip_tags($instance['number']); |
|
825 | - ?> |
|
787 | + } |
|
788 | + |
|
789 | + /** |
|
790 | + * Sanitize flickr widget form values as they are saved. |
|
791 | + * |
|
792 | + * @since 1.0.0 |
|
793 | + * @since 1.5.1 Declare function public. |
|
794 | + * |
|
795 | + * @param array $new_instance Values just sent to be saved. |
|
796 | + * @param array $old_instance Previously saved values from database. |
|
797 | + * |
|
798 | + * @return array Updated safe values to be saved. |
|
799 | + */ |
|
800 | + public function update($new_instance, $old_instance) |
|
801 | + { |
|
802 | + //save the widget |
|
803 | + $instance = $old_instance; |
|
804 | + $instance['id'] = strip_tags($new_instance['id']); |
|
805 | + $instance['number'] = strip_tags($new_instance['number']); |
|
806 | + return $instance; |
|
807 | + } |
|
808 | + |
|
809 | + /** |
|
810 | + * Back-end flickr widget settings form. |
|
811 | + * |
|
812 | + * @since 1.0.0 |
|
813 | + * @since 1.5.1 Declare function public. |
|
814 | + * |
|
815 | + * @param array $instance Previously saved values from database. |
|
816 | + * @return string|void |
|
817 | + */ |
|
818 | + public function form($instance) |
|
819 | + { |
|
820 | + |
|
821 | + //widgetform in backend |
|
822 | + $instance = wp_parse_args((array)$instance, array('title' => '', 'id' => '', 'number' => '')); |
|
823 | + $id = strip_tags($instance['id']); |
|
824 | + $number = strip_tags($instance['number']); |
|
825 | + ?> |
|
826 | 826 | |
827 | 827 | <p> |
828 | 828 | <label |
@@ -843,99 +843,99 @@ discard block |
||
843 | 843 | </label> |
844 | 844 | </p> |
845 | 845 | <?php |
846 | - } |
|
847 | - } |
|
848 | - |
|
849 | - register_widget('GeodirFlickrWidget'); |
|
850 | - |
|
851 | - /** |
|
852 | - * GeoDirectory Twitter widget. |
|
853 | - * |
|
854 | - * @since 1.0.0 |
|
855 | - */ |
|
856 | - class geodir_twitter extends WP_Widget |
|
857 | - { |
|
858 | - /** |
|
859 | - * Register the Twitter widget with WordPress. |
|
860 | - * |
|
861 | - * @since 1.0.0 |
|
862 | - * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
863 | - */ |
|
864 | - public function __construct() { |
|
865 | - $widget_ops = array('classname' => 'Twitter', 'description' => __('GD > Twitter Feed', 'geodirectory')); |
|
866 | - parent::__construct( |
|
867 | - 'widget_Twidget', // Base ID |
|
868 | - __('GD > Twitter', 'geodirectory'), // Name |
|
869 | - $widget_ops// Args |
|
870 | - ); |
|
871 | - } |
|
872 | - |
|
873 | - |
|
874 | - /** |
|
875 | - * Front-end display content for Twitter widget. |
|
876 | - * |
|
877 | - * @since 1.0.0 |
|
878 | - * @since 1.5.1 Declare function public. |
|
879 | - * |
|
880 | - * @param array $args Widget arguments. |
|
881 | - * @param array $instance Saved values from database. |
|
882 | - */ |
|
883 | - public function widget($args, $instance) |
|
884 | - { |
|
885 | - |
|
886 | - // prints the widget |
|
887 | - |
|
888 | - extract($args, EXTR_SKIP); |
|
889 | - |
|
890 | - /** |
|
891 | - * Filter the twitter widget description text. |
|
892 | - * |
|
893 | - * @since 1.0.0 |
|
894 | - * @param string $desc1 The widget description text. |
|
895 | - */ |
|
896 | - $desc1 = empty($instance['gd_tw_desc1']) ? ' ' : apply_filters('gd_tw_widget_desc1', $instance['gd_tw_desc1']); |
|
897 | - echo $before_widget; |
|
898 | - if ($desc1 <> "") { |
|
899 | - echo $desc1; |
|
900 | - } |
|
901 | - echo $after_widget; |
|
902 | - } |
|
903 | - |
|
904 | - /** |
|
905 | - * Sanitize twitter widget form values as they are saved. |
|
906 | - * |
|
907 | - * @since 1.0.0 |
|
908 | - * @since 1.5.1 Declare function public. |
|
909 | - * |
|
910 | - * @param array $new_instance Values just sent to be saved. |
|
911 | - * @param array $old_instance Previously saved values from database. |
|
912 | - * |
|
913 | - * @return array Updated safe values to be saved. |
|
914 | - */ |
|
915 | - public function update($new_instance, $old_instance) |
|
916 | - { |
|
917 | - //save the widget |
|
918 | - $instance = $old_instance; |
|
919 | - $instance['gd_tw_desc1'] = ($new_instance['gd_tw_desc1']); |
|
920 | - return $instance; |
|
921 | - } |
|
922 | - |
|
923 | - /** |
|
924 | - * Back-end twitter widget settings form. |
|
925 | - * |
|
926 | - * @since 1.0.0 |
|
927 | - * @since 1.5.1 Declare function public. |
|
928 | - * |
|
929 | - * @param array $instance Previously saved values from database. |
|
930 | - * @return string|void |
|
931 | - */ |
|
932 | - public function form($instance) |
|
933 | - { |
|
934 | - //widgetform in backend |
|
935 | - $instance = wp_parse_args((array)$instance, array('title' => '', 't1' => '', 't2' => '', 't3' => '', 'img1' => '', 'gd_tw_desc1' => '')); |
|
936 | - |
|
937 | - $desc1 = ($instance['gd_tw_desc1']); |
|
938 | - ?> |
|
846 | + } |
|
847 | + } |
|
848 | + |
|
849 | + register_widget('GeodirFlickrWidget'); |
|
850 | + |
|
851 | + /** |
|
852 | + * GeoDirectory Twitter widget. |
|
853 | + * |
|
854 | + * @since 1.0.0 |
|
855 | + */ |
|
856 | + class geodir_twitter extends WP_Widget |
|
857 | + { |
|
858 | + /** |
|
859 | + * Register the Twitter widget with WordPress. |
|
860 | + * |
|
861 | + * @since 1.0.0 |
|
862 | + * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
863 | + */ |
|
864 | + public function __construct() { |
|
865 | + $widget_ops = array('classname' => 'Twitter', 'description' => __('GD > Twitter Feed', 'geodirectory')); |
|
866 | + parent::__construct( |
|
867 | + 'widget_Twidget', // Base ID |
|
868 | + __('GD > Twitter', 'geodirectory'), // Name |
|
869 | + $widget_ops// Args |
|
870 | + ); |
|
871 | + } |
|
872 | + |
|
873 | + |
|
874 | + /** |
|
875 | + * Front-end display content for Twitter widget. |
|
876 | + * |
|
877 | + * @since 1.0.0 |
|
878 | + * @since 1.5.1 Declare function public. |
|
879 | + * |
|
880 | + * @param array $args Widget arguments. |
|
881 | + * @param array $instance Saved values from database. |
|
882 | + */ |
|
883 | + public function widget($args, $instance) |
|
884 | + { |
|
885 | + |
|
886 | + // prints the widget |
|
887 | + |
|
888 | + extract($args, EXTR_SKIP); |
|
889 | + |
|
890 | + /** |
|
891 | + * Filter the twitter widget description text. |
|
892 | + * |
|
893 | + * @since 1.0.0 |
|
894 | + * @param string $desc1 The widget description text. |
|
895 | + */ |
|
896 | + $desc1 = empty($instance['gd_tw_desc1']) ? ' ' : apply_filters('gd_tw_widget_desc1', $instance['gd_tw_desc1']); |
|
897 | + echo $before_widget; |
|
898 | + if ($desc1 <> "") { |
|
899 | + echo $desc1; |
|
900 | + } |
|
901 | + echo $after_widget; |
|
902 | + } |
|
903 | + |
|
904 | + /** |
|
905 | + * Sanitize twitter widget form values as they are saved. |
|
906 | + * |
|
907 | + * @since 1.0.0 |
|
908 | + * @since 1.5.1 Declare function public. |
|
909 | + * |
|
910 | + * @param array $new_instance Values just sent to be saved. |
|
911 | + * @param array $old_instance Previously saved values from database. |
|
912 | + * |
|
913 | + * @return array Updated safe values to be saved. |
|
914 | + */ |
|
915 | + public function update($new_instance, $old_instance) |
|
916 | + { |
|
917 | + //save the widget |
|
918 | + $instance = $old_instance; |
|
919 | + $instance['gd_tw_desc1'] = ($new_instance['gd_tw_desc1']); |
|
920 | + return $instance; |
|
921 | + } |
|
922 | + |
|
923 | + /** |
|
924 | + * Back-end twitter widget settings form. |
|
925 | + * |
|
926 | + * @since 1.0.0 |
|
927 | + * @since 1.5.1 Declare function public. |
|
928 | + * |
|
929 | + * @param array $instance Previously saved values from database. |
|
930 | + * @return string|void |
|
931 | + */ |
|
932 | + public function form($instance) |
|
933 | + { |
|
934 | + //widgetform in backend |
|
935 | + $instance = wp_parse_args((array)$instance, array('title' => '', 't1' => '', 't2' => '', 't3' => '', 'img1' => '', 'gd_tw_desc1' => '')); |
|
936 | + |
|
937 | + $desc1 = ($instance['gd_tw_desc1']); |
|
938 | + ?> |
|
939 | 939 | <p><label |
940 | 940 | for="<?php echo $this->get_field_id('gd_tw_desc1'); ?>"><?php _e('Your twitter code', 'geodirectory');?> |
941 | 941 | <textarea class="widefat" rows="6" cols="20" |
@@ -944,179 +944,179 @@ discard block |
||
944 | 944 | </p> |
945 | 945 | |
946 | 946 | <?php |
947 | - } |
|
948 | - } |
|
949 | - |
|
950 | - register_widget('geodir_twitter'); |
|
951 | - |
|
952 | - /** |
|
953 | - * GeoDirectory Advanced Search widget. |
|
954 | - * |
|
955 | - * @since 1.0.0 |
|
956 | - */ |
|
957 | - class geodir_advance_search_widget extends WP_Widget |
|
958 | - { |
|
959 | - /** |
|
960 | - * Register the advanced search widget with WordPress. |
|
961 | - * |
|
962 | - * @since 1.0.0 |
|
963 | - * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
964 | - */ |
|
965 | - public function __construct() { |
|
966 | - $widget_ops = array('classname' => 'geodir_advance_search_widget', 'description' => __('GD > Search', 'geodirectory'),'post_type'=>''); |
|
967 | - parent::__construct( |
|
968 | - 'geodir_advance_search', // Base ID |
|
969 | - __('GD > Search', 'geodirectory'), // Name |
|
970 | - $widget_ops// Args |
|
971 | - ); |
|
972 | - } |
|
973 | - |
|
974 | - |
|
975 | - /** |
|
976 | - * Front-end display content for advanced search widget. |
|
977 | - * |
|
978 | - * @since 1.0.0 |
|
979 | - * @since 1.5.1 Declare function public. |
|
980 | - * |
|
981 | - * @param array $args Widget arguments. |
|
982 | - * @param array $instance Saved values from database. |
|
983 | - */ |
|
984 | - public function widget($args, $instance) |
|
985 | - { |
|
986 | - /** |
|
987 | - * Filter the search widget arguments. |
|
988 | - * |
|
989 | - * @since 1.5.7 |
|
990 | - * @param array $args The widget arguments. |
|
991 | - * @param array $instance The widget instance. |
|
992 | - */ |
|
993 | - $args = apply_filters('widget_geodir_advance_search_args',$args,$instance); |
|
994 | - |
|
995 | - // prints the widget |
|
996 | - extract($args, EXTR_SKIP); |
|
997 | - |
|
998 | - if(isset($post_type) && $post_type){ |
|
999 | - geodir_get_search_post_type($post_type);// set the post type |
|
1000 | - }else{ |
|
1001 | - geodir_get_search_post_type();// set the post type |
|
1002 | - } |
|
1003 | - |
|
1004 | - echo $before_widget; |
|
1005 | - |
|
1006 | - /** This filter is documented in geodirectory_widgets.php */ |
|
1007 | - $title = empty($instance['title']) ? __('Search', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory')); |
|
1008 | - |
|
1009 | - geodir_get_template_part('listing', 'filter-form'); |
|
1010 | - |
|
1011 | - echo $after_widget; |
|
1012 | - |
|
1013 | - // after outputing the search reset the CPT |
|
1014 | - global $geodir_search_post_type; |
|
1015 | - $geodir_search_post_type = ''; |
|
1016 | - } |
|
1017 | - |
|
1018 | - /** |
|
1019 | - * Sanitize advanced search widget form values as they are saved. |
|
1020 | - * |
|
1021 | - * @since 1.0.0 |
|
1022 | - * @since 1.5.1 Declare function public. |
|
1023 | - * |
|
1024 | - * @param array $new_instance Values just sent to be saved. |
|
1025 | - * @param array $old_instance Previously saved values from database. |
|
1026 | - * |
|
1027 | - * @return array Updated safe values to be saved. |
|
1028 | - */ |
|
1029 | - public function update($new_instance, $old_instance) |
|
1030 | - { |
|
1031 | - //save the widget |
|
1032 | - //Nothing to save |
|
1033 | - return isset($instance) ? $instance : array(); |
|
1034 | - } |
|
1035 | - |
|
1036 | - /** |
|
1037 | - * Back-end advanced search widget settings form. |
|
1038 | - * |
|
1039 | - * @since 1.0.0 |
|
1040 | - * @since 1.5.1 Declare function public. |
|
1041 | - * |
|
1042 | - * @param array $instance Previously saved values from database. |
|
1043 | - * @return string|void |
|
1044 | - */ |
|
1045 | - public function form($instance) |
|
1046 | - { |
|
1047 | - //widgetform in backend |
|
1048 | - echo __("This is a search widget to show advance search for gedodirectory listings.", 'geodirectory'); |
|
1049 | - } |
|
1050 | - } |
|
1051 | - |
|
1052 | - register_widget('geodir_advance_search_widget'); |
|
1053 | - |
|
1054 | - |
|
1055 | - /** |
|
1056 | - * Contains all functions for popular widget. |
|
1057 | - * |
|
1058 | - * @since 1.0.0 |
|
1059 | - * @package GeoDirectory |
|
1060 | - */ |
|
1061 | - include_once('geodirectory-widgets/geodirectory_popular_widget.php'); |
|
1062 | - /** |
|
1063 | - * Contains all functions for listing slider widget. |
|
1064 | - * |
|
1065 | - * @since 1.0.0 |
|
1066 | - * @package GeoDirectory |
|
1067 | - */ |
|
1068 | - include_once('geodirectory-widgets/geodirectory_listing_slider_widget.php'); |
|
1069 | - /** |
|
1070 | - * Contains all functions for home map widget. |
|
1071 | - * |
|
1072 | - * @since 1.0.0 |
|
1073 | - * @package GeoDirectory |
|
1074 | - */ |
|
1075 | - include_once('geodirectory-widgets/home_map_widget.php'); |
|
1076 | - /** |
|
1077 | - * Contains all functions for listing map widget. |
|
1078 | - * |
|
1079 | - * @since 1.0.0 |
|
1080 | - * @package GeoDirectory |
|
1081 | - */ |
|
1082 | - include_once('geodirectory-widgets/listing_map_widget.php'); |
|
1083 | - /** |
|
1084 | - * Contains all functions for reviews widget. |
|
1085 | - * |
|
1086 | - * @since 1.0.0 |
|
1087 | - * @package GeoDirectory |
|
1088 | - */ |
|
1089 | - include_once('geodirectory-widgets/geodirectory_reviews_widget.php'); |
|
1090 | - /** |
|
1091 | - * Contains all functions for related listing widget. |
|
1092 | - * |
|
1093 | - * @since 1.0.0 |
|
1094 | - * @package GeoDirectory |
|
1095 | - */ |
|
1096 | - include_once('geodirectory-widgets/geodirectory_related_listing_widget.php'); |
|
1097 | - /** |
|
1098 | - * Contains all functions for bestof widget. |
|
1099 | - * |
|
1100 | - * @since 1.0.0 |
|
1101 | - * @package GeoDirectory |
|
1102 | - */ |
|
1103 | - include_once('geodirectory-widgets/geodirectory_bestof_widget.php'); |
|
947 | + } |
|
948 | + } |
|
949 | + |
|
950 | + register_widget('geodir_twitter'); |
|
951 | + |
|
952 | + /** |
|
953 | + * GeoDirectory Advanced Search widget. |
|
954 | + * |
|
955 | + * @since 1.0.0 |
|
956 | + */ |
|
957 | + class geodir_advance_search_widget extends WP_Widget |
|
958 | + { |
|
959 | + /** |
|
960 | + * Register the advanced search widget with WordPress. |
|
961 | + * |
|
962 | + * @since 1.0.0 |
|
963 | + * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
964 | + */ |
|
965 | + public function __construct() { |
|
966 | + $widget_ops = array('classname' => 'geodir_advance_search_widget', 'description' => __('GD > Search', 'geodirectory'),'post_type'=>''); |
|
967 | + parent::__construct( |
|
968 | + 'geodir_advance_search', // Base ID |
|
969 | + __('GD > Search', 'geodirectory'), // Name |
|
970 | + $widget_ops// Args |
|
971 | + ); |
|
972 | + } |
|
973 | + |
|
974 | + |
|
975 | + /** |
|
976 | + * Front-end display content for advanced search widget. |
|
977 | + * |
|
978 | + * @since 1.0.0 |
|
979 | + * @since 1.5.1 Declare function public. |
|
980 | + * |
|
981 | + * @param array $args Widget arguments. |
|
982 | + * @param array $instance Saved values from database. |
|
983 | + */ |
|
984 | + public function widget($args, $instance) |
|
985 | + { |
|
986 | + /** |
|
987 | + * Filter the search widget arguments. |
|
988 | + * |
|
989 | + * @since 1.5.7 |
|
990 | + * @param array $args The widget arguments. |
|
991 | + * @param array $instance The widget instance. |
|
992 | + */ |
|
993 | + $args = apply_filters('widget_geodir_advance_search_args',$args,$instance); |
|
994 | + |
|
995 | + // prints the widget |
|
996 | + extract($args, EXTR_SKIP); |
|
997 | + |
|
998 | + if(isset($post_type) && $post_type){ |
|
999 | + geodir_get_search_post_type($post_type);// set the post type |
|
1000 | + }else{ |
|
1001 | + geodir_get_search_post_type();// set the post type |
|
1002 | + } |
|
1003 | + |
|
1004 | + echo $before_widget; |
|
1005 | + |
|
1006 | + /** This filter is documented in geodirectory_widgets.php */ |
|
1007 | + $title = empty($instance['title']) ? __('Search', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory')); |
|
1008 | + |
|
1009 | + geodir_get_template_part('listing', 'filter-form'); |
|
1010 | + |
|
1011 | + echo $after_widget; |
|
1012 | + |
|
1013 | + // after outputing the search reset the CPT |
|
1014 | + global $geodir_search_post_type; |
|
1015 | + $geodir_search_post_type = ''; |
|
1016 | + } |
|
1017 | + |
|
1018 | + /** |
|
1019 | + * Sanitize advanced search widget form values as they are saved. |
|
1020 | + * |
|
1021 | + * @since 1.0.0 |
|
1022 | + * @since 1.5.1 Declare function public. |
|
1023 | + * |
|
1024 | + * @param array $new_instance Values just sent to be saved. |
|
1025 | + * @param array $old_instance Previously saved values from database. |
|
1026 | + * |
|
1027 | + * @return array Updated safe values to be saved. |
|
1028 | + */ |
|
1029 | + public function update($new_instance, $old_instance) |
|
1030 | + { |
|
1031 | + //save the widget |
|
1032 | + //Nothing to save |
|
1033 | + return isset($instance) ? $instance : array(); |
|
1034 | + } |
|
1035 | + |
|
1036 | + /** |
|
1037 | + * Back-end advanced search widget settings form. |
|
1038 | + * |
|
1039 | + * @since 1.0.0 |
|
1040 | + * @since 1.5.1 Declare function public. |
|
1041 | + * |
|
1042 | + * @param array $instance Previously saved values from database. |
|
1043 | + * @return string|void |
|
1044 | + */ |
|
1045 | + public function form($instance) |
|
1046 | + { |
|
1047 | + //widgetform in backend |
|
1048 | + echo __("This is a search widget to show advance search for gedodirectory listings.", 'geodirectory'); |
|
1049 | + } |
|
1050 | + } |
|
1051 | + |
|
1052 | + register_widget('geodir_advance_search_widget'); |
|
1053 | + |
|
1054 | + |
|
1055 | + /** |
|
1056 | + * Contains all functions for popular widget. |
|
1057 | + * |
|
1058 | + * @since 1.0.0 |
|
1059 | + * @package GeoDirectory |
|
1060 | + */ |
|
1061 | + include_once('geodirectory-widgets/geodirectory_popular_widget.php'); |
|
1062 | + /** |
|
1063 | + * Contains all functions for listing slider widget. |
|
1064 | + * |
|
1065 | + * @since 1.0.0 |
|
1066 | + * @package GeoDirectory |
|
1067 | + */ |
|
1068 | + include_once('geodirectory-widgets/geodirectory_listing_slider_widget.php'); |
|
1069 | + /** |
|
1070 | + * Contains all functions for home map widget. |
|
1071 | + * |
|
1072 | + * @since 1.0.0 |
|
1073 | + * @package GeoDirectory |
|
1074 | + */ |
|
1075 | + include_once('geodirectory-widgets/home_map_widget.php'); |
|
1076 | + /** |
|
1077 | + * Contains all functions for listing map widget. |
|
1078 | + * |
|
1079 | + * @since 1.0.0 |
|
1080 | + * @package GeoDirectory |
|
1081 | + */ |
|
1082 | + include_once('geodirectory-widgets/listing_map_widget.php'); |
|
1083 | + /** |
|
1084 | + * Contains all functions for reviews widget. |
|
1085 | + * |
|
1086 | + * @since 1.0.0 |
|
1087 | + * @package GeoDirectory |
|
1088 | + */ |
|
1089 | + include_once('geodirectory-widgets/geodirectory_reviews_widget.php'); |
|
1090 | + /** |
|
1091 | + * Contains all functions for related listing widget. |
|
1092 | + * |
|
1093 | + * @since 1.0.0 |
|
1094 | + * @package GeoDirectory |
|
1095 | + */ |
|
1096 | + include_once('geodirectory-widgets/geodirectory_related_listing_widget.php'); |
|
1097 | + /** |
|
1098 | + * Contains all functions for bestof widget. |
|
1099 | + * |
|
1100 | + * @since 1.0.0 |
|
1101 | + * @package GeoDirectory |
|
1102 | + */ |
|
1103 | + include_once('geodirectory-widgets/geodirectory_bestof_widget.php'); |
|
1104 | + /** |
|
1105 | + * Contains all functions for cpt categories widget. |
|
1106 | + * |
|
1107 | + * @since 1.5.4 |
|
1108 | + * @package GeoDirectory |
|
1109 | + */ |
|
1110 | + include_once('geodirectory-widgets/geodirectory_cpt_categories_widget.php'); |
|
1104 | 1111 | /** |
1105 | - * Contains all functions for cpt categories widget. |
|
1106 | - * |
|
1107 | - * @since 1.5.4 |
|
1108 | - * @package GeoDirectory |
|
1109 | - */ |
|
1110 | - include_once('geodirectory-widgets/geodirectory_cpt_categories_widget.php'); |
|
1111 | - /** |
|
1112 | - * Contains all functions for features widget. |
|
1113 | - * |
|
1114 | - * @since 1.5.6 |
|
1115 | - * @package GeoDirectory |
|
1116 | - * @todo make the image field recurring |
|
1117 | - */ |
|
1118 | - include_once('geodirectory-widgets/geodirectory_features_widget.php'); |
|
1119 | - } |
|
1112 | + * Contains all functions for features widget. |
|
1113 | + * |
|
1114 | + * @since 1.5.6 |
|
1115 | + * @package GeoDirectory |
|
1116 | + * @todo make the image field recurring |
|
1117 | + */ |
|
1118 | + include_once('geodirectory-widgets/geodirectory_features_widget.php'); |
|
1119 | + } |
|
1120 | 1120 | |
1121 | 1121 | } |
1122 | 1122 |
@@ -301,7 +301,7 @@ discard block |
||
301 | 301 | public function form($instance) |
302 | 302 | { |
303 | 303 | //widgetform in backend |
304 | - $instance = wp_parse_args((array)$instance, array('title' => '', 't1' => '', 't2' => '', 't3' => '', 'img1' => '', 'desc1' => '')); |
|
304 | + $instance = wp_parse_args((array) $instance, array('title' => '', 't1' => '', 't2' => '', 't3' => '', 'img1' => '', 'desc1' => '')); |
|
305 | 305 | $title = strip_tags($instance['title']); |
306 | 306 | |
307 | 307 | ?> |
@@ -373,7 +373,7 @@ discard block |
||
373 | 373 | ?> |
374 | 374 | |
375 | 375 | <a href="http://twitter.com/share" |
376 | - class="twitter-share-button"><?php _e('Tweet', 'geodirectory');?></a> |
|
376 | + class="twitter-share-button"><?php _e('Tweet', 'geodirectory'); ?></a> |
|
377 | 377 | |
378 | 378 | <script type="text/javascript" src="//platform.twitter.com/widgets.js"></script> |
379 | 379 | |
@@ -443,7 +443,7 @@ discard block |
||
443 | 443 | public function form($instance) |
444 | 444 | { |
445 | 445 | //widgetform in backend |
446 | - $instance = wp_parse_args((array)$instance, array('title' => '')); |
|
446 | + $instance = wp_parse_args((array) $instance, array('title' => '')); |
|
447 | 447 | $title = strip_tags($instance['title']); |
448 | 448 | ?> |
449 | 449 | <p>No settings for this widget</p> |
@@ -515,11 +515,11 @@ discard block |
||
515 | 515 | echo $before_widget; |
516 | 516 | ?> |
517 | 517 | |
518 | - <?php echo $before_title . $title; ?> <a href="<?php if ($id) { |
|
519 | - echo 'http://feeds2.feedburner.com/' . $id; |
|
518 | + <?php echo $before_title.$title; ?> <a href="<?php if ($id) { |
|
519 | + echo 'http://feeds2.feedburner.com/'.$id; |
|
520 | 520 | } else { |
521 | 521 | bloginfo('rss_url'); |
522 | - } ?>"><i class="fa fa-rss-square"></i> </a><?php echo $after_title;?> |
|
522 | + } ?>"><i class="fa fa-rss-square"></i> </a><?php echo $after_title; ?> |
|
523 | 523 | |
524 | 524 | <?php if ($text <> "") { ?> |
525 | 525 | |
@@ -584,7 +584,7 @@ discard block |
||
584 | 584 | public function form($instance) |
585 | 585 | { |
586 | 586 | //widgetform in backend |
587 | - $instance = wp_parse_args((array)$instance, array('title' => '', 'id' => '', 'advt1' => '', 'text' => '', 'twitter' => '', 'facebook' => '', 'digg' => '', 'myspace' => '')); |
|
587 | + $instance = wp_parse_args((array) $instance, array('title' => '', 'id' => '', 'advt1' => '', 'text' => '', 'twitter' => '', 'facebook' => '', 'digg' => '', 'myspace' => '')); |
|
588 | 588 | |
589 | 589 | $id = strip_tags($instance['id']); |
590 | 590 | |
@@ -596,19 +596,19 @@ discard block |
||
596 | 596 | |
597 | 597 | ?> |
598 | 598 | <p><label |
599 | - for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title', 'geodirectory');?>: |
|
599 | + for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title', 'geodirectory'); ?>: |
|
600 | 600 | <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" |
601 | 601 | name="<?php echo $this->get_field_name('title'); ?>" type="text" |
602 | 602 | value="<?php echo esc_attr($title); ?>"/></label></p> |
603 | 603 | |
604 | 604 | <p><label |
605 | - for="<?php echo $this->get_field_id('id'); ?>"><?php _e('Feedburner ID (ex :- geotheme)', 'geodirectory');?> |
|
605 | + for="<?php echo $this->get_field_id('id'); ?>"><?php _e('Feedburner ID (ex :- geotheme)', 'geodirectory'); ?> |
|
606 | 606 | : <input class="widefat" id="<?php echo $this->get_field_id('id'); ?>" |
607 | 607 | name="<?php echo $this->get_field_name('id'); ?>" type="text" |
608 | 608 | value="<?php echo esc_attr($id); ?>"/></label></p> |
609 | 609 | |
610 | 610 | <p><label |
611 | - for="<?php echo $this->get_field_id('text'); ?>"><?php _e('Short Description', 'geodirectory');?> |
|
611 | + for="<?php echo $this->get_field_id('text'); ?>"><?php _e('Short Description', 'geodirectory'); ?> |
|
612 | 612 | <textarea class="widefat" rows="6" cols="20" id="<?php echo $this->get_field_id('text'); ?>" |
613 | 613 | name="<?php echo $this->get_field_name('text'); ?>"><?php echo esc_attr($text); ?></textarea></label> |
614 | 614 | </p> |
@@ -704,12 +704,12 @@ discard block |
||
704 | 704 | public function form($instance) |
705 | 705 | { |
706 | 706 | //widgetform in backend |
707 | - $instance = wp_parse_args((array)$instance, array('title' => '', 't1' => '', 't2' => '', 't3' => '', 'img1' => '', 'desc1' => '')); |
|
707 | + $instance = wp_parse_args((array) $instance, array('title' => '', 't1' => '', 't2' => '', 't3' => '', 'img1' => '', 'desc1' => '')); |
|
708 | 708 | |
709 | 709 | $desc1 = ($instance['desc1']); |
710 | 710 | ?> |
711 | 711 | <p><label |
712 | - for="<?php echo $this->get_field_id('desc1'); ?>"><?php _e('Your Advt code (ex.google adsense, etc.)', 'geodirectory');?> |
|
712 | + for="<?php echo $this->get_field_id('desc1'); ?>"><?php _e('Your Advt code (ex.google adsense, etc.)', 'geodirectory'); ?> |
|
713 | 713 | <textarea class="widefat" rows="6" cols="20" id="<?php echo $this->get_field_id('desc1'); ?>" |
714 | 714 | name="<?php echo $this->get_field_name('desc1'); ?>"><?php echo esc_attr($desc1); ?></textarea></label> |
715 | 715 | </p> |
@@ -772,7 +772,7 @@ discard block |
||
772 | 772 | * @param string $number The image count. |
773 | 773 | */ |
774 | 774 | $number = empty($instance['number']) ? ' ' : apply_filters('widget_number', $instance['number']); |
775 | - echo $before_title . __('Photo Gallery', 'geodirectory') . $after_title; |
|
775 | + echo $before_title.__('Photo Gallery', 'geodirectory').$after_title; |
|
776 | 776 | ?> |
777 | 777 | |
778 | 778 | <div class="geodir-flickr clearfix"> |
@@ -819,14 +819,14 @@ discard block |
||
819 | 819 | { |
820 | 820 | |
821 | 821 | //widgetform in backend |
822 | - $instance = wp_parse_args((array)$instance, array('title' => '', 'id' => '', 'number' => '')); |
|
822 | + $instance = wp_parse_args((array) $instance, array('title' => '', 'id' => '', 'number' => '')); |
|
823 | 823 | $id = strip_tags($instance['id']); |
824 | 824 | $number = strip_tags($instance['number']); |
825 | 825 | ?> |
826 | 826 | |
827 | 827 | <p> |
828 | 828 | <label |
829 | - for="<?php echo $this->get_field_id('id'); ?>"><?php _e('Flickr ID', 'geodirectory');?> |
|
829 | + for="<?php echo $this->get_field_id('id'); ?>"><?php _e('Flickr ID', 'geodirectory'); ?> |
|
830 | 830 | (<a href="http://www.idgettr.com">idGettr</a>): |
831 | 831 | <input class="widefat" id="<?php echo $this->get_field_id('id'); ?>" |
832 | 832 | name="<?php echo $this->get_field_name('id'); ?>" type="text" |
@@ -836,7 +836,7 @@ discard block |
||
836 | 836 | |
837 | 837 | <p> |
838 | 838 | <label |
839 | - for="<?php echo $this->get_field_id('number'); ?>"><?php _e('Number of photos:', 'geodirectory');?> |
|
839 | + for="<?php echo $this->get_field_id('number'); ?>"><?php _e('Number of photos:', 'geodirectory'); ?> |
|
840 | 840 | <input class="widefat" id="<?php echo $this->get_field_id('number'); ?>" |
841 | 841 | name="<?php echo $this->get_field_name('number'); ?>" type="text" |
842 | 842 | value="<?php echo esc_attr($number); ?>"/> |
@@ -932,12 +932,12 @@ discard block |
||
932 | 932 | public function form($instance) |
933 | 933 | { |
934 | 934 | //widgetform in backend |
935 | - $instance = wp_parse_args((array)$instance, array('title' => '', 't1' => '', 't2' => '', 't3' => '', 'img1' => '', 'gd_tw_desc1' => '')); |
|
935 | + $instance = wp_parse_args((array) $instance, array('title' => '', 't1' => '', 't2' => '', 't3' => '', 'img1' => '', 'gd_tw_desc1' => '')); |
|
936 | 936 | |
937 | 937 | $desc1 = ($instance['gd_tw_desc1']); |
938 | 938 | ?> |
939 | 939 | <p><label |
940 | - for="<?php echo $this->get_field_id('gd_tw_desc1'); ?>"><?php _e('Your twitter code', 'geodirectory');?> |
|
940 | + for="<?php echo $this->get_field_id('gd_tw_desc1'); ?>"><?php _e('Your twitter code', 'geodirectory'); ?> |
|
941 | 941 | <textarea class="widefat" rows="6" cols="20" |
942 | 942 | id="<?php echo $this->get_field_id('gd_tw_desc1'); ?>" |
943 | 943 | name="<?php echo $this->get_field_name('gd_tw_desc1'); ?>"><?php echo esc_attr($desc1); ?></textarea></label> |
@@ -963,7 +963,7 @@ discard block |
||
963 | 963 | * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
964 | 964 | */ |
965 | 965 | public function __construct() { |
966 | - $widget_ops = array('classname' => 'geodir_advance_search_widget', 'description' => __('GD > Search', 'geodirectory'),'post_type'=>''); |
|
966 | + $widget_ops = array('classname' => 'geodir_advance_search_widget', 'description' => __('GD > Search', 'geodirectory'), 'post_type'=>''); |
|
967 | 967 | parent::__construct( |
968 | 968 | 'geodir_advance_search', // Base ID |
969 | 969 | __('GD > Search', 'geodirectory'), // Name |
@@ -990,15 +990,15 @@ discard block |
||
990 | 990 | * @param array $args The widget arguments. |
991 | 991 | * @param array $instance The widget instance. |
992 | 992 | */ |
993 | - $args = apply_filters('widget_geodir_advance_search_args',$args,$instance); |
|
993 | + $args = apply_filters('widget_geodir_advance_search_args', $args, $instance); |
|
994 | 994 | |
995 | 995 | // prints the widget |
996 | 996 | extract($args, EXTR_SKIP); |
997 | 997 | |
998 | - if(isset($post_type) && $post_type){ |
|
999 | - geodir_get_search_post_type($post_type);// set the post type |
|
1000 | - }else{ |
|
1001 | - geodir_get_search_post_type();// set the post type |
|
998 | + if (isset($post_type) && $post_type) { |
|
999 | + geodir_get_search_post_type($post_type); // set the post type |
|
1000 | + } else { |
|
1001 | + geodir_get_search_post_type(); // set the post type |
|
1002 | 1002 | } |
1003 | 1003 | |
1004 | 1004 | echo $before_widget; |
@@ -997,7 +997,7 @@ |
||
997 | 997 | |
998 | 998 | if(isset($post_type) && $post_type){ |
999 | 999 | geodir_get_search_post_type($post_type);// set the post type |
1000 | - }else{ |
|
1000 | + } else{ |
|
1001 | 1001 | geodir_get_search_post_type();// set the post type |
1002 | 1002 | } |
1003 | 1003 |
@@ -17,26 +17,26 @@ discard block |
||
17 | 17 | function gd_compat_php_genesis() |
18 | 18 | { |
19 | 19 | // REPLACE GENESIS BREADCRUMBS WITH GD BREADCRUMBS |
20 | - remove_action('geodir_detail_before_main_content', 'geodir_breadcrumb', 20); |
|
21 | - remove_action('geodir_listings_before_main_content', 'geodir_breadcrumb', 20); |
|
22 | - remove_action('geodir_author_before_main_content', 'geodir_breadcrumb', 20); |
|
23 | - remove_action('geodir_search_before_main_content', 'geodir_breadcrumb', 20); |
|
24 | - remove_action('geodir_home_before_main_content', 'geodir_breadcrumb', 20); |
|
25 | - remove_action('geodir_location_before_main_content', 'geodir_breadcrumb', 20); |
|
20 | + remove_action('geodir_detail_before_main_content', 'geodir_breadcrumb', 20); |
|
21 | + remove_action('geodir_listings_before_main_content', 'geodir_breadcrumb', 20); |
|
22 | + remove_action('geodir_author_before_main_content', 'geodir_breadcrumb', 20); |
|
23 | + remove_action('geodir_search_before_main_content', 'geodir_breadcrumb', 20); |
|
24 | + remove_action('geodir_home_before_main_content', 'geodir_breadcrumb', 20); |
|
25 | + remove_action('geodir_location_before_main_content', 'geodir_breadcrumb', 20); |
|
26 | 26 | |
27 | 27 | |
28 | - // make top section wide |
|
29 | - remove_action('geodir_home_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10); |
|
30 | - remove_action('geodir_location_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10); |
|
31 | - remove_action('geodir_author_before_main_content', 'geodir_action_geodir_sidebar_author_top', 10); |
|
32 | - remove_action('geodir_search_before_main_content', 'geodir_action_geodir_sidebar_search_top', 10); |
|
33 | - remove_action('geodir_detail_before_main_content', 'geodir_action_geodir_sidebar_detail_top', 10); |
|
34 | - remove_action('geodir_listings_before_main_content', 'geodir_action_geodir_sidebar_listings_top', 10); |
|
28 | + // make top section wide |
|
29 | + remove_action('geodir_home_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10); |
|
30 | + remove_action('geodir_location_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10); |
|
31 | + remove_action('geodir_author_before_main_content', 'geodir_action_geodir_sidebar_author_top', 10); |
|
32 | + remove_action('geodir_search_before_main_content', 'geodir_action_geodir_sidebar_search_top', 10); |
|
33 | + remove_action('geodir_detail_before_main_content', 'geodir_action_geodir_sidebar_detail_top', 10); |
|
34 | + remove_action('geodir_listings_before_main_content', 'geodir_action_geodir_sidebar_listings_top', 10); |
|
35 | 35 | |
36 | - // REMOVE PAGE TITLES |
|
37 | - remove_action('geodir_listings_page_title', 'geodir_action_listings_title', 10); |
|
38 | - remove_action('geodir_search_page_title', 'geodir_action_search_page_title', 10); |
|
39 | - remove_action('geodir_author_page_title', 'geodir_action_author_page_title', 10); |
|
36 | + // REMOVE PAGE TITLES |
|
37 | + remove_action('geodir_listings_page_title', 'geodir_action_listings_title', 10); |
|
38 | + remove_action('geodir_search_page_title', 'geodir_action_search_page_title', 10); |
|
39 | + remove_action('geodir_author_page_title', 'geodir_action_author_page_title', 10); |
|
40 | 40 | |
41 | 41 | |
42 | 42 | } |
@@ -53,25 +53,25 @@ discard block |
||
53 | 53 | function gd_genesis_compat_left_sidebars() |
54 | 54 | { |
55 | 55 | |
56 | - if (is_page_geodir_home()) { |
|
57 | - remove_action('geodir_home_sidebar_left', 'geodir_action_home_sidebar_left', 10); |
|
58 | - add_action('geodir_wrapper_close', 'geodir_action_home_sidebar_left', 11); |
|
59 | - } elseif (geodir_is_page('location')) { |
|
60 | - remove_action('geodir_location_sidebar_left', 'geodir_action_home_sidebar_left', 10); |
|
61 | - add_action('geodir_wrapper_close', 'geodir_action_home_sidebar_left', 11); |
|
62 | - } elseif (geodir_is_page('listing')) { |
|
63 | - remove_action('geodir_listings_sidebar_left', 'geodir_action_listings_sidebar_left', 10); |
|
64 | - add_action('geodir_wrapper_close', 'geodir_action_listings_sidebar_left', 11); |
|
65 | - } elseif (geodir_is_page('detail') && get_option('geodir_detail_sidebar_left_section')) { |
|
66 | - //remove_action( 'geodir_detail_sidebar', 'geodir_action_details_sidebar', 10 ); |
|
67 | - //add_action( 'geodir_wrapper_close', 'geodir_action_details_sidebar', 11 ); |
|
68 | - } elseif (geodir_is_page('search')) { |
|
69 | - remove_action('geodir_search_sidebar_left', 'geodir_action_search_sidebar_left', 10); |
|
70 | - add_action('geodir_wrapper_close', 'geodir_action_search_sidebar_left', 11); |
|
71 | - } elseif (geodir_is_page('author')) { |
|
72 | - remove_action('geodir_author_sidebar_left', 'geodir_action_author_sidebar_left', 10); |
|
73 | - add_action('geodir_wrapper_close', 'geodir_action_author_sidebar_left', 11); |
|
74 | - } |
|
56 | + if (is_page_geodir_home()) { |
|
57 | + remove_action('geodir_home_sidebar_left', 'geodir_action_home_sidebar_left', 10); |
|
58 | + add_action('geodir_wrapper_close', 'geodir_action_home_sidebar_left', 11); |
|
59 | + } elseif (geodir_is_page('location')) { |
|
60 | + remove_action('geodir_location_sidebar_left', 'geodir_action_home_sidebar_left', 10); |
|
61 | + add_action('geodir_wrapper_close', 'geodir_action_home_sidebar_left', 11); |
|
62 | + } elseif (geodir_is_page('listing')) { |
|
63 | + remove_action('geodir_listings_sidebar_left', 'geodir_action_listings_sidebar_left', 10); |
|
64 | + add_action('geodir_wrapper_close', 'geodir_action_listings_sidebar_left', 11); |
|
65 | + } elseif (geodir_is_page('detail') && get_option('geodir_detail_sidebar_left_section')) { |
|
66 | + //remove_action( 'geodir_detail_sidebar', 'geodir_action_details_sidebar', 10 ); |
|
67 | + //add_action( 'geodir_wrapper_close', 'geodir_action_details_sidebar', 11 ); |
|
68 | + } elseif (geodir_is_page('search')) { |
|
69 | + remove_action('geodir_search_sidebar_left', 'geodir_action_search_sidebar_left', 10); |
|
70 | + add_action('geodir_wrapper_close', 'geodir_action_search_sidebar_left', 11); |
|
71 | + } elseif (geodir_is_page('author')) { |
|
72 | + remove_action('geodir_author_sidebar_left', 'geodir_action_author_sidebar_left', 10); |
|
73 | + add_action('geodir_wrapper_close', 'geodir_action_author_sidebar_left', 11); |
|
74 | + } |
|
75 | 75 | |
76 | 76 | |
77 | 77 | } |
@@ -88,65 +88,65 @@ discard block |
||
88 | 88 | */ |
89 | 89 | function geodir_set_body_scs($classes) |
90 | 90 | { |
91 | - $remove_class = false; |
|
92 | - $new_class = ''; |
|
93 | - if (is_page_geodir_home() || geodir_is_page('location')) { |
|
94 | - $remove_class = true; |
|
95 | - if (get_option('geodir_show_home_left_section')) { |
|
96 | - $new_class .= 'sidebar-'; |
|
97 | - } |
|
98 | - if (get_option('geodir_show_home_contant_section')) { |
|
99 | - $new_class .= 'content'; |
|
100 | - } |
|
101 | - if (get_option('geodir_show_home_right_section')) { |
|
102 | - $new_class .= '-sidebar'; |
|
103 | - } |
|
104 | - } elseif (geodir_is_page('listing')) { |
|
105 | - $remove_class = true; |
|
106 | - if (get_option('geodir_show_listing_left_section')) { |
|
107 | - $new_class .= 'sidebar-'; |
|
108 | - } |
|
109 | - $new_class .= 'content'; |
|
110 | - if (get_option('geodir_show_listing_right_section')) { |
|
111 | - $new_class .= '-sidebar'; |
|
112 | - } |
|
113 | - } elseif (geodir_is_page('detail')) { |
|
114 | - $remove_class = true; |
|
115 | - if (get_option('geodir_detail_sidebar_left_section')) { |
|
116 | - $new_class .= 'sidebar-content gd-details-sidebar-left'; |
|
117 | - } else { |
|
118 | - $new_class .= 'content-sidebar'; |
|
119 | - } |
|
120 | - } elseif (geodir_is_page('search')) { |
|
121 | - $remove_class = true; |
|
122 | - if (get_option('geodir_show_search_left_section')) { |
|
123 | - $new_class .= 'sidebar-'; |
|
124 | - } |
|
125 | - $new_class .= 'content'; |
|
126 | - if (get_option('geodir_show_search_right_section')) { |
|
127 | - $new_class .= '-sidebar'; |
|
128 | - } |
|
129 | - } elseif (geodir_is_page('author')) { |
|
130 | - $remove_class = true; |
|
131 | - if (get_option('geodir_show_author_left_section')) { |
|
132 | - $new_class .= 'sidebar-'; |
|
133 | - } |
|
134 | - $new_class .= 'content'; |
|
135 | - if (get_option('geodir_show_author_right_section')) { |
|
136 | - $new_class .= '-sidebar'; |
|
137 | - } |
|
138 | - } elseif (geodir_is_page('add-listing')) { |
|
139 | - $remove_class = true; |
|
140 | - $new_class .= 'content-sidebar'; |
|
141 | - } |
|
142 | - |
|
143 | - if ($remove_class) { |
|
144 | - $classes = array_diff($classes, array('content-sidebar', 'sidebar-content', 'content-sidebar-sidebar', 'sidebar-sidebar-content', 'sidebar-content-sidebar', 'full-width-content')); |
|
145 | - //str_replace(array('content-sidebar','sidebar-content','content-sidebar-sidebar','sidebar-sidebar-content','sidebar-content-sidebar','full-width-content'),array('','','','','',''),$classes); |
|
146 | - $classes[] = $new_class; |
|
147 | - } |
|
148 | - |
|
149 | - return $classes; |
|
91 | + $remove_class = false; |
|
92 | + $new_class = ''; |
|
93 | + if (is_page_geodir_home() || geodir_is_page('location')) { |
|
94 | + $remove_class = true; |
|
95 | + if (get_option('geodir_show_home_left_section')) { |
|
96 | + $new_class .= 'sidebar-'; |
|
97 | + } |
|
98 | + if (get_option('geodir_show_home_contant_section')) { |
|
99 | + $new_class .= 'content'; |
|
100 | + } |
|
101 | + if (get_option('geodir_show_home_right_section')) { |
|
102 | + $new_class .= '-sidebar'; |
|
103 | + } |
|
104 | + } elseif (geodir_is_page('listing')) { |
|
105 | + $remove_class = true; |
|
106 | + if (get_option('geodir_show_listing_left_section')) { |
|
107 | + $new_class .= 'sidebar-'; |
|
108 | + } |
|
109 | + $new_class .= 'content'; |
|
110 | + if (get_option('geodir_show_listing_right_section')) { |
|
111 | + $new_class .= '-sidebar'; |
|
112 | + } |
|
113 | + } elseif (geodir_is_page('detail')) { |
|
114 | + $remove_class = true; |
|
115 | + if (get_option('geodir_detail_sidebar_left_section')) { |
|
116 | + $new_class .= 'sidebar-content gd-details-sidebar-left'; |
|
117 | + } else { |
|
118 | + $new_class .= 'content-sidebar'; |
|
119 | + } |
|
120 | + } elseif (geodir_is_page('search')) { |
|
121 | + $remove_class = true; |
|
122 | + if (get_option('geodir_show_search_left_section')) { |
|
123 | + $new_class .= 'sidebar-'; |
|
124 | + } |
|
125 | + $new_class .= 'content'; |
|
126 | + if (get_option('geodir_show_search_right_section')) { |
|
127 | + $new_class .= '-sidebar'; |
|
128 | + } |
|
129 | + } elseif (geodir_is_page('author')) { |
|
130 | + $remove_class = true; |
|
131 | + if (get_option('geodir_show_author_left_section')) { |
|
132 | + $new_class .= 'sidebar-'; |
|
133 | + } |
|
134 | + $new_class .= 'content'; |
|
135 | + if (get_option('geodir_show_author_right_section')) { |
|
136 | + $new_class .= '-sidebar'; |
|
137 | + } |
|
138 | + } elseif (geodir_is_page('add-listing')) { |
|
139 | + $remove_class = true; |
|
140 | + $new_class .= 'content-sidebar'; |
|
141 | + } |
|
142 | + |
|
143 | + if ($remove_class) { |
|
144 | + $classes = array_diff($classes, array('content-sidebar', 'sidebar-content', 'content-sidebar-sidebar', 'sidebar-sidebar-content', 'sidebar-content-sidebar', 'full-width-content')); |
|
145 | + //str_replace(array('content-sidebar','sidebar-content','content-sidebar-sidebar','sidebar-sidebar-content','sidebar-content-sidebar','full-width-content'),array('','','','','',''),$classes); |
|
146 | + $classes[] = $new_class; |
|
147 | + } |
|
148 | + |
|
149 | + return $classes; |
|
150 | 150 | |
151 | 151 | } |
152 | 152 | |
@@ -160,17 +160,17 @@ discard block |
||
160 | 160 | function gd_genesis_compat_add_top_section_back() |
161 | 161 | { |
162 | 162 | |
163 | - if (is_page_geodir_home() || geodir_is_page('location')) { |
|
164 | - geodir_action_geodir_sidebar_home_top(); |
|
165 | - } elseif (geodir_is_page('listing')) { |
|
166 | - geodir_action_geodir_sidebar_listings_top(); |
|
167 | - } elseif (geodir_is_page('detail')) { |
|
168 | - geodir_action_geodir_sidebar_detail_top(); |
|
169 | - } elseif (geodir_is_page('search')) { |
|
170 | - geodir_action_geodir_sidebar_search_top(); |
|
171 | - } elseif (geodir_is_page('author')) { |
|
172 | - geodir_action_geodir_sidebar_author_top(); |
|
173 | - } |
|
163 | + if (is_page_geodir_home() || geodir_is_page('location')) { |
|
164 | + geodir_action_geodir_sidebar_home_top(); |
|
165 | + } elseif (geodir_is_page('listing')) { |
|
166 | + geodir_action_geodir_sidebar_listings_top(); |
|
167 | + } elseif (geodir_is_page('detail')) { |
|
168 | + geodir_action_geodir_sidebar_detail_top(); |
|
169 | + } elseif (geodir_is_page('search')) { |
|
170 | + geodir_action_geodir_sidebar_search_top(); |
|
171 | + } elseif (geodir_is_page('author')) { |
|
172 | + geodir_action_geodir_sidebar_author_top(); |
|
173 | + } |
|
174 | 174 | |
175 | 175 | |
176 | 176 | } |
@@ -183,12 +183,12 @@ discard block |
||
183 | 183 | */ |
184 | 184 | function geodir_replace_breadcrumb() |
185 | 185 | { |
186 | - if (is_front_page() && geodir_is_page('home') && !geodir_is_page('login')) { |
|
187 | - } else { |
|
188 | - echo '<div class="geodir-breadcrumb-bar"><div class="wrap">'; |
|
189 | - geodir_breadcrumb(); |
|
190 | - echo '</div></div>'; |
|
191 | - } |
|
186 | + if (is_front_page() && geodir_is_page('home') && !geodir_is_page('login')) { |
|
187 | + } else { |
|
188 | + echo '<div class="geodir-breadcrumb-bar"><div class="wrap">'; |
|
189 | + geodir_breadcrumb(); |
|
190 | + echo '</div></div>'; |
|
191 | + } |
|
192 | 192 | } |
193 | 193 | |
194 | 194 | // Force Full Width on signup page |
@@ -201,9 +201,9 @@ discard block |
||
201 | 201 | */ |
202 | 202 | function geodir_genesis_meta() |
203 | 203 | { |
204 | - if (geodir_is_page('login')) { |
|
205 | - add_filter('genesis_pre_get_option_site_layout', '__genesis_return_full_width_content'); |
|
206 | - } |
|
204 | + if (geodir_is_page('login')) { |
|
205 | + add_filter('genesis_pre_get_option_site_layout', '__genesis_return_full_width_content'); |
|
206 | + } |
|
207 | 207 | } |
208 | 208 | |
209 | 209 | add_action('geodir_add_listing_page_title', 'geodir_add_listing_page_title_genesis_before', 8); |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | function geodir_add_listing_page_title_genesis_before() |
217 | 217 | { |
218 | 218 | |
219 | - echo "<div class='entry' >"; |
|
219 | + echo "<div class='entry' >"; |
|
220 | 220 | } |
221 | 221 | |
222 | 222 | |
@@ -230,7 +230,7 @@ discard block |
||
230 | 230 | function geodir_add_listing_form_genesis_after() |
231 | 231 | { |
232 | 232 | |
233 | - echo "</div>"; |
|
233 | + echo "</div>"; |
|
234 | 234 | } |
235 | 235 | |
236 | 236 | |
@@ -249,38 +249,38 @@ discard block |
||
249 | 249 | { |
250 | 250 | |
251 | 251 | |
252 | - $title = ''; |
|
253 | - $subtitle = ''; |
|
254 | - |
|
255 | - if (geodir_is_page('listing')) { |
|
256 | - echo '<div class="wrap gd-title-wrap">'; |
|
257 | - geodir_action_listings_title(); |
|
258 | - echo '</div>'; |
|
259 | - } |
|
260 | - |
|
261 | - if (geodir_is_page('add-listing')) { |
|
262 | - echo '<div class="wrap gd-title-wrap">'; |
|
263 | - geodir_action_add_listing_page_title(); |
|
264 | - echo '</div>'; |
|
265 | - } |
|
266 | - |
|
267 | - if (geodir_is_page('author')) { |
|
268 | - echo '<div class="wrap gd-title-wrap">'; |
|
269 | - geodir_action_author_page_title(); |
|
270 | - echo '</div>'; |
|
271 | - } |
|
272 | - |
|
273 | - if (geodir_is_page('detail') || geodir_is_page('preview')) { |
|
274 | - echo '<div class="wrap gd-title-wrap">'; |
|
275 | - echo get_the_title(); |
|
276 | - echo '</div>'; |
|
277 | - } |
|
278 | - |
|
279 | - if (geodir_is_page('search')) { |
|
280 | - echo '<div class="wrap gd-title-wrap">'; |
|
281 | - geodir_action_search_page_title(); |
|
282 | - echo '</div>'; |
|
283 | - } |
|
252 | + $title = ''; |
|
253 | + $subtitle = ''; |
|
254 | + |
|
255 | + if (geodir_is_page('listing')) { |
|
256 | + echo '<div class="wrap gd-title-wrap">'; |
|
257 | + geodir_action_listings_title(); |
|
258 | + echo '</div>'; |
|
259 | + } |
|
260 | + |
|
261 | + if (geodir_is_page('add-listing')) { |
|
262 | + echo '<div class="wrap gd-title-wrap">'; |
|
263 | + geodir_action_add_listing_page_title(); |
|
264 | + echo '</div>'; |
|
265 | + } |
|
266 | + |
|
267 | + if (geodir_is_page('author')) { |
|
268 | + echo '<div class="wrap gd-title-wrap">'; |
|
269 | + geodir_action_author_page_title(); |
|
270 | + echo '</div>'; |
|
271 | + } |
|
272 | + |
|
273 | + if (geodir_is_page('detail') || geodir_is_page('preview')) { |
|
274 | + echo '<div class="wrap gd-title-wrap">'; |
|
275 | + echo get_the_title(); |
|
276 | + echo '</div>'; |
|
277 | + } |
|
278 | + |
|
279 | + if (geodir_is_page('search')) { |
|
280 | + echo '<div class="wrap gd-title-wrap">'; |
|
281 | + geodir_action_search_page_title(); |
|
282 | + echo '</div>'; |
|
283 | + } |
|
284 | 284 | } |
285 | 285 | |
286 | 286 | |
@@ -293,8 +293,8 @@ discard block |
||
293 | 293 | */ |
294 | 294 | function gd_genesis_listing_page_title_bar() |
295 | 295 | { |
296 | - geodir_action_listings_title(); |
|
297 | - //geodir_action_listings_description(); |
|
296 | + geodir_action_listings_title(); |
|
297 | + //geodir_action_listings_description(); |
|
298 | 298 | } |
299 | 299 | |
300 | 300 | |
@@ -307,19 +307,19 @@ discard block |
||
307 | 307 | */ |
308 | 308 | function gd_compat_php_genesis_geo_1280_fix() |
309 | 309 | { |
310 | - if (function_exists('geo1280_search_bar')) { |
|
311 | - remove_action('genesis_after_header', 'geo1280_search_bar', 20); |
|
312 | - add_action('genesis_after_header', 'geo1280_search_bar_fix', 4); |
|
310 | + if (function_exists('geo1280_search_bar')) { |
|
311 | + remove_action('genesis_after_header', 'geo1280_search_bar', 20); |
|
312 | + add_action('genesis_after_header', 'geo1280_search_bar_fix', 4); |
|
313 | 313 | |
314 | - // |
|
314 | + // |
|
315 | 315 | |
316 | - remove_action('genesis_after_header', 'geodir_replace_breadcrumb', 20); |
|
317 | - remove_action('genesis_before_content_sidebar_wrap', 'geodir_replace_breadcrumb', 20); |
|
318 | - add_action('geodir_wrapper_open', 'geodir_replace_breadcrumb', 105); |
|
316 | + remove_action('genesis_after_header', 'geodir_replace_breadcrumb', 20); |
|
317 | + remove_action('genesis_before_content_sidebar_wrap', 'geodir_replace_breadcrumb', 20); |
|
318 | + add_action('geodir_wrapper_open', 'geodir_replace_breadcrumb', 105); |
|
319 | 319 | |
320 | - remove_action('genesis_before_content_sidebar_wrap', 'geo1280_page_title', 10); |
|
321 | - add_action('geodir_wrapper_open', 'geo1280_page_title', 101); |
|
322 | - } |
|
320 | + remove_action('genesis_before_content_sidebar_wrap', 'geo1280_page_title', 10); |
|
321 | + add_action('geodir_wrapper_open', 'geo1280_page_title', 101); |
|
322 | + } |
|
323 | 323 | } |
324 | 324 | |
325 | 325 | /** |
@@ -331,11 +331,11 @@ discard block |
||
331 | 331 | function geo1280_search_bar_fix() |
332 | 332 | { |
333 | 333 | |
334 | - echo '<div class="geo1280-placeholder"></div>'; |
|
335 | - if (is_active_sidebar('search-bar')) { |
|
336 | - genesis_widget_area('search-bar', array( |
|
337 | - 'before' => '<div class="search-bar widget-area"><div class="wrap">', |
|
338 | - 'after' => '</div></div>', |
|
339 | - )); |
|
340 | - } |
|
334 | + echo '<div class="geo1280-placeholder"></div>'; |
|
335 | + if (is_active_sidebar('search-bar')) { |
|
336 | + genesis_widget_area('search-bar', array( |
|
337 | + 'before' => '<div class="search-bar widget-area"><div class="wrap">', |
|
338 | + 'after' => '</div></div>', |
|
339 | + )); |
|
340 | + } |
|
341 | 341 | } |
@@ -12,27 +12,27 @@ |
||
12 | 12 | <div class="clearfix"> |
13 | 13 | <div id="geodir_content"> |
14 | 14 | <?php |
15 | - /** This action is documented in geodirectory-templates/geodir-home.php */ |
|
16 | - do_action('geodir_add_page_content', 'before', 'info-page'); |
|
17 | - global $information; |
|
18 | - echo '<h5 class="geodir_information">'; |
|
19 | - echo $information; |
|
20 | - echo '</h5>'; |
|
21 | - /** This action is documented in geodirectory-templates/geodir-home.php */ |
|
22 | - do_action('geodir_add_page_content', 'after', 'info-page'); |
|
23 | - ?> |
|
15 | + /** This action is documented in geodirectory-templates/geodir-home.php */ |
|
16 | + do_action('geodir_add_page_content', 'before', 'info-page'); |
|
17 | + global $information; |
|
18 | + echo '<h5 class="geodir_information">'; |
|
19 | + echo $information; |
|
20 | + echo '</h5>'; |
|
21 | + /** This action is documented in geodirectory-templates/geodir-home.php */ |
|
22 | + do_action('geodir_add_page_content', 'after', 'info-page'); |
|
23 | + ?> |
|
24 | 24 | </div> |
25 | 25 | <!-- geodir_content ends here--> |
26 | 26 | <div id="gd-sidebar-wrapper"> |
27 | 27 | <div class="geodir-sidebar-main"> |
28 | 28 | <div class="geodir-gd-sidebar"> |
29 | 29 | <?php |
30 | - /** |
|
31 | - * Calls the author sidebar. |
|
32 | - * |
|
33 | - * @since 1.6.11 |
|
34 | - */ |
|
35 | - dynamic_sidebar('geodir_author_right_sidebar'); ?> |
|
30 | + /** |
|
31 | + * Calls the author sidebar. |
|
32 | + * |
|
33 | + * @since 1.6.11 |
|
34 | + */ |
|
35 | + dynamic_sidebar('geodir_author_right_sidebar'); ?> |
|
36 | 36 | </div> |
37 | 37 | </div> |
38 | 38 | </div> |
@@ -223,6 +223,9 @@ |
||
223 | 223 | * @param filter - the property to filter on |
224 | 224 | * @param limit - the number of items to get |
225 | 225 | * @param realtime - if the realtime api should be used |
226 | + * @param string $metric |
|
227 | + * @param string $startDate |
|
228 | + * @param string $endDate |
|
226 | 229 | * @return the specific metrics in array form |
227 | 230 | **/ |
228 | 231 | function getMetrics($metric, $startDate, $endDate, $dimensions = false, $sort = false, $filter = false, $limit = false, $realtime = false) |
@@ -30,135 +30,135 @@ discard block |
||
30 | 30 | // Include the Google Service API |
31 | 31 | include_once('google-api-php-client/src/Google/autoload.php'); |
32 | 32 | |
33 | - $this->client = new Google_Client(); |
|
34 | - $this->client->setApprovalPrompt("force"); |
|
35 | - $this->client->setAccessType('offline'); |
|
36 | - $this->client->setClientId(GEODIR_GA_CLIENTID); |
|
37 | - $this->client->setClientSecret(GEODIR_GA_CLIENTSECRET); |
|
38 | - $this->client->setRedirectUri(GEODIR_GA_REDIRECT); |
|
33 | + $this->client = new Google_Client(); |
|
34 | + $this->client->setApprovalPrompt("force"); |
|
35 | + $this->client->setAccessType('offline'); |
|
36 | + $this->client->setClientId(GEODIR_GA_CLIENTID); |
|
37 | + $this->client->setClientSecret(GEODIR_GA_CLIENTSECRET); |
|
38 | + $this->client->setRedirectUri(GEODIR_GA_REDIRECT); |
|
39 | 39 | |
40 | - $this->client->setScopes(array("https://www.googleapis.com/auth/analytics")); |
|
41 | - |
|
42 | - try { |
|
43 | - $this->analytics = new Google_Service_Analytics($this->client); |
|
44 | - } |
|
45 | - catch (Google_ServiceException $e) |
|
46 | - { |
|
47 | - print '(cas:48) There was an Analytics API service error ' . $e->getCode() . ':' . $e->getMessage(); |
|
40 | + $this->client->setScopes(array("https://www.googleapis.com/auth/analytics")); |
|
41 | + |
|
42 | + try { |
|
43 | + $this->analytics = new Google_Service_Analytics($this->client); |
|
44 | + } |
|
45 | + catch (Google_ServiceException $e) |
|
46 | + { |
|
47 | + print '(cas:48) There was an Analytics API service error ' . $e->getCode() . ':' . $e->getMessage(); |
|
48 | 48 | return false; |
49 | - } |
|
49 | + } |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | function checkLogin() |
53 | 53 | { |
54 | - $ga_google_authtoken = get_option('geodir_ga_auth_token'); |
|
54 | + $ga_google_authtoken = get_option('geodir_ga_auth_token'); |
|
55 | 55 | |
56 | - if (!empty($ga_google_authtoken)) |
|
57 | - { |
|
56 | + if (!empty($ga_google_authtoken)) |
|
57 | + { |
|
58 | 58 | try |
59 | - { |
|
60 | - $this->client->setAccessToken($ga_google_authtoken); |
|
59 | + { |
|
60 | + $this->client->setAccessToken($ga_google_authtoken); |
|
61 | 61 | } |
62 | 62 | catch( Google_AuthException $e ) |
63 | - { |
|
64 | - print '(cas:72) GeoDirectory was unable to authenticate you with |
|
63 | + { |
|
64 | + print '(cas:72) GeoDirectory was unable to authenticate you with |
|
65 | 65 | Google using the Auth Token you pasted into the input box on the previous step. <br><br> |
66 | 66 | This could mean either you pasted the token wrong, or the time/date on your server is wrong, |
67 | 67 | or an SSL issue preventing Google from Authenticating. <br><br> |
68 | 68 | <br><br><strong>Tech Info </strong> ' . $e->getCode() . ':' . $e->getMessage(); |
69 | 69 | |
70 | - return false; |
|
71 | - } |
|
72 | - } |
|
73 | - else |
|
74 | - { |
|
75 | - $authCode = get_option('geodir_ga_auth_code'); |
|
76 | - |
|
77 | - if (empty($authCode)) return false; |
|
78 | - |
|
79 | - try |
|
80 | - { |
|
81 | - $accessToken = $this->client->authenticate($authCode); |
|
82 | - } |
|
83 | - catch( Exception $e ) |
|
84 | - { |
|
85 | - print '(cas:72) GeoDirectory was unable to authenticate you with |
|
70 | + return false; |
|
71 | + } |
|
72 | + } |
|
73 | + else |
|
74 | + { |
|
75 | + $authCode = get_option('geodir_ga_auth_code'); |
|
76 | + |
|
77 | + if (empty($authCode)) return false; |
|
78 | + |
|
79 | + try |
|
80 | + { |
|
81 | + $accessToken = $this->client->authenticate($authCode); |
|
82 | + } |
|
83 | + catch( Exception $e ) |
|
84 | + { |
|
85 | + print '(cas:72) GeoDirectory was unable to authenticate you with |
|
86 | 86 | Google using the Auth Token you pasted into the input box on the previous step. <br><br> |
87 | 87 | This could mean either you pasted the token wrong, or the time/date on your server is wrong, |
88 | 88 | or an SSL issue preventing Google from Authenticating. <br><br> |
89 | 89 | <br><br><strong>Tech Info </strong> ' . $e->getCode() . ':' . $e->getMessage(); |
90 | 90 | |
91 | - return false; |
|
92 | - } |
|
93 | - |
|
94 | - if($accessToken) |
|
95 | - { |
|
96 | - $this->client->setAccessToken($accessToken); |
|
97 | - update_option('geodir_ga_auth_token', $accessToken); |
|
98 | - } |
|
99 | - else |
|
100 | - { |
|
101 | - return false; |
|
102 | - } |
|
103 | - } |
|
104 | - |
|
105 | - $this->token = $this->client->getAccessToken(); |
|
106 | - return true; |
|
91 | + return false; |
|
92 | + } |
|
93 | + |
|
94 | + if($accessToken) |
|
95 | + { |
|
96 | + $this->client->setAccessToken($accessToken); |
|
97 | + update_option('geodir_ga_auth_token', $accessToken); |
|
98 | + } |
|
99 | + else |
|
100 | + { |
|
101 | + return false; |
|
102 | + } |
|
103 | + } |
|
104 | + |
|
105 | + $this->token = $this->client->getAccessToken(); |
|
106 | + return true; |
|
107 | 107 | } |
108 | 108 | |
109 | 109 | function deauthorize() |
110 | 110 | { |
111 | - update_option('geodir_ga_auth_code', ''); |
|
112 | - update_option('geodir_ga_auth_token', ''); |
|
111 | + update_option('geodir_ga_auth_code', ''); |
|
112 | + update_option('geodir_ga_auth_token', ''); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | function getSingleProfile() |
116 | 116 | { |
117 | - $webproperty_id = get_option('geodir_ga_account_id'); |
|
118 | - list($pre, $account_id, $post) = explode('-',$webproperty_id); |
|
119 | - |
|
120 | - if (empty($webproperty_id)) return false; |
|
121 | - |
|
122 | - try { |
|
123 | - $profiles = $this->analytics->management_profiles->listManagementProfiles($account_id, $webproperty_id); |
|
124 | - } |
|
125 | - catch (Google_ServiceException $e) |
|
126 | - { |
|
127 | - print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage(); |
|
128 | - return false; |
|
129 | - } |
|
130 | - |
|
131 | - $profile_id = $profiles->items[0]->id; |
|
132 | - if (empty($profile_id)) return false; |
|
133 | - |
|
134 | - $account_array = array(); |
|
135 | - array_push($account_array, array('id'=>$profile_id, 'ga:webPropertyId'=>$webproperty_id)); |
|
136 | - return $account_array; |
|
117 | + $webproperty_id = get_option('geodir_ga_account_id'); |
|
118 | + list($pre, $account_id, $post) = explode('-',$webproperty_id); |
|
119 | + |
|
120 | + if (empty($webproperty_id)) return false; |
|
121 | + |
|
122 | + try { |
|
123 | + $profiles = $this->analytics->management_profiles->listManagementProfiles($account_id, $webproperty_id); |
|
124 | + } |
|
125 | + catch (Google_ServiceException $e) |
|
126 | + { |
|
127 | + print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage(); |
|
128 | + return false; |
|
129 | + } |
|
130 | + |
|
131 | + $profile_id = $profiles->items[0]->id; |
|
132 | + if (empty($profile_id)) return false; |
|
133 | + |
|
134 | + $account_array = array(); |
|
135 | + array_push($account_array, array('id'=>$profile_id, 'ga:webPropertyId'=>$webproperty_id)); |
|
136 | + return $account_array; |
|
137 | 137 | } |
138 | 138 | |
139 | - function getAllProfiles() |
|
140 | - { |
|
141 | - $profile_array = array(); |
|
139 | + function getAllProfiles() |
|
140 | + { |
|
141 | + $profile_array = array(); |
|
142 | 142 | |
143 | - try { |
|
144 | - $profiles = $this->analytics->management_webproperties->listManagementWebproperties('~all'); |
|
145 | - } |
|
146 | - catch (Google_ServiceException $e) |
|
147 | - { |
|
148 | - print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage(); |
|
149 | - } |
|
150 | - |
|
151 | - |
|
152 | - if( !empty( $profiles->items ) ) |
|
153 | - { |
|
154 | - foreach( $profiles->items as $profile ) |
|
155 | - { |
|
156 | - $profile_array[ $profile->id ] = str_replace('http://','',$profile->name ); |
|
157 | - } |
|
158 | - } |
|
159 | - |
|
160 | - return $profile_array; |
|
161 | - } |
|
143 | + try { |
|
144 | + $profiles = $this->analytics->management_webproperties->listManagementWebproperties('~all'); |
|
145 | + } |
|
146 | + catch (Google_ServiceException $e) |
|
147 | + { |
|
148 | + print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage(); |
|
149 | + } |
|
150 | + |
|
151 | + |
|
152 | + if( !empty( $profiles->items ) ) |
|
153 | + { |
|
154 | + foreach( $profiles->items as $profile ) |
|
155 | + { |
|
156 | + $profile_array[ $profile->id ] = str_replace('http://','',$profile->name ); |
|
157 | + } |
|
158 | + } |
|
159 | + |
|
160 | + return $profile_array; |
|
161 | + } |
|
162 | 162 | |
163 | 163 | function getAnalyticsAccounts() |
164 | 164 | { |
@@ -241,13 +241,13 @@ discard block |
||
241 | 241 | $params['max-results'] = $limit; |
242 | 242 | } |
243 | 243 | |
244 | - // Just incase, the ga: is still used in the account id, strip it out to prevent it breaking |
|
245 | - $filtered_id = str_replace( 'ga:', '', $this->accountId ); |
|
244 | + // Just incase, the ga: is still used in the account id, strip it out to prevent it breaking |
|
245 | + $filtered_id = str_replace( 'ga:', '', $this->accountId ); |
|
246 | 246 | |
247 | - if(!$filtered_id){ |
|
248 | - echo 'Error - Account ID is blank'; |
|
249 | - return false; |
|
250 | - } |
|
247 | + if(!$filtered_id){ |
|
248 | + echo 'Error - Account ID is blank'; |
|
249 | + return false; |
|
250 | + } |
|
251 | 251 | |
252 | 252 | if($realtime){ |
253 | 253 | return $analytics->data_realtime->get( |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | } |
45 | 45 | catch (Google_ServiceException $e) |
46 | 46 | { |
47 | - print '(cas:48) There was an Analytics API service error ' . $e->getCode() . ':' . $e->getMessage(); |
|
47 | + print '(cas:48) There was an Analytics API service error '.$e->getCode().':'.$e->getMessage(); |
|
48 | 48 | return false; |
49 | 49 | } |
50 | 50 | } |
@@ -59,13 +59,13 @@ discard block |
||
59 | 59 | { |
60 | 60 | $this->client->setAccessToken($ga_google_authtoken); |
61 | 61 | } |
62 | - catch( Google_AuthException $e ) |
|
62 | + catch (Google_AuthException $e) |
|
63 | 63 | { |
64 | 64 | print '(cas:72) GeoDirectory was unable to authenticate you with |
65 | 65 | Google using the Auth Token you pasted into the input box on the previous step. <br><br> |
66 | 66 | This could mean either you pasted the token wrong, or the time/date on your server is wrong, |
67 | 67 | or an SSL issue preventing Google from Authenticating. <br><br> |
68 | - <br><br><strong>Tech Info </strong> ' . $e->getCode() . ':' . $e->getMessage(); |
|
68 | + <br><br><strong>Tech Info </strong> ' . $e->getCode().':'.$e->getMessage(); |
|
69 | 69 | |
70 | 70 | return false; |
71 | 71 | } |
@@ -80,18 +80,18 @@ discard block |
||
80 | 80 | { |
81 | 81 | $accessToken = $this->client->authenticate($authCode); |
82 | 82 | } |
83 | - catch( Exception $e ) |
|
83 | + catch (Exception $e) |
|
84 | 84 | { |
85 | 85 | print '(cas:72) GeoDirectory was unable to authenticate you with |
86 | 86 | Google using the Auth Token you pasted into the input box on the previous step. <br><br> |
87 | 87 | This could mean either you pasted the token wrong, or the time/date on your server is wrong, |
88 | 88 | or an SSL issue preventing Google from Authenticating. <br><br> |
89 | - <br><br><strong>Tech Info </strong> ' . $e->getCode() . ':' . $e->getMessage(); |
|
89 | + <br><br><strong>Tech Info </strong> ' . $e->getCode().':'.$e->getMessage(); |
|
90 | 90 | |
91 | 91 | return false; |
92 | 92 | } |
93 | 93 | |
94 | - if($accessToken) |
|
94 | + if ($accessToken) |
|
95 | 95 | { |
96 | 96 | $this->client->setAccessToken($accessToken); |
97 | 97 | update_option('geodir_ga_auth_token', $accessToken); |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | } |
103 | 103 | } |
104 | 104 | |
105 | - $this->token = $this->client->getAccessToken(); |
|
105 | + $this->token = $this->client->getAccessToken(); |
|
106 | 106 | return true; |
107 | 107 | } |
108 | 108 | |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | function getSingleProfile() |
116 | 116 | { |
117 | 117 | $webproperty_id = get_option('geodir_ga_account_id'); |
118 | - list($pre, $account_id, $post) = explode('-',$webproperty_id); |
|
118 | + list($pre, $account_id, $post) = explode('-', $webproperty_id); |
|
119 | 119 | |
120 | 120 | if (empty($webproperty_id)) return false; |
121 | 121 | |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | } |
125 | 125 | catch (Google_ServiceException $e) |
126 | 126 | { |
127 | - print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage(); |
|
127 | + print 'There was an Analytics API service error '.$e->getCode().': '.$e->getMessage(); |
|
128 | 128 | return false; |
129 | 129 | } |
130 | 130 | |
@@ -145,15 +145,15 @@ discard block |
||
145 | 145 | } |
146 | 146 | catch (Google_ServiceException $e) |
147 | 147 | { |
148 | - print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage(); |
|
148 | + print 'There was an Analytics API service error '.$e->getCode().': '.$e->getMessage(); |
|
149 | 149 | } |
150 | 150 | |
151 | 151 | |
152 | - if( !empty( $profiles->items ) ) |
|
152 | + if (!empty($profiles->items)) |
|
153 | 153 | { |
154 | - foreach( $profiles->items as $profile ) |
|
154 | + foreach ($profiles->items as $profile) |
|
155 | 155 | { |
156 | - $profile_array[ $profile->id ] = str_replace('http://','',$profile->name ); |
|
156 | + $profile_array[$profile->id] = str_replace('http://', '', $profile->name); |
|
157 | 157 | } |
158 | 158 | } |
159 | 159 | |
@@ -242,20 +242,20 @@ discard block |
||
242 | 242 | } |
243 | 243 | |
244 | 244 | // Just incase, the ga: is still used in the account id, strip it out to prevent it breaking |
245 | - $filtered_id = str_replace( 'ga:', '', $this->accountId ); |
|
245 | + $filtered_id = str_replace('ga:', '', $this->accountId); |
|
246 | 246 | |
247 | - if(!$filtered_id){ |
|
247 | + if (!$filtered_id) { |
|
248 | 248 | echo 'Error - Account ID is blank'; |
249 | 249 | return false; |
250 | 250 | } |
251 | 251 | |
252 | - if($realtime){ |
|
252 | + if ($realtime) { |
|
253 | 253 | return $analytics->data_realtime->get( |
254 | 254 | 'ga:'.$filtered_id, |
255 | 255 | $metric, |
256 | 256 | $params |
257 | 257 | ); |
258 | - }else{ |
|
258 | + } else { |
|
259 | 259 | return $analytics->data_ga->get( |
260 | 260 | 'ga:'.$filtered_id, |
261 | 261 | $startDate, |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | **/ |
280 | 280 | function verifyStartDate($date) |
281 | 281 | { |
282 | - if ( strtotime($date) > strtotime('2005-01-01') ) |
|
282 | + if (strtotime($date) > strtotime('2005-01-01')) |
|
283 | 283 | return $date; |
284 | 284 | else |
285 | 285 | return '2005-01-01'; |
@@ -41,8 +41,7 @@ discard block |
||
41 | 41 | |
42 | 42 | try { |
43 | 43 | $this->analytics = new Google_Service_Analytics($this->client); |
44 | - } |
|
45 | - catch (Google_ServiceException $e) |
|
44 | + } catch (Google_ServiceException $e) |
|
46 | 45 | { |
47 | 46 | print '(cas:48) There was an Analytics API service error ' . $e->getCode() . ':' . $e->getMessage(); |
48 | 47 | return false; |
@@ -58,8 +57,7 @@ discard block |
||
58 | 57 | try |
59 | 58 | { |
60 | 59 | $this->client->setAccessToken($ga_google_authtoken); |
61 | - } |
|
62 | - catch( Google_AuthException $e ) |
|
60 | + } catch( Google_AuthException $e ) |
|
63 | 61 | { |
64 | 62 | print '(cas:72) GeoDirectory was unable to authenticate you with |
65 | 63 | Google using the Auth Token you pasted into the input box on the previous step. <br><br> |
@@ -69,18 +67,18 @@ discard block |
||
69 | 67 | |
70 | 68 | return false; |
71 | 69 | } |
72 | - } |
|
73 | - else |
|
70 | + } else |
|
74 | 71 | { |
75 | 72 | $authCode = get_option('geodir_ga_auth_code'); |
76 | 73 | |
77 | - if (empty($authCode)) return false; |
|
74 | + if (empty($authCode)) { |
|
75 | + return false; |
|
76 | + } |
|
78 | 77 | |
79 | 78 | try |
80 | 79 | { |
81 | 80 | $accessToken = $this->client->authenticate($authCode); |
82 | - } |
|
83 | - catch( Exception $e ) |
|
81 | + } catch( Exception $e ) |
|
84 | 82 | { |
85 | 83 | print '(cas:72) GeoDirectory was unable to authenticate you with |
86 | 84 | Google using the Auth Token you pasted into the input box on the previous step. <br><br> |
@@ -95,8 +93,7 @@ discard block |
||
95 | 93 | { |
96 | 94 | $this->client->setAccessToken($accessToken); |
97 | 95 | update_option('geodir_ga_auth_token', $accessToken); |
98 | - } |
|
99 | - else |
|
96 | + } else |
|
100 | 97 | { |
101 | 98 | return false; |
102 | 99 | } |
@@ -117,19 +114,22 @@ discard block |
||
117 | 114 | $webproperty_id = get_option('geodir_ga_account_id'); |
118 | 115 | list($pre, $account_id, $post) = explode('-',$webproperty_id); |
119 | 116 | |
120 | - if (empty($webproperty_id)) return false; |
|
117 | + if (empty($webproperty_id)) { |
|
118 | + return false; |
|
119 | + } |
|
121 | 120 | |
122 | 121 | try { |
123 | 122 | $profiles = $this->analytics->management_profiles->listManagementProfiles($account_id, $webproperty_id); |
124 | - } |
|
125 | - catch (Google_ServiceException $e) |
|
123 | + } catch (Google_ServiceException $e) |
|
126 | 124 | { |
127 | 125 | print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage(); |
128 | 126 | return false; |
129 | 127 | } |
130 | 128 | |
131 | 129 | $profile_id = $profiles->items[0]->id; |
132 | - if (empty($profile_id)) return false; |
|
130 | + if (empty($profile_id)) { |
|
131 | + return false; |
|
132 | + } |
|
133 | 133 | |
134 | 134 | $account_array = array(); |
135 | 135 | array_push($account_array, array('id'=>$profile_id, 'ga:webPropertyId'=>$webproperty_id)); |
@@ -142,8 +142,7 @@ discard block |
||
142 | 142 | |
143 | 143 | try { |
144 | 144 | $profiles = $this->analytics->management_webproperties->listManagementWebproperties('~all'); |
145 | - } |
|
146 | - catch (Google_ServiceException $e) |
|
145 | + } catch (Google_ServiceException $e) |
|
147 | 146 | { |
148 | 147 | print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage(); |
149 | 148 | } |
@@ -255,7 +254,7 @@ discard block |
||
255 | 254 | $metric, |
256 | 255 | $params |
257 | 256 | ); |
258 | - }else{ |
|
257 | + } else{ |
|
259 | 258 | return $analytics->data_ga->get( |
260 | 259 | 'ga:'.$filtered_id, |
261 | 260 | $startDate, |
@@ -279,10 +278,11 @@ discard block |
||
279 | 278 | **/ |
280 | 279 | function verifyStartDate($date) |
281 | 280 | { |
282 | - if ( strtotime($date) > strtotime('2005-01-01') ) |
|
283 | - return $date; |
|
284 | - else |
|
285 | - return '2005-01-01'; |
|
281 | + if ( strtotime($date) > strtotime('2005-01-01') ) { |
|
282 | + return $date; |
|
283 | + } else { |
|
284 | + return '2005-01-01'; |
|
285 | + } |
|
286 | 286 | } |
287 | 287 | |
288 | 288 | } // END class |
289 | 289 | \ No newline at end of file |
@@ -55,7 +55,7 @@ |
||
55 | 55 | * @param string $page Page url to use in analytics filters. |
56 | 56 | * @param bool $ga_start The start date of the data to include in YYYY-MM-DD format. |
57 | 57 | * @param bool $ga_end The end date of the data to include in YYYY-MM-DD format. |
58 | - * @return string Html text content. |
|
58 | + * @return false|null Html text content. |
|
59 | 59 | */ |
60 | 60 | function geodir_getGoogleAnalytics($page, $ga_start, $ga_end) |
61 | 61 | { |
@@ -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 | /** |
@@ -60,122 +60,122 @@ discard block |
||
60 | 60 | function geodir_getGoogleAnalytics($page, $ga_start, $ga_end) |
61 | 61 | { |
62 | 62 | |
63 | - // NEW ANALYTICS |
|
64 | - |
|
65 | - $start_date = ''; |
|
66 | - $end_date = ''; |
|
67 | - $dimensions = ''; |
|
68 | - $sort = ''; |
|
69 | - $filters = "ga:pagePath==".$page; |
|
70 | - $metrics = "ga:pageviews"; |
|
71 | - $realtime = false; |
|
72 | - $limit = false; |
|
73 | - if(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisweek'){ |
|
74 | - $start_date = date('Y-m-d', strtotime("-6 day")); |
|
75 | - $end_date = date('Y-m-d'); |
|
76 | - $dimensions = "ga:date,ga:nthDay"; |
|
77 | - }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastweek'){ |
|
78 | - $start_date = date('Y-m-d', strtotime("-13 day")); |
|
79 | - $end_date = date('Y-m-d', strtotime("-7 day")); |
|
80 | - $dimensions = "ga:date,ga:nthDay"; |
|
81 | - } |
|
82 | - elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisyear'){ |
|
83 | - $start_date = date('Y')."-01-01"; |
|
84 | - $end_date = date('Y-m-d'); |
|
85 | - $dimensions = "ga:month,ga:nthMonth"; |
|
86 | - } |
|
87 | - elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastyear'){ |
|
88 | - $start_date = date('Y', strtotime("-1 year"))."-01-01"; |
|
89 | - $end_date = date('Y', strtotime("-1 year"))."-12-31"; |
|
90 | - $dimensions = "ga:month,ga:nthMonth"; |
|
91 | - } |
|
92 | - elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='country'){ |
|
93 | - $start_date = "14daysAgo"; |
|
94 | - $end_date = "yesterday"; |
|
95 | - $dimensions = "ga:country"; |
|
96 | - $sort = "ga:pageviews"; |
|
97 | - $limit = 5; |
|
98 | - }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='realtime'){ |
|
99 | - $metrics = "rt:activeUsers"; |
|
100 | - $realtime = true; |
|
101 | - } |
|
102 | - |
|
103 | - # Create a new Gdata call |
|
104 | - $gaApi = new GDGoogleAnalyticsStats(); |
|
105 | - |
|
106 | - # Check if Google sucessfully logged in |
|
107 | - if (!$gaApi->checkLogin()){ |
|
108 | - echo json_encode(array('error'=>__('Please check Google Analytics Settings','geodirectory'))); |
|
109 | - return false; |
|
110 | - } |
|
111 | - |
|
112 | - $account = $gaApi->getSingleProfile(); |
|
113 | - |
|
114 | - if(!isset($account[0]['id'])){ |
|
115 | - echo json_encode(array('error'=>__('Please check Google Analytics Settings','geodirectory'))); |
|
116 | - return false; |
|
117 | - } |
|
118 | - |
|
119 | - $account = $account[0]['id']; |
|
120 | - |
|
121 | - # Set the account to the one requested |
|
122 | - $gaApi->setAccount($account); |
|
123 | - |
|
124 | - |
|
125 | - |
|
126 | - # Get the metrics needed to build the visits graph; |
|
127 | - try { |
|
128 | - $stats = $gaApi->getMetrics($metrics, $start_date, $end_date, $dimensions, $sort, $filters, $limit , $realtime); |
|
129 | - } |
|
130 | - catch (Exception $e) { |
|
131 | - print 'GA Summary Widget - there was a service error ' . $e->getCode() . ':' . $e->getMessage(); |
|
132 | - } |
|
133 | - |
|
134 | - |
|
135 | - //print_r($stats); |
|
136 | - echo json_encode($stats); |
|
137 | - exit; |
|
63 | + // NEW ANALYTICS |
|
64 | + |
|
65 | + $start_date = ''; |
|
66 | + $end_date = ''; |
|
67 | + $dimensions = ''; |
|
68 | + $sort = ''; |
|
69 | + $filters = "ga:pagePath==".$page; |
|
70 | + $metrics = "ga:pageviews"; |
|
71 | + $realtime = false; |
|
72 | + $limit = false; |
|
73 | + if(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisweek'){ |
|
74 | + $start_date = date('Y-m-d', strtotime("-6 day")); |
|
75 | + $end_date = date('Y-m-d'); |
|
76 | + $dimensions = "ga:date,ga:nthDay"; |
|
77 | + }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastweek'){ |
|
78 | + $start_date = date('Y-m-d', strtotime("-13 day")); |
|
79 | + $end_date = date('Y-m-d', strtotime("-7 day")); |
|
80 | + $dimensions = "ga:date,ga:nthDay"; |
|
81 | + } |
|
82 | + elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisyear'){ |
|
83 | + $start_date = date('Y')."-01-01"; |
|
84 | + $end_date = date('Y-m-d'); |
|
85 | + $dimensions = "ga:month,ga:nthMonth"; |
|
86 | + } |
|
87 | + elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastyear'){ |
|
88 | + $start_date = date('Y', strtotime("-1 year"))."-01-01"; |
|
89 | + $end_date = date('Y', strtotime("-1 year"))."-12-31"; |
|
90 | + $dimensions = "ga:month,ga:nthMonth"; |
|
91 | + } |
|
92 | + elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='country'){ |
|
93 | + $start_date = "14daysAgo"; |
|
94 | + $end_date = "yesterday"; |
|
95 | + $dimensions = "ga:country"; |
|
96 | + $sort = "ga:pageviews"; |
|
97 | + $limit = 5; |
|
98 | + }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='realtime'){ |
|
99 | + $metrics = "rt:activeUsers"; |
|
100 | + $realtime = true; |
|
101 | + } |
|
102 | + |
|
103 | + # Create a new Gdata call |
|
104 | + $gaApi = new GDGoogleAnalyticsStats(); |
|
105 | + |
|
106 | + # Check if Google sucessfully logged in |
|
107 | + if (!$gaApi->checkLogin()){ |
|
108 | + echo json_encode(array('error'=>__('Please check Google Analytics Settings','geodirectory'))); |
|
109 | + return false; |
|
110 | + } |
|
111 | + |
|
112 | + $account = $gaApi->getSingleProfile(); |
|
113 | + |
|
114 | + if(!isset($account[0]['id'])){ |
|
115 | + echo json_encode(array('error'=>__('Please check Google Analytics Settings','geodirectory'))); |
|
116 | + return false; |
|
117 | + } |
|
118 | + |
|
119 | + $account = $account[0]['id']; |
|
120 | + |
|
121 | + # Set the account to the one requested |
|
122 | + $gaApi->setAccount($account); |
|
123 | + |
|
124 | + |
|
125 | + |
|
126 | + # Get the metrics needed to build the visits graph; |
|
127 | + try { |
|
128 | + $stats = $gaApi->getMetrics($metrics, $start_date, $end_date, $dimensions, $sort, $filters, $limit , $realtime); |
|
129 | + } |
|
130 | + catch (Exception $e) { |
|
131 | + print 'GA Summary Widget - there was a service error ' . $e->getCode() . ':' . $e->getMessage(); |
|
132 | + } |
|
133 | + |
|
134 | + |
|
135 | + //print_r($stats); |
|
136 | + echo json_encode($stats); |
|
137 | + exit; |
|
138 | 138 | |
139 | 139 | |
140 | 140 | }// end GA function |
141 | 141 | |
142 | 142 | |
143 | 143 | function geodir_ga_get_token(){ |
144 | - $at = get_option('gd_ga_access_token'); |
|
145 | - $use_url = "https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=".$at; |
|
146 | - $response = wp_remote_get($use_url,array('timeout' => 15)); |
|
144 | + $at = get_option('gd_ga_access_token'); |
|
145 | + $use_url = "https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=".$at; |
|
146 | + $response = wp_remote_get($use_url,array('timeout' => 15)); |
|
147 | 147 | |
148 | - if(!empty($response['response']['code']) && $response['response']['code']==200) {//access token is valid |
|
148 | + if(!empty($response['response']['code']) && $response['response']['code']==200) {//access token is valid |
|
149 | 149 | |
150 | - return $at; |
|
151 | - }else{//else get new access token |
|
150 | + return $at; |
|
151 | + }else{//else get new access token |
|
152 | 152 | |
153 | - $refresh_at = get_option('gd_ga_refresh_token'); |
|
154 | - if(!$refresh_at){ |
|
155 | - echo json_encode(array('error'=>__('Not authorized, please click authorized in GD > Google analytic settings.', 'geodirectory')));exit; |
|
156 | - } |
|
153 | + $refresh_at = get_option('gd_ga_refresh_token'); |
|
154 | + if(!$refresh_at){ |
|
155 | + echo json_encode(array('error'=>__('Not authorized, please click authorized in GD > Google analytic settings.', 'geodirectory')));exit; |
|
156 | + } |
|
157 | 157 | |
158 | - $rat_url = "https://www.googleapis.com/oauth2/v3/token?"; |
|
159 | - $client_id = "client_id=".get_option('geodir_ga_client_id'); |
|
160 | - $client_secret = "&client_secret=".get_option('geodir_ga_client_secret'); |
|
161 | - $refresh_token = "&refresh_token=".$refresh_at; |
|
162 | - $grant_type = "&grant_type=refresh_token"; |
|
158 | + $rat_url = "https://www.googleapis.com/oauth2/v3/token?"; |
|
159 | + $client_id = "client_id=".get_option('geodir_ga_client_id'); |
|
160 | + $client_secret = "&client_secret=".get_option('geodir_ga_client_secret'); |
|
161 | + $refresh_token = "&refresh_token=".$refresh_at; |
|
162 | + $grant_type = "&grant_type=refresh_token"; |
|
163 | 163 | |
164 | - $rat_url_use = $rat_url.$client_id.$client_secret.$refresh_token.$grant_type; |
|
164 | + $rat_url_use = $rat_url.$client_id.$client_secret.$refresh_token.$grant_type; |
|
165 | 165 | |
166 | - $rat_response = wp_remote_post($rat_url_use,array('timeout' => 15)); |
|
167 | - if(!empty($rat_response['response']['code']) && $rat_response['response']['code']==200) { |
|
168 | - $parts = json_decode($rat_response['body']); |
|
166 | + $rat_response = wp_remote_post($rat_url_use,array('timeout' => 15)); |
|
167 | + if(!empty($rat_response['response']['code']) && $rat_response['response']['code']==200) { |
|
168 | + $parts = json_decode($rat_response['body']); |
|
169 | 169 | |
170 | 170 | |
171 | - update_option('gd_ga_access_token', $parts->access_token); |
|
172 | - return $parts->access_token; |
|
171 | + update_option('gd_ga_access_token', $parts->access_token); |
|
172 | + return $parts->access_token; |
|
173 | 173 | |
174 | - }else{ |
|
175 | - echo json_encode(array('error'=>__('Login failed', 'geodirectory')));exit; |
|
176 | - } |
|
174 | + }else{ |
|
175 | + echo json_encode(array('error'=>__('Login failed', 'geodirectory')));exit; |
|
176 | + } |
|
177 | 177 | |
178 | 178 | |
179 | - } |
|
179 | + } |
|
180 | 180 | |
181 | 181 | } |
182 | 182 | \ No newline at end of file |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | $hours = intval(intval($sec) / 3600); |
26 | 26 | |
27 | 27 | // add to $hms, with a leading 0 if asked for |
28 | - $hms .= ($padHours) ? str_pad($hours, 2, "0", STR_PAD_LEFT) . ':' : $hours . ':'; |
|
28 | + $hms .= ($padHours) ? str_pad($hours, 2, "0", STR_PAD_LEFT).':' : $hours.':'; |
|
29 | 29 | |
30 | 30 | // dividing the total seconds by 60 will give us |
31 | 31 | // the number of minutes, but we're interested in |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | $minutes = intval(($sec / 60) % 60); |
35 | 35 | |
36 | 36 | // then add to $hms (with a leading 0 if needed) |
37 | - $hms .= str_pad($minutes, 2, "0", STR_PAD_LEFT) . ':'; |
|
37 | + $hms .= str_pad($minutes, 2, "0", STR_PAD_LEFT).':'; |
|
38 | 38 | |
39 | 39 | // seconds are simple - just divide the total |
40 | 40 | // seconds by 60 and keep the remainder |
@@ -70,32 +70,32 @@ discard block |
||
70 | 70 | $metrics = "ga:pageviews"; |
71 | 71 | $realtime = false; |
72 | 72 | $limit = false; |
73 | - if(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisweek'){ |
|
73 | + if (isset($_REQUEST['ga_type']) && $_REQUEST['ga_type'] == 'thisweek') { |
|
74 | 74 | $start_date = date('Y-m-d', strtotime("-6 day")); |
75 | 75 | $end_date = date('Y-m-d'); |
76 | 76 | $dimensions = "ga:date,ga:nthDay"; |
77 | - }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastweek'){ |
|
77 | + }elseif (isset($_REQUEST['ga_type']) && $_REQUEST['ga_type'] == 'lastweek') { |
|
78 | 78 | $start_date = date('Y-m-d', strtotime("-13 day")); |
79 | 79 | $end_date = date('Y-m-d', strtotime("-7 day")); |
80 | 80 | $dimensions = "ga:date,ga:nthDay"; |
81 | 81 | } |
82 | - elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisyear'){ |
|
82 | + elseif (isset($_REQUEST['ga_type']) && $_REQUEST['ga_type'] == 'thisyear') { |
|
83 | 83 | $start_date = date('Y')."-01-01"; |
84 | 84 | $end_date = date('Y-m-d'); |
85 | 85 | $dimensions = "ga:month,ga:nthMonth"; |
86 | 86 | } |
87 | - elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastyear'){ |
|
87 | + elseif (isset($_REQUEST['ga_type']) && $_REQUEST['ga_type'] == 'lastyear') { |
|
88 | 88 | $start_date = date('Y', strtotime("-1 year"))."-01-01"; |
89 | 89 | $end_date = date('Y', strtotime("-1 year"))."-12-31"; |
90 | 90 | $dimensions = "ga:month,ga:nthMonth"; |
91 | 91 | } |
92 | - elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='country'){ |
|
92 | + elseif (isset($_REQUEST['ga_type']) && $_REQUEST['ga_type'] == 'country') { |
|
93 | 93 | $start_date = "14daysAgo"; |
94 | 94 | $end_date = "yesterday"; |
95 | 95 | $dimensions = "ga:country"; |
96 | 96 | $sort = "ga:pageviews"; |
97 | - $limit = 5; |
|
98 | - }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='realtime'){ |
|
97 | + $limit = 5; |
|
98 | + }elseif (isset($_REQUEST['ga_type']) && $_REQUEST['ga_type'] == 'realtime') { |
|
99 | 99 | $metrics = "rt:activeUsers"; |
100 | 100 | $realtime = true; |
101 | 101 | } |
@@ -104,15 +104,15 @@ discard block |
||
104 | 104 | $gaApi = new GDGoogleAnalyticsStats(); |
105 | 105 | |
106 | 106 | # Check if Google sucessfully logged in |
107 | - if (!$gaApi->checkLogin()){ |
|
108 | - echo json_encode(array('error'=>__('Please check Google Analytics Settings','geodirectory'))); |
|
107 | + if (!$gaApi->checkLogin()) { |
|
108 | + echo json_encode(array('error'=>__('Please check Google Analytics Settings', 'geodirectory'))); |
|
109 | 109 | return false; |
110 | 110 | } |
111 | 111 | |
112 | 112 | $account = $gaApi->getSingleProfile(); |
113 | 113 | |
114 | - if(!isset($account[0]['id'])){ |
|
115 | - echo json_encode(array('error'=>__('Please check Google Analytics Settings','geodirectory'))); |
|
114 | + if (!isset($account[0]['id'])) { |
|
115 | + echo json_encode(array('error'=>__('Please check Google Analytics Settings', 'geodirectory'))); |
|
116 | 116 | return false; |
117 | 117 | } |
118 | 118 | |
@@ -125,10 +125,10 @@ discard block |
||
125 | 125 | |
126 | 126 | # Get the metrics needed to build the visits graph; |
127 | 127 | try { |
128 | - $stats = $gaApi->getMetrics($metrics, $start_date, $end_date, $dimensions, $sort, $filters, $limit , $realtime); |
|
128 | + $stats = $gaApi->getMetrics($metrics, $start_date, $end_date, $dimensions, $sort, $filters, $limit, $realtime); |
|
129 | 129 | } |
130 | 130 | catch (Exception $e) { |
131 | - print 'GA Summary Widget - there was a service error ' . $e->getCode() . ':' . $e->getMessage(); |
|
131 | + print 'GA Summary Widget - there was a service error '.$e->getCode().':'.$e->getMessage(); |
|
132 | 132 | } |
133 | 133 | |
134 | 134 | |
@@ -140,19 +140,19 @@ discard block |
||
140 | 140 | }// end GA function |
141 | 141 | |
142 | 142 | |
143 | -function geodir_ga_get_token(){ |
|
143 | +function geodir_ga_get_token() { |
|
144 | 144 | $at = get_option('gd_ga_access_token'); |
145 | 145 | $use_url = "https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=".$at; |
146 | - $response = wp_remote_get($use_url,array('timeout' => 15)); |
|
146 | + $response = wp_remote_get($use_url, array('timeout' => 15)); |
|
147 | 147 | |
148 | - if(!empty($response['response']['code']) && $response['response']['code']==200) {//access token is valid |
|
148 | + if (!empty($response['response']['code']) && $response['response']['code'] == 200) {//access token is valid |
|
149 | 149 | |
150 | 150 | return $at; |
151 | - }else{//else get new access token |
|
151 | + } else {//else get new access token |
|
152 | 152 | |
153 | 153 | $refresh_at = get_option('gd_ga_refresh_token'); |
154 | - if(!$refresh_at){ |
|
155 | - echo json_encode(array('error'=>__('Not authorized, please click authorized in GD > Google analytic settings.', 'geodirectory')));exit; |
|
154 | + if (!$refresh_at) { |
|
155 | + echo json_encode(array('error'=>__('Not authorized, please click authorized in GD > Google analytic settings.', 'geodirectory'))); exit; |
|
156 | 156 | } |
157 | 157 | |
158 | 158 | $rat_url = "https://www.googleapis.com/oauth2/v3/token?"; |
@@ -163,16 +163,16 @@ discard block |
||
163 | 163 | |
164 | 164 | $rat_url_use = $rat_url.$client_id.$client_secret.$refresh_token.$grant_type; |
165 | 165 | |
166 | - $rat_response = wp_remote_post($rat_url_use,array('timeout' => 15)); |
|
167 | - if(!empty($rat_response['response']['code']) && $rat_response['response']['code']==200) { |
|
166 | + $rat_response = wp_remote_post($rat_url_use, array('timeout' => 15)); |
|
167 | + if (!empty($rat_response['response']['code']) && $rat_response['response']['code'] == 200) { |
|
168 | 168 | $parts = json_decode($rat_response['body']); |
169 | 169 | |
170 | 170 | |
171 | 171 | update_option('gd_ga_access_token', $parts->access_token); |
172 | 172 | return $parts->access_token; |
173 | 173 | |
174 | - }else{ |
|
175 | - echo json_encode(array('error'=>__('Login failed', 'geodirectory')));exit; |
|
174 | + } else { |
|
175 | + echo json_encode(array('error'=>__('Login failed', 'geodirectory'))); exit; |
|
176 | 176 | } |
177 | 177 | |
178 | 178 |
@@ -74,28 +74,25 @@ discard block |
||
74 | 74 | $start_date = date('Y-m-d', strtotime("-6 day")); |
75 | 75 | $end_date = date('Y-m-d'); |
76 | 76 | $dimensions = "ga:date,ga:nthDay"; |
77 | - }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastweek'){ |
|
77 | + } elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastweek'){ |
|
78 | 78 | $start_date = date('Y-m-d', strtotime("-13 day")); |
79 | 79 | $end_date = date('Y-m-d', strtotime("-7 day")); |
80 | 80 | $dimensions = "ga:date,ga:nthDay"; |
81 | - } |
|
82 | - elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisyear'){ |
|
81 | + } elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisyear'){ |
|
83 | 82 | $start_date = date('Y')."-01-01"; |
84 | 83 | $end_date = date('Y-m-d'); |
85 | 84 | $dimensions = "ga:month,ga:nthMonth"; |
86 | - } |
|
87 | - elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastyear'){ |
|
85 | + } elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastyear'){ |
|
88 | 86 | $start_date = date('Y', strtotime("-1 year"))."-01-01"; |
89 | 87 | $end_date = date('Y', strtotime("-1 year"))."-12-31"; |
90 | 88 | $dimensions = "ga:month,ga:nthMonth"; |
91 | - } |
|
92 | - elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='country'){ |
|
89 | + } elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='country'){ |
|
93 | 90 | $start_date = "14daysAgo"; |
94 | 91 | $end_date = "yesterday"; |
95 | 92 | $dimensions = "ga:country"; |
96 | 93 | $sort = "ga:pageviews"; |
97 | 94 | $limit = 5; |
98 | - }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='realtime'){ |
|
95 | + } elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='realtime'){ |
|
99 | 96 | $metrics = "rt:activeUsers"; |
100 | 97 | $realtime = true; |
101 | 98 | } |
@@ -126,8 +123,7 @@ discard block |
||
126 | 123 | # Get the metrics needed to build the visits graph; |
127 | 124 | try { |
128 | 125 | $stats = $gaApi->getMetrics($metrics, $start_date, $end_date, $dimensions, $sort, $filters, $limit , $realtime); |
129 | - } |
|
130 | - catch (Exception $e) { |
|
126 | + } catch (Exception $e) { |
|
131 | 127 | print 'GA Summary Widget - there was a service error ' . $e->getCode() . ':' . $e->getMessage(); |
132 | 128 | } |
133 | 129 | |
@@ -148,7 +144,7 @@ discard block |
||
148 | 144 | if(!empty($response['response']['code']) && $response['response']['code']==200) {//access token is valid |
149 | 145 | |
150 | 146 | return $at; |
151 | - }else{//else get new access token |
|
147 | + } else{//else get new access token |
|
152 | 148 | |
153 | 149 | $refresh_at = get_option('gd_ga_refresh_token'); |
154 | 150 | if(!$refresh_at){ |
@@ -171,7 +167,7 @@ discard block |
||
171 | 167 | update_option('gd_ga_access_token', $parts->access_token); |
172 | 168 | return $parts->access_token; |
173 | 169 | |
174 | - }else{ |
|
170 | + } else{ |
|
175 | 171 | echo json_encode(array('error'=>__('Login failed', 'geodirectory')));exit; |
176 | 172 | } |
177 | 173 |
@@ -79,43 +79,71 @@ |
||
79 | 79 | /** |
80 | 80 | * Do not store any revisions (except the one autosave per post). |
81 | 81 | */ |
82 | -if (!defined('WP_POST_REVISIONS')) define('WP_POST_REVISIONS', 0); |
|
82 | +if (!defined('WP_POST_REVISIONS')) { |
|
83 | + define('WP_POST_REVISIONS', 0); |
|
84 | +} |
|
83 | 85 | |
84 | 86 | /** |
85 | 87 | * Define constants |
86 | 88 | */ |
87 | -if(!defined('GEODIRECTORY_PLUGIN_DIR')) define('GEODIRECTORY_PLUGIN_DIR', plugin_dir_path( __FILE__ )); |
|
89 | +if(!defined('GEODIRECTORY_PLUGIN_DIR')) { |
|
90 | + define('GEODIRECTORY_PLUGIN_DIR', plugin_dir_path( __FILE__ )); |
|
91 | +} |
|
88 | 92 | |
89 | 93 | /* |
90 | 94 | * Declare database table names. All since version 1.0.0 |
91 | 95 | */ |
92 | 96 | |
93 | 97 | /** Define the database name for the countries table. */ |
94 | -if (!defined('GEODIR_COUNTRIES_TABLE')) define('GEODIR_COUNTRIES_TABLE', $plugin_prefix . 'countries'); |
|
98 | +if (!defined('GEODIR_COUNTRIES_TABLE')) { |
|
99 | + define('GEODIR_COUNTRIES_TABLE', $plugin_prefix . 'countries'); |
|
100 | +} |
|
95 | 101 | /** Define the database name for the custom fields table. */ |
96 | -if (!defined('GEODIR_CUSTOM_FIELDS_TABLE')) define('GEODIR_CUSTOM_FIELDS_TABLE', $plugin_prefix . 'custom_fields'); |
|
102 | +if (!defined('GEODIR_CUSTOM_FIELDS_TABLE')) { |
|
103 | + define('GEODIR_CUSTOM_FIELDS_TABLE', $plugin_prefix . 'custom_fields'); |
|
104 | +} |
|
97 | 105 | /** Define the database name for the icons table. */ |
98 | -if (!defined('GEODIR_ICON_TABLE')) define('GEODIR_ICON_TABLE', $plugin_prefix . 'post_icon'); |
|
106 | +if (!defined('GEODIR_ICON_TABLE')) { |
|
107 | + define('GEODIR_ICON_TABLE', $plugin_prefix . 'post_icon'); |
|
108 | +} |
|
99 | 109 | /** Define the database name for the attachments table. */ |
100 | -if (!defined('GEODIR_ATTACHMENT_TABLE')) define('GEODIR_ATTACHMENT_TABLE', $plugin_prefix . 'attachments'); |
|
110 | +if (!defined('GEODIR_ATTACHMENT_TABLE')) { |
|
111 | + define('GEODIR_ATTACHMENT_TABLE', $plugin_prefix . 'attachments'); |
|
112 | +} |
|
101 | 113 | /** Define the database name for the review table. */ |
102 | -if (!defined('GEODIR_REVIEW_TABLE')) define('GEODIR_REVIEW_TABLE', $plugin_prefix . 'post_review'); |
|
114 | +if (!defined('GEODIR_REVIEW_TABLE')) { |
|
115 | + define('GEODIR_REVIEW_TABLE', $plugin_prefix . 'post_review'); |
|
116 | +} |
|
103 | 117 | /** Define the database name for the custom sort fields table. */ |
104 | -if (!defined('GEODIR_CUSTOM_SORT_FIELDS_TABLE')) define('GEODIR_CUSTOM_SORT_FIELDS_TABLE', $plugin_prefix . 'custom_sort_fields'); |
|
118 | +if (!defined('GEODIR_CUSTOM_SORT_FIELDS_TABLE')) { |
|
119 | + define('GEODIR_CUSTOM_SORT_FIELDS_TABLE', $plugin_prefix . 'custom_sort_fields'); |
|
120 | +} |
|
105 | 121 | |
106 | 122 | /* |
107 | 123 | * Define our Google Analytic app settings |
108 | 124 | */ |
109 | -if (!defined('GEODIR_GA_CLIENTID')) define('GEODIR_GA_CLIENTID', '687912069872-sdpsjssrdt7t3ao1dnv1ib71hkckbt5s.apps.googleusercontent.com'); |
|
110 | -if (!defined('GEODIR_GA_CLIENTSECRET')) define('GEODIR_GA_CLIENTSECRET', 'yBVkDpqJ1B9nAETHy738Zn8C'); //don't worry - this don't need to be secret in our case |
|
111 | -if (!defined('GEODIR_GA_REDIRECT')) define('GEODIR_GA_REDIRECT', 'urn:ietf:wg:oauth:2.0:oob'); |
|
112 | -if (!defined('GEODIR_GA_SCOPE')) define('GEODIR_GA_SCOPE', 'https://www.googleapis.com/auth/analytics');//.readonly |
|
125 | +if (!defined('GEODIR_GA_CLIENTID')) { |
|
126 | + define('GEODIR_GA_CLIENTID', '687912069872-sdpsjssrdt7t3ao1dnv1ib71hkckbt5s.apps.googleusercontent.com'); |
|
127 | +} |
|
128 | +if (!defined('GEODIR_GA_CLIENTSECRET')) { |
|
129 | + define('GEODIR_GA_CLIENTSECRET', 'yBVkDpqJ1B9nAETHy738Zn8C'); |
|
130 | +} |
|
131 | +//don't worry - this don't need to be secret in our case |
|
132 | +if (!defined('GEODIR_GA_REDIRECT')) { |
|
133 | + define('GEODIR_GA_REDIRECT', 'urn:ietf:wg:oauth:2.0:oob'); |
|
134 | +} |
|
135 | +if (!defined('GEODIR_GA_SCOPE')) { |
|
136 | + define('GEODIR_GA_SCOPE', 'https://www.googleapis.com/auth/analytics'); |
|
137 | +} |
|
138 | +//.readonly |
|
113 | 139 | |
114 | 140 | |
115 | 141 | /* |
116 | 142 | * Localisation items. |
117 | 143 | */ |
118 | -if (!defined('GEODIRECTORY_TEXTDOMAIN')) define('GEODIRECTORY_TEXTDOMAIN', 'geodirectory'); |
|
144 | +if (!defined('GEODIRECTORY_TEXTDOMAIN')) { |
|
145 | + define('GEODIRECTORY_TEXTDOMAIN', 'geodirectory'); |
|
146 | +} |
|
119 | 147 | |
120 | 148 | // Load geodirectory plugin textdomain. |
121 | 149 | add_action( 'init', 'geodir_load_textdomain' ); |
@@ -31,30 +31,30 @@ discard block |
||
31 | 31 | * CHECK FOR OLD COMPATIBILITY PACKS AND DISABLE IF THEY ARE ACTIVE |
32 | 32 | */ |
33 | 33 | if (is_admin()) { |
34 | - /** |
|
35 | - * Include WordPress core file so we can use core functions to check for active plugins. |
|
36 | - */ |
|
37 | - include_once(ABSPATH . 'wp-admin/includes/plugin.php'); |
|
34 | + /** |
|
35 | + * Include WordPress core file so we can use core functions to check for active plugins. |
|
36 | + */ |
|
37 | + include_once(ABSPATH . 'wp-admin/includes/plugin.php'); |
|
38 | 38 | |
39 | - if (is_plugin_active('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php')) { |
|
40 | - deactivate_plugins('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php'); |
|
41 | - } |
|
39 | + if (is_plugin_active('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php')) { |
|
40 | + deactivate_plugins('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php'); |
|
41 | + } |
|
42 | 42 | |
43 | - if (is_plugin_active('geodirectory-x-theme-compatibility-pack/geodir_x_compatibility.php')) { |
|
44 | - deactivate_plugins('geodirectory-x-theme-compatibility-pack/geodir_x_compatibility.php'); |
|
45 | - } |
|
43 | + if (is_plugin_active('geodirectory-x-theme-compatibility-pack/geodir_x_compatibility.php')) { |
|
44 | + deactivate_plugins('geodirectory-x-theme-compatibility-pack/geodir_x_compatibility.php'); |
|
45 | + } |
|
46 | 46 | |
47 | - if (is_plugin_active('geodirectory-enfold-theme-compatibility-pack/geodir_enfold_compatibility.php')) { |
|
48 | - deactivate_plugins('geodirectory-enfold-theme-compatibility-pack/geodir_enfold_compatibility.php'); |
|
49 | - } |
|
47 | + if (is_plugin_active('geodirectory-enfold-theme-compatibility-pack/geodir_enfold_compatibility.php')) { |
|
48 | + deactivate_plugins('geodirectory-enfold-theme-compatibility-pack/geodir_enfold_compatibility.php'); |
|
49 | + } |
|
50 | 50 | |
51 | - if (is_plugin_active('geodir_avada_compatibility/geodir_avada_compatibility.php')) { |
|
52 | - deactivate_plugins('geodir_avada_compatibility/geodir_avada_compatibility.php'); |
|
53 | - } |
|
51 | + if (is_plugin_active('geodir_avada_compatibility/geodir_avada_compatibility.php')) { |
|
52 | + deactivate_plugins('geodir_avada_compatibility/geodir_avada_compatibility.php'); |
|
53 | + } |
|
54 | 54 | |
55 | - if (is_plugin_active('geodir_compat_pack_divi/geodir_divi_compatibility.php')) { |
|
56 | - deactivate_plugins('geodir_compat_pack_divi/geodir_divi_compatibility.php'); |
|
57 | - } |
|
55 | + if (is_plugin_active('geodir_compat_pack_divi/geodir_divi_compatibility.php')) { |
|
56 | + deactivate_plugins('geodir_compat_pack_divi/geodir_divi_compatibility.php'); |
|
57 | + } |
|
58 | 58 | |
59 | 59 | } |
60 | 60 | |
@@ -130,19 +130,19 @@ discard block |
||
130 | 130 | * @package GeoDirectory |
131 | 131 | */ |
132 | 132 | function geodir_error_log($log){ |
133 | - /* |
|
133 | + /* |
|
134 | 134 | * A filter to override the WP_DEBUG setting for function geodir_error_log(). |
135 | 135 | * |
136 | 136 | * @since 1.5.7 |
137 | 137 | */ |
138 | - $should_log = apply_filters( 'geodir_log_errors', WP_DEBUG); |
|
139 | - if ( true === $should_log ) { |
|
140 | - if ( is_array( $log ) || is_object( $log ) ) { |
|
141 | - error_log( print_r( $log, true ) ); |
|
142 | - } else { |
|
143 | - error_log( $log ); |
|
144 | - } |
|
145 | - } |
|
138 | + $should_log = apply_filters( 'geodir_log_errors', WP_DEBUG); |
|
139 | + if ( true === $should_log ) { |
|
140 | + if ( is_array( $log ) || is_object( $log ) ) { |
|
141 | + error_log( print_r( $log, true ) ); |
|
142 | + } else { |
|
143 | + error_log( $log ); |
|
144 | + } |
|
145 | + } |
|
146 | 146 | } |
147 | 147 | /** |
148 | 148 | * Include all plugin functions. |
@@ -181,72 +181,72 @@ discard block |
||
181 | 181 | */ |
182 | 182 | if (is_admin() || defined( 'GD_TESTING_MODE' ) || ( defined( 'WP_CLI' ) && WP_CLI )) { |
183 | 183 | |
184 | - /** |
|
185 | - * Include functions used in admin area only. |
|
186 | - * |
|
187 | - * @since 1.0.0 |
|
188 | - */ |
|
189 | - require_once('geodirectory-admin/admin_functions.php'); |
|
190 | - /** |
|
191 | - * Most actions/hooks used in admin area only are called from here. |
|
192 | - * |
|
193 | - * @since 1.6.11 |
|
194 | - */ |
|
195 | - require_once('geodirectory-admin/admin_dummy_data_functions.php'); |
|
196 | - /** |
|
197 | - * Most actions/hooks used in admin area only are called from here. |
|
198 | - * |
|
199 | - * @since 1.0.0 |
|
200 | - */ |
|
201 | - require_once('geodirectory-admin/admin_hooks_actions.php'); |
|
202 | - /** |
|
203 | - * Most admin JS and CSS is called from here. |
|
204 | - * |
|
205 | - * @since 1.0.0 |
|
206 | - */ |
|
207 | - require_once('geodirectory-admin/admin_template_tags.php'); |
|
208 | - /** |
|
209 | - * Include Google Analytics Class. |
|
210 | - * |
|
211 | - * @since 1.6.11 |
|
212 | - */ |
|
213 | - require_once('geodirectory-admin/class.analytics.stats.php'); |
|
214 | - /** |
|
215 | - * Include any functions needed for upgrades. |
|
216 | - * |
|
217 | - * @since 1.0.0 |
|
218 | - */ |
|
219 | - require_once(geodir_plugin_path() . '/upgrade.php'); |
|
220 | - if (get_option('geodir_installed') != 1) { |
|
221 | - /** |
|
222 | - * Define language constants, here as they are not loaded yet. |
|
223 | - * |
|
224 | - * @since 1.0.0 |
|
225 | - */ |
|
226 | - require_once(geodir_plugin_path() . '/language.php'); |
|
227 | - /** |
|
228 | - * Include the plugin install file that sets up the databases and any options on first run. |
|
229 | - * |
|
230 | - * @since 1.0.0 |
|
231 | - */ |
|
232 | - require_once('geodirectory-admin/admin_install.php'); |
|
233 | - register_activation_hook(__FILE__, 'geodir_activation'); |
|
234 | - } |
|
235 | - register_deactivation_hook(__FILE__, 'geodir_deactivation'); |
|
236 | - |
|
237 | - /* |
|
184 | + /** |
|
185 | + * Include functions used in admin area only. |
|
186 | + * |
|
187 | + * @since 1.0.0 |
|
188 | + */ |
|
189 | + require_once('geodirectory-admin/admin_functions.php'); |
|
190 | + /** |
|
191 | + * Most actions/hooks used in admin area only are called from here. |
|
192 | + * |
|
193 | + * @since 1.6.11 |
|
194 | + */ |
|
195 | + require_once('geodirectory-admin/admin_dummy_data_functions.php'); |
|
196 | + /** |
|
197 | + * Most actions/hooks used in admin area only are called from here. |
|
198 | + * |
|
199 | + * @since 1.0.0 |
|
200 | + */ |
|
201 | + require_once('geodirectory-admin/admin_hooks_actions.php'); |
|
202 | + /** |
|
203 | + * Most admin JS and CSS is called from here. |
|
204 | + * |
|
205 | + * @since 1.0.0 |
|
206 | + */ |
|
207 | + require_once('geodirectory-admin/admin_template_tags.php'); |
|
208 | + /** |
|
209 | + * Include Google Analytics Class. |
|
210 | + * |
|
211 | + * @since 1.6.11 |
|
212 | + */ |
|
213 | + require_once('geodirectory-admin/class.analytics.stats.php'); |
|
214 | + /** |
|
215 | + * Include any functions needed for upgrades. |
|
216 | + * |
|
217 | + * @since 1.0.0 |
|
218 | + */ |
|
219 | + require_once(geodir_plugin_path() . '/upgrade.php'); |
|
220 | + if (get_option('geodir_installed') != 1) { |
|
221 | + /** |
|
222 | + * Define language constants, here as they are not loaded yet. |
|
223 | + * |
|
224 | + * @since 1.0.0 |
|
225 | + */ |
|
226 | + require_once(geodir_plugin_path() . '/language.php'); |
|
227 | + /** |
|
228 | + * Include the plugin install file that sets up the databases and any options on first run. |
|
229 | + * |
|
230 | + * @since 1.0.0 |
|
231 | + */ |
|
232 | + require_once('geodirectory-admin/admin_install.php'); |
|
233 | + register_activation_hook(__FILE__, 'geodir_activation'); |
|
234 | + } |
|
235 | + register_deactivation_hook(__FILE__, 'geodir_deactivation'); |
|
236 | + |
|
237 | + /* |
|
238 | 238 | * Show a upgrade warning message if applicable. |
239 | 239 | * |
240 | 240 | * @since 1.5.6 |
241 | 241 | */ |
242 | - global $pagenow; |
|
243 | - if ( 'plugins.php' === $pagenow ) |
|
244 | - { |
|
245 | - // Better update message |
|
246 | - $file = basename( __FILE__ ); |
|
247 | - $folder = basename( dirname( __FILE__ ) ); |
|
248 | - $hook = "in_plugin_update_message-{$folder}/{$file}"; |
|
249 | - add_action( $hook, 'geodire_admin_upgrade_notice', 20, 2 ); |
|
250 | - } |
|
242 | + global $pagenow; |
|
243 | + if ( 'plugins.php' === $pagenow ) |
|
244 | + { |
|
245 | + // Better update message |
|
246 | + $file = basename( __FILE__ ); |
|
247 | + $folder = basename( dirname( __FILE__ ) ); |
|
248 | + $hook = "in_plugin_update_message-{$folder}/{$file}"; |
|
249 | + add_action( $hook, 'geodire_admin_upgrade_notice', 20, 2 ); |
|
250 | + } |
|
251 | 251 | |
252 | 252 | } |
253 | 253 | \ No newline at end of file |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | /** |
35 | 35 | * Include WordPress core file so we can use core functions to check for active plugins. |
36 | 36 | */ |
37 | - include_once(ABSPATH . 'wp-admin/includes/plugin.php'); |
|
37 | + include_once(ABSPATH.'wp-admin/includes/plugin.php'); |
|
38 | 38 | |
39 | 39 | if (is_plugin_active('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php')) { |
40 | 40 | deactivate_plugins('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php'); |
@@ -68,8 +68,8 @@ discard block |
||
68 | 68 | * @global string $plugin_file_name Base file name. 'geodirectory/geodirectory.php'. |
69 | 69 | */ |
70 | 70 | global $wpdb, $plugin_prefix, $geodir_addon_list, $plugin_file_name; |
71 | -$plugin_prefix = $wpdb->prefix . 'geodir_'; |
|
72 | -$plugin_file_name = basename(plugin_dir_path(__FILE__)) . '/' . basename(__FILE__); |
|
71 | +$plugin_prefix = $wpdb->prefix.'geodir_'; |
|
72 | +$plugin_file_name = basename(plugin_dir_path(__FILE__)).'/'.basename(__FILE__); |
|
73 | 73 | |
74 | 74 | /* |
75 | 75 | * This will store the cached post custom fields per package for each page load so not to run for each listing. |
@@ -84,24 +84,24 @@ discard block |
||
84 | 84 | /** |
85 | 85 | * Define constants |
86 | 86 | */ |
87 | -if(!defined('GEODIRECTORY_PLUGIN_DIR')) define('GEODIRECTORY_PLUGIN_DIR', plugin_dir_path( __FILE__ )); |
|
87 | +if (!defined('GEODIRECTORY_PLUGIN_DIR')) define('GEODIRECTORY_PLUGIN_DIR', plugin_dir_path(__FILE__)); |
|
88 | 88 | |
89 | 89 | /* |
90 | 90 | * Declare database table names. All since version 1.0.0 |
91 | 91 | */ |
92 | 92 | |
93 | 93 | /** Define the database name for the countries table. */ |
94 | -if (!defined('GEODIR_COUNTRIES_TABLE')) define('GEODIR_COUNTRIES_TABLE', $plugin_prefix . 'countries'); |
|
94 | +if (!defined('GEODIR_COUNTRIES_TABLE')) define('GEODIR_COUNTRIES_TABLE', $plugin_prefix.'countries'); |
|
95 | 95 | /** Define the database name for the custom fields table. */ |
96 | -if (!defined('GEODIR_CUSTOM_FIELDS_TABLE')) define('GEODIR_CUSTOM_FIELDS_TABLE', $plugin_prefix . 'custom_fields'); |
|
96 | +if (!defined('GEODIR_CUSTOM_FIELDS_TABLE')) define('GEODIR_CUSTOM_FIELDS_TABLE', $plugin_prefix.'custom_fields'); |
|
97 | 97 | /** Define the database name for the icons table. */ |
98 | -if (!defined('GEODIR_ICON_TABLE')) define('GEODIR_ICON_TABLE', $plugin_prefix . 'post_icon'); |
|
98 | +if (!defined('GEODIR_ICON_TABLE')) define('GEODIR_ICON_TABLE', $plugin_prefix.'post_icon'); |
|
99 | 99 | /** Define the database name for the attachments table. */ |
100 | -if (!defined('GEODIR_ATTACHMENT_TABLE')) define('GEODIR_ATTACHMENT_TABLE', $plugin_prefix . 'attachments'); |
|
100 | +if (!defined('GEODIR_ATTACHMENT_TABLE')) define('GEODIR_ATTACHMENT_TABLE', $plugin_prefix.'attachments'); |
|
101 | 101 | /** Define the database name for the review table. */ |
102 | -if (!defined('GEODIR_REVIEW_TABLE')) define('GEODIR_REVIEW_TABLE', $plugin_prefix . 'post_review'); |
|
102 | +if (!defined('GEODIR_REVIEW_TABLE')) define('GEODIR_REVIEW_TABLE', $plugin_prefix.'post_review'); |
|
103 | 103 | /** Define the database name for the custom sort fields table. */ |
104 | -if (!defined('GEODIR_CUSTOM_SORT_FIELDS_TABLE')) define('GEODIR_CUSTOM_SORT_FIELDS_TABLE', $plugin_prefix . 'custom_sort_fields'); |
|
104 | +if (!defined('GEODIR_CUSTOM_SORT_FIELDS_TABLE')) define('GEODIR_CUSTOM_SORT_FIELDS_TABLE', $plugin_prefix.'custom_sort_fields'); |
|
105 | 105 | |
106 | 106 | /* |
107 | 107 | * Define our Google Analytic app settings |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | if (!defined('GEODIR_GA_CLIENTID')) define('GEODIR_GA_CLIENTID', '687912069872-sdpsjssrdt7t3ao1dnv1ib71hkckbt5s.apps.googleusercontent.com'); |
110 | 110 | if (!defined('GEODIR_GA_CLIENTSECRET')) define('GEODIR_GA_CLIENTSECRET', 'yBVkDpqJ1B9nAETHy738Zn8C'); //don't worry - this don't need to be secret in our case |
111 | 111 | if (!defined('GEODIR_GA_REDIRECT')) define('GEODIR_GA_REDIRECT', 'urn:ietf:wg:oauth:2.0:oob'); |
112 | -if (!defined('GEODIR_GA_SCOPE')) define('GEODIR_GA_SCOPE', 'https://www.googleapis.com/auth/analytics');//.readonly |
|
112 | +if (!defined('GEODIR_GA_SCOPE')) define('GEODIR_GA_SCOPE', 'https://www.googleapis.com/auth/analytics'); //.readonly |
|
113 | 113 | |
114 | 114 | |
115 | 115 | /* |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | if (!defined('GEODIRECTORY_TEXTDOMAIN')) define('GEODIRECTORY_TEXTDOMAIN', 'geodirectory'); |
119 | 119 | |
120 | 120 | // Load geodirectory plugin textdomain. |
121 | -add_action( 'init', 'geodir_load_textdomain' ); |
|
121 | +add_action('init', 'geodir_load_textdomain'); |
|
122 | 122 | |
123 | 123 | /* |
124 | 124 | * A function to log GD errors no matter the type given. |
@@ -129,18 +129,18 @@ discard block |
||
129 | 129 | * @param mixed $log The thing that should be logged. |
130 | 130 | * @package GeoDirectory |
131 | 131 | */ |
132 | -function geodir_error_log($log){ |
|
132 | +function geodir_error_log($log) { |
|
133 | 133 | /* |
134 | 134 | * A filter to override the WP_DEBUG setting for function geodir_error_log(). |
135 | 135 | * |
136 | 136 | * @since 1.5.7 |
137 | 137 | */ |
138 | - $should_log = apply_filters( 'geodir_log_errors', WP_DEBUG); |
|
139 | - if ( true === $should_log ) { |
|
140 | - if ( is_array( $log ) || is_object( $log ) ) { |
|
141 | - error_log( print_r( $log, true ) ); |
|
138 | + $should_log = apply_filters('geodir_log_errors', WP_DEBUG); |
|
139 | + if (true === $should_log) { |
|
140 | + if (is_array($log) || is_object($log)) { |
|
141 | + error_log(print_r($log, true)); |
|
142 | 142 | } else { |
143 | - error_log( $log ); |
|
143 | + error_log($log); |
|
144 | 144 | } |
145 | 145 | } |
146 | 146 | } |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | /* |
180 | 180 | * Admin init + activation hooks |
181 | 181 | */ |
182 | -if (is_admin() || defined( 'GD_TESTING_MODE' ) || ( defined( 'WP_CLI' ) && WP_CLI )) { |
|
182 | +if (is_admin() || defined('GD_TESTING_MODE') || (defined('WP_CLI') && WP_CLI)) { |
|
183 | 183 | |
184 | 184 | /** |
185 | 185 | * Include functions used in admin area only. |
@@ -216,14 +216,14 @@ discard block |
||
216 | 216 | * |
217 | 217 | * @since 1.0.0 |
218 | 218 | */ |
219 | - require_once(geodir_plugin_path() . '/upgrade.php'); |
|
219 | + require_once(geodir_plugin_path().'/upgrade.php'); |
|
220 | 220 | if (get_option('geodir_installed') != 1) { |
221 | 221 | /** |
222 | 222 | * Define language constants, here as they are not loaded yet. |
223 | 223 | * |
224 | 224 | * @since 1.0.0 |
225 | 225 | */ |
226 | - require_once(geodir_plugin_path() . '/language.php'); |
|
226 | + require_once(geodir_plugin_path().'/language.php'); |
|
227 | 227 | /** |
228 | 228 | * Include the plugin install file that sets up the databases and any options on first run. |
229 | 229 | * |
@@ -240,13 +240,13 @@ discard block |
||
240 | 240 | * @since 1.5.6 |
241 | 241 | */ |
242 | 242 | global $pagenow; |
243 | - if ( 'plugins.php' === $pagenow ) |
|
243 | + if ('plugins.php' === $pagenow) |
|
244 | 244 | { |
245 | 245 | // Better update message |
246 | - $file = basename( __FILE__ ); |
|
247 | - $folder = basename( dirname( __FILE__ ) ); |
|
246 | + $file = basename(__FILE__); |
|
247 | + $folder = basename(dirname(__FILE__)); |
|
248 | 248 | $hook = "in_plugin_update_message-{$folder}/{$file}"; |
249 | - add_action( $hook, 'geodire_admin_upgrade_notice', 20, 2 ); |
|
249 | + add_action($hook, 'geodire_admin_upgrade_notice', 20, 2); |
|
250 | 250 | } |
251 | 251 | |
252 | 252 | } |
253 | 253 | \ No newline at end of file |
@@ -112,10 +112,11 @@ discard block |
||
112 | 112 | } |
113 | 113 | |
114 | 114 | if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'category_ajax') { |
115 | - if (isset($_REQUEST['main_catid']) && isset($_REQUEST['cat_tax']) && isset($_REQUEST['exclude'])) |
|
116 | - geodir_addpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['main_catid'], '', '', '', $_REQUEST['exclude']); |
|
117 | - else if (isset($_REQUEST['catpid']) && isset($_REQUEST['cat_tax'])) |
|
118 | - geodir_editpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['catpid']); |
|
115 | + if (isset($_REQUEST['main_catid']) && isset($_REQUEST['cat_tax']) && isset($_REQUEST['exclude'])) { |
|
116 | + geodir_addpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['main_catid'], '', '', '', $_REQUEST['exclude']); |
|
117 | + } else if (isset($_REQUEST['catpid']) && isset($_REQUEST['cat_tax'])) { |
|
118 | + geodir_editpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['catpid']); |
|
119 | + } |
|
119 | 120 | } |
120 | 121 | |
121 | 122 | if ((isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'admin_ajax') || isset($_REQUEST['create_field']) || isset($_REQUEST['sort_create_field'])) { |
@@ -137,12 +138,13 @@ discard block |
||
137 | 138 | if (current_user_can('manage_options')) { |
138 | 139 | switch ($_REQUEST['geodir_autofill']): |
139 | 140 | case "geodir_dummy_delete" : |
140 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) |
|
141 | - return; |
|
141 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) { |
|
142 | + return; |
|
143 | + } |
|
142 | 144 | |
143 | 145 | $datatype = isset($_REQUEST['datatype']) ? sanitize_key($_REQUEST['datatype']) : ''; |
144 | - if (isset($_REQUEST['posttype'])) |
|
145 | - /** |
|
146 | + if (isset($_REQUEST['posttype'])) { |
|
147 | + /** |
|
146 | 148 | * Used to delete the dummy post data per post type. |
147 | 149 | * |
148 | 150 | * Uses dynamic hook, geodir_delete_dummy_posts_$_REQUEST['posttype']. |
@@ -151,11 +153,13 @@ discard block |
||
151 | 153 | * @param string $posttype The post type to insert. |
152 | 154 | * @param string $datatype The type of dummy data to insert. |
153 | 155 | */ |
154 | - do_action('geodir_delete_dummy_posts' ,sanitize_key($_REQUEST['posttype']),$datatype); |
|
156 | + do_action('geodir_delete_dummy_posts' ,sanitize_key($_REQUEST['posttype']),$datatype); |
|
157 | + } |
|
155 | 158 | break; |
156 | 159 | case "geodir_dummy_insert" : |
157 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) |
|
158 | - return; |
|
160 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) { |
|
161 | + return; |
|
162 | + } |
|
159 | 163 | |
160 | 164 | global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2; |
161 | 165 | $city_bound_lat1 = $_REQUEST['city_bound_lat1']; |
@@ -254,8 +258,9 @@ discard block |
||
254 | 258 | } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
255 | 259 | $redirect_to = get_permalink(geodir_add_listing_page_id()); |
256 | 260 | $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false); |
257 | - } else |
|
258 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
261 | + } else { |
|
262 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
263 | + } |
|
259 | 264 | |
260 | 265 | wp_redirect($redirect_to); |
261 | 266 | } else { |
@@ -268,9 +273,9 @@ discard block |
||
268 | 273 | |
269 | 274 | $gd_session->un_set('listing'); |
270 | 275 | |
271 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && get_permalink($_REQUEST['pid'])) |
|
272 | - wp_redirect(get_permalink($_REQUEST['pid'])); |
|
273 | - else { |
|
276 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && get_permalink($_REQUEST['pid'])) { |
|
277 | + wp_redirect(get_permalink($_REQUEST['pid'])); |
|
278 | + } else { |
|
274 | 279 | geodir_remove_temp_images(); |
275 | 280 | wp_redirect(geodir_getlink(get_permalink(geodir_add_listing_page_id()), array('listing_type' => $_REQUEST['listing_type']))); |
276 | 281 | } |
@@ -298,8 +303,9 @@ discard block |
||
298 | 303 | } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
299 | 304 | $redirect_to = get_permalink(geodir_add_listing_page_id()); |
300 | 305 | $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false); |
301 | - } else |
|
302 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
306 | + } else { |
|
307 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
308 | + } |
|
303 | 309 | |
304 | 310 | $gd_session->un_set('listing'); |
305 | 311 | wp_redirect($redirect_to); |
@@ -320,8 +326,9 @@ discard block |
||
320 | 326 | $lastid = wp_delete_post($_REQUEST['pid']); |
321 | 327 | } |
322 | 328 | |
323 | - if ($lastid && !is_wp_error($lastid)) |
|
324 | - wp_redirect($_SERVER['HTTP_REFERER']); |
|
329 | + if ($lastid && !is_wp_error($lastid)) { |
|
330 | + wp_redirect($_SERVER['HTTP_REFERER']); |
|
331 | + } |
|
325 | 332 | |
326 | 333 | //wp_redirect( geodir_getlink(get_author_posts_url($current_user->ID),array('geodir_dashbord'=>'true','stype'=>$post_type ),false) ); |
327 | 334 | } |
@@ -16,22 +16,22 @@ discard block |
||
16 | 16 | */ |
17 | 17 | function geodir_on_wp_loaded() |
18 | 18 | { |
19 | - /** |
|
20 | - * Called on the wp_loaded WP hook and used to send the send inquiry and send to friend forms. |
|
21 | - * |
|
22 | - * @since 1.0.0 |
|
23 | - */ |
|
24 | - do_action('giodir_handle_request_plugins_loaded'); |
|
25 | - global $wpdb; |
|
19 | + /** |
|
20 | + * Called on the wp_loaded WP hook and used to send the send inquiry and send to friend forms. |
|
21 | + * |
|
22 | + * @since 1.0.0 |
|
23 | + */ |
|
24 | + do_action('giodir_handle_request_plugins_loaded'); |
|
25 | + global $wpdb; |
|
26 | 26 | |
27 | 27 | |
28 | - if (isset($_POST['sendact']) && $_POST['sendact'] == 'send_inqury') { |
|
29 | - geodir_send_inquiry($_REQUEST); // function in custom_functions.php |
|
28 | + if (isset($_POST['sendact']) && $_POST['sendact'] == 'send_inqury') { |
|
29 | + geodir_send_inquiry($_REQUEST); // function in custom_functions.php |
|
30 | 30 | |
31 | - } elseif (isset($_POST['sendact']) && $_POST['sendact'] == 'email_frnd') { |
|
32 | - geodir_send_friend($_REQUEST); // function in custom_functions.php |
|
31 | + } elseif (isset($_POST['sendact']) && $_POST['sendact'] == 'email_frnd') { |
|
32 | + geodir_send_friend($_REQUEST); // function in custom_functions.php |
|
33 | 33 | |
34 | - } |
|
34 | + } |
|
35 | 35 | |
36 | 36 | } |
37 | 37 | |
@@ -44,9 +44,9 @@ discard block |
||
44 | 44 | */ |
45 | 45 | function geodir_on_wp() |
46 | 46 | { |
47 | - if(geodir_is_page('login')) { |
|
48 | - geodir_user_signup(); |
|
49 | - } |
|
47 | + if(geodir_is_page('login')) { |
|
48 | + geodir_user_signup(); |
|
49 | + } |
|
50 | 50 | |
51 | 51 | } |
52 | 52 | |
@@ -60,36 +60,36 @@ discard block |
||
60 | 60 | */ |
61 | 61 | function geodir_on_init() |
62 | 62 | { |
63 | - /** |
|
64 | - * Called on the wp_init WP hook at the start of the geodir_on_init() function. |
|
65 | - * |
|
66 | - * @since 1.0.0 |
|
67 | - */ |
|
68 | - do_action('giodir_handle_request'); |
|
69 | - global $wpdb; |
|
63 | + /** |
|
64 | + * Called on the wp_init WP hook at the start of the geodir_on_init() function. |
|
65 | + * |
|
66 | + * @since 1.0.0 |
|
67 | + */ |
|
68 | + do_action('giodir_handle_request'); |
|
69 | + global $wpdb; |
|
70 | 70 | |
71 | 71 | |
72 | 72 | |
73 | 73 | |
74 | - if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && !current_user_can('manage_options') && !class_exists('BuddyPress')) { |
|
75 | - show_admin_bar(false); |
|
76 | - } |
|
74 | + if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && !current_user_can('manage_options') && !class_exists('BuddyPress')) { |
|
75 | + show_admin_bar(false); |
|
76 | + } |
|
77 | 77 | |
78 | 78 | |
79 | - if (isset($_REQUEST['ptype']) && $_REQUEST['ptype'] == 'get_markers') { |
|
80 | - /** |
|
81 | - * Contains map marker functions. |
|
82 | - * |
|
83 | - * @since 1.0.0 |
|
84 | - * @package GeoDirectory |
|
85 | - */ |
|
86 | - include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); |
|
87 | - die; |
|
88 | - } |
|
79 | + if (isset($_REQUEST['ptype']) && $_REQUEST['ptype'] == 'get_markers') { |
|
80 | + /** |
|
81 | + * Contains map marker functions. |
|
82 | + * |
|
83 | + * @since 1.0.0 |
|
84 | + * @package GeoDirectory |
|
85 | + */ |
|
86 | + include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); |
|
87 | + die; |
|
88 | + } |
|
89 | 89 | |
90 | - if ( class_exists( 'WPSEO_Frontend' ) && !is_admin() ) { |
|
91 | - add_action( 'template_redirect', 'geodir_remove_yoast_seo_metas' ); |
|
92 | - } |
|
90 | + if ( class_exists( 'WPSEO_Frontend' ) && !is_admin() ) { |
|
91 | + add_action( 'template_redirect', 'geodir_remove_yoast_seo_metas' ); |
|
92 | + } |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | |
@@ -106,328 +106,328 @@ discard block |
||
106 | 106 | * @todo check if nonce is required here and if so add one. |
107 | 107 | */ |
108 | 108 | function geodir_ajax_handler() { |
109 | - global $wpdb, $gd_session,$post; |
|
109 | + global $wpdb, $gd_session,$post; |
|
110 | 110 | |
111 | - if (isset($_REQUEST['gd_listing_view']) && $_REQUEST['gd_listing_view'] != '') { |
|
111 | + if (isset($_REQUEST['gd_listing_view']) && $_REQUEST['gd_listing_view'] != '') { |
|
112 | 112 | $gd_session->set('gd_listing_view', $_REQUEST['gd_listing_view']); |
113 | - echo '1'; |
|
114 | - } |
|
115 | - |
|
116 | - if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'category_ajax') { |
|
117 | - if (isset($_REQUEST['main_catid']) && isset($_REQUEST['cat_tax']) && isset($_REQUEST['exclude'])) |
|
118 | - geodir_addpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['main_catid'], '', '', '', $_REQUEST['exclude']); |
|
119 | - else if (isset($_REQUEST['catpid']) && isset($_REQUEST['cat_tax'])) |
|
120 | - geodir_editpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['catpid']); |
|
121 | - } |
|
122 | - |
|
123 | - if ((isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'admin_ajax') || isset($_REQUEST['create_field']) || isset($_REQUEST['sort_create_field'])) { |
|
124 | - if (current_user_can('manage_options')) { |
|
125 | - /** |
|
126 | - * Contains admin ajax handling functions. |
|
127 | - * |
|
128 | - * @since 1.0.0 |
|
129 | - * @package GeoDirectory |
|
130 | - */ |
|
131 | - include_once(geodir_plugin_path() . '/geodirectory-admin/geodir_admin_ajax.php'); |
|
132 | - } else { |
|
133 | - wp_redirect(geodir_login_url()); |
|
134 | - gd_die(); |
|
135 | - } |
|
136 | - } |
|
137 | - |
|
138 | - if (isset($_REQUEST['geodir_autofill']) && $_REQUEST['geodir_autofill'] != '' && isset($_REQUEST['_wpnonce'])) { |
|
139 | - if (current_user_can('manage_options')) { |
|
140 | - switch ($_REQUEST['geodir_autofill']): |
|
141 | - case "geodir_dummy_delete" : |
|
142 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) |
|
143 | - return; |
|
144 | - |
|
145 | - $datatype = isset($_REQUEST['datatype']) ? sanitize_key($_REQUEST['datatype']) : ''; |
|
146 | - if (isset($_REQUEST['posttype'])) |
|
147 | - /** |
|
148 | - * Used to delete the dummy post data per post type. |
|
149 | - * |
|
150 | - * Uses dynamic hook, geodir_delete_dummy_posts_$_REQUEST['posttype']. |
|
151 | - * |
|
152 | - * @since 1.6.11 |
|
153 | - * @param string $posttype The post type to insert. |
|
154 | - * @param string $datatype The type of dummy data to insert. |
|
155 | - */ |
|
156 | - do_action('geodir_delete_dummy_posts' ,sanitize_key($_REQUEST['posttype']),$datatype); |
|
157 | - break; |
|
158 | - case "geodir_dummy_insert" : |
|
159 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) |
|
160 | - return; |
|
161 | - |
|
162 | - global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2; |
|
163 | - $city_bound_lat1 = $_REQUEST['city_bound_lat1']; |
|
164 | - $city_bound_lng1 = $_REQUEST['city_bound_lng1']; |
|
165 | - $city_bound_lat2 = $_REQUEST['city_bound_lat2']; |
|
166 | - $city_bound_lng2 = $_REQUEST['city_bound_lng2']; |
|
167 | - |
|
168 | - if (isset($_REQUEST['posttype'])){ |
|
169 | - /** |
|
170 | - * Used to insert the dummy post data per post type. |
|
171 | - * |
|
172 | - * Uses dynamic hook, geodir_insert_dummy_posts_$_REQUEST['posttype']. |
|
173 | - * |
|
174 | - * @since 1.6.11 |
|
175 | - * @param string $posttype The post type to insert. |
|
176 | - * @param string $datatype The type of dummy data to insert. |
|
177 | - * @param int $post_index The item number to insert. |
|
178 | - */ |
|
179 | - do_action('geodir_insert_dummy_posts',sanitize_key($_REQUEST['posttype']),sanitize_key($_REQUEST['datatype']),absint($_REQUEST['insert_dummy_post_index'])); |
|
180 | - } |
|
181 | - |
|
182 | - |
|
183 | - break; |
|
184 | - endswitch; |
|
185 | - } else { |
|
186 | - wp_redirect(geodir_login_url()); |
|
187 | - exit(); |
|
188 | - } |
|
189 | - } |
|
190 | - |
|
191 | - if (isset($_REQUEST['popuptype']) && $_REQUEST['popuptype'] != '' && isset($_REQUEST['post_id']) && $_REQUEST['post_id'] != '') { |
|
192 | - |
|
193 | - if ($_REQUEST['popuptype'] == 'b_send_inquiry' || $_REQUEST['popuptype'] == 'b_sendtofriend') { |
|
194 | - $template = locate_template(array("geodirectory/popup-forms.php")); |
|
195 | - if (!$template) { |
|
196 | - $template = geodir_plugin_path() . '/geodirectory-templates/popup-forms.php'; |
|
197 | - } |
|
198 | - require_once($template); |
|
199 | - } |
|
200 | - |
|
201 | - gd_die(); |
|
202 | - } |
|
203 | - |
|
204 | - /*if(isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'filter_ajax'){ |
|
113 | + echo '1'; |
|
114 | + } |
|
115 | + |
|
116 | + if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'category_ajax') { |
|
117 | + if (isset($_REQUEST['main_catid']) && isset($_REQUEST['cat_tax']) && isset($_REQUEST['exclude'])) |
|
118 | + geodir_addpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['main_catid'], '', '', '', $_REQUEST['exclude']); |
|
119 | + else if (isset($_REQUEST['catpid']) && isset($_REQUEST['cat_tax'])) |
|
120 | + geodir_editpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['catpid']); |
|
121 | + } |
|
122 | + |
|
123 | + if ((isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'admin_ajax') || isset($_REQUEST['create_field']) || isset($_REQUEST['sort_create_field'])) { |
|
124 | + if (current_user_can('manage_options')) { |
|
125 | + /** |
|
126 | + * Contains admin ajax handling functions. |
|
127 | + * |
|
128 | + * @since 1.0.0 |
|
129 | + * @package GeoDirectory |
|
130 | + */ |
|
131 | + include_once(geodir_plugin_path() . '/geodirectory-admin/geodir_admin_ajax.php'); |
|
132 | + } else { |
|
133 | + wp_redirect(geodir_login_url()); |
|
134 | + gd_die(); |
|
135 | + } |
|
136 | + } |
|
137 | + |
|
138 | + if (isset($_REQUEST['geodir_autofill']) && $_REQUEST['geodir_autofill'] != '' && isset($_REQUEST['_wpnonce'])) { |
|
139 | + if (current_user_can('manage_options')) { |
|
140 | + switch ($_REQUEST['geodir_autofill']): |
|
141 | + case "geodir_dummy_delete" : |
|
142 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) |
|
143 | + return; |
|
144 | + |
|
145 | + $datatype = isset($_REQUEST['datatype']) ? sanitize_key($_REQUEST['datatype']) : ''; |
|
146 | + if (isset($_REQUEST['posttype'])) |
|
147 | + /** |
|
148 | + * Used to delete the dummy post data per post type. |
|
149 | + * |
|
150 | + * Uses dynamic hook, geodir_delete_dummy_posts_$_REQUEST['posttype']. |
|
151 | + * |
|
152 | + * @since 1.6.11 |
|
153 | + * @param string $posttype The post type to insert. |
|
154 | + * @param string $datatype The type of dummy data to insert. |
|
155 | + */ |
|
156 | + do_action('geodir_delete_dummy_posts' ,sanitize_key($_REQUEST['posttype']),$datatype); |
|
157 | + break; |
|
158 | + case "geodir_dummy_insert" : |
|
159 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) |
|
160 | + return; |
|
161 | + |
|
162 | + global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2; |
|
163 | + $city_bound_lat1 = $_REQUEST['city_bound_lat1']; |
|
164 | + $city_bound_lng1 = $_REQUEST['city_bound_lng1']; |
|
165 | + $city_bound_lat2 = $_REQUEST['city_bound_lat2']; |
|
166 | + $city_bound_lng2 = $_REQUEST['city_bound_lng2']; |
|
167 | + |
|
168 | + if (isset($_REQUEST['posttype'])){ |
|
169 | + /** |
|
170 | + * Used to insert the dummy post data per post type. |
|
171 | + * |
|
172 | + * Uses dynamic hook, geodir_insert_dummy_posts_$_REQUEST['posttype']. |
|
173 | + * |
|
174 | + * @since 1.6.11 |
|
175 | + * @param string $posttype The post type to insert. |
|
176 | + * @param string $datatype The type of dummy data to insert. |
|
177 | + * @param int $post_index The item number to insert. |
|
178 | + */ |
|
179 | + do_action('geodir_insert_dummy_posts',sanitize_key($_REQUEST['posttype']),sanitize_key($_REQUEST['datatype']),absint($_REQUEST['insert_dummy_post_index'])); |
|
180 | + } |
|
181 | + |
|
182 | + |
|
183 | + break; |
|
184 | + endswitch; |
|
185 | + } else { |
|
186 | + wp_redirect(geodir_login_url()); |
|
187 | + exit(); |
|
188 | + } |
|
189 | + } |
|
190 | + |
|
191 | + if (isset($_REQUEST['popuptype']) && $_REQUEST['popuptype'] != '' && isset($_REQUEST['post_id']) && $_REQUEST['post_id'] != '') { |
|
192 | + |
|
193 | + if ($_REQUEST['popuptype'] == 'b_send_inquiry' || $_REQUEST['popuptype'] == 'b_sendtofriend') { |
|
194 | + $template = locate_template(array("geodirectory/popup-forms.php")); |
|
195 | + if (!$template) { |
|
196 | + $template = geodir_plugin_path() . '/geodirectory-templates/popup-forms.php'; |
|
197 | + } |
|
198 | + require_once($template); |
|
199 | + } |
|
200 | + |
|
201 | + gd_die(); |
|
202 | + } |
|
203 | + |
|
204 | + /*if(isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'filter_ajax'){ |
|
205 | 205 | include_once ( geodir_plugin_path() . '/geodirectory-templates/advance-search-form.php'); |
206 | 206 | }*/ |
207 | 207 | |
208 | - if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'map_ajax') { |
|
209 | - /** |
|
210 | - * Contains map marker functions. |
|
211 | - * |
|
212 | - * @since 1.0.0 |
|
213 | - * @package GeoDirectory |
|
214 | - */ |
|
215 | - include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); |
|
216 | - } |
|
217 | - |
|
218 | - if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'favorite') { |
|
219 | - if (is_user_logged_in()) { |
|
220 | - switch ($_REQUEST['ajax_action']): |
|
221 | - case "add" : |
|
222 | - geodir_add_to_favorite((int)$_REQUEST['pid']); |
|
223 | - break; |
|
224 | - case "remove" : |
|
225 | - geodir_remove_from_favorite((int)$_REQUEST['pid']); |
|
226 | - break; |
|
227 | - endswitch; |
|
228 | - } else { |
|
229 | - wp_redirect(geodir_login_url()); |
|
230 | - exit(); |
|
231 | - } |
|
232 | - } |
|
233 | - |
|
234 | - if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'add_listing') { |
|
235 | - |
|
236 | - $is_current_user_owner = true; |
|
237 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
|
238 | - $is_current_user_owner = geodir_listing_belong_to_current_user((int)$_REQUEST['pid']); |
|
239 | - } |
|
240 | - |
|
241 | - $request = $gd_session->get('listing'); |
|
242 | - |
|
243 | - if (is_user_logged_in() && $is_current_user_owner) { |
|
244 | - |
|
245 | - switch ($_REQUEST['ajax_action']): |
|
246 | - case "add": |
|
247 | - case "update": |
|
248 | - |
|
249 | - if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') { |
|
250 | - $last_id = geodir_save_listing(); |
|
251 | - |
|
252 | - if ($last_id) { |
|
253 | - //$redirect_to = get_permalink( $last_id ); |
|
254 | - $redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id)); |
|
255 | - |
|
256 | - } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
|
257 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
258 | - $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false); |
|
259 | - } else |
|
260 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
261 | - |
|
262 | - wp_redirect($redirect_to); |
|
263 | - } else { |
|
264 | - $gd_session->un_set('listing'); |
|
265 | - wp_redirect(home_url()); |
|
266 | - } |
|
267 | - |
|
268 | - break; |
|
269 | - case "cancel" : |
|
270 | - |
|
271 | - $gd_session->un_set('listing'); |
|
272 | - |
|
273 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && get_permalink($_REQUEST['pid'])) |
|
274 | - wp_redirect(get_permalink($_REQUEST['pid'])); |
|
275 | - else { |
|
276 | - geodir_remove_temp_images(); |
|
277 | - wp_redirect(geodir_getlink(get_permalink(geodir_add_listing_page_id()), array('listing_type' => $_REQUEST['listing_type']))); |
|
278 | - } |
|
279 | - |
|
280 | - break; |
|
281 | - |
|
282 | - case "publish" : |
|
283 | - |
|
284 | - if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') { |
|
285 | - |
|
286 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
|
287 | - $new_post = array(); |
|
288 | - $new_post['ID'] = $_REQUEST['pid']; |
|
289 | - |
|
290 | - $lastid = wp_update_post($new_post); |
|
291 | - |
|
292 | - $gd_session->un_set('listing'); |
|
293 | - wp_redirect(get_permalink($lastid)); |
|
294 | - } else { |
|
295 | - $last_id = geodir_save_listing(); |
|
296 | - |
|
297 | - if ($last_id) { |
|
298 | - //$redirect_to = get_permalink( $last_id ); |
|
299 | - $redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id)); |
|
300 | - } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
|
301 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
302 | - $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false); |
|
303 | - } else |
|
304 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
305 | - |
|
306 | - $gd_session->un_set('listing'); |
|
307 | - wp_redirect($redirect_to); |
|
308 | - } |
|
309 | - } else { |
|
310 | - $gd_session->un_set('listing'); |
|
311 | - wp_redirect(home_url()); |
|
312 | - } |
|
313 | - |
|
314 | - break; |
|
315 | - case "delete" : |
|
316 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
|
317 | - global $current_user; |
|
318 | - |
|
319 | - if (get_option('geodir_disable_perm_delete')) { |
|
320 | - $lastid = wp_trash_post($_REQUEST['pid']); |
|
321 | - } else { |
|
322 | - $lastid = wp_delete_post($_REQUEST['pid']); |
|
323 | - } |
|
324 | - |
|
325 | - if ($lastid && !is_wp_error($lastid)) |
|
326 | - wp_redirect($_SERVER['HTTP_REFERER']); |
|
327 | - |
|
328 | - //wp_redirect( geodir_getlink(get_author_posts_url($current_user->ID),array('geodir_dashbord'=>'true','stype'=>$post_type ),false) ); |
|
329 | - } |
|
330 | - break; |
|
331 | - endswitch; |
|
332 | - |
|
333 | - $gd_session->un_set('listing'); |
|
334 | - } else { |
|
335 | - $gd_session->un_set('listing'); |
|
336 | - wp_redirect(geodir_login_url()); |
|
337 | - exit(); |
|
338 | - } |
|
339 | - } |
|
340 | - |
|
341 | - if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'user_login') { |
|
342 | - /** |
|
343 | - * Contains registration and login functions. |
|
344 | - * @todo Fix the file path. |
|
345 | - * |
|
346 | - * @since 1.0.0 |
|
347 | - * @package GeoDirectory |
|
348 | - */ |
|
349 | - include_once(geodir_plugin_path() . '/geodirectory-functions/geodirectory_reg.php'); |
|
350 | - } |
|
351 | - |
|
352 | - if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'geodir_get_term_list') { |
|
353 | - $args = array('taxonomy' => sanitize_text_field($_REQUEST['term'])); |
|
354 | - if (!empty($_REQUEST['parent_only'])) { |
|
355 | - $args['parent'] = 0; |
|
356 | - } |
|
357 | - $terms_o = get_terms($args); |
|
358 | - |
|
359 | - // Skip terms which has no listing |
|
360 | - if (!empty($terms_o)) { |
|
361 | - $filter_terms = array(); |
|
362 | - |
|
363 | - foreach ($terms_o as $term) { |
|
364 | - if (isset($term->count) && $term->count > 0) { |
|
365 | - $filter_terms[] = $term; |
|
366 | - } |
|
367 | - } |
|
368 | - $terms_o = $filter_terms; |
|
369 | - } |
|
370 | - |
|
371 | - $terms = geodir_sort_terms($terms_o, 'count'); |
|
372 | - geodir_helper_cat_list_output($terms, intval($_REQUEST['limit'])); |
|
373 | - exit(); |
|
374 | - } |
|
208 | + if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'map_ajax') { |
|
209 | + /** |
|
210 | + * Contains map marker functions. |
|
211 | + * |
|
212 | + * @since 1.0.0 |
|
213 | + * @package GeoDirectory |
|
214 | + */ |
|
215 | + include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); |
|
216 | + } |
|
217 | + |
|
218 | + if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'favorite') { |
|
219 | + if (is_user_logged_in()) { |
|
220 | + switch ($_REQUEST['ajax_action']): |
|
221 | + case "add" : |
|
222 | + geodir_add_to_favorite((int)$_REQUEST['pid']); |
|
223 | + break; |
|
224 | + case "remove" : |
|
225 | + geodir_remove_from_favorite((int)$_REQUEST['pid']); |
|
226 | + break; |
|
227 | + endswitch; |
|
228 | + } else { |
|
229 | + wp_redirect(geodir_login_url()); |
|
230 | + exit(); |
|
231 | + } |
|
232 | + } |
|
233 | + |
|
234 | + if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'add_listing') { |
|
235 | + |
|
236 | + $is_current_user_owner = true; |
|
237 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
|
238 | + $is_current_user_owner = geodir_listing_belong_to_current_user((int)$_REQUEST['pid']); |
|
239 | + } |
|
240 | + |
|
241 | + $request = $gd_session->get('listing'); |
|
242 | + |
|
243 | + if (is_user_logged_in() && $is_current_user_owner) { |
|
244 | + |
|
245 | + switch ($_REQUEST['ajax_action']): |
|
246 | + case "add": |
|
247 | + case "update": |
|
248 | + |
|
249 | + if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') { |
|
250 | + $last_id = geodir_save_listing(); |
|
251 | + |
|
252 | + if ($last_id) { |
|
253 | + //$redirect_to = get_permalink( $last_id ); |
|
254 | + $redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id)); |
|
255 | + |
|
256 | + } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
|
257 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
258 | + $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false); |
|
259 | + } else |
|
260 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
261 | + |
|
262 | + wp_redirect($redirect_to); |
|
263 | + } else { |
|
264 | + $gd_session->un_set('listing'); |
|
265 | + wp_redirect(home_url()); |
|
266 | + } |
|
267 | + |
|
268 | + break; |
|
269 | + case "cancel" : |
|
270 | + |
|
271 | + $gd_session->un_set('listing'); |
|
272 | + |
|
273 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && get_permalink($_REQUEST['pid'])) |
|
274 | + wp_redirect(get_permalink($_REQUEST['pid'])); |
|
275 | + else { |
|
276 | + geodir_remove_temp_images(); |
|
277 | + wp_redirect(geodir_getlink(get_permalink(geodir_add_listing_page_id()), array('listing_type' => $_REQUEST['listing_type']))); |
|
278 | + } |
|
279 | + |
|
280 | + break; |
|
281 | + |
|
282 | + case "publish" : |
|
283 | + |
|
284 | + if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') { |
|
285 | + |
|
286 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
|
287 | + $new_post = array(); |
|
288 | + $new_post['ID'] = $_REQUEST['pid']; |
|
289 | + |
|
290 | + $lastid = wp_update_post($new_post); |
|
291 | + |
|
292 | + $gd_session->un_set('listing'); |
|
293 | + wp_redirect(get_permalink($lastid)); |
|
294 | + } else { |
|
295 | + $last_id = geodir_save_listing(); |
|
296 | + |
|
297 | + if ($last_id) { |
|
298 | + //$redirect_to = get_permalink( $last_id ); |
|
299 | + $redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id)); |
|
300 | + } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
|
301 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
302 | + $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false); |
|
303 | + } else |
|
304 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); |
|
305 | + |
|
306 | + $gd_session->un_set('listing'); |
|
307 | + wp_redirect($redirect_to); |
|
308 | + } |
|
309 | + } else { |
|
310 | + $gd_session->un_set('listing'); |
|
311 | + wp_redirect(home_url()); |
|
312 | + } |
|
313 | + |
|
314 | + break; |
|
315 | + case "delete" : |
|
316 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
|
317 | + global $current_user; |
|
318 | + |
|
319 | + if (get_option('geodir_disable_perm_delete')) { |
|
320 | + $lastid = wp_trash_post($_REQUEST['pid']); |
|
321 | + } else { |
|
322 | + $lastid = wp_delete_post($_REQUEST['pid']); |
|
323 | + } |
|
324 | + |
|
325 | + if ($lastid && !is_wp_error($lastid)) |
|
326 | + wp_redirect($_SERVER['HTTP_REFERER']); |
|
327 | + |
|
328 | + //wp_redirect( geodir_getlink(get_author_posts_url($current_user->ID),array('geodir_dashbord'=>'true','stype'=>$post_type ),false) ); |
|
329 | + } |
|
330 | + break; |
|
331 | + endswitch; |
|
332 | + |
|
333 | + $gd_session->un_set('listing'); |
|
334 | + } else { |
|
335 | + $gd_session->un_set('listing'); |
|
336 | + wp_redirect(geodir_login_url()); |
|
337 | + exit(); |
|
338 | + } |
|
339 | + } |
|
340 | + |
|
341 | + if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'user_login') { |
|
342 | + /** |
|
343 | + * Contains registration and login functions. |
|
344 | + * @todo Fix the file path. |
|
345 | + * |
|
346 | + * @since 1.0.0 |
|
347 | + * @package GeoDirectory |
|
348 | + */ |
|
349 | + include_once(geodir_plugin_path() . '/geodirectory-functions/geodirectory_reg.php'); |
|
350 | + } |
|
351 | + |
|
352 | + if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'geodir_get_term_list') { |
|
353 | + $args = array('taxonomy' => sanitize_text_field($_REQUEST['term'])); |
|
354 | + if (!empty($_REQUEST['parent_only'])) { |
|
355 | + $args['parent'] = 0; |
|
356 | + } |
|
357 | + $terms_o = get_terms($args); |
|
358 | + |
|
359 | + // Skip terms which has no listing |
|
360 | + if (!empty($terms_o)) { |
|
361 | + $filter_terms = array(); |
|
362 | + |
|
363 | + foreach ($terms_o as $term) { |
|
364 | + if (isset($term->count) && $term->count > 0) { |
|
365 | + $filter_terms[] = $term; |
|
366 | + } |
|
367 | + } |
|
368 | + $terms_o = $filter_terms; |
|
369 | + } |
|
370 | + |
|
371 | + $terms = geodir_sort_terms($terms_o, 'count'); |
|
372 | + geodir_helper_cat_list_output($terms, intval($_REQUEST['limit'])); |
|
373 | + exit(); |
|
374 | + } |
|
375 | 375 | |
376 | - if ( !empty($_REQUEST['geodir_ajax'] ) && $_REQUEST['geodir_ajax'] == 'duplicate' && geodir_is_wpml() ) { |
|
377 | - if ( !empty( $_REQUEST['_nonce'] ) && wp_verify_nonce( $_REQUEST['_nonce'], 'geodir_duplicate_nonce' ) ) { |
|
378 | - $json = array(); |
|
379 | - $json['success'] = false; |
|
376 | + if ( !empty($_REQUEST['geodir_ajax'] ) && $_REQUEST['geodir_ajax'] == 'duplicate' && geodir_is_wpml() ) { |
|
377 | + if ( !empty( $_REQUEST['_nonce'] ) && wp_verify_nonce( $_REQUEST['_nonce'], 'geodir_duplicate_nonce' ) ) { |
|
378 | + $json = array(); |
|
379 | + $json['success'] = false; |
|
380 | 380 | |
381 | - $post_id = !empty( $_REQUEST['post_id'] ) ? absint( $_REQUEST['post_id'] ) : 0; |
|
382 | - $langs = !empty( $_REQUEST['dups'] ) ? explode( ',', sanitize_text_field( $_REQUEST['dups'] ) ) : array(); |
|
381 | + $post_id = !empty( $_REQUEST['post_id'] ) ? absint( $_REQUEST['post_id'] ) : 0; |
|
382 | + $langs = !empty( $_REQUEST['dups'] ) ? explode( ',', sanitize_text_field( $_REQUEST['dups'] ) ) : array(); |
|
383 | 383 | |
384 | - if ( !empty( $post_id ) && !empty( $langs ) ) { |
|
385 | - if ( geodir_wpml_allowed_to_duplicate( $post_id ) ) { |
|
386 | - global $sitepress; |
|
384 | + if ( !empty( $post_id ) && !empty( $langs ) ) { |
|
385 | + if ( geodir_wpml_allowed_to_duplicate( $post_id ) ) { |
|
386 | + global $sitepress; |
|
387 | 387 | |
388 | - $element_type = 'post_' . get_post_type( $post_id ); |
|
389 | - $master_post_id = $sitepress->get_original_element_id( $post_id, $element_type ); |
|
388 | + $element_type = 'post_' . get_post_type( $post_id ); |
|
389 | + $master_post_id = $sitepress->get_original_element_id( $post_id, $element_type ); |
|
390 | 390 | |
391 | - if ( $master_post_id == $post_id ) { |
|
392 | - $_REQUEST['icl_ajx_action'] = 'make_duplicates'; |
|
391 | + if ( $master_post_id == $post_id ) { |
|
392 | + $_REQUEST['icl_ajx_action'] = 'make_duplicates'; |
|
393 | 393 | |
394 | - foreach ( $langs as $lang ) { |
|
395 | - $return = $sitepress->make_duplicate( $master_post_id, $lang ); |
|
396 | - } |
|
397 | - $json['success'] = true; |
|
398 | - } else { |
|
399 | - $json['error'] = __( 'Translation can be done from original listing only.', 'geodirectory' ); |
|
400 | - } |
|
401 | - } else { |
|
402 | - $json['error'] = __( 'You are not allowed to translate this listing.', 'geodirectory' ); |
|
403 | - } |
|
404 | - } |
|
394 | + foreach ( $langs as $lang ) { |
|
395 | + $return = $sitepress->make_duplicate( $master_post_id, $lang ); |
|
396 | + } |
|
397 | + $json['success'] = true; |
|
398 | + } else { |
|
399 | + $json['error'] = __( 'Translation can be done from original listing only.', 'geodirectory' ); |
|
400 | + } |
|
401 | + } else { |
|
402 | + $json['error'] = __( 'You are not allowed to translate this listing.', 'geodirectory' ); |
|
403 | + } |
|
404 | + } |
|
405 | 405 | |
406 | - wp_send_json( $json ); |
|
407 | - } |
|
408 | - } |
|
406 | + wp_send_json( $json ); |
|
407 | + } |
|
408 | + } |
|
409 | 409 | |
410 | - gd_die(); |
|
410 | + gd_die(); |
|
411 | 411 | } |
412 | 412 | |
413 | 413 | |
414 | 414 | function geodir_show_ga_stats(){ |
415 | - if (isset($_REQUEST['ga_start'])) { |
|
416 | - $ga_start = $_REQUEST['ga_start']; |
|
417 | - } else { |
|
418 | - $ga_start = ''; |
|
419 | - } |
|
420 | - if (isset($_REQUEST['ga_end'])) { |
|
421 | - $ga_end = $_REQUEST['ga_end']; |
|
422 | - } else { |
|
423 | - $ga_end = ''; |
|
424 | - } |
|
425 | - try { |
|
426 | - geodir_getGoogleAnalytics($_REQUEST['ga_page'], $ga_start, $ga_end); |
|
427 | - } catch (Exception $e) { |
|
428 | - geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) ); |
|
429 | - } |
|
430 | - die; |
|
415 | + if (isset($_REQUEST['ga_start'])) { |
|
416 | + $ga_start = $_REQUEST['ga_start']; |
|
417 | + } else { |
|
418 | + $ga_start = ''; |
|
419 | + } |
|
420 | + if (isset($_REQUEST['ga_end'])) { |
|
421 | + $ga_end = $_REQUEST['ga_end']; |
|
422 | + } else { |
|
423 | + $ga_end = ''; |
|
424 | + } |
|
425 | + try { |
|
426 | + geodir_getGoogleAnalytics($_REQUEST['ga_page'], $ga_start, $ga_end); |
|
427 | + } catch (Exception $e) { |
|
428 | + geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) ); |
|
429 | + } |
|
430 | + die; |
|
431 | 431 | } |
432 | 432 | add_action( 'wp_ajax_gdga', 'geodir_show_ga_stats' ); |
433 | 433 | add_action( 'wp_ajax_nopriv_gdga', 'geodir_show_ga_stats' ); |
434 | 434 | \ No newline at end of file |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | */ |
45 | 45 | function geodir_on_wp() |
46 | 46 | { |
47 | - if(geodir_is_page('login')) { |
|
47 | + if (geodir_is_page('login')) { |
|
48 | 48 | geodir_user_signup(); |
49 | 49 | } |
50 | 50 | |
@@ -83,12 +83,12 @@ discard block |
||
83 | 83 | * @since 1.0.0 |
84 | 84 | * @package GeoDirectory |
85 | 85 | */ |
86 | - include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); |
|
86 | + include_once(geodir_plugin_path().'/geodirectory-functions/map-functions/get_markers.php'); |
|
87 | 87 | die; |
88 | 88 | } |
89 | 89 | |
90 | - if ( class_exists( 'WPSEO_Frontend' ) && !is_admin() ) { |
|
91 | - add_action( 'template_redirect', 'geodir_remove_yoast_seo_metas' ); |
|
90 | + if (class_exists('WPSEO_Frontend') && !is_admin()) { |
|
91 | + add_action('template_redirect', 'geodir_remove_yoast_seo_metas'); |
|
92 | 92 | } |
93 | 93 | } |
94 | 94 | |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | * @todo check if nonce is required here and if so add one. |
107 | 107 | */ |
108 | 108 | function geodir_ajax_handler() { |
109 | - global $wpdb, $gd_session,$post; |
|
109 | + global $wpdb, $gd_session, $post; |
|
110 | 110 | |
111 | 111 | if (isset($_REQUEST['gd_listing_view']) && $_REQUEST['gd_listing_view'] != '') { |
112 | 112 | $gd_session->set('gd_listing_view', $_REQUEST['gd_listing_view']); |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | * @since 1.0.0 |
129 | 129 | * @package GeoDirectory |
130 | 130 | */ |
131 | - include_once(geodir_plugin_path() . '/geodirectory-admin/geodir_admin_ajax.php'); |
|
131 | + include_once(geodir_plugin_path().'/geodirectory-admin/geodir_admin_ajax.php'); |
|
132 | 132 | } else { |
133 | 133 | wp_redirect(geodir_login_url()); |
134 | 134 | gd_die(); |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | * @param string $posttype The post type to insert. |
154 | 154 | * @param string $datatype The type of dummy data to insert. |
155 | 155 | */ |
156 | - do_action('geodir_delete_dummy_posts' ,sanitize_key($_REQUEST['posttype']),$datatype); |
|
156 | + do_action('geodir_delete_dummy_posts', sanitize_key($_REQUEST['posttype']), $datatype); |
|
157 | 157 | break; |
158 | 158 | case "geodir_dummy_insert" : |
159 | 159 | if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | $city_bound_lat2 = $_REQUEST['city_bound_lat2']; |
166 | 166 | $city_bound_lng2 = $_REQUEST['city_bound_lng2']; |
167 | 167 | |
168 | - if (isset($_REQUEST['posttype'])){ |
|
168 | + if (isset($_REQUEST['posttype'])) { |
|
169 | 169 | /** |
170 | 170 | * Used to insert the dummy post data per post type. |
171 | 171 | * |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | * @param string $datatype The type of dummy data to insert. |
177 | 177 | * @param int $post_index The item number to insert. |
178 | 178 | */ |
179 | - do_action('geodir_insert_dummy_posts',sanitize_key($_REQUEST['posttype']),sanitize_key($_REQUEST['datatype']),absint($_REQUEST['insert_dummy_post_index'])); |
|
179 | + do_action('geodir_insert_dummy_posts', sanitize_key($_REQUEST['posttype']), sanitize_key($_REQUEST['datatype']), absint($_REQUEST['insert_dummy_post_index'])); |
|
180 | 180 | } |
181 | 181 | |
182 | 182 | |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | if ($_REQUEST['popuptype'] == 'b_send_inquiry' || $_REQUEST['popuptype'] == 'b_sendtofriend') { |
194 | 194 | $template = locate_template(array("geodirectory/popup-forms.php")); |
195 | 195 | if (!$template) { |
196 | - $template = geodir_plugin_path() . '/geodirectory-templates/popup-forms.php'; |
|
196 | + $template = geodir_plugin_path().'/geodirectory-templates/popup-forms.php'; |
|
197 | 197 | } |
198 | 198 | require_once($template); |
199 | 199 | } |
@@ -212,17 +212,17 @@ discard block |
||
212 | 212 | * @since 1.0.0 |
213 | 213 | * @package GeoDirectory |
214 | 214 | */ |
215 | - include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); |
|
215 | + include_once(geodir_plugin_path().'/geodirectory-functions/map-functions/get_markers.php'); |
|
216 | 216 | } |
217 | 217 | |
218 | 218 | if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'favorite') { |
219 | 219 | if (is_user_logged_in()) { |
220 | 220 | switch ($_REQUEST['ajax_action']): |
221 | 221 | case "add" : |
222 | - geodir_add_to_favorite((int)$_REQUEST['pid']); |
|
222 | + geodir_add_to_favorite((int) $_REQUEST['pid']); |
|
223 | 223 | break; |
224 | 224 | case "remove" : |
225 | - geodir_remove_from_favorite((int)$_REQUEST['pid']); |
|
225 | + geodir_remove_from_favorite((int) $_REQUEST['pid']); |
|
226 | 226 | break; |
227 | 227 | endswitch; |
228 | 228 | } else { |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | |
236 | 236 | $is_current_user_owner = true; |
237 | 237 | if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
238 | - $is_current_user_owner = geodir_listing_belong_to_current_user((int)$_REQUEST['pid']); |
|
238 | + $is_current_user_owner = geodir_listing_belong_to_current_user((int) $_REQUEST['pid']); |
|
239 | 239 | } |
240 | 240 | |
241 | 241 | $request = $gd_session->get('listing'); |
@@ -346,7 +346,7 @@ discard block |
||
346 | 346 | * @since 1.0.0 |
347 | 347 | * @package GeoDirectory |
348 | 348 | */ |
349 | - include_once(geodir_plugin_path() . '/geodirectory-functions/geodirectory_reg.php'); |
|
349 | + include_once(geodir_plugin_path().'/geodirectory-functions/geodirectory_reg.php'); |
|
350 | 350 | } |
351 | 351 | |
352 | 352 | if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'geodir_get_term_list') { |
@@ -373,37 +373,37 @@ discard block |
||
373 | 373 | exit(); |
374 | 374 | } |
375 | 375 | |
376 | - if ( !empty($_REQUEST['geodir_ajax'] ) && $_REQUEST['geodir_ajax'] == 'duplicate' && geodir_is_wpml() ) { |
|
377 | - if ( !empty( $_REQUEST['_nonce'] ) && wp_verify_nonce( $_REQUEST['_nonce'], 'geodir_duplicate_nonce' ) ) { |
|
376 | + if (!empty($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'duplicate' && geodir_is_wpml()) { |
|
377 | + if (!empty($_REQUEST['_nonce']) && wp_verify_nonce($_REQUEST['_nonce'], 'geodir_duplicate_nonce')) { |
|
378 | 378 | $json = array(); |
379 | 379 | $json['success'] = false; |
380 | 380 | |
381 | - $post_id = !empty( $_REQUEST['post_id'] ) ? absint( $_REQUEST['post_id'] ) : 0; |
|
382 | - $langs = !empty( $_REQUEST['dups'] ) ? explode( ',', sanitize_text_field( $_REQUEST['dups'] ) ) : array(); |
|
381 | + $post_id = !empty($_REQUEST['post_id']) ? absint($_REQUEST['post_id']) : 0; |
|
382 | + $langs = !empty($_REQUEST['dups']) ? explode(',', sanitize_text_field($_REQUEST['dups'])) : array(); |
|
383 | 383 | |
384 | - if ( !empty( $post_id ) && !empty( $langs ) ) { |
|
385 | - if ( geodir_wpml_allowed_to_duplicate( $post_id ) ) { |
|
384 | + if (!empty($post_id) && !empty($langs)) { |
|
385 | + if (geodir_wpml_allowed_to_duplicate($post_id)) { |
|
386 | 386 | global $sitepress; |
387 | 387 | |
388 | - $element_type = 'post_' . get_post_type( $post_id ); |
|
389 | - $master_post_id = $sitepress->get_original_element_id( $post_id, $element_type ); |
|
388 | + $element_type = 'post_'.get_post_type($post_id); |
|
389 | + $master_post_id = $sitepress->get_original_element_id($post_id, $element_type); |
|
390 | 390 | |
391 | - if ( $master_post_id == $post_id ) { |
|
391 | + if ($master_post_id == $post_id) { |
|
392 | 392 | $_REQUEST['icl_ajx_action'] = 'make_duplicates'; |
393 | 393 | |
394 | - foreach ( $langs as $lang ) { |
|
395 | - $return = $sitepress->make_duplicate( $master_post_id, $lang ); |
|
394 | + foreach ($langs as $lang) { |
|
395 | + $return = $sitepress->make_duplicate($master_post_id, $lang); |
|
396 | 396 | } |
397 | 397 | $json['success'] = true; |
398 | 398 | } else { |
399 | - $json['error'] = __( 'Translation can be done from original listing only.', 'geodirectory' ); |
|
399 | + $json['error'] = __('Translation can be done from original listing only.', 'geodirectory'); |
|
400 | 400 | } |
401 | 401 | } else { |
402 | - $json['error'] = __( 'You are not allowed to translate this listing.', 'geodirectory' ); |
|
402 | + $json['error'] = __('You are not allowed to translate this listing.', 'geodirectory'); |
|
403 | 403 | } |
404 | 404 | } |
405 | 405 | |
406 | - wp_send_json( $json ); |
|
406 | + wp_send_json($json); |
|
407 | 407 | } |
408 | 408 | } |
409 | 409 | |
@@ -411,7 +411,7 @@ discard block |
||
411 | 411 | } |
412 | 412 | |
413 | 413 | |
414 | -function geodir_show_ga_stats(){ |
|
414 | +function geodir_show_ga_stats() { |
|
415 | 415 | if (isset($_REQUEST['ga_start'])) { |
416 | 416 | $ga_start = $_REQUEST['ga_start']; |
417 | 417 | } else { |
@@ -425,9 +425,9 @@ discard block |
||
425 | 425 | try { |
426 | 426 | geodir_getGoogleAnalytics($_REQUEST['ga_page'], $ga_start, $ga_end); |
427 | 427 | } catch (Exception $e) { |
428 | - geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) ); |
|
428 | + geodir_error_log(wp_sprintf(__('GD Google Analytics API Error(%s) : %s', 'geodirectory'), $e->getCode(), $e->getMessage())); |
|
429 | 429 | } |
430 | 430 | die; |
431 | 431 | } |
432 | -add_action( 'wp_ajax_gdga', 'geodir_show_ga_stats' ); |
|
433 | -add_action( 'wp_ajax_nopriv_gdga', 'geodir_show_ga_stats' ); |
|
434 | 432 | \ No newline at end of file |
433 | +add_action('wp_ajax_gdga', 'geodir_show_ga_stats'); |
|
434 | +add_action('wp_ajax_nopriv_gdga', 'geodir_show_ga_stats'); |
|
435 | 435 | \ No newline at end of file |