Test Failed
Push — master ( 5c367d...c1a3f2 )
by
unknown
04:20
created
geodirectory-templates/login_frm.php 3 patches
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,8 +54,9 @@
 block discarded – undo
54 54
         echo "<p class=\"error_msg\"> " . INVALID_USER_PW_MSG . " </p>";
55 55
     }
56 56
 
57
-    if (isset($_REQUEST['checkemail']) && $_REQUEST['checkemail'] == 'confirm')
58
-        echo '<p class="sucess_msg">' . PW_SEND_CONFIRM_MSG . '</p>';
57
+    if (isset($_REQUEST['checkemail']) && $_REQUEST['checkemail'] == 'confirm') {
58
+            echo '<p class="sucess_msg">' . PW_SEND_CONFIRM_MSG . '</p>';
59
+    }
59 60
 
60 61
     ?>
61 62
     <form name="cus_loginform" id="cus_loginform" action="<?php echo esc_url(geodir_curPageURL()); ?>"
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,13 +49,13 @@
 block discarded – undo
49 49
     </h4>
50 50
     <?php
51 51
     if (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'fw') {
52
-        echo "<p class=\"error_msg\"> " . INVALID_USER_FPW_MSG . " </p>";
52
+        echo "<p class=\"error_msg\"> ".INVALID_USER_FPW_MSG." </p>";
53 53
     } elseif (isset($_REQUEST['logemsg']) && $_REQUEST['logemsg'] == 1) {
54
-        echo "<p class=\"error_msg\"> " . INVALID_USER_PW_MSG . " </p>";
54
+        echo "<p class=\"error_msg\"> ".INVALID_USER_PW_MSG." </p>";
55 55
     }
56 56
 
57 57
     if (isset($_REQUEST['checkemail']) && $_REQUEST['checkemail'] == 'confirm')
58
-        echo '<p class="sucess_msg">' . PW_SEND_CONFIRM_MSG . '</p>';
58
+        echo '<p class="sucess_msg">'.PW_SEND_CONFIRM_MSG.'</p>';
59 59
 
60 60
     ?>
61 61
     <form name="cus_loginform" id="cus_loginform" action="<?php echo esc_url(geodir_curPageURL()); ?>"
Please login to merge, or discard this patch.
Indentation   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 if (isset($_GET['redirect_to']) && $_GET['redirect_to'] != '') {
13
-    $redirect_to = $_GET['redirect_to'];
13
+	$redirect_to = $_GET['redirect_to'];
14 14
 } else {
15
-    //echo $_SERVER['HTTP_HOST'] ;
16
-    $redirect_to = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '';
17
-    if (strpos($redirect_to, $_SERVER['HTTP_HOST']) === false) {
18
-        $redirect_to = home_url();
19
-    }
15
+	//echo $_SERVER['HTTP_HOST'] ;
16
+	$redirect_to = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '';
17
+	if (strpos($redirect_to, $_SERVER['HTTP_HOST']) === false) {
18
+		$redirect_to = home_url();
19
+	}
20 20
 
21 21
 }
22 22
 
@@ -38,37 +38,37 @@  discard block
 block discarded – undo
38 38
     <h4>
39 39
         <?php
40 40
 
41
-            /**
42
-             * Filter the `SIGN_IN_PAGE_TITLE` title text on login form template.
43
-             *
44
-             * @since 1.0.0
45
-             */
46
-            echo apply_filters('geodir_login_page_title', SIGN_IN_PAGE_TITLE);
41
+			/**
42
+			 * Filter the `SIGN_IN_PAGE_TITLE` title text on login form template.
43
+			 *
44
+			 * @since 1.0.0
45
+			 */
46
+			echo apply_filters('geodir_login_page_title', SIGN_IN_PAGE_TITLE);
47 47
 
48
-        ?>
48
+		?>
49 49
     </h4>
50 50
     <?php
51
-    if (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'fw') {
52
-        echo "<p class=\"error_msg\"> " . INVALID_USER_FPW_MSG . " </p>";
53
-    } elseif (isset($_REQUEST['logemsg']) && $_REQUEST['logemsg'] == 1) {
54
-        echo "<p class=\"error_msg\"> " . INVALID_USER_PW_MSG . " </p>";
55
-    }
51
+	if (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'fw') {
52
+		echo "<p class=\"error_msg\"> " . INVALID_USER_FPW_MSG . " </p>";
53
+	} elseif (isset($_REQUEST['logemsg']) && $_REQUEST['logemsg'] == 1) {
54
+		echo "<p class=\"error_msg\"> " . INVALID_USER_PW_MSG . " </p>";
55
+	}
56 56
 
57
-    if (isset($_REQUEST['checkemail']) && $_REQUEST['checkemail'] == 'confirm')
58
-        echo '<p class="sucess_msg">' . PW_SEND_CONFIRM_MSG . '</p>';
57
+	if (isset($_REQUEST['checkemail']) && $_REQUEST['checkemail'] == 'confirm')
58
+		echo '<p class="sucess_msg">' . PW_SEND_CONFIRM_MSG . '</p>';
59 59
 
60
-    do_action('geodir_login_error_messages');
60
+	do_action('geodir_login_error_messages');
61 61
 
62
-    ?>
62
+	?>
63 63
     <form name="cus_loginform" id="cus_loginform" method="post">
64 64
 
65 65
         <div class="form_row clearfix">
66 66
             <input placeholder='<?php echo USERNAME_TEXT; ?>' type="text" name="log" id="user_login"
67 67
                    value="<?php global $user_login;
68
-                   if (!isset($user_login)) {
69
-                       $user_login = '';
70
-                   }
71
-                   echo esc_attr($user_login); ?>" size="20" class="textfield"/>
68
+				   if (!isset($user_login)) {
69
+					   $user_login = '';
70
+				   }
71
+				   echo esc_attr($user_login); ?>" size="20" class="textfield"/>
72 72
             <span class="user_loginInfo"></span>
73 73
         </div>
74 74
 
@@ -79,14 +79,14 @@  discard block
 block discarded – undo
79 79
         </div>
80 80
 
81 81
         <?php
82
-        /**
83
-         * This is a default WordPress action that calls any additional elements needed for any login forms.
84
-         *
85
-         * We use this action before the remember me checkbox on the sigin form.
86
-         *
87
-         * @since 1.0.0
88
-         */
89
-        do_action('login_form'); ?>
82
+		/**
83
+		 * This is a default WordPress action that calls any additional elements needed for any login forms.
84
+		 *
85
+		 * We use this action before the remember me checkbox on the sigin form.
86
+		 *
87
+		 * @since 1.0.0
88
+		 */
89
+		do_action('login_form'); ?>
90 90
         <p class="rember">
91 91
             <input name="rememberme" type="checkbox" id="rememberme" value="forever" class="fl"/>
92 92
             <?php echo REMEMBER_ON_COMPUTER_TEXT; ?>
@@ -110,12 +110,12 @@  discard block
 block discarded – undo
110 110
                 <input placeholder='<?php echo USERNAME_EMAIL_TEXT; ?>' type="text" name="user_login"
111 111
                        value="<?php echo esc_attr($user_login); ?>" size="20" class="user_login1 textfield"/>
112 112
                 <?php
113
-                /**
114
-                 * Called before the get new password button in the login box template.
115
-                 *
116
-                 * @since 1.0.0
117
-                 */
118
-                do_action('lostpassword_form'); ?>
113
+				/**
114
+				 * Called before the get new password button in the login box template.
115
+				 *
116
+				 * @since 1.0.0
117
+				 */
118
+				do_action('lostpassword_form'); ?>
119 119
             </div>
120 120
             <input type="submit" name="get_new_password" value="<?php echo GET_NEW_PW_TEXT; ?>" class="geodir_button"/>
121 121
         </form>
Please login to merge, or discard this patch.
geodirectory-templates/preview-buttons.php 3 patches
Braces   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -61,10 +61,11 @@
 block discarded – undo
61 61
                 ob_start();
62 62
                 echo '<h5 class="geodir_information">';
63 63
 
64
-                if (!isset($_REQUEST['pid']))
65
-                    printf(GOING_TO_FREE_MSG, $type_title, $alive_days);
66
-                else
67
-                    printf(GOING_TO_UPDATE_MSG, $type_title, $alive_days);
64
+                if (!isset($_REQUEST['pid'])) {
65
+                                    printf(GOING_TO_FREE_MSG, $type_title, $alive_days);
66
+                } else {
67
+                                    printf(GOING_TO_UPDATE_MSG, $type_title, $alive_days);
68
+                }
68 69
 
69 70
                 echo '</h5>';
70 71
                 $publish_listing_form_message = ob_get_clean();
Please login to merge, or discard this patch.
Indentation   +76 added lines, -76 removed lines patch added patch discarded remove patch
@@ -15,9 +15,9 @@  discard block
 block discarded – undo
15 15
 $post_type = $post->listing_type;
16 16
 
17 17
 if (isset($_REQUEST['preview']) && $_REQUEST['preview'] && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
18
-    $form_action_url = geodir_get_ajax_url() . '&geodir_ajax=add_listing&ajax_action=update&listing_type=' . $post_type;
18
+	$form_action_url = geodir_get_ajax_url() . '&geodir_ajax=add_listing&ajax_action=update&listing_type=' . $post_type;
19 19
 } elseif (isset($_REQUEST['preview']) && $_REQUEST['preview']) {
20
-    $form_action_url = geodir_get_ajax_url() . '&geodir_ajax=add_listing&ajax_action=publish&listing_type=' . $post_type;
20
+	$form_action_url = geodir_get_ajax_url() . '&geodir_ajax=add_listing&ajax_action=publish&listing_type=' . $post_type;
21 21
 }
22 22
 
23 23
 /**
@@ -45,48 +45,48 @@  discard block
 block discarded – undo
45 45
         <form action="<?php echo $form_action_url; ?>" name="publish_listing" id="publish_listing" method="post">
46 46
             <div class="clearfix">
47 47
                 <input type="hidden" name="pid" value="<?php if (isset($post->pid)) {
48
-                    echo $post->pid;
49
-                } ?>">
48
+					echo $post->pid;
49
+				} ?>">
50 50
                 <?php
51
-                /**
52
-                 * Called on the add listing preview page inside the publish listings form, before the publish message.
53
-                 *
54
-                 * @since 1.0.0
55
-                 * @see 'geodir_publish_listing_form_after_msg'
56
-                 */
57
-                do_action('geodir_publish_listing_form_before_msg'); ?>
51
+				/**
52
+				 * Called on the add listing preview page inside the publish listings form, before the publish message.
53
+				 *
54
+				 * @since 1.0.0
55
+				 * @see 'geodir_publish_listing_form_after_msg'
56
+				 */
57
+				do_action('geodir_publish_listing_form_before_msg'); ?>
58 58
                 <?php
59
-                $alive_days = UNLIMITED;
60
-                $type_title = '';
61
-                ob_start();
62
-                echo '<h5 class="geodir_information">';
63
-
64
-                if (!isset($_REQUEST['pid']))
65
-                    printf(GOING_TO_FREE_MSG, $type_title, $alive_days);
66
-                else
67
-                    printf(GOING_TO_UPDATE_MSG, $type_title, $alive_days);
68
-
69
-                echo '</h5>';
70
-                $publish_listing_form_message = ob_get_clean();
71
-                /**
72
-                 * Filter the publish listing message on the preview page.
73
-                 *
74
-                 * @since 1.0.0
75
-                 * @param string $publish_listing_form_message The message to be filtered.
76
-                 */
77
-                $publish_listing_form_message = apply_filters('geodir_publish_listing_form_message', $publish_listing_form_message);
78
-                echo $publish_listing_form_message;
79
-
80
-                /**
81
-                 * Called on the add listing preview page inside the publish listings form, after the publish message.
82
-                 *
83
-                 * @since 1.0.0
84
-                 * @see 'geodir_publish_listing_form_before_msg'
85
-                 */
86
-                do_action('geodir_publish_listing_form_after_msg');
87
-
88
-                ob_start(); // start action button buffering
89
-                ?>
59
+				$alive_days = UNLIMITED;
60
+				$type_title = '';
61
+				ob_start();
62
+				echo '<h5 class="geodir_information">';
63
+
64
+				if (!isset($_REQUEST['pid']))
65
+					printf(GOING_TO_FREE_MSG, $type_title, $alive_days);
66
+				else
67
+					printf(GOING_TO_UPDATE_MSG, $type_title, $alive_days);
68
+
69
+				echo '</h5>';
70
+				$publish_listing_form_message = ob_get_clean();
71
+				/**
72
+				 * Filter the publish listing message on the preview page.
73
+				 *
74
+				 * @since 1.0.0
75
+				 * @param string $publish_listing_form_message The message to be filtered.
76
+				 */
77
+				$publish_listing_form_message = apply_filters('geodir_publish_listing_form_message', $publish_listing_form_message);
78
+				echo $publish_listing_form_message;
79
+
80
+				/**
81
+				 * Called on the add listing preview page inside the publish listings form, after the publish message.
82
+				 *
83
+				 * @since 1.0.0
84
+				 * @see 'geodir_publish_listing_form_before_msg'
85
+				 */
86
+				do_action('geodir_publish_listing_form_after_msg');
87
+
88
+				ob_start(); // start action button buffering
89
+				?>
90 90
                 <?php if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { ?>
91 91
 
92 92
                     <input type="submit" name="Submit and Pay" value="<?php echo PRO_UPDATE_BUTTON; ?>"
@@ -95,46 +95,46 @@  discard block
 block discarded – undo
95 95
                     <input type="submit" name="Submit and Pay" value="<?php echo PRO_SUBMIT_BUTTON; ?>"
96 96
                            class=" geodir_button geodir_publish_button"/>
97 97
                 <?php
98
-                }
99
-                $publish_listing_form_button = ob_get_clean();
100
-                /**
101
-                 * Filter the HTML button for publishing the listing on the preview page.
102
-                 *
103
-                 * @since 1.0.0
104
-                 * @param string $publish_listing_form_button The HTML for the submit button.
105
-                 */
106
-                $publish_listing_form_button = apply_filters('geodir_publish_listing_form_button', $publish_listing_form_button);
107
-                echo $publish_listing_form_button;
108
-
109
-                $post_id = '';
110
-                if (isset($post->pid)) {
111
-                    $post_id = $post->pid;
112
-                } else if (isset($_REQUEST['pid'])) {
113
-                    $post_id = (int)$_REQUEST['pid'];
114
-                }
115
-
116
-                $postlink = get_permalink(geodir_add_listing_page_id());
117
-                $postlink = geodir_getlink($postlink, array('pid' => $post_id, 'backandedit' => '1', 'listing_type' => $post_type), false);
118
-
119
-                ob_start(); // start go back and edit / cancel buffering
120
-                ?>
98
+				}
99
+				$publish_listing_form_button = ob_get_clean();
100
+				/**
101
+				 * Filter the HTML button for publishing the listing on the preview page.
102
+				 *
103
+				 * @since 1.0.0
104
+				 * @param string $publish_listing_form_button The HTML for the submit button.
105
+				 */
106
+				$publish_listing_form_button = apply_filters('geodir_publish_listing_form_button', $publish_listing_form_button);
107
+				echo $publish_listing_form_button;
108
+
109
+				$post_id = '';
110
+				if (isset($post->pid)) {
111
+					$post_id = $post->pid;
112
+				} else if (isset($_REQUEST['pid'])) {
113
+					$post_id = (int)$_REQUEST['pid'];
114
+				}
115
+
116
+				$postlink = get_permalink(geodir_add_listing_page_id());
117
+				$postlink = geodir_getlink($postlink, array('pid' => $post_id, 'backandedit' => '1', 'listing_type' => $post_type), false);
118
+
119
+				ob_start(); // start go back and edit / cancel buffering
120
+				?>
121 121
                 <a href="<?php echo esc_url($postlink); ?>" class="geodir_goback"><?php echo PRO_BACK_AND_EDIT_TEXT; ?></a>
122 122
                 <input type="button" name="Cancel" value="<?php echo(PRO_CANCEL_BUTTON); ?>"
123 123
                        class="geodir_button geodir_cancle_button"
124 124
                        onclick="window.location.href='<?php echo geodir_get_ajax_url() . '&geodir_ajax=add_listing&ajax_action=cancel&pid=' . $post_id . '&listing_type=' . $post_type; ?>'"/>
125 125
                 <?php
126 126
 
127
-                $publish_listing_form_go_back = ob_get_clean();
128
-                /**
129
-                 * Filter the cancel and go back and edit HTML on the preview page.
130
-                 *
131
-                 * @since 1.0.0
132
-                 * @param string $publish_listing_form_go_back The HTML for the cancel and go back and edit button/link.
133
-                 */
134
-                $publish_listing_form_go_back = apply_filters('geodir_publish_listing_form_go_back', $publish_listing_form_go_back);
135
-                echo $publish_listing_form_go_back;
136
-
137
-                ?>
127
+				$publish_listing_form_go_back = ob_get_clean();
128
+				/**
129
+				 * Filter the cancel and go back and edit HTML on the preview page.
130
+				 *
131
+				 * @since 1.0.0
132
+				 * @param string $publish_listing_form_go_back The HTML for the cancel and go back and edit button/link.
133
+				 */
134
+				$publish_listing_form_go_back = apply_filters('geodir_publish_listing_form_go_back', $publish_listing_form_go_back);
135
+				echo $publish_listing_form_go_back;
136
+
137
+				?>
138 138
             </div>
139 139
         </form>
140 140
     </div>
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,9 +15,9 @@  discard block
 block discarded – undo
15 15
 $post_type = $post->listing_type;
16 16
 
17 17
 if (isset($_REQUEST['preview']) && $_REQUEST['preview'] && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
18
-    $form_action_url = geodir_get_ajax_url() . '&geodir_ajax=add_listing&ajax_action=update&listing_type=' . $post_type;
18
+    $form_action_url = geodir_get_ajax_url().'&geodir_ajax=add_listing&ajax_action=update&listing_type='.$post_type;
19 19
 } elseif (isset($_REQUEST['preview']) && $_REQUEST['preview']) {
20
-    $form_action_url = geodir_get_ajax_url() . '&geodir_ajax=add_listing&ajax_action=publish&listing_type=' . $post_type;
20
+    $form_action_url = geodir_get_ajax_url().'&geodir_ajax=add_listing&ajax_action=publish&listing_type='.$post_type;
21 21
 }
22 22
 
23 23
 /**
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
                 if (isset($post->pid)) {
111 111
                     $post_id = $post->pid;
112 112
                 } else if (isset($_REQUEST['pid'])) {
113
-                    $post_id = (int)$_REQUEST['pid'];
113
+                    $post_id = (int) $_REQUEST['pid'];
114 114
                 }
115 115
 
116 116
                 $postlink = get_permalink(geodir_add_listing_page_id());
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
                 <a href="<?php echo esc_url($postlink); ?>" class="geodir_goback"><?php echo PRO_BACK_AND_EDIT_TEXT; ?></a>
122 122
                 <input type="button" name="Cancel" value="<?php echo(PRO_CANCEL_BUTTON); ?>"
123 123
                        class="geodir_button geodir_cancle_button"
124
-                       onclick="window.location.href='<?php echo geodir_get_ajax_url() . '&geodir_ajax=add_listing&ajax_action=cancel&pid=' . $post_id . '&listing_type=' . $post_type; ?>'"/>
124
+                       onclick="window.location.href='<?php echo geodir_get_ajax_url().'&geodir_ajax=add_listing&ajax_action=cancel&pid='.$post_id.'&listing_type='.$post_type; ?>'"/>
125 125
                 <?php
126 126
 
127 127
                 $publish_listing_form_go_back = ob_get_clean();
Please login to merge, or discard this patch.
geodirectory-widgets/geodirectory_cpt_categories_widget.php 3 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -353,7 +353,7 @@
 block discarded – undo
353 353
 
354 354
     if(!$cpt_left){
355 355
         $cpt_left = "gd-cpt-flat";
356
-    }else{
356
+    } else{
357 357
         $cpt_left = '';
358 358
     }
359 359
 
Please login to merge, or discard this patch.
Indentation   +424 added lines, -424 removed lines patch added patch discarded remove patch
@@ -13,241 +13,241 @@  discard block
 block discarded – undo
13 13
  */
14 14
 class geodir_cpt_categories_widget extends WP_Widget {
15 15
 
16
-    /**
17
-     * Register the cpt categories with WordPress.
18
-     *
19
-     * @since 1.5.4
20
-     */
21
-    public function __construct() {
22
-        $widget_ops = array('classname' => 'geodir_cpt_categories_widget', 'description' => __('A list of GeoDirectory CPT categories.', 'geodirectory'));
23
-        parent::__construct('geodir_cpt_categories_widget', __('GD > CPT Categories', 'geodirectory'), $widget_ops);
24
-    }
25
-
26
-    /**
27
-     * Front-end display content for cpt categories widget.
28
-     *
29
-     * @since 1.5.4
30
-     * @since 1.6.6 New parameters $no_cpt_filter &no_cat_filter added.
31
-     *
32
-     * @param array $args Widget arguments.
33
-     * @param array $instance Saved values from database.
34
-     */
35
-    public function widget($args, $instance) {
36
-        $params = array();
37
-        /**
38
-         * Filter the widget title.
39
-         *
40
-         * @since 1.5.4
41
-         *
42
-         * @param string $title The widget title. Default empty.
43
-         * @param array  $instance An array of the widget's settings.
44
-         * @param mixed  $id_base The widget ID.
45
-         */
46
-        $params['title'] = apply_filters('geodir_cpt_categories_widget_title', empty($instance['title']) ? '' : $instance['title'], $instance, $this->id_base);
47
-
48
-        /**
49
-         * Filter the widget setting post type.
50
-         *
51
-         * @since 1.5.4
52
-         *
53
-         * @param array $post_type The post types to display categories.
54
-         * @param array $instance An array of the widget's settings.
55
-         * @param mixed $id_base The widget ID.
56
-         */
57
-        $params['post_type'] = apply_filters('geodir_cpt_categories_widget_post_type', empty($instance['post_type']) ? array() : $instance['post_type'], $instance, $this->id_base);
58
-
59
-        /**
60
-         * Filter the widget setting to hide empty categories.
61
-         *
62
-         * @since 1.5.4
63
-         *
64
-         * @param bool  $hide_empty If true then empty category will be not displayed.
65
-         * @param array $instance An array of the widget's settings.
66
-         * @param mixed $id_base The widget ID.
67
-         */
68
-        $params['hide_empty'] = apply_filters('geodir_cpt_categories_widget_hide_empty', empty($instance['hide_empty']) ? 0 : 1, $instance, $this->id_base);
69
-
70
-        /**
71
-         * Filter the widget setting to show/hide category count.
72
-         *
73
-         * @since 1.5.4
74
-         *
75
-         * @param bool  $show_count If true then category count will be displayed.
76
-         * @param array $instance An array of the widget's settings.
77
-         * @param mixed $id_base The widget ID.
78
-         */
79
-        $params['show_count'] = apply_filters('geodir_cpt_categories_widget_show_count', empty($instance['show_count']) ? 0 : 1, $instance, $this->id_base);
80
-
81
-        /**
82
-         * Filter the widget setting to show/hide category icon.
83
-         *
84
-         * @since 1.5.4
85
-         *
86
-         * @param bool  $hide_icon If true then category icon will be not displayed.
87
-         * @param array $instance An array of the widget's settings.
88
-         * @param mixed $id_base The widget ID.
89
-         */
90
-        $params['hide_icon'] = apply_filters('geodir_cpt_categories_widget_hide_icon', empty($instance['hide_icon']) ? 0 : 1, $instance, $this->id_base);
91
-
92
-        /**
93
-         * Filter the widget setting to show CPT inline or not.
94
-         *
95
-         * @since 1.5.4
96
-         *
97
-         * @param bool  $cpt_left If true then CPT will be displayed inline.
98
-         * @param array $instance An array of the widget's settings.
99
-         * @param mixed $id_base The widget ID.
100
-         */
101
-        $params['cpt_left'] = apply_filters('geodir_cpt_categories_widget_cpt_left', empty($instance['cpt_left']) ? 0 : 1, $instance, $this->id_base);
102
-
103
-        /**
104
-         * Filter the widget categories sorting order settings.
105
-         *
106
-         * @since 1.5.4
107
-         *
108
-         * @param string $max_count Widget max no of sub-categories count. Default 'count'.
109
-         * @param array       $instance An array of the widget's settings.
110
-         * @param mixed       $id_base The widget ID.
111
-         */
112
-        $params['sort_by'] = apply_filters('geodir_cpt_categories_widget_sort_by', isset($instance['sort_by']) && in_array($instance['sort_by'], array('az', 'count')) ? $instance['sort_by'] : 'count', $instance, $this->id_base);
113
-
114
-        /**
115
-         * Filter the widget max no of sub-categories count.
116
-         *
117
-         * @since 1.5.4
118
-         *
119
-         * @param bool|string $max_count Widget max no of sub-categories count.
120
-         * @param array       $instance An array of the widget's settings.
121
-         * @param mixed       $id_base The widget ID.
122
-         */
123
-        $params['max_count'] = apply_filters('geodir_cpt_categories_widget_max_count', !isset($instance['max_count']) ? 'all' : strip_tags($instance['max_count']), $instance, $this->id_base);
124
-
125
-        /**
126
-         * Filter the widget max sub-categories depth.
127
-         *
128
-         * @since 1.5.4
129
-         *
130
-         * @param bool|string $max_level Widget max sub-categories depth.
131
-         * @param array       $instance An array of the widget's settings.
132
-         * @param mixed       $id_base The widget ID.
133
-         */
134
-        $params['max_level'] = apply_filters('geodir_cpt_categories_widget_max_level', !isset($instance['max_level']) ? 'all' : strip_tags($instance['max_level']), $instance, $this->id_base);
16
+	/**
17
+	 * Register the cpt categories with WordPress.
18
+	 *
19
+	 * @since 1.5.4
20
+	 */
21
+	public function __construct() {
22
+		$widget_ops = array('classname' => 'geodir_cpt_categories_widget', 'description' => __('A list of GeoDirectory CPT categories.', 'geodirectory'));
23
+		parent::__construct('geodir_cpt_categories_widget', __('GD > CPT Categories', 'geodirectory'), $widget_ops);
24
+	}
25
+
26
+	/**
27
+	 * Front-end display content for cpt categories widget.
28
+	 *
29
+	 * @since 1.5.4
30
+	 * @since 1.6.6 New parameters $no_cpt_filter &no_cat_filter added.
31
+	 *
32
+	 * @param array $args Widget arguments.
33
+	 * @param array $instance Saved values from database.
34
+	 */
35
+	public function widget($args, $instance) {
36
+		$params = array();
37
+		/**
38
+		 * Filter the widget title.
39
+		 *
40
+		 * @since 1.5.4
41
+		 *
42
+		 * @param string $title The widget title. Default empty.
43
+		 * @param array  $instance An array of the widget's settings.
44
+		 * @param mixed  $id_base The widget ID.
45
+		 */
46
+		$params['title'] = apply_filters('geodir_cpt_categories_widget_title', empty($instance['title']) ? '' : $instance['title'], $instance, $this->id_base);
47
+
48
+		/**
49
+		 * Filter the widget setting post type.
50
+		 *
51
+		 * @since 1.5.4
52
+		 *
53
+		 * @param array $post_type The post types to display categories.
54
+		 * @param array $instance An array of the widget's settings.
55
+		 * @param mixed $id_base The widget ID.
56
+		 */
57
+		$params['post_type'] = apply_filters('geodir_cpt_categories_widget_post_type', empty($instance['post_type']) ? array() : $instance['post_type'], $instance, $this->id_base);
58
+
59
+		/**
60
+		 * Filter the widget setting to hide empty categories.
61
+		 *
62
+		 * @since 1.5.4
63
+		 *
64
+		 * @param bool  $hide_empty If true then empty category will be not displayed.
65
+		 * @param array $instance An array of the widget's settings.
66
+		 * @param mixed $id_base The widget ID.
67
+		 */
68
+		$params['hide_empty'] = apply_filters('geodir_cpt_categories_widget_hide_empty', empty($instance['hide_empty']) ? 0 : 1, $instance, $this->id_base);
69
+
70
+		/**
71
+		 * Filter the widget setting to show/hide category count.
72
+		 *
73
+		 * @since 1.5.4
74
+		 *
75
+		 * @param bool  $show_count If true then category count will be displayed.
76
+		 * @param array $instance An array of the widget's settings.
77
+		 * @param mixed $id_base The widget ID.
78
+		 */
79
+		$params['show_count'] = apply_filters('geodir_cpt_categories_widget_show_count', empty($instance['show_count']) ? 0 : 1, $instance, $this->id_base);
80
+
81
+		/**
82
+		 * Filter the widget setting to show/hide category icon.
83
+		 *
84
+		 * @since 1.5.4
85
+		 *
86
+		 * @param bool  $hide_icon If true then category icon will be not displayed.
87
+		 * @param array $instance An array of the widget's settings.
88
+		 * @param mixed $id_base The widget ID.
89
+		 */
90
+		$params['hide_icon'] = apply_filters('geodir_cpt_categories_widget_hide_icon', empty($instance['hide_icon']) ? 0 : 1, $instance, $this->id_base);
91
+
92
+		/**
93
+		 * Filter the widget setting to show CPT inline or not.
94
+		 *
95
+		 * @since 1.5.4
96
+		 *
97
+		 * @param bool  $cpt_left If true then CPT will be displayed inline.
98
+		 * @param array $instance An array of the widget's settings.
99
+		 * @param mixed $id_base The widget ID.
100
+		 */
101
+		$params['cpt_left'] = apply_filters('geodir_cpt_categories_widget_cpt_left', empty($instance['cpt_left']) ? 0 : 1, $instance, $this->id_base);
102
+
103
+		/**
104
+		 * Filter the widget categories sorting order settings.
105
+		 *
106
+		 * @since 1.5.4
107
+		 *
108
+		 * @param string $max_count Widget max no of sub-categories count. Default 'count'.
109
+		 * @param array       $instance An array of the widget's settings.
110
+		 * @param mixed       $id_base The widget ID.
111
+		 */
112
+		$params['sort_by'] = apply_filters('geodir_cpt_categories_widget_sort_by', isset($instance['sort_by']) && in_array($instance['sort_by'], array('az', 'count')) ? $instance['sort_by'] : 'count', $instance, $this->id_base);
113
+
114
+		/**
115
+		 * Filter the widget max no of sub-categories count.
116
+		 *
117
+		 * @since 1.5.4
118
+		 *
119
+		 * @param bool|string $max_count Widget max no of sub-categories count.
120
+		 * @param array       $instance An array of the widget's settings.
121
+		 * @param mixed       $id_base The widget ID.
122
+		 */
123
+		$params['max_count'] = apply_filters('geodir_cpt_categories_widget_max_count', !isset($instance['max_count']) ? 'all' : strip_tags($instance['max_count']), $instance, $this->id_base);
124
+
125
+		/**
126
+		 * Filter the widget max sub-categories depth.
127
+		 *
128
+		 * @since 1.5.4
129
+		 *
130
+		 * @param bool|string $max_level Widget max sub-categories depth.
131
+		 * @param array       $instance An array of the widget's settings.
132
+		 * @param mixed       $id_base The widget ID.
133
+		 */
134
+		$params['max_level'] = apply_filters('geodir_cpt_categories_widget_max_level', !isset($instance['max_level']) ? 'all' : strip_tags($instance['max_level']), $instance, $this->id_base);
135 135
         
136
-        /**
137
-         * Filter the widget setting to disable filter current viewing post type.
138
-         *
139
-         * @since 1.6.6
140
-         *
141
-         * @param bool  $no_cpt_filter If true then it doesn't filter current viewing post type.
142
-         * @param array $instance An array of the widget's settings.
143
-         * @param mixed $id_base The widget ID.
144
-         */
145
-        $params['no_cpt_filter'] = apply_filters('geodir_cpt_categories_widget_no_cpt_filter', empty($instance['no_cpt_filter']) ? 0 : 1, $instance, $this->id_base);
136
+		/**
137
+		 * Filter the widget setting to disable filter current viewing post type.
138
+		 *
139
+		 * @since 1.6.6
140
+		 *
141
+		 * @param bool  $no_cpt_filter If true then it doesn't filter current viewing post type.
142
+		 * @param array $instance An array of the widget's settings.
143
+		 * @param mixed $id_base The widget ID.
144
+		 */
145
+		$params['no_cpt_filter'] = apply_filters('geodir_cpt_categories_widget_no_cpt_filter', empty($instance['no_cpt_filter']) ? 0 : 1, $instance, $this->id_base);
146 146
         
147
-        /**
148
-         * Filter the widget setting to disable current viewing category.
149
-         *
150
-         * @since 1.6.6
151
-         *
152
-         * @param bool  $no_cat_filter If true then it doesn't filter current viewing category.
153
-         * @param array $instance An array of the widget's settings.
154
-         * @param mixed $id_base The widget ID.
155
-         */
156
-        $params['no_cat_filter'] = apply_filters('geodir_cpt_categories_widget_no_cat_filter', empty($instance['no_cat_filter']) ? 0 : 1, $instance, $this->id_base);
157
-
158
-        /**
159
-         * Filter the widget parameters.
160
-         *
161
-         * @since 1.5.4
162
-         *
163
-         * @param array $params The widget parameters.
164
-         * @param array $instance An array of the widget's settings.
165
-         * @param mixed $id_base The widget ID.
166
-         */
167
-        $params = apply_filters('geodir_cpt_categories_widget_params', $params, $instance, $this->id_base);
168
-
169
-        $output = geodir_cpt_categories_output($params);
170
-
171
-        echo $args['before_widget'];
172
-        if ( $params['title'] ) {
173
-            echo '<div class="geodir_list_heading clearfix">';
174
-            echo $args['before_title'] . $params['title'] . $args['after_title'];
175
-            echo '</div>';
176
-        }
177
-        echo '<div class="gd-cptcats-widget">';
178
-        echo $output;
179
-        echo '</div>';
180
-        echo $args['after_widget'];
181
-    }
182
-
183
-    /**
184
-     * Sanitize cpt categories widget values as they are saved.
185
-     *
186
-     * @since 1.5.4
187
-     * @since 1.6.6 New parameters $no_cpt_filter &no_cat_filter added.
188
-     *
189
-     * @param array $new_instance Values just sent to be saved.
190
-     * @param array $old_instance Previously saved values from database.
191
-     *
192
-     * @return array Updated safe values to be saved.
193
-     */
194
-    public function update($new_instance, $old_instance) {
195
-        $new_instance['post_type'] = is_array($new_instance['post_type']) && in_array('0', $new_instance['post_type']) ? array('0') : $new_instance['post_type'];
196
-        $instance = $old_instance;
197
-        $instance['title'] = strip_tags($new_instance['title']);
198
-        $instance['post_type'] = isset($new_instance['post_type']) ? $new_instance['post_type'] : array('0');
199
-        $instance['hide_empty'] = !empty($new_instance['hide_empty']) ? 1 : 0;
200
-        $instance['show_count'] = !empty($new_instance['show_count']) ? 1 : 0;
201
-        $instance['hide_icon'] = !empty($new_instance['hide_icon']) ? 1 : 0;
202
-        $instance['cpt_left'] = !empty($new_instance['cpt_left']) ? 1 : 0;
203
-        $instance['sort_by'] = isset($new_instance['sort_by']) && in_array($new_instance['sort_by'], array('az', 'count')) ? $new_instance['sort_by'] : 'count';
204
-        $instance['max_count'] = strip_tags($new_instance['max_count']);
205
-        $instance['max_level'] = strip_tags($new_instance['max_level']);
206
-        $instance['no_cpt_filter'] = !empty($new_instance['no_cpt_filter']) ? 1 : 0;
207
-        $instance['no_cat_filter'] = !empty($new_instance['no_cat_filter']) ? 1 : 0;
208
-
209
-        return $instance;
210
-    }
211
-
212
-    /**
213
-     * Back-end cpt categories settings form.
214
-     *
215
-     * @since 1.5.4
216
-     * @since 1.6.6 New parameters $no_cpt_filter &no_cat_filter added.
217
-     *
218
-     * @param array $instance Previously saved values from database.
219
-     */
220
-    public function form($instance) {
221
-        $instance = wp_parse_args( (array)$instance,
222
-            array(
223
-                'title' => '',
224
-                'post_type' => array(), // NULL for all
225
-                'hide_empty' => '',
226
-                'show_count' => '',
227
-                'hide_icon' => '',
228
-                'cpt_left' => '',
229
-                'sort_by' => 'count',
230
-                'max_count' => 'all',
231
-                'max_level' => '1',
232
-                'no_cpt_filter' => '',
233
-                'no_cat_filter' => '',
234
-            )
235
-        );
236
-
237
-        $title = strip_tags($instance['title']);
238
-        $post_type = $instance['post_type'];
239
-        $hide_empty = !empty($instance['hide_empty']) ? true : false;
240
-        $show_count = !empty($instance['show_count']) ? true : false;
241
-        $hide_icon = !empty($instance['hide_icon']) ? true : false;
242
-        $cpt_left = !empty($instance['cpt_left']) ? true : false;
243
-        $max_count = strip_tags($instance['max_count']);
244
-        $max_level = strip_tags($instance['max_level']);
245
-        $sort_by = isset($instance['sort_by']) && in_array($instance['sort_by'], array('az', 'count')) ? $instance['sort_by'] : 'count';
246
-        $no_cpt_filter = !empty($instance['no_cpt_filter']) ? true : false;
247
-        $no_cat_filter = !empty($instance['no_cat_filter']) ? true : false;
248
-
249
-        $post_type_options = geodir_get_posttypes('options');
250
-        ?>
147
+		/**
148
+		 * Filter the widget setting to disable current viewing category.
149
+		 *
150
+		 * @since 1.6.6
151
+		 *
152
+		 * @param bool  $no_cat_filter If true then it doesn't filter current viewing category.
153
+		 * @param array $instance An array of the widget's settings.
154
+		 * @param mixed $id_base The widget ID.
155
+		 */
156
+		$params['no_cat_filter'] = apply_filters('geodir_cpt_categories_widget_no_cat_filter', empty($instance['no_cat_filter']) ? 0 : 1, $instance, $this->id_base);
157
+
158
+		/**
159
+		 * Filter the widget parameters.
160
+		 *
161
+		 * @since 1.5.4
162
+		 *
163
+		 * @param array $params The widget parameters.
164
+		 * @param array $instance An array of the widget's settings.
165
+		 * @param mixed $id_base The widget ID.
166
+		 */
167
+		$params = apply_filters('geodir_cpt_categories_widget_params', $params, $instance, $this->id_base);
168
+
169
+		$output = geodir_cpt_categories_output($params);
170
+
171
+		echo $args['before_widget'];
172
+		if ( $params['title'] ) {
173
+			echo '<div class="geodir_list_heading clearfix">';
174
+			echo $args['before_title'] . $params['title'] . $args['after_title'];
175
+			echo '</div>';
176
+		}
177
+		echo '<div class="gd-cptcats-widget">';
178
+		echo $output;
179
+		echo '</div>';
180
+		echo $args['after_widget'];
181
+	}
182
+
183
+	/**
184
+	 * Sanitize cpt categories widget values as they are saved.
185
+	 *
186
+	 * @since 1.5.4
187
+	 * @since 1.6.6 New parameters $no_cpt_filter &no_cat_filter added.
188
+	 *
189
+	 * @param array $new_instance Values just sent to be saved.
190
+	 * @param array $old_instance Previously saved values from database.
191
+	 *
192
+	 * @return array Updated safe values to be saved.
193
+	 */
194
+	public function update($new_instance, $old_instance) {
195
+		$new_instance['post_type'] = is_array($new_instance['post_type']) && in_array('0', $new_instance['post_type']) ? array('0') : $new_instance['post_type'];
196
+		$instance = $old_instance;
197
+		$instance['title'] = strip_tags($new_instance['title']);
198
+		$instance['post_type'] = isset($new_instance['post_type']) ? $new_instance['post_type'] : array('0');
199
+		$instance['hide_empty'] = !empty($new_instance['hide_empty']) ? 1 : 0;
200
+		$instance['show_count'] = !empty($new_instance['show_count']) ? 1 : 0;
201
+		$instance['hide_icon'] = !empty($new_instance['hide_icon']) ? 1 : 0;
202
+		$instance['cpt_left'] = !empty($new_instance['cpt_left']) ? 1 : 0;
203
+		$instance['sort_by'] = isset($new_instance['sort_by']) && in_array($new_instance['sort_by'], array('az', 'count')) ? $new_instance['sort_by'] : 'count';
204
+		$instance['max_count'] = strip_tags($new_instance['max_count']);
205
+		$instance['max_level'] = strip_tags($new_instance['max_level']);
206
+		$instance['no_cpt_filter'] = !empty($new_instance['no_cpt_filter']) ? 1 : 0;
207
+		$instance['no_cat_filter'] = !empty($new_instance['no_cat_filter']) ? 1 : 0;
208
+
209
+		return $instance;
210
+	}
211
+
212
+	/**
213
+	 * Back-end cpt categories settings form.
214
+	 *
215
+	 * @since 1.5.4
216
+	 * @since 1.6.6 New parameters $no_cpt_filter &no_cat_filter added.
217
+	 *
218
+	 * @param array $instance Previously saved values from database.
219
+	 */
220
+	public function form($instance) {
221
+		$instance = wp_parse_args( (array)$instance,
222
+			array(
223
+				'title' => '',
224
+				'post_type' => array(), // NULL for all
225
+				'hide_empty' => '',
226
+				'show_count' => '',
227
+				'hide_icon' => '',
228
+				'cpt_left' => '',
229
+				'sort_by' => 'count',
230
+				'max_count' => 'all',
231
+				'max_level' => '1',
232
+				'no_cpt_filter' => '',
233
+				'no_cat_filter' => '',
234
+			)
235
+		);
236
+
237
+		$title = strip_tags($instance['title']);
238
+		$post_type = $instance['post_type'];
239
+		$hide_empty = !empty($instance['hide_empty']) ? true : false;
240
+		$show_count = !empty($instance['show_count']) ? true : false;
241
+		$hide_icon = !empty($instance['hide_icon']) ? true : false;
242
+		$cpt_left = !empty($instance['cpt_left']) ? true : false;
243
+		$max_count = strip_tags($instance['max_count']);
244
+		$max_level = strip_tags($instance['max_level']);
245
+		$sort_by = isset($instance['sort_by']) && in_array($instance['sort_by'], array('az', 'count')) ? $instance['sort_by'] : 'count';
246
+		$no_cpt_filter = !empty($instance['no_cpt_filter']) ? true : false;
247
+		$no_cat_filter = !empty($instance['no_cat_filter']) ? true : false;
248
+
249
+		$post_type_options = geodir_get_posttypes('options');
250
+		?>
251 251
         <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory'); ?></label> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></p>
252 252
         <p>
253 253
             <label for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Select CPT:', 'geodirectory'); ?></label>
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
             <label for="<?php echo $this->get_field_id('no_cat_filter'); ?>"><?php _e( 'Don\'t filter for current viewing category', 'geodirectory' ); ?></label>
299 299
         </p>
300 300
     <?php
301
-    }
301
+	}
302 302
 } // class geodir_cpt_categories_widget
303 303
 
304 304
 register_widget('geodir_cpt_categories_widget');
@@ -313,153 +313,153 @@  discard block
 block discarded – undo
313 313
  * @return string CPT categories content.
314 314
  */
315 315
 function geodir_cpt_categories_output($params) {
316
-    $args = wp_parse_args((array)$params,
317
-        array(
318
-            'title' => '',
319
-            'post_type' => array(), // NULL for all
320
-            'hide_empty' => '',
321
-            'show_count' => '',
322
-            'hide_icon' => '',
323
-            'cpt_left' => '',
324
-            'sort_by' => 'count',
325
-            'max_count' => 'all',
326
-            'max_level' => '1',
327
-            'no_cpt_filter' => '',
328
-            'no_cat_filter' => '',
329
-        )
330
-    );
331
-
332
-    $sort_by = isset($args['sort_by']) && in_array($args['sort_by'], array('az', 'count')) ? $args['sort_by'] : 'count';
333
-    $cpt_filter = empty($args['no_cpt_filter']) ? true : false;
334
-    $cat_filter = empty($args['no_cat_filter']) ? true : false;
335
-
336
-    $gd_post_types = geodir_get_posttypes('array');
337
-
338
-    $post_type_arr = !is_array($args['post_type']) ? explode(',', $args['post_type']) : $args['post_type'];
339
-    $current_posttype = geodir_get_current_posttype();
340
-
341
-    $is_listing = false;
342
-    $is_category = false;
343
-    if (geodir_is_page('listing')) {
344
-        $current_posttype = geodir_get_current_posttype();
345
-
346
-        if ($current_posttype != '' && isset($gd_post_types[$current_posttype])) {
347
-            $is_listing = true;
348
-
349
-            if (is_tax()) { // category page
350
-                $current_term_id = get_queried_object_id();
351
-                $current_taxonomy = get_query_var('taxonomy');
352
-                $current_posttype = geodir_get_current_posttype();
353
-
354
-                if ($current_term_id && $current_posttype && get_query_var('taxonomy') == $current_posttype . 'category') {
355
-                    $is_category = true;
356
-                }
357
-            }
358
-        }
359
-    }
360
-
361
-    $parent_category = 0;
362
-    if ($is_listing && $cpt_filter) {
363
-        $post_type_arr = array($current_posttype);
364
-    }
365
-
366
-    $post_types = array();
367
-    if (!empty($post_type_arr)) {
368
-        if (in_array('0', $post_type_arr)) {
369
-            $post_types = $gd_post_types;
370
-        } else {
371
-            foreach ($post_type_arr as $cpt) {
372
-                if (isset($gd_post_types[$cpt])) {
373
-                    $post_types[$cpt] = $gd_post_types[$cpt];
374
-                }
375
-            }
376
-        }
377
-    }
378
-
379
-    if (empty($post_type_arr)) {
380
-        $post_types = $gd_post_types;
381
-    }
382
-
383
-    $hide_empty = !empty($args['hide_empty']) ? true : false;
384
-    $max_count = strip_tags($args['max_count']);
385
-    $all_childs = $max_count == 'all' ? true : false;
386
-    $max_count = $max_count > 0 ? (int)$max_count : 0;
387
-    $max_level = strip_tags($args['max_level']);
388
-    $show_count = !empty($args['show_count']) ? true : false;
389
-    $hide_icon = !empty($args['hide_icon']) ? true : false;
390
-    $cpt_left = !empty($args['cpt_left']) ? true : false;
391
-
392
-    if(!$cpt_left){
393
-        $cpt_left = "gd-cpt-flat";
394
-    }else{
395
-        $cpt_left = '';
396
-    }
397
-
398
-    $orderby = 'count';
399
-    $order = 'DESC';
400
-    if ($sort_by == 'az') {
401
-        $orderby = 'name';
402
-        $order = 'ASC';
403
-    }
404
-
405
-    $output = '';
406
-    if (!empty($post_types)) {
407
-        foreach ($post_types as $cpt => $cpt_info) {
408
-            $parent_category = ($is_category && $cat_filter && $cpt == $current_posttype) ? $current_term_id : 0;
409
-            $cat_taxonomy = $cpt . 'category';
410
-            $categories = get_terms($cat_taxonomy, array('orderby' => $orderby, 'order' => $order, 'hide_empty' => $hide_empty, 'parent' => $parent_category));
411
-            if ($hide_empty) {
412
-                $categories = geodir_filter_empty_terms($categories);
413
-            }
414
-            if ($sort_by == 'count') {
415
-                $categories = geodir_sort_terms($categories, 'count');
416
-            }
417
-
418
-            if (!empty($categories)) {
419
-                $term_icons = !$hide_icon ? geodir_get_term_icon() : array();
420
-                $row_class = '';
421
-
422
-                if ($is_listing) {
423
-                    $row_class = $is_category ? ' gd-cptcat-categ' : ' gd-cptcat-listing';
424
-                }
425
-                $cpt_row = '<div class="gd-cptcat-row gd-cptcat-' . $cpt . $row_class . ' '.$cpt_left.'">';
426
-
427
-                if ($is_category && $cat_filter && $cpt == $current_posttype) {
428
-                    $term_info = get_term($current_term_id, $cat_taxonomy);
429
-
430
-                    $term_icon_url = !empty($term_icons) && isset($term_icons[$term_info->term_id]) ? $term_icons[$term_info->term_id] : '';
431
-                    $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($term_info->name) . ' icon" src="' . $term_icon_url . '" /> ' : '';
432
-
433
-                    $count = $show_count ? ' <span class="gd-cptcat-count">(' . $term_info->count . ')</span>' : '';
434
-                    $cpt_row .= '<h2 class="gd-cptcat-title">' . $term_icon_url . $term_info->name . $count . '</h2>';
435
-                } else {
436
-                    $cpt_row .= '<h2 class="gd-cptcat-title">' . __($cpt_info['labels']['name'], 'geodirectory') . '</h2>';
437
-                }
438
-                foreach ($categories as $category) {
439
-                    $term_icon_url = !empty($term_icons) && isset($term_icons[$category->term_id]) ? $term_icons[$category->term_id] : '';
440
-                    $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($category->name) . ' icon" src="' . $term_icon_url . '" /> ' : '';
441
-
442
-                    $term_link = get_term_link( $category, $category->taxonomy );
443
-                    /** Filter documented in geodirectory-functions/general_functions.php **/
444
-                    $term_link = apply_filters( 'geodir_category_term_link', $term_link, $category->term_id, $cpt );
445
-
446
-                    $cpt_row .= '<ul class="gd-cptcat-ul gd-cptcat-parent  '.$cpt_left.'">';
447
-                    $cpt_row .= '<li class="gd-cptcat-li gd-cptcat-li-main">';
448
-                    $count = $show_count ? ' <span class="gd-cptcat-count">(' . $category->count . ')</span>' : '';
449
-                    $cpt_row .= '<h3 class="gd-cptcat-cat"><a href="' . esc_url($term_link) . '" title="' . esc_attr($category->name) . '">'  .$term_icon_url . $category->name . $count . '</a></h3>';
450
-                    if (($all_childs || $max_count > 0) && ($max_level == 'all' || (int)$max_level > 0)) {
451
-                        $cpt_row .= geodir_cpt_categories_child_cats($category->term_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons);
452
-                    }
453
-                    $cpt_row .= '</li>';
454
-                    $cpt_row .= '</ul>';
455
-                }
456
-                $cpt_row .= '</ul></div>';
457
-
458
-                $output .= $cpt_row;
459
-            }
460
-        }
461
-    }
462
-    return $output;
316
+	$args = wp_parse_args((array)$params,
317
+		array(
318
+			'title' => '',
319
+			'post_type' => array(), // NULL for all
320
+			'hide_empty' => '',
321
+			'show_count' => '',
322
+			'hide_icon' => '',
323
+			'cpt_left' => '',
324
+			'sort_by' => 'count',
325
+			'max_count' => 'all',
326
+			'max_level' => '1',
327
+			'no_cpt_filter' => '',
328
+			'no_cat_filter' => '',
329
+		)
330
+	);
331
+
332
+	$sort_by = isset($args['sort_by']) && in_array($args['sort_by'], array('az', 'count')) ? $args['sort_by'] : 'count';
333
+	$cpt_filter = empty($args['no_cpt_filter']) ? true : false;
334
+	$cat_filter = empty($args['no_cat_filter']) ? true : false;
335
+
336
+	$gd_post_types = geodir_get_posttypes('array');
337
+
338
+	$post_type_arr = !is_array($args['post_type']) ? explode(',', $args['post_type']) : $args['post_type'];
339
+	$current_posttype = geodir_get_current_posttype();
340
+
341
+	$is_listing = false;
342
+	$is_category = false;
343
+	if (geodir_is_page('listing')) {
344
+		$current_posttype = geodir_get_current_posttype();
345
+
346
+		if ($current_posttype != '' && isset($gd_post_types[$current_posttype])) {
347
+			$is_listing = true;
348
+
349
+			if (is_tax()) { // category page
350
+				$current_term_id = get_queried_object_id();
351
+				$current_taxonomy = get_query_var('taxonomy');
352
+				$current_posttype = geodir_get_current_posttype();
353
+
354
+				if ($current_term_id && $current_posttype && get_query_var('taxonomy') == $current_posttype . 'category') {
355
+					$is_category = true;
356
+				}
357
+			}
358
+		}
359
+	}
360
+
361
+	$parent_category = 0;
362
+	if ($is_listing && $cpt_filter) {
363
+		$post_type_arr = array($current_posttype);
364
+	}
365
+
366
+	$post_types = array();
367
+	if (!empty($post_type_arr)) {
368
+		if (in_array('0', $post_type_arr)) {
369
+			$post_types = $gd_post_types;
370
+		} else {
371
+			foreach ($post_type_arr as $cpt) {
372
+				if (isset($gd_post_types[$cpt])) {
373
+					$post_types[$cpt] = $gd_post_types[$cpt];
374
+				}
375
+			}
376
+		}
377
+	}
378
+
379
+	if (empty($post_type_arr)) {
380
+		$post_types = $gd_post_types;
381
+	}
382
+
383
+	$hide_empty = !empty($args['hide_empty']) ? true : false;
384
+	$max_count = strip_tags($args['max_count']);
385
+	$all_childs = $max_count == 'all' ? true : false;
386
+	$max_count = $max_count > 0 ? (int)$max_count : 0;
387
+	$max_level = strip_tags($args['max_level']);
388
+	$show_count = !empty($args['show_count']) ? true : false;
389
+	$hide_icon = !empty($args['hide_icon']) ? true : false;
390
+	$cpt_left = !empty($args['cpt_left']) ? true : false;
391
+
392
+	if(!$cpt_left){
393
+		$cpt_left = "gd-cpt-flat";
394
+	}else{
395
+		$cpt_left = '';
396
+	}
397
+
398
+	$orderby = 'count';
399
+	$order = 'DESC';
400
+	if ($sort_by == 'az') {
401
+		$orderby = 'name';
402
+		$order = 'ASC';
403
+	}
404
+
405
+	$output = '';
406
+	if (!empty($post_types)) {
407
+		foreach ($post_types as $cpt => $cpt_info) {
408
+			$parent_category = ($is_category && $cat_filter && $cpt == $current_posttype) ? $current_term_id : 0;
409
+			$cat_taxonomy = $cpt . 'category';
410
+			$categories = get_terms($cat_taxonomy, array('orderby' => $orderby, 'order' => $order, 'hide_empty' => $hide_empty, 'parent' => $parent_category));
411
+			if ($hide_empty) {
412
+				$categories = geodir_filter_empty_terms($categories);
413
+			}
414
+			if ($sort_by == 'count') {
415
+				$categories = geodir_sort_terms($categories, 'count');
416
+			}
417
+
418
+			if (!empty($categories)) {
419
+				$term_icons = !$hide_icon ? geodir_get_term_icon() : array();
420
+				$row_class = '';
421
+
422
+				if ($is_listing) {
423
+					$row_class = $is_category ? ' gd-cptcat-categ' : ' gd-cptcat-listing';
424
+				}
425
+				$cpt_row = '<div class="gd-cptcat-row gd-cptcat-' . $cpt . $row_class . ' '.$cpt_left.'">';
426
+
427
+				if ($is_category && $cat_filter && $cpt == $current_posttype) {
428
+					$term_info = get_term($current_term_id, $cat_taxonomy);
429
+
430
+					$term_icon_url = !empty($term_icons) && isset($term_icons[$term_info->term_id]) ? $term_icons[$term_info->term_id] : '';
431
+					$term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($term_info->name) . ' icon" src="' . $term_icon_url . '" /> ' : '';
432
+
433
+					$count = $show_count ? ' <span class="gd-cptcat-count">(' . $term_info->count . ')</span>' : '';
434
+					$cpt_row .= '<h2 class="gd-cptcat-title">' . $term_icon_url . $term_info->name . $count . '</h2>';
435
+				} else {
436
+					$cpt_row .= '<h2 class="gd-cptcat-title">' . __($cpt_info['labels']['name'], 'geodirectory') . '</h2>';
437
+				}
438
+				foreach ($categories as $category) {
439
+					$term_icon_url = !empty($term_icons) && isset($term_icons[$category->term_id]) ? $term_icons[$category->term_id] : '';
440
+					$term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($category->name) . ' icon" src="' . $term_icon_url . '" /> ' : '';
441
+
442
+					$term_link = get_term_link( $category, $category->taxonomy );
443
+					/** Filter documented in geodirectory-functions/general_functions.php **/
444
+					$term_link = apply_filters( 'geodir_category_term_link', $term_link, $category->term_id, $cpt );
445
+
446
+					$cpt_row .= '<ul class="gd-cptcat-ul gd-cptcat-parent  '.$cpt_left.'">';
447
+					$cpt_row .= '<li class="gd-cptcat-li gd-cptcat-li-main">';
448
+					$count = $show_count ? ' <span class="gd-cptcat-count">(' . $category->count . ')</span>' : '';
449
+					$cpt_row .= '<h3 class="gd-cptcat-cat"><a href="' . esc_url($term_link) . '" title="' . esc_attr($category->name) . '">'  .$term_icon_url . $category->name . $count . '</a></h3>';
450
+					if (($all_childs || $max_count > 0) && ($max_level == 'all' || (int)$max_level > 0)) {
451
+						$cpt_row .= geodir_cpt_categories_child_cats($category->term_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons);
452
+					}
453
+					$cpt_row .= '</li>';
454
+					$cpt_row .= '</ul>';
455
+				}
456
+				$cpt_row .= '</ul></div>';
457
+
458
+				$output .= $cpt_row;
459
+			}
460
+		}
461
+	}
462
+	return $output;
463 463
 }
464 464
 
465 465
 /**
@@ -479,48 +479,48 @@  discard block
 block discarded – undo
479 479
  * @return string Html content.
480 480
  */
481 481
 function geodir_cpt_categories_child_cats($parent_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons, $depth = 1) {
482
-    $cat_taxonomy = $cpt . 'category';
483
-
484
-    $orderby = 'count';
485
-    $order = 'DESC';
486
-    if ($sort_by == 'az') {
487
-        $orderby = 'name';
488
-        $order = 'ASC';
489
-    }
490
-
491
-    if ($max_level != 'all' && $depth > (int)$max_level ) {
492
-        return '';
493
-    }
494
-
495
-    $child_cats = get_terms($cat_taxonomy, array('orderby' => $orderby, 'order' => $order, 'hide_empty' => $hide_empty, 'parent' => $parent_id, 'number' => $max_count));
496
-    if ($hide_empty) {
497
-        $child_cats = geodir_filter_empty_terms($child_cats);
498
-    }
499
-
500
-    if (empty($child_cats)) {
501
-        return '';
502
-    }
503
-
504
-    if ($sort_by == 'count') {
505
-        $child_cats = geodir_sort_terms($child_cats, 'count');
506
-    }
507
-
508
-    $content = '<li class="gd-cptcat-li gd-cptcat-li-sub"><ul class="gd-cptcat-ul gd-cptcat-sub gd-cptcat-sub-' . $depth . '">';
509
-    $depth++;
510
-    foreach ($child_cats as $category) {
511
-        $term_icon_url = !empty($term_icons) && isset($term_icons[$category->term_id]) ? $term_icons[$category->term_id] : '';
512
-        $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($category->name) . ' icon" src="' . $term_icon_url . '" /> ' : '';
513
-        $term_link = get_term_link( $category, $category->taxonomy );
514
-        /** Filter documented in geodirectory-functions/general_functions.php **/
515
-        $term_link = apply_filters( 'geodir_category_term_link', $term_link, $category->term_id, $cpt );
516
-        $count = $show_count ? ' <span class="gd-cptcat-count">(' . $category->count . ')</span>' : '';
517
-
518
-        $content .= '<li class="gd-cptcat-li gd-cptcat-li-sub">';
519
-        $content .= '<a href="' . esc_url($term_link) . '" title="' . esc_attr($category->name) . '">' . $term_icon_url . $category->name . $count . '</a></li>';
520
-        $content .= geodir_cpt_categories_child_cats($category->term_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons, $depth);
521
-    }
522
-    $content .= '</li></ul>';
523
-
524
-    return $content;
482
+	$cat_taxonomy = $cpt . 'category';
483
+
484
+	$orderby = 'count';
485
+	$order = 'DESC';
486
+	if ($sort_by == 'az') {
487
+		$orderby = 'name';
488
+		$order = 'ASC';
489
+	}
490
+
491
+	if ($max_level != 'all' && $depth > (int)$max_level ) {
492
+		return '';
493
+	}
494
+
495
+	$child_cats = get_terms($cat_taxonomy, array('orderby' => $orderby, 'order' => $order, 'hide_empty' => $hide_empty, 'parent' => $parent_id, 'number' => $max_count));
496
+	if ($hide_empty) {
497
+		$child_cats = geodir_filter_empty_terms($child_cats);
498
+	}
499
+
500
+	if (empty($child_cats)) {
501
+		return '';
502
+	}
503
+
504
+	if ($sort_by == 'count') {
505
+		$child_cats = geodir_sort_terms($child_cats, 'count');
506
+	}
507
+
508
+	$content = '<li class="gd-cptcat-li gd-cptcat-li-sub"><ul class="gd-cptcat-ul gd-cptcat-sub gd-cptcat-sub-' . $depth . '">';
509
+	$depth++;
510
+	foreach ($child_cats as $category) {
511
+		$term_icon_url = !empty($term_icons) && isset($term_icons[$category->term_id]) ? $term_icons[$category->term_id] : '';
512
+		$term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($category->name) . ' icon" src="' . $term_icon_url . '" /> ' : '';
513
+		$term_link = get_term_link( $category, $category->taxonomy );
514
+		/** Filter documented in geodirectory-functions/general_functions.php **/
515
+		$term_link = apply_filters( 'geodir_category_term_link', $term_link, $category->term_id, $cpt );
516
+		$count = $show_count ? ' <span class="gd-cptcat-count">(' . $category->count . ')</span>' : '';
517
+
518
+		$content .= '<li class="gd-cptcat-li gd-cptcat-li-sub">';
519
+		$content .= '<a href="' . esc_url($term_link) . '" title="' . esc_attr($category->name) . '">' . $term_icon_url . $category->name . $count . '</a></li>';
520
+		$content .= geodir_cpt_categories_child_cats($category->term_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons, $depth);
521
+	}
522
+	$content .= '</li></ul>';
523
+
524
+	return $content;
525 525
 }
526 526
 ?>
527 527
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +48 added lines, -48 removed lines patch added patch discarded remove patch
@@ -169,9 +169,9 @@  discard block
 block discarded – undo
169 169
         $output = geodir_cpt_categories_output($params);
170 170
 
171 171
         echo $args['before_widget'];
172
-        if ( $params['title'] ) {
172
+        if ($params['title']) {
173 173
             echo '<div class="geodir_list_heading clearfix">';
174
-            echo $args['before_title'] . $params['title'] . $args['after_title'];
174
+            echo $args['before_title'].$params['title'].$args['after_title'];
175 175
             echo '</div>';
176 176
         }
177 177
         echo '<div class="gd-cptcats-widget">';
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
      * @param array $instance Previously saved values from database.
219 219
      */
220 220
     public function form($instance) {
221
-        $instance = wp_parse_args( (array)$instance,
221
+        $instance = wp_parse_args((array) $instance,
222 222
             array(
223 223
                 'title' => '',
224 224
                 'post_type' => array(), // NULL for all
@@ -252,50 +252,50 @@  discard block
 block discarded – undo
252 252
         <p>
253 253
             <label for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Select CPT:', 'geodirectory'); ?></label>
254 254
             <select name="<?php echo $this->get_field_name('post_type'); ?>[]" id="<?php echo $this->get_field_id('post_type'); ?>" class="widefat" multiple="multiple">
255
-                <option value="0" <?php selected( (empty($post_type) || (is_array($post_type) && in_array('0', $post_type))), true ); ?>><?php _e('All', 'geodirectory'); ?></option>
255
+                <option value="0" <?php selected((empty($post_type) || (is_array($post_type) && in_array('0', $post_type))), true); ?>><?php _e('All', 'geodirectory'); ?></option>
256 256
                 <?php foreach ($post_type_options as $name => $title) { ?>
257
-                    <option value="<?php echo $name;?>" <?php selected( is_array($post_type) && in_array($name, $post_type), true ); ?>><?php echo $title; ?></option>
257
+                    <option value="<?php echo $name; ?>" <?php selected(is_array($post_type) && in_array($name, $post_type), true); ?>><?php echo $title; ?></option>
258 258
                 <?php } ?>
259 259
             </select>
260 260
         </p>
261
-        <p><input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('hide_empty'); ?>" name="<?php echo $this->get_field_name('hide_empty'); ?>"<?php checked( $hide_empty ); ?> value="1" />
262
-            <label for="<?php echo $this->get_field_id('hide_empty'); ?>"><?php _e( 'Hide empty categories', 'geodirectory' ); ?></label><br />
263
-            <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('show_count'); ?>" name="<?php echo $this->get_field_name('show_count'); ?>"<?php checked( $show_count ); ?> value="1" />
264
-            <label for="<?php echo $this->get_field_id('show_count'); ?>"><?php _e( 'Show category count' ); ?></label> <small><?php _e( '( Enabling will slow down page loading for big directories. )', 'geodirectory' ); ?></small><br />
265
-            <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('hide_icon'); ?>" name="<?php echo $this->get_field_name('hide_icon'); ?>"<?php checked( $hide_icon ); ?> value="1" />
266
-            <label for="<?php echo $this->get_field_id('hide_icon'); ?>"><?php _e( 'Hide category icon', 'geodirectory' ); ?></label><br />
267
-            <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('cpt_left'); ?>" name="<?php echo $this->get_field_name('cpt_left'); ?>"<?php checked( $cpt_left ); ?> value="1" />
268
-            <label for="<?php echo $this->get_field_id('cpt_left'); ?>"><?php _e( 'Show CPT on same line', 'geodirectory' ); ?></label>
261
+        <p><input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('hide_empty'); ?>" name="<?php echo $this->get_field_name('hide_empty'); ?>"<?php checked($hide_empty); ?> value="1" />
262
+            <label for="<?php echo $this->get_field_id('hide_empty'); ?>"><?php _e('Hide empty categories', 'geodirectory'); ?></label><br />
263
+            <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('show_count'); ?>" name="<?php echo $this->get_field_name('show_count'); ?>"<?php checked($show_count); ?> value="1" />
264
+            <label for="<?php echo $this->get_field_id('show_count'); ?>"><?php _e('Show category count'); ?></label> <small><?php _e('( Enabling will slow down page loading for big directories. )', 'geodirectory'); ?></small><br />
265
+            <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('hide_icon'); ?>" name="<?php echo $this->get_field_name('hide_icon'); ?>"<?php checked($hide_icon); ?> value="1" />
266
+            <label for="<?php echo $this->get_field_id('hide_icon'); ?>"><?php _e('Hide category icon', 'geodirectory'); ?></label><br />
267
+            <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('cpt_left'); ?>" name="<?php echo $this->get_field_name('cpt_left'); ?>"<?php checked($cpt_left); ?> value="1" />
268
+            <label for="<?php echo $this->get_field_id('cpt_left'); ?>"><?php _e('Show CPT on same line', 'geodirectory'); ?></label>
269 269
         <p>
270 270
             <label for="<?php echo $this->get_field_id('sort_by'); ?>"><?php _e('Sort by:', 'geodirectory'); ?></label>
271 271
             <select name="<?php echo $this->get_field_name('sort_by'); ?>" id="<?php echo $this->get_field_id('sort_by'); ?>" class="widefat">
272
-                <option value="az" <?php selected( $sort_by, 'az' ); ?>><?php _e('A-Z', 'geodirectory'); ?></option>
273
-                <option value="count" <?php selected( $sort_by, 'count' ); ?>><?php _e('Count', 'geodirectory'); ?></option>
272
+                <option value="az" <?php selected($sort_by, 'az'); ?>><?php _e('A-Z', 'geodirectory'); ?></option>
273
+                <option value="count" <?php selected($sort_by, 'count'); ?>><?php _e('Count', 'geodirectory'); ?></option>
274 274
             </select>
275 275
         </p>
276 276
         <p>
277 277
             <label for="<?php echo $this->get_field_id('max_count'); ?>"><?php _e('Max no of sub-categories:', 'geodirectory'); ?></label>
278 278
             <select name="<?php echo $this->get_field_name('max_count'); ?>" id="<?php echo $this->get_field_id('max_count'); ?>" class="widefat">
279
-                <option value="all" <?php selected( $max_count, 'all' ); ?>><?php _e('All', 'geodirectory'); ?></option>
279
+                <option value="all" <?php selected($max_count, 'all'); ?>><?php _e('All', 'geodirectory'); ?></option>
280 280
                 <?php for ($n = 10; $n >= 0; $n--) { ?>
281
-                    <option value="<?php echo $n;?>" <?php selected( $max_count, $n ); ?>><?php echo $n; ?></option>
281
+                    <option value="<?php echo $n; ?>" <?php selected($max_count, $n); ?>><?php echo $n; ?></option>
282 282
                 <?php } ?>
283 283
             </select>
284 284
         </p>
285 285
         <p>
286 286
             <label for="<?php echo $this->get_field_id('max_level'); ?>"><?php _e('Show max sub-categories depth:', 'geodirectory'); ?></label>
287 287
             <select name="<?php echo $this->get_field_name('max_level'); ?>" id="<?php echo $this->get_field_id('max_level'); ?>" class="widefat">
288
-                <option value="all" <?php selected( $max_level, 'all' ); ?>><?php _e('All', 'geodirectory'); ?></option>
288
+                <option value="all" <?php selected($max_level, 'all'); ?>><?php _e('All', 'geodirectory'); ?></option>
289 289
                 <?php for ($n = 0; $n <= 10; $n++) { ?>
290
-                    <option value="<?php echo $n;?>" <?php selected( $max_level, $n ); ?>><?php echo $n; ?></option>
290
+                    <option value="<?php echo $n; ?>" <?php selected($max_level, $n); ?>><?php echo $n; ?></option>
291 291
                 <?php } ?>
292 292
             </select>
293 293
         </p>
294 294
         <p>
295
-            <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('no_cpt_filter'); ?>" name="<?php echo $this->get_field_name('no_cpt_filter'); ?>"<?php checked( $no_cpt_filter ); ?> value="1" />
296
-            <label for="<?php echo $this->get_field_id('no_cpt_filter'); ?>"><?php _e( 'Don\'t filter for current viewing post type', 'geodirectory' ); ?></label>
297
-            <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('no_cat_filter'); ?>" name="<?php echo $this->get_field_name('no_cat_filter'); ?>"<?php checked( $no_cat_filter ); ?> value="1" />
298
-            <label for="<?php echo $this->get_field_id('no_cat_filter'); ?>"><?php _e( 'Don\'t filter for current viewing category', 'geodirectory' ); ?></label>
295
+            <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('no_cpt_filter'); ?>" name="<?php echo $this->get_field_name('no_cpt_filter'); ?>"<?php checked($no_cpt_filter); ?> value="1" />
296
+            <label for="<?php echo $this->get_field_id('no_cpt_filter'); ?>"><?php _e('Don\'t filter for current viewing post type', 'geodirectory'); ?></label>
297
+            <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('no_cat_filter'); ?>" name="<?php echo $this->get_field_name('no_cat_filter'); ?>"<?php checked($no_cat_filter); ?> value="1" />
298
+            <label for="<?php echo $this->get_field_id('no_cat_filter'); ?>"><?php _e('Don\'t filter for current viewing category', 'geodirectory'); ?></label>
299 299
         </p>
300 300
     <?php
301 301
     }
@@ -313,7 +313,7 @@  discard block
 block discarded – undo
313 313
  * @return string CPT categories content.
314 314
  */
315 315
 function geodir_cpt_categories_output($params) {
316
-    $args = wp_parse_args((array)$params,
316
+    $args = wp_parse_args((array) $params,
317 317
         array(
318 318
             'title' => '',
319 319
             'post_type' => array(), // NULL for all
@@ -351,7 +351,7 @@  discard block
 block discarded – undo
351 351
                 $current_taxonomy = get_query_var('taxonomy');
352 352
                 $current_posttype = geodir_get_current_posttype();
353 353
 
354
-                if ($current_term_id && $current_posttype && get_query_var('taxonomy') == $current_posttype . 'category') {
354
+                if ($current_term_id && $current_posttype && get_query_var('taxonomy') == $current_posttype.'category') {
355 355
                     $is_category = true;
356 356
                 }
357 357
             }
@@ -383,15 +383,15 @@  discard block
 block discarded – undo
383 383
     $hide_empty = !empty($args['hide_empty']) ? true : false;
384 384
     $max_count = strip_tags($args['max_count']);
385 385
     $all_childs = $max_count == 'all' ? true : false;
386
-    $max_count = $max_count > 0 ? (int)$max_count : 0;
386
+    $max_count = $max_count > 0 ? (int) $max_count : 0;
387 387
     $max_level = strip_tags($args['max_level']);
388 388
     $show_count = !empty($args['show_count']) ? true : false;
389 389
     $hide_icon = !empty($args['hide_icon']) ? true : false;
390 390
     $cpt_left = !empty($args['cpt_left']) ? true : false;
391 391
 
392
-    if(!$cpt_left){
392
+    if (!$cpt_left) {
393 393
         $cpt_left = "gd-cpt-flat";
394
-    }else{
394
+    } else {
395 395
         $cpt_left = '';
396 396
     }
397 397
 
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
     if (!empty($post_types)) {
407 407
         foreach ($post_types as $cpt => $cpt_info) {
408 408
             $parent_category = ($is_category && $cat_filter && $cpt == $current_posttype) ? $current_term_id : 0;
409
-            $cat_taxonomy = $cpt . 'category';
409
+            $cat_taxonomy = $cpt.'category';
410 410
             $categories = get_terms($cat_taxonomy, array('orderby' => $orderby, 'order' => $order, 'hide_empty' => $hide_empty, 'parent' => $parent_category));
411 411
             if ($hide_empty) {
412 412
                 $categories = geodir_filter_empty_terms($categories);
@@ -422,32 +422,32 @@  discard block
 block discarded – undo
422 422
                 if ($is_listing) {
423 423
                     $row_class = $is_category ? ' gd-cptcat-categ' : ' gd-cptcat-listing';
424 424
                 }
425
-                $cpt_row = '<div class="gd-cptcat-row gd-cptcat-' . $cpt . $row_class . ' '.$cpt_left.'">';
425
+                $cpt_row = '<div class="gd-cptcat-row gd-cptcat-'.$cpt.$row_class.' '.$cpt_left.'">';
426 426
 
427 427
                 if ($is_category && $cat_filter && $cpt == $current_posttype) {
428 428
                     $term_info = get_term($current_term_id, $cat_taxonomy);
429 429
 
430 430
                     $term_icon_url = !empty($term_icons) && isset($term_icons[$term_info->term_id]) ? $term_icons[$term_info->term_id] : '';
431
-                    $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($term_info->name) . ' icon" src="' . $term_icon_url . '" /> ' : '';
431
+                    $term_icon_url = $term_icon_url != '' ? '<img alt="'.esc_attr($term_info->name).' icon" src="'.$term_icon_url.'" /> ' : '';
432 432
 
433
-                    $count = $show_count ? ' <span class="gd-cptcat-count">(' . $term_info->count . ')</span>' : '';
434
-                    $cpt_row .= '<h2 class="gd-cptcat-title">' . $term_icon_url . $term_info->name . $count . '</h2>';
433
+                    $count = $show_count ? ' <span class="gd-cptcat-count">('.$term_info->count.')</span>' : '';
434
+                    $cpt_row .= '<h2 class="gd-cptcat-title">'.$term_icon_url.$term_info->name.$count.'</h2>';
435 435
                 } else {
436
-                    $cpt_row .= '<h2 class="gd-cptcat-title">' . __($cpt_info['labels']['name'], 'geodirectory') . '</h2>';
436
+                    $cpt_row .= '<h2 class="gd-cptcat-title">'.__($cpt_info['labels']['name'], 'geodirectory').'</h2>';
437 437
                 }
438 438
                 foreach ($categories as $category) {
439 439
                     $term_icon_url = !empty($term_icons) && isset($term_icons[$category->term_id]) ? $term_icons[$category->term_id] : '';
440
-                    $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($category->name) . ' icon" src="' . $term_icon_url . '" /> ' : '';
440
+                    $term_icon_url = $term_icon_url != '' ? '<img alt="'.esc_attr($category->name).' icon" src="'.$term_icon_url.'" /> ' : '';
441 441
 
442
-                    $term_link = get_term_link( $category, $category->taxonomy );
442
+                    $term_link = get_term_link($category, $category->taxonomy);
443 443
                     /** Filter documented in geodirectory-functions/general_functions.php **/
444
-                    $term_link = apply_filters( 'geodir_category_term_link', $term_link, $category->term_id, $cpt );
444
+                    $term_link = apply_filters('geodir_category_term_link', $term_link, $category->term_id, $cpt);
445 445
 
446 446
                     $cpt_row .= '<ul class="gd-cptcat-ul gd-cptcat-parent  '.$cpt_left.'">';
447 447
                     $cpt_row .= '<li class="gd-cptcat-li gd-cptcat-li-main">';
448
-                    $count = $show_count ? ' <span class="gd-cptcat-count">(' . $category->count . ')</span>' : '';
449
-                    $cpt_row .= '<h3 class="gd-cptcat-cat"><a href="' . esc_url($term_link) . '" title="' . esc_attr($category->name) . '">'  .$term_icon_url . $category->name . $count . '</a></h3>';
450
-                    if (($all_childs || $max_count > 0) && ($max_level == 'all' || (int)$max_level > 0)) {
448
+                    $count = $show_count ? ' <span class="gd-cptcat-count">('.$category->count.')</span>' : '';
449
+                    $cpt_row .= '<h3 class="gd-cptcat-cat"><a href="'.esc_url($term_link).'" title="'.esc_attr($category->name).'">'.$term_icon_url.$category->name.$count.'</a></h3>';
450
+                    if (($all_childs || $max_count > 0) && ($max_level == 'all' || (int) $max_level > 0)) {
451 451
                         $cpt_row .= geodir_cpt_categories_child_cats($category->term_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons);
452 452
                     }
453 453
                     $cpt_row .= '</li>';
@@ -479,7 +479,7 @@  discard block
 block discarded – undo
479 479
  * @return string Html content.
480 480
  */
481 481
 function geodir_cpt_categories_child_cats($parent_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons, $depth = 1) {
482
-    $cat_taxonomy = $cpt . 'category';
482
+    $cat_taxonomy = $cpt.'category';
483 483
 
484 484
     $orderby = 'count';
485 485
     $order = 'DESC';
@@ -488,7 +488,7 @@  discard block
 block discarded – undo
488 488
         $order = 'ASC';
489 489
     }
490 490
 
491
-    if ($max_level != 'all' && $depth > (int)$max_level ) {
491
+    if ($max_level != 'all' && $depth > (int) $max_level) {
492 492
         return '';
493 493
     }
494 494
 
@@ -505,18 +505,18 @@  discard block
 block discarded – undo
505 505
         $child_cats = geodir_sort_terms($child_cats, 'count');
506 506
     }
507 507
 
508
-    $content = '<li class="gd-cptcat-li gd-cptcat-li-sub"><ul class="gd-cptcat-ul gd-cptcat-sub gd-cptcat-sub-' . $depth . '">';
508
+    $content = '<li class="gd-cptcat-li gd-cptcat-li-sub"><ul class="gd-cptcat-ul gd-cptcat-sub gd-cptcat-sub-'.$depth.'">';
509 509
     $depth++;
510 510
     foreach ($child_cats as $category) {
511 511
         $term_icon_url = !empty($term_icons) && isset($term_icons[$category->term_id]) ? $term_icons[$category->term_id] : '';
512
-        $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($category->name) . ' icon" src="' . $term_icon_url . '" /> ' : '';
513
-        $term_link = get_term_link( $category, $category->taxonomy );
512
+        $term_icon_url = $term_icon_url != '' ? '<img alt="'.esc_attr($category->name).' icon" src="'.$term_icon_url.'" /> ' : '';
513
+        $term_link = get_term_link($category, $category->taxonomy);
514 514
         /** Filter documented in geodirectory-functions/general_functions.php **/
515
-        $term_link = apply_filters( 'geodir_category_term_link', $term_link, $category->term_id, $cpt );
516
-        $count = $show_count ? ' <span class="gd-cptcat-count">(' . $category->count . ')</span>' : '';
515
+        $term_link = apply_filters('geodir_category_term_link', $term_link, $category->term_id, $cpt);
516
+        $count = $show_count ? ' <span class="gd-cptcat-count">('.$category->count.')</span>' : '';
517 517
 
518 518
         $content .= '<li class="gd-cptcat-li gd-cptcat-li-sub">';
519
-        $content .= '<a href="' . esc_url($term_link) . '" title="' . esc_attr($category->name) . '">' . $term_icon_url . $category->name . $count . '</a></li>';
519
+        $content .= '<a href="'.esc_url($term_link).'" title="'.esc_attr($category->name).'">'.$term_icon_url.$category->name.$count.'</a></li>';
520 520
         $content .= geodir_cpt_categories_child_cats($category->term_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons, $depth);
521 521
     }
522 522
     $content .= '</li></ul>';
Please login to merge, or discard this patch.
geodirectory-widgets/geodirectory_related_listing_widget.php 3 patches
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
     public function form($instance)
138 138
     {
139 139
         //widgetform in backend
140
-        $instance = wp_parse_args((array)$instance,
140
+        $instance = wp_parse_args((array) $instance,
141 141
             array('title' => '',
142 142
                 'list_sort' => '',
143 143
                 'list_order' => '',
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 
170 170
         ?>
171 171
         <p>
172
-            <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory');?>
172
+            <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory'); ?>
173 173
 
174 174
                 <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>"
175 175
                        name="<?php echo $this->get_field_name('title'); ?>" type="text"
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
         </p>
179 179
         <p>
180 180
             <label
181
-                for="<?php echo $this->get_field_id('list_sort'); ?>"><?php _e('Sort by:', 'geodirectory');?>
181
+                for="<?php echo $this->get_field_id('list_sort'); ?>"><?php _e('Sort by:', 'geodirectory'); ?>
182 182
 
183 183
                 <select class="widefat" id="<?php echo $this->get_field_id('list_sort'); ?>"
184 184
                         name="<?php echo $this->get_field_name('list_sort'); ?>">
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
         </p>
209 209
         <p>
210 210
             <label
211
-                for="<?php echo $this->get_field_id('post_number'); ?>"><?php _e('Number of posts:', 'geodirectory');?>
211
+                for="<?php echo $this->get_field_id('post_number'); ?>"><?php _e('Number of posts:', 'geodirectory'); ?>
212 212
 
213 213
                 <input class="widefat" id="<?php echo $this->get_field_id('post_number'); ?>"
214 214
                        name="<?php echo $this->get_field_name('post_number'); ?>" type="text"
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
         </p>
218 218
         <p>
219 219
             <label for="<?php echo $this->get_field_id('relate_to'); ?>">
220
-                <?php _e('Relate to:', 'geodirectory');?>
220
+                <?php _e('Relate to:', 'geodirectory'); ?>
221 221
                 <select class="widefat" id="<?php echo $this->get_field_id('relate_to'); ?>"
222 222
                         name="<?php echo $this->get_field_name('relate_to'); ?>">
223 223
                     <option <?php if ($relate_to == 'category') {
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
         <p>
233 233
         <p>
234 234
             <label for="<?php echo $this->get_field_id('layout'); ?>">
235
-                <?php _e('Layout:', 'geodirectory');?>
235
+                <?php _e('Layout:', 'geodirectory'); ?>
236 236
                 <select class="widefat" id="<?php echo $this->get_field_id('layout'); ?>"
237 237
                         name="<?php echo $this->get_field_name('layout'); ?>">
238 238
                     <option <?php if ($layout == 'gridview_onehalf') {
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
         </p>
261 261
         <p>
262 262
             <label
263
-                for="<?php echo $this->get_field_id('listing_width'); ?>"><?php _e('Listing width:', 'geodirectory');?>
263
+                for="<?php echo $this->get_field_id('listing_width'); ?>"><?php _e('Listing width:', 'geodirectory'); ?>
264 264
 
265 265
                 <input class="widefat" id="<?php echo $this->get_field_id('listing_width'); ?>"
266 266
                        name="<?php echo $this->get_field_name('listing_width'); ?>" type="text"
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
         </p>
270 270
         <p>
271 271
             <label
272
-                for="<?php echo $this->get_field_id('character_count'); ?>"><?php _e('Post Content excerpt character count :', 'geodirectory');?>
272
+                for="<?php echo $this->get_field_id('character_count'); ?>"><?php _e('Post Content excerpt character count :', 'geodirectory'); ?>
273 273
                 <input class="widefat" id="<?php echo $this->get_field_id('character_count'); ?>"
274 274
                        name="<?php echo $this->get_field_name('character_count'); ?>" type="text"
275 275
                        value="<?php echo esc_attr($character_count); ?>"/>
@@ -277,9 +277,9 @@  discard block
 block discarded – undo
277 277
         </p>
278 278
         <p>
279 279
             <label for="<?php echo $this->get_field_id('add_location_filter'); ?>">
280
-                <?php _e('Enable Location Filter:', 'geodirectory');?>
280
+                <?php _e('Enable Location Filter:', 'geodirectory'); ?>
281 281
                 <input type="checkbox" id="<?php echo $this->get_field_id('add_location_filter'); ?>"
282
-                       name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) echo 'checked="checked"';?>
282
+                       name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) echo 'checked="checked"'; ?>
283 283
                        value="1"/>
284 284
             </label>
285 285
         </p>
Please login to merge, or discard this patch.
Indentation   +120 added lines, -120 removed lines patch added patch discarded remove patch
@@ -14,160 +14,160 @@  discard block
 block discarded – undo
14 14
  */
15 15
 class geodir_related_listing_postview extends WP_Widget
16 16
 {
17
-    /**
17
+	/**
18 18
 	 * Register the related listing widget.
19 19
 	 *
20 20
 	 * @since 1.0.0
21
-     * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
21
+	 * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
22 22
 	 */
23
-    public function __construct() {
24
-        $widget_ops = array('classname' => 'geodir_related_listing_post_view', 'description' => __('GD > Related Listing', 'geodirectory'));
25
-        parent::__construct(
26
-            'post_related_listing', // Base ID
27
-            __('GD > Related Listing', 'geodirectory'), // Name
28
-            $widget_ops// Args
29
-        );
30
-    }
23
+	public function __construct() {
24
+		$widget_ops = array('classname' => 'geodir_related_listing_post_view', 'description' => __('GD > Related Listing', 'geodirectory'));
25
+		parent::__construct(
26
+			'post_related_listing', // Base ID
27
+			__('GD > Related Listing', 'geodirectory'), // Name
28
+			$widget_ops// Args
29
+		);
30
+	}
31 31
 
32 32
 	/**
33 33
 	 * Front-end display content for related listing widget.
34 34
 	 *
35 35
 	 * @since 1.0.0
36
-     * @since 1.5.1 Declare function public.
36
+	 * @since 1.5.1 Declare function public.
37 37
 	 *
38 38
 	 * @param array $args     Widget arguments.
39 39
 	 * @param array $instance Saved values from database.
40 40
 	 */
41
-    public function widget($args, $instance)
42
-    {
41
+	public function widget($args, $instance)
42
+	{
43 43
 
44
-        // prints the widget
45
-        extract($args, EXTR_SKIP);
44
+		// prints the widget
45
+		extract($args, EXTR_SKIP);
46 46
 
47
-        /** This filter is documented in geodirectory_widgets.php */
48
-        $title = empty($instance['title']) ? __('Related Listing', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
47
+		/** This filter is documented in geodirectory_widgets.php */
48
+		$title = empty($instance['title']) ? __('Related Listing', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
49 49
 
50
-        /** This filter is documented in geodirectory-functions/general_functions.php */
50
+		/** This filter is documented in geodirectory-functions/general_functions.php */
51 51
 		$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
52 52
 
53
-        /**
54
-         * Filter the relation type to get related listing.
55
-         *
56
-         * @since 1.0.0
57
-         * @param string $instance['relate_to'] Can be tags or category.
58
-         */
53
+		/**
54
+		 * Filter the relation type to get related listing.
55
+		 *
56
+		 * @since 1.0.0
57
+		 * @param string $instance['relate_to'] Can be tags or category.
58
+		 */
59 59
 		$relate_to = empty($instance['relate_to']) ? 'category' : apply_filters('widget_relate_to', $instance['relate_to']);
60 60
 
61
-        /** This filter is documented in geodirectory-functions/general_functions.php */
61
+		/** This filter is documented in geodirectory-functions/general_functions.php */
62 62
 		$layout = empty($instance['layout']) ? 'gridview_onehalf' : apply_filters('widget_layout', $instance['layout']);
63 63
 
64
-        /** This filter is documented in geodirectory-functions/general_functions.php */
64
+		/** This filter is documented in geodirectory-functions/general_functions.php */
65 65
 		$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
66 66
 
67
-        /** This filter is documented in geodirectory-functions/general_functions.php */
67
+		/** This filter is documented in geodirectory-functions/general_functions.php */
68 68
 		$listing_width = empty($instance['listing_width']) ? '' : apply_filters('widget_listing_width', $instance['listing_width']);
69 69
 
70
-        /** This filter is documented in geodirectory-functions/general_functions.php */
70
+		/** This filter is documented in geodirectory-functions/general_functions.php */
71 71
 		$list_sort = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
72 72
 
73
-        /** This filter is documented in geodirectory-functions/general_functions.php */
73
+		/** This filter is documented in geodirectory-functions/general_functions.php */
74 74
 		$character_count = empty($instance['character_count']) ? 20 : apply_filters('widget_list_character_count', $instance['character_count']);
75 75
 
76
-        $arr = array(
77
-            'before_title' => $before_title,
78
-            'after_title' => $after_title,
79
-            'title' => $title,
80
-            'post_number' => $post_number,
81
-            'relate_to' => $relate_to,
82
-            'layout' => $layout,
83
-            'add_location_filter' => $add_location_filter,
84
-            'listing_width' => $listing_width,
85
-            'list_sort' => $list_sort,
86
-            'character_count' => $character_count,
87
-            'is_widget' => '1'
88
-        );
89
-
90
-        if ($widget_display = geodir_related_posts_display($arr)) {
91
-
92
-            echo $before_widget;
93
-            echo $widget_display;
94
-            echo $after_widget;
95
-        }
96
-    }
76
+		$arr = array(
77
+			'before_title' => $before_title,
78
+			'after_title' => $after_title,
79
+			'title' => $title,
80
+			'post_number' => $post_number,
81
+			'relate_to' => $relate_to,
82
+			'layout' => $layout,
83
+			'add_location_filter' => $add_location_filter,
84
+			'listing_width' => $listing_width,
85
+			'list_sort' => $list_sort,
86
+			'character_count' => $character_count,
87
+			'is_widget' => '1'
88
+		);
89
+
90
+		if ($widget_display = geodir_related_posts_display($arr)) {
91
+
92
+			echo $before_widget;
93
+			echo $widget_display;
94
+			echo $after_widget;
95
+		}
96
+	}
97 97
 
98 98
 	/**
99 99
 	 * Sanitize related listing widget form values as they are saved.
100 100
 	 *
101 101
 	 * @since 1.0.0
102
-     * @since 1.5.1 Declare function public.
102
+	 * @since 1.5.1 Declare function public.
103 103
 	 *
104 104
 	 * @param array $new_instance Values just sent to be saved.
105 105
 	 * @param array $old_instance Previously saved values from database.
106 106
 	 *
107 107
 	 * @return array Updated safe values to be saved.
108 108
 	 */
109
-    public function update($new_instance, $old_instance)
110
-    {
111
-        //save the widget
112
-        $instance = $old_instance;
113
-
114
-        $instance['title'] = strip_tags($new_instance['title']);
115
-        $instance['post_number'] = strip_tags($new_instance['post_number']);
116
-        $instance['relate_to'] = strip_tags($new_instance['relate_to']);
117
-        $instance['layout'] = strip_tags($new_instance['layout']);
118
-        $instance['listing_width'] = strip_tags($new_instance['listing_width']);
119
-        $instance['list_sort'] = strip_tags($new_instance['list_sort']);
120
-        $instance['character_count'] = $new_instance['character_count'];
121
-        if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '')
122
-            $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
123
-        else
124
-            $instance['add_location_filter'] = '0';
125
-
126
-        return $instance;
127
-    }
109
+	public function update($new_instance, $old_instance)
110
+	{
111
+		//save the widget
112
+		$instance = $old_instance;
113
+
114
+		$instance['title'] = strip_tags($new_instance['title']);
115
+		$instance['post_number'] = strip_tags($new_instance['post_number']);
116
+		$instance['relate_to'] = strip_tags($new_instance['relate_to']);
117
+		$instance['layout'] = strip_tags($new_instance['layout']);
118
+		$instance['listing_width'] = strip_tags($new_instance['listing_width']);
119
+		$instance['list_sort'] = strip_tags($new_instance['list_sort']);
120
+		$instance['character_count'] = $new_instance['character_count'];
121
+		if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '')
122
+			$instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
123
+		else
124
+			$instance['add_location_filter'] = '0';
125
+
126
+		return $instance;
127
+	}
128 128
 
129 129
 	/**
130 130
 	 * Back-end related listing widget settings form.
131 131
 	 *
132 132
 	 * @since 1.0.0
133
-     * @since 1.5.1 Declare function public.
133
+	 * @since 1.5.1 Declare function public.
134 134
 	 *
135 135
 	 * @param array $instance Previously saved values from database.
136 136
 	 */
137
-    public function form($instance)
138
-    {
139
-        //widgetform in backend
140
-        $instance = wp_parse_args((array)$instance,
141
-            array('title' => '',
142
-                'list_sort' => '',
143
-                'list_order' => '',
144
-                'post_number' => '5',
145
-                'relate_to' => '',
146
-                'layout' => 'gridview_onehalf',
147
-                'listing_width' => '',
148
-                'add_location_filter' => '1',
149
-                'character_count' => '20')
150
-        );
137
+	public function form($instance)
138
+	{
139
+		//widgetform in backend
140
+		$instance = wp_parse_args((array)$instance,
141
+			array('title' => '',
142
+				'list_sort' => '',
143
+				'list_order' => '',
144
+				'post_number' => '5',
145
+				'relate_to' => '',
146
+				'layout' => 'gridview_onehalf',
147
+				'listing_width' => '',
148
+				'add_location_filter' => '1',
149
+				'character_count' => '20')
150
+		);
151 151
 
152
-        $title = strip_tags($instance['title']);
152
+		$title = strip_tags($instance['title']);
153 153
 
154
-        $list_sort = strip_tags($instance['list_sort']);
154
+		$list_sort = strip_tags($instance['list_sort']);
155 155
 
156
-        $list_order = strip_tags($instance['list_order']);
156
+		$list_order = strip_tags($instance['list_order']);
157 157
 
158
-        $post_number = strip_tags($instance['post_number']);
158
+		$post_number = strip_tags($instance['post_number']);
159 159
 
160
-        $relate_to = strip_tags($instance['relate_to']);
160
+		$relate_to = strip_tags($instance['relate_to']);
161 161
 
162
-        $layout = strip_tags($instance['layout']);
162
+		$layout = strip_tags($instance['layout']);
163 163
 
164
-        $listing_width = strip_tags($instance['listing_width']);
164
+		$listing_width = strip_tags($instance['listing_width']);
165 165
 
166
-        $add_location_filter = strip_tags($instance['add_location_filter']);
166
+		$add_location_filter = strip_tags($instance['add_location_filter']);
167 167
 
168
-        $character_count = $instance['character_count'];
168
+		$character_count = $instance['character_count'];
169 169
 
170
-        ?>
170
+		?>
171 171
         <p>
172 172
             <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory');?>
173 173
 
@@ -184,24 +184,24 @@  discard block
 block discarded – undo
184 184
                         name="<?php echo $this->get_field_name('list_sort'); ?>">
185 185
 
186 186
                     <option <?php if ($list_sort == 'latest') {
187
-                        echo 'selected="selected"';
188
-                    } ?> value="latest"><?php _e('Latest', 'geodirectory'); ?></option>
187
+						echo 'selected="selected"';
188
+					} ?> value="latest"><?php _e('Latest', 'geodirectory'); ?></option>
189 189
 
190 190
                     <option <?php if ($list_sort == 'featured') {
191
-                        echo 'selected="selected"';
192
-                    } ?> value="featured"><?php _e('Featured', 'geodirectory'); ?></option>
191
+						echo 'selected="selected"';
192
+					} ?> value="featured"><?php _e('Featured', 'geodirectory'); ?></option>
193 193
 
194 194
                     <option <?php if ($list_sort == 'high_review') {
195
-                        echo 'selected="selected"';
196
-                    } ?> value="high_review"><?php _e('Review', 'geodirectory'); ?></option>
195
+						echo 'selected="selected"';
196
+					} ?> value="high_review"><?php _e('Review', 'geodirectory'); ?></option>
197 197
 
198 198
                     <option <?php if ($list_sort == 'high_rating') {
199
-                        echo 'selected="selected"';
200
-                    } ?> value="high_rating"><?php _e('Rating', 'geodirectory'); ?></option>
199
+						echo 'selected="selected"';
200
+					} ?> value="high_rating"><?php _e('Rating', 'geodirectory'); ?></option>
201 201
 
202 202
                     <option <?php if ($list_sort == 'random') {
203
-                        echo 'selected="selected"';
204
-                    } ?> value="random"><?php _e('Random', 'geodirectory'); ?></option>
203
+						echo 'selected="selected"';
204
+					} ?> value="random"><?php _e('Random', 'geodirectory'); ?></option>
205 205
 
206 206
                 </select>
207 207
             </label>
@@ -221,11 +221,11 @@  discard block
 block discarded – undo
221 221
                 <select class="widefat" id="<?php echo $this->get_field_id('relate_to'); ?>"
222 222
                         name="<?php echo $this->get_field_name('relate_to'); ?>">
223 223
                     <option <?php if ($relate_to == 'category') {
224
-                        echo 'selected="selected"';
225
-                    } ?> value="category"><?php _e('Categories', 'geodirectory'); ?></option>
224
+						echo 'selected="selected"';
225
+					} ?> value="category"><?php _e('Categories', 'geodirectory'); ?></option>
226 226
                     <option <?php if ($relate_to == 'tags') {
227
-                        echo 'selected="selected"';
228
-                    } ?> value="tags"><?php _e('Tags', 'geodirectory'); ?></option>
227
+						echo 'selected="selected"';
228
+					} ?> value="tags"><?php _e('Tags', 'geodirectory'); ?></option>
229 229
                 </select>
230 230
             </label>
231 231
         </p>
@@ -236,24 +236,24 @@  discard block
 block discarded – undo
236 236
                 <select class="widefat" id="<?php echo $this->get_field_id('layout'); ?>"
237 237
                         name="<?php echo $this->get_field_name('layout'); ?>">
238 238
                     <option <?php if ($layout == 'gridview_onehalf') {
239
-                        echo 'selected="selected"';
240
-                    } ?>
239
+						echo 'selected="selected"';
240
+					} ?>
241 241
                         value="gridview_onehalf"><?php _e('Grid View (Two Columns)', 'geodirectory'); ?></option>
242 242
                     <option <?php if ($layout == 'gridview_onethird') {
243
-                        echo 'selected="selected"';
244
-                    } ?>
243
+						echo 'selected="selected"';
244
+					} ?>
245 245
                         value="gridview_onethird"><?php _e('Grid View (Three Columns)', 'geodirectory'); ?></option>
246 246
                     <option <?php if ($layout == 'gridview_onefourth') {
247
-                        echo 'selected="selected"';
248
-                    } ?>
247
+						echo 'selected="selected"';
248
+					} ?>
249 249
                         value="gridview_onefourth"><?php _e('Grid View (Four Columns)', 'geodirectory'); ?></option>
250 250
                     <option <?php if ($layout == 'gridview_onefifth') {
251
-                        echo 'selected="selected"';
252
-                    } ?>
251
+						echo 'selected="selected"';
252
+					} ?>
253 253
                         value="gridview_onefifth"><?php _e('Grid View (Five Columns)', 'geodirectory'); ?></option>
254 254
                     <option <?php if ($layout == 'list') {
255
-                        echo 'selected="selected"';
256
-                    } ?> value="list"><?php _e('List view', 'geodirectory'); ?></option>
255
+						echo 'selected="selected"';
256
+					} ?> value="list"><?php _e('List view', 'geodirectory'); ?></option>
257 257
 
258 258
                 </select>
259 259
             </label>
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
         </p>
286 286
 
287 287
     <?php
288
-    }
288
+	}
289 289
 } // class geodir_related_listing_postview
290 290
 
291 291
 register_widget('geodir_related_listing_postview');
292 292
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +9 added lines, -5 removed lines patch added patch discarded remove patch
@@ -118,10 +118,11 @@  discard block
 block discarded – undo
118 118
         $instance['listing_width'] = strip_tags($new_instance['listing_width']);
119 119
         $instance['list_sort'] = strip_tags($new_instance['list_sort']);
120 120
         $instance['character_count'] = $new_instance['character_count'];
121
-        if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '')
122
-            $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
123
-        else
124
-            $instance['add_location_filter'] = '0';
121
+        if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '') {
122
+                    $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
123
+        } else {
124
+                    $instance['add_location_filter'] = '0';
125
+        }
125 126
 
126 127
         return $instance;
127 128
     }
@@ -279,7 +280,10 @@  discard block
 block discarded – undo
279 280
             <label for="<?php echo $this->get_field_id('add_location_filter'); ?>">
280 281
                 <?php _e('Enable Location Filter:', 'geodirectory');?>
281 282
                 <input type="checkbox" id="<?php echo $this->get_field_id('add_location_filter'); ?>"
282
-                       name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) echo 'checked="checked"';?>
283
+                       name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) {
284
+	echo 'checked="checked"';
285
+}
286
+?>
283 287
                        value="1"/>
284 288
             </label>
285 289
         </p>
Please login to merge, or discard this patch.
geodirectory-widgets/home_map_widget.php 3 patches
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -192,8 +192,9 @@
 block discarded – undo
192 192
 
193 193
                     foreach ($map_zoom_level as $level) {
194 194
                         $selected = '';
195
-                        if ($level == $zoom)
196
-                            $selected = 'selected="selected"';
195
+                        if ($level == $zoom) {
196
+                                                    $selected = 'selected="selected"';
197
+                        }
197 198
 
198 199
                         echo '<option ' . $selected . ' value="' . $level . '">' . $level . '</option>';
199 200
 
Please login to merge, or discard this patch.
Indentation   +104 added lines, -104 removed lines patch added patch discarded remove patch
@@ -16,126 +16,126 @@  discard block
 block discarded – undo
16 16
  */
17 17
 class geodir_homepage_map extends WP_Widget
18 18
 {
19
-    /**
19
+	/**
20 20
 	 * Register the home page map widget.
21 21
 	 *
22 22
 	 * @since 1.0.0
23
-     * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
23
+	 * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
24 24
 	 */
25
-    public function __construct() {
26
-        $widget_ops = array('classname' => 'widget Google Map in Home page', 'description' => __('Google Map in Home page. It will show you google map V3 for Home page with category checkbox selection.', 'geodirectory'));
27
-        parent::__construct(
28
-            'geodir_map_v3_home_map', // Base ID
29
-            __('GD > GMap - Home page', 'geodirectory'), // Name
30
-            $widget_ops// Args
31
-        );
32
-    }
25
+	public function __construct() {
26
+		$widget_ops = array('classname' => 'widget Google Map in Home page', 'description' => __('Google Map in Home page. It will show you google map V3 for Home page with category checkbox selection.', 'geodirectory'));
27
+		parent::__construct(
28
+			'geodir_map_v3_home_map', // Base ID
29
+			__('GD > GMap - Home page', 'geodirectory'), // Name
30
+			$widget_ops// Args
31
+		);
32
+	}
33 33
 
34 34
 	/**
35 35
 	 * Front-end display content for home page map widget.
36 36
 	 *
37 37
 	 * @since 1.0.0
38
-     * @since 1.5.1 Declare function public.
38
+	 * @since 1.5.1 Declare function public.
39 39
 	 *
40 40
 	 * @param array $args     Widget arguments.
41 41
 	 * @param array $instance Saved values from database.
42 42
 	 */
43
-    public function widget($args, $instance)
44
-    {
45
-        extract($args, EXTR_SKIP);
46
-        /** This action is documented in geodirectory_shortcodes.php */
47
-        $width = empty($instance['width']) ? '100%' : apply_filters('widget_width', $instance['width']);
48
-        /** This action is documented in geodirectory_shortcodes.php */
49
-        $height = empty($instance['heigh']) ? '425' : apply_filters('widget_heigh', $instance['heigh']);
50
-        /** This action is documented in geodirectory_shortcodes.php */
51
-        $maptype = empty($instance['maptype']) ? 'ROADMAP' : apply_filters('widget_maptype', $instance['maptype']);
52
-        /** This action is documented in geodirectory_shortcodes.php */
53
-        $zoom = empty($instance['zoom']) ? '13' : apply_filters('widget_zoom', $instance['zoom']);
54
-        /** This action is documented in geodirectory_shortcodes.php */
55
-        $autozoom = empty($instance['autozoom']) ? '' : apply_filters('widget_autozoom', $instance['autozoom']);
56
-        /** This action is documented in geodirectory_shortcodes.php */
57
-        $child_collapse = empty($instance['child_collapse']) ? '0' : apply_filters('widget_child_collapse', $instance['child_collapse']);
58
-        /** This action is documented in geodirectory_shortcodes.php */
59
-        $scrollwheel = empty($instance['scrollwheel']) ? '0' : apply_filters('widget_scrollwheel', $instance['scrollwheel']);
43
+	public function widget($args, $instance)
44
+	{
45
+		extract($args, EXTR_SKIP);
46
+		/** This action is documented in geodirectory_shortcodes.php */
47
+		$width = empty($instance['width']) ? '100%' : apply_filters('widget_width', $instance['width']);
48
+		/** This action is documented in geodirectory_shortcodes.php */
49
+		$height = empty($instance['heigh']) ? '425' : apply_filters('widget_heigh', $instance['heigh']);
50
+		/** This action is documented in geodirectory_shortcodes.php */
51
+		$maptype = empty($instance['maptype']) ? 'ROADMAP' : apply_filters('widget_maptype', $instance['maptype']);
52
+		/** This action is documented in geodirectory_shortcodes.php */
53
+		$zoom = empty($instance['zoom']) ? '13' : apply_filters('widget_zoom', $instance['zoom']);
54
+		/** This action is documented in geodirectory_shortcodes.php */
55
+		$autozoom = empty($instance['autozoom']) ? '' : apply_filters('widget_autozoom', $instance['autozoom']);
56
+		/** This action is documented in geodirectory_shortcodes.php */
57
+		$child_collapse = empty($instance['child_collapse']) ? '0' : apply_filters('widget_child_collapse', $instance['child_collapse']);
58
+		/** This action is documented in geodirectory_shortcodes.php */
59
+		$scrollwheel = empty($instance['scrollwheel']) ? '0' : apply_filters('widget_scrollwheel', $instance['scrollwheel']);
60 60
 
61
-        $map_args = array();
62
-        $map_args['map_canvas_name'] = str_replace('-', '_', $args['widget_id']); //'home_map_canvas'.$str ;
63
-        $map_args['width'] = $width;
64
-        $map_args['height'] = $height;
65
-        $map_args['maptype'] = $maptype;
66
-        $map_args['scrollwheel'] = $scrollwheel;
67
-        $map_args['zoom'] = $zoom;
68
-        $map_args['autozoom'] = $autozoom;
69
-        $map_args['child_collapse'] = $child_collapse;
70
-        $map_args['enable_cat_filters'] = true;
71
-        $map_args['enable_text_search'] = true;
72
-        $map_args['enable_post_type_filters'] = true;
73
-        /** This action is documented in geodirectory_shortcodes.php */
74
-        $map_args['enable_location_filters'] = apply_filters('geodir_home_map_enable_location_filters', false);
75
-        $map_args['enable_jason_on_load'] = false;
76
-        $map_args['enable_marker_cluster'] = false;
77
-        $map_args['enable_map_resize_button'] = true;
78
-        $map_args['map_class_name'] = 'geodir-map-home-page';
61
+		$map_args = array();
62
+		$map_args['map_canvas_name'] = str_replace('-', '_', $args['widget_id']); //'home_map_canvas'.$str ;
63
+		$map_args['width'] = $width;
64
+		$map_args['height'] = $height;
65
+		$map_args['maptype'] = $maptype;
66
+		$map_args['scrollwheel'] = $scrollwheel;
67
+		$map_args['zoom'] = $zoom;
68
+		$map_args['autozoom'] = $autozoom;
69
+		$map_args['child_collapse'] = $child_collapse;
70
+		$map_args['enable_cat_filters'] = true;
71
+		$map_args['enable_text_search'] = true;
72
+		$map_args['enable_post_type_filters'] = true;
73
+		/** This action is documented in geodirectory_shortcodes.php */
74
+		$map_args['enable_location_filters'] = apply_filters('geodir_home_map_enable_location_filters', false);
75
+		$map_args['enable_jason_on_load'] = false;
76
+		$map_args['enable_marker_cluster'] = false;
77
+		$map_args['enable_map_resize_button'] = true;
78
+		$map_args['map_class_name'] = 'geodir-map-home-page';
79 79
 
80
-        $is_geodir_home_map_widget = true;
81
-        $map_args['is_geodir_home_map_widget'] = $is_geodir_home_map_widget;
80
+		$is_geodir_home_map_widget = true;
81
+		$map_args['is_geodir_home_map_widget'] = $is_geodir_home_map_widget;
82 82
 
83
-        geodir_draw_map($map_args);
83
+		geodir_draw_map($map_args);
84 84
 
85
-        /* home map post type slider */
86
-        if ($is_geodir_home_map_widget) {
87
-            add_action('wp_footer', array($this, 'geodir_home_map_add_script'), 100);
88
-        }
85
+		/* home map post type slider */
86
+		if ($is_geodir_home_map_widget) {
87
+			add_action('wp_footer', array($this, 'geodir_home_map_add_script'), 100);
88
+		}
89 89
 
90
-    }
90
+	}
91 91
 
92 92
 	/**
93 93
 	 * Sanitize home page map widget form values as they are saved.
94 94
 	 *
95 95
 	 * @since 1.0.0
96
-     * @since 1.5.1 Declare function public.
96
+	 * @since 1.5.1 Declare function public.
97 97
 	 *
98 98
 	 * @param array $new_instance Values just sent to be saved.
99 99
 	 * @param array $old_instance Previously saved values from database.
100 100
 	 *
101 101
 	 * @return array Updated safe values to be saved.
102 102
 	 */
103
-    public function update($new_instance, $old_instance)
104
-    {
105
-        //save the widget
106
-        $instance = $old_instance;
107
-        $instance['width'] = strip_tags($new_instance['width']);
108
-        $instance['heigh'] = ($new_instance['heigh']);
109
-        $instance['maptype'] = ($new_instance['maptype']);
110
-        $instance['zoom'] = ($new_instance['zoom']);
111
-        $instance['autozoom'] = isset($new_instance['autozoom']) ? $new_instance['autozoom'] : '';
112
-        $instance['child_collapse'] = isset($new_instance['child_collapse']) ? ($new_instance['child_collapse']) : '';
113
-        $instance['scrollwheel'] = isset($new_instance['scrollwheel']) ? ($new_instance['scrollwheel']) : '';
103
+	public function update($new_instance, $old_instance)
104
+	{
105
+		//save the widget
106
+		$instance = $old_instance;
107
+		$instance['width'] = strip_tags($new_instance['width']);
108
+		$instance['heigh'] = ($new_instance['heigh']);
109
+		$instance['maptype'] = ($new_instance['maptype']);
110
+		$instance['zoom'] = ($new_instance['zoom']);
111
+		$instance['autozoom'] = isset($new_instance['autozoom']) ? $new_instance['autozoom'] : '';
112
+		$instance['child_collapse'] = isset($new_instance['child_collapse']) ? ($new_instance['child_collapse']) : '';
113
+		$instance['scrollwheel'] = isset($new_instance['scrollwheel']) ? ($new_instance['scrollwheel']) : '';
114 114
 
115
-        return $instance;
116
-    }
115
+		return $instance;
116
+	}
117 117
 
118 118
 	/**
119 119
 	 * Back-end home page map widget settings form.
120 120
 	 *
121 121
 	 * @since 1.0.0
122
-     * @since 1.5.1 Declare function public.
122
+	 * @since 1.5.1 Declare function public.
123 123
 	 *
124 124
 	 * @param array $instance Previously saved values from database.
125 125
 	 */
126
-    public function form($instance)
127
-    {
128
-        //widgetform in backend
126
+	public function form($instance)
127
+	{
128
+		//widgetform in backend
129 129
 
130
-        $instance = wp_parse_args((array)$instance, array('width' => '', 'heigh' => '', 'maptype' => '', 'zoom' => '', 'autozoom' => '', 'child_collapse' => '0', 'scrollwheel' => '0'));
131
-        $width = strip_tags($instance['width']);
132
-        $heigh = strip_tags($instance['heigh']);
133
-        $maptype = strip_tags($instance['maptype']);
134
-        $zoom = strip_tags($instance['zoom']);
135
-        $autozoom = strip_tags($instance['autozoom']);
136
-        $child_collapse = strip_tags($instance['child_collapse']);
137
-        $scrollwheel = strip_tags($instance['scrollwheel']);
138
-        ?>
130
+		$instance = wp_parse_args((array)$instance, array('width' => '', 'heigh' => '', 'maptype' => '', 'zoom' => '', 'autozoom' => '', 'child_collapse' => '0', 'scrollwheel' => '0'));
131
+		$width = strip_tags($instance['width']);
132
+		$heigh = strip_tags($instance['heigh']);
133
+		$maptype = strip_tags($instance['maptype']);
134
+		$zoom = strip_tags($instance['zoom']);
135
+		$autozoom = strip_tags($instance['autozoom']);
136
+		$child_collapse = strip_tags($instance['child_collapse']);
137
+		$scrollwheel = strip_tags($instance['scrollwheel']);
138
+		?>
139 139
 
140 140
         <p>
141 141
             <label
@@ -164,14 +164,14 @@  discard block
 block discarded – undo
164 164
                         name="<?php echo $this->get_field_name('maptype'); ?>">
165 165
 
166 166
                     <option <?php if (isset($maptype) && $maptype == 'ROADMAP') {
167
-                        echo 'selected="selected"';
168
-                    } ?> value="ROADMAP"><?php _e('Road Map', 'geodirectory'); ?></option>
167
+						echo 'selected="selected"';
168
+					} ?> value="ROADMAP"><?php _e('Road Map', 'geodirectory'); ?></option>
169 169
                     <option <?php if (isset($maptype) && $maptype == 'SATELLITE') {
170
-                        echo 'selected="selected"';
171
-                    } ?> value="SATELLITE"><?php _e('Satellite Map', 'geodirectory'); ?></option>
170
+						echo 'selected="selected"';
171
+					} ?> value="SATELLITE"><?php _e('Satellite Map', 'geodirectory'); ?></option>
172 172
                     <option <?php if (isset($maptype) && $maptype == 'HYBRID') {
173
-                        echo 'selected="selected"';
174
-                    } ?> value="HYBRID"><?php _e('Hybrid Map', 'geodirectory'); ?></option>
173
+						echo 'selected="selected"';
174
+					} ?> value="HYBRID"><?php _e('Hybrid Map', 'geodirectory'); ?></option>
175 175
 					<option <?php selected($maptype, 'TERRAIN');?> 
176 176
 							value="TERRAIN"><?php _e('Terrain Map', 'geodirectory'); ?></option>
177 177
                 </select>
@@ -179,8 +179,8 @@  discard block
 block discarded – undo
179 179
         </p>
180 180
 
181 181
         <?php
182
-        $map_zoom_level = geodir_map_zoom_level();
183
-        ?>
182
+		$map_zoom_level = geodir_map_zoom_level();
183
+		?>
184 184
 
185 185
         <p>
186 186
             <label
@@ -189,14 +189,14 @@  discard block
 block discarded – undo
189 189
                 <select class="widefat" id="<?php echo $this->get_field_id('zoom'); ?>"
190 190
                         name="<?php echo $this->get_field_name('zoom'); ?>"> <?php
191 191
 
192
-                    foreach ($map_zoom_level as $level) {
193
-                        $selected = '';
194
-                        if ($level == $zoom)
195
-                            $selected = 'selected="selected"';
192
+					foreach ($map_zoom_level as $level) {
193
+						$selected = '';
194
+						if ($level == $zoom)
195
+							$selected = 'selected="selected"';
196 196
 
197
-                        echo '<option ' . $selected . ' value="' . $level . '">' . $level . '</option>';
197
+						echo '<option ' . $selected . ' value="' . $level . '">' . $level . '</option>';
198 198
 
199
-                    } ?>
199
+					} ?>
200 200
 
201 201
                 </select>
202 202
             </label>
@@ -209,8 +209,8 @@  discard block
 block discarded – undo
209 209
                 :
210 210
                 <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('autozoom'); ?>"
211 211
                        name="<?php echo $this->get_field_name('autozoom'); ?>"<?php if ($autozoom) {
212
-                    echo 'checked="checked"';
213
-                } ?> /></label>
212
+					echo 'checked="checked"';
213
+				} ?> /></label>
214 214
         </p>
215 215
 
216 216
         <p>
@@ -234,17 +234,17 @@  discard block
 block discarded – undo
234 234
         </p>
235 235
 
236 236
     <?php
237
-    }
237
+	}
238 238
 
239
-    /**
239
+	/**
240 240
 	 * Adds the javascript in the footer for home page map widget.
241 241
 	 *
242 242
 	 * @since 1.0.0
243
-     * @since 1.5.1 Declare function public.
243
+	 * @since 1.5.1 Declare function public.
244 244
 	 */
245
-    public function geodir_home_map_add_script()
246
-    {
247
-        ?>
245
+	public function geodir_home_map_add_script()
246
+	{
247
+		?>
248 248
         <script type="text/javascript">
249 249
             jQuery(document).ready(function () {
250 250
                 geoDirMapSlide();
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
             }
318 318
         </script>
319 319
     <?php
320
-    }
320
+	}
321 321
 } // class geodir_homepage_map
322 322
 
323 323
 register_widget('geodir_homepage_map');
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
     {
128 128
         //widgetform in backend
129 129
 
130
-        $instance = wp_parse_args((array)$instance, array('width' => '', 'heigh' => '', 'maptype' => '', 'zoom' => '', 'autozoom' => '', 'child_collapse' => '0', 'scrollwheel' => '0'));
130
+        $instance = wp_parse_args((array) $instance, array('width' => '', 'heigh' => '', 'maptype' => '', 'zoom' => '', 'autozoom' => '', 'child_collapse' => '0', 'scrollwheel' => '0'));
131 131
         $width = strip_tags($instance['width']);
132 132
         $heigh = strip_tags($instance['heigh']);
133 133
         $maptype = strip_tags($instance['maptype']);
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
                     <option <?php if (isset($maptype) && $maptype == 'HYBRID') {
173 173
                         echo 'selected="selected"';
174 174
                     } ?> value="HYBRID"><?php _e('Hybrid Map', 'geodirectory'); ?></option>
175
-					<option <?php selected($maptype, 'TERRAIN');?> 
175
+					<option <?php selected($maptype, 'TERRAIN'); ?> 
176 176
 							value="TERRAIN"><?php _e('Terrain Map', 'geodirectory'); ?></option>
177 177
                 </select>
178 178
             </label>
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
                         if ($level == $zoom)
195 195
                             $selected = 'selected="selected"';
196 196
 
197
-                        echo '<option ' . $selected . ' value="' . $level . '">' . $level . '</option>';
197
+                        echo '<option '.$selected.' value="'.$level.'">'.$level.'</option>';
198 198
 
199 199
                     } ?>
200 200
 
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
                 :
220 220
                 <input id="<?php echo $this->get_field_id('child_collapse'); ?>"
221 221
                        name="<?php echo $this->get_field_name('child_collapse'); ?>" type="checkbox" value="1"
222
-                       <?php if ($child_collapse){ ?>checked="checked" <?php } ?> />
222
+                       <?php if ($child_collapse) { ?>checked="checked" <?php } ?> />
223 223
             </label>
224 224
         </p>
225 225
 
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
                 :
230 230
                 <input id="<?php echo $this->get_field_id('scrollwheel'); ?>"
231 231
                        name="<?php echo $this->get_field_name('scrollwheel'); ?>" type="checkbox" value="1"
232
-                       <?php if ($scrollwheel){ ?>checked="checked" <?php } ?> />
232
+                       <?php if ($scrollwheel) { ?>checked="checked" <?php } ?> />
233 233
             </label>
234 234
         </p>
235 235
 
Please login to merge, or discard this patch.
geodirectory-functions/compatibility/Avada.php 4 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
  * @since 1.0.0
114 114
  * @package GeoDirectory
115 115
  * @param array $classes Class array.
116
- * @return array Modified class array.
116
+ * @return string[] Modified class array.
117 117
  */
118 118
 function geodir_x_body_class($classes)
119 119
 {
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
  */
19 19
 function gd_strip_breadcrumb_wrappers($breadcrumb)
20 20
 {
21
-    $breadcrumb = str_replace(array("<li>","</li>"), "", $breadcrumb);
21
+    $breadcrumb = str_replace(array("<li>", "</li>"), "", $breadcrumb);
22 22
     $breadcrumb = str_replace('<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">', '<ul class="fusion-breadcrumbs"><li>', $breadcrumb);
23 23
     $breadcrumb = str_replace('</ul></div>', '</li></ul>', $breadcrumb);
24 24
     return $breadcrumb;
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     return $separator;
40 40
 }
41 41
 
42
-add_action('avada_override_current_page_title_bar','gd_avada_current_page_title_bar_change');
42
+add_action('avada_override_current_page_title_bar', 'gd_avada_current_page_title_bar_change');
43 43
 /**
44 44
  * new title bar functions for gd pages.
45 45
  *
@@ -51,8 +51,8 @@  discard block
 block discarded – undo
51 51
 {
52 52
     if (geodir_is_geodir_page()) {
53 53
         gd_avada_current_page_title_bar();
54
-    }else{
55
-        avada_current_page_title_bar( $c_pageID );
54
+    } else {
55
+        avada_current_page_title_bar($c_pageID);
56 56
     }
57 57
 
58 58
 }
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     
97 97
 
98 98
     if (geodir_is_page('detail') || geodir_is_page('preview')) {
99
-        if ( $title = get_post_meta( get_the_ID(), 'pyre_page_title_custom_text', true ) ) {}
99
+        if ($title = get_post_meta(get_the_ID(), 'pyre_page_title_custom_text', true)) {}
100 100
         else {
101 101
             $title = get_the_title();
102 102
         }
@@ -242,12 +242,12 @@  discard block
 block discarded – undo
242 242
 gd_compat_php_avada();
243 243
 
244 244
 // Avada sets the search page to use wither post or page, we need it to be 'any'
245
-function gd_avada_search_filter( $query ) {
246
-    if ( geodir_is_page('search') && is_search() && $query->is_search) {
245
+function gd_avada_search_filter($query) {
246
+    if (geodir_is_page('search') && is_search() && $query->is_search) {
247 247
             $query->set('post_type', 'any');
248 248
     }
249 249
     return $query;
250 250
 }
251
-if ( ! is_admin() ) {
252
-    add_filter( 'pre_get_posts', 'gd_avada_search_filter',11 );
251
+if (!is_admin()) {
252
+    add_filter('pre_get_posts', 'gd_avada_search_filter', 11);
253 253
 }
254 254
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 {
52 52
     if (geodir_is_geodir_page()) {
53 53
         gd_avada_current_page_title_bar();
54
-    }else{
54
+    } else{
55 55
         avada_current_page_title_bar( $c_pageID );
56 56
     }
57 57
 
@@ -96,8 +96,7 @@  discard block
 block discarded – undo
96 96
     
97 97
 
98 98
     if (geodir_is_page('detail') || geodir_is_page('preview')) {
99
-        if ( $title = get_post_meta( get_the_ID(), 'pyre_page_title_custom_text', true ) ) {}
100
-        else {
99
+        if ( $title = get_post_meta( get_the_ID(), 'pyre_page_title_custom_text', true ) ) {} else {
101 100
             $title = get_the_title();
102 101
         }
103 102
         avada_page_title_bar($title, $subtitle, $secondary_content);
Please login to merge, or discard this patch.
Indentation   +109 added lines, -109 removed lines patch added patch discarded remove patch
@@ -18,10 +18,10 @@  discard block
 block discarded – undo
18 18
  */
19 19
 function gd_strip_breadcrumb_wrappers($breadcrumb)
20 20
 {
21
-    $breadcrumb = str_replace(array("<li>","</li>"), "", $breadcrumb);
22
-    $breadcrumb = str_replace('<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">', '<ul class="fusion-breadcrumbs"><li>', $breadcrumb);
23
-    $breadcrumb = str_replace('</ul></div>', '</li></ul>', $breadcrumb);
24
-    return $breadcrumb;
21
+	$breadcrumb = str_replace(array("<li>","</li>"), "", $breadcrumb);
22
+	$breadcrumb = str_replace('<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">', '<ul class="fusion-breadcrumbs"><li>', $breadcrumb);
23
+	$breadcrumb = str_replace('</ul></div>', '</li></ul>', $breadcrumb);
24
+	return $breadcrumb;
25 25
 }
26 26
 
27 27
 add_filter('geodir_breadcrumb_separator', 'gd_change_breadcrumb_separator');
@@ -35,8 +35,8 @@  discard block
 block discarded – undo
35 35
  */
36 36
 function gd_change_breadcrumb_separator($separator)
37 37
 {
38
-    $separator = ' / ';
39
-    return $separator;
38
+	$separator = ' / ';
39
+	return $separator;
40 40
 }
41 41
 
42 42
 add_action('avada_override_current_page_title_bar','gd_avada_current_page_title_bar_change');
@@ -49,11 +49,11 @@  discard block
 block discarded – undo
49 49
  */
50 50
 function gd_avada_current_page_title_bar_change($c_pageID)
51 51
 {
52
-    if (geodir_is_geodir_page()) {
53
-        gd_avada_current_page_title_bar();
54
-    }else{
55
-        avada_current_page_title_bar( $c_pageID );
56
-    }
52
+	if (geodir_is_geodir_page()) {
53
+		gd_avada_current_page_title_bar();
54
+	}else{
55
+		avada_current_page_title_bar( $c_pageID );
56
+	}
57 57
 
58 58
 }
59 59
 
@@ -65,50 +65,50 @@  discard block
 block discarded – undo
65 65
  */
66 66
 function gd_avada_current_page_title_bar()
67 67
 {
68
-    ob_start();
69
-    geodir_breadcrumb();
70
-    $secondary_content = ob_get_contents();
71
-    ob_get_clean();
72
-
73
-    $title = '';
74
-    $subtitle = '';
75
-
76
-    if (geodir_is_page('listing')) {
77
-        ob_start(); // Start buffering;
78
-        geodir_action_listings_title();
79
-        $title = ob_get_clean();
80
-        avada_page_title_bar($title, $subtitle, $secondary_content);
81
-    }
82
-
83
-    if (geodir_is_page('add-listing')) {
84
-        ob_start(); // Start buffering;
85
-        geodir_action_add_listing_page_title();
86
-        $title = ob_get_clean();
87
-        avada_page_title_bar($title, $subtitle, $secondary_content);
88
-    }
89
-
90
-    if (geodir_is_page('author')) {
91
-        ob_start(); // Start buffering;
92
-        geodir_action_author_page_title();
93
-        $title = ob_get_clean();
94
-        avada_page_title_bar($title, $subtitle, $secondary_content);
95
-    }
96
-
97
-
98
-    if (geodir_is_page('detail') || geodir_is_page('preview')) {
99
-        if ( $title = get_post_meta( get_the_ID(), 'pyre_page_title_custom_text', true ) ) {}
100
-        else {
101
-            $title = get_the_title();
102
-        }
103
-        avada_page_title_bar($title, $subtitle, $secondary_content);
104
-    }
105
-
106
-    if (geodir_is_page('search')) {
107
-        ob_start(); // Start buffering;
108
-        geodir_action_search_page_title();
109
-        $title = ob_get_clean();
110
-        avada_page_title_bar($title, $subtitle, $secondary_content);
111
-    }
68
+	ob_start();
69
+	geodir_breadcrumb();
70
+	$secondary_content = ob_get_contents();
71
+	ob_get_clean();
72
+
73
+	$title = '';
74
+	$subtitle = '';
75
+
76
+	if (geodir_is_page('listing')) {
77
+		ob_start(); // Start buffering;
78
+		geodir_action_listings_title();
79
+		$title = ob_get_clean();
80
+		avada_page_title_bar($title, $subtitle, $secondary_content);
81
+	}
82
+
83
+	if (geodir_is_page('add-listing')) {
84
+		ob_start(); // Start buffering;
85
+		geodir_action_add_listing_page_title();
86
+		$title = ob_get_clean();
87
+		avada_page_title_bar($title, $subtitle, $secondary_content);
88
+	}
89
+
90
+	if (geodir_is_page('author')) {
91
+		ob_start(); // Start buffering;
92
+		geodir_action_author_page_title();
93
+		$title = ob_get_clean();
94
+		avada_page_title_bar($title, $subtitle, $secondary_content);
95
+	}
96
+
97
+
98
+	if (geodir_is_page('detail') || geodir_is_page('preview')) {
99
+		if ( $title = get_post_meta( get_the_ID(), 'pyre_page_title_custom_text', true ) ) {}
100
+		else {
101
+			$title = get_the_title();
102
+		}
103
+		avada_page_title_bar($title, $subtitle, $secondary_content);
104
+	}
105
+
106
+	if (geodir_is_page('search')) {
107
+		ob_start(); // Start buffering;
108
+		geodir_action_search_page_title();
109
+		$title = ob_get_clean();
110
+		avada_page_title_bar($title, $subtitle, $secondary_content);
111
+	}
112 112
 }
113 113
 
114 114
 /**
@@ -119,34 +119,34 @@  discard block
 block discarded – undo
119 119
  */
120 120
 function gd_compat_php_avada()
121 121
 {
122
-    // change widget wrappers
123
-    //add_filter( 'geodir_before_widget', 'geodir_before_widget_compat',10,1 );
124
-    //add_filter( 'geodir_after_widget', 'geodir_after_widget_compat',10,1 );
125
-
126
-    // REMOVE BREADCRUMB
127
-    remove_action('geodir_detail_before_main_content', 'geodir_breadcrumb', 20);
128
-    remove_action('geodir_listings_before_main_content', 'geodir_breadcrumb', 20);
129
-    remove_action('geodir_author_before_main_content', 'geodir_breadcrumb', 20);
130
-    remove_action('geodir_search_before_main_content', 'geodir_breadcrumb', 20);
131
-    remove_action('geodir_home_before_main_content', 'geodir_breadcrumb', 20);
132
-    remove_action('geodir_location_before_main_content', 'geodir_breadcrumb', 20);
133
-
134
-    // REMOVE PAGE TITLES
135
-    remove_action('geodir_listings_page_title', 'geodir_action_listings_title', 10);
136
-    remove_action('geodir_add_listing_page_title', 'geodir_action_add_listing_page_title', 10);
137
-    remove_action('geodir_details_main_content', 'geodir_action_page_title', 20);
138
-    remove_action('geodir_search_page_title', 'geodir_action_search_page_title', 10);
139
-    remove_action('geodir_author_page_title', 'geodir_action_author_page_title', 10);
140
-
141
-    // make top section wide
142
-    remove_action('geodir_home_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
143
-    remove_action('geodir_location_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
144
-    remove_action('geodir_author_before_main_content', 'geodir_action_geodir_sidebar_author_top', 10);
145
-    remove_action('geodir_search_before_main_content', 'geodir_action_geodir_sidebar_search_top', 10);
146
-    remove_action('geodir_detail_before_main_content', 'geodir_action_geodir_sidebar_detail_top', 10);
147
-    remove_action('geodir_listings_before_main_content', 'geodir_action_geodir_sidebar_listings_top', 10);
148
-
149
-    //gd_compat_add_top_section_back();
122
+	// change widget wrappers
123
+	//add_filter( 'geodir_before_widget', 'geodir_before_widget_compat',10,1 );
124
+	//add_filter( 'geodir_after_widget', 'geodir_after_widget_compat',10,1 );
125
+
126
+	// REMOVE BREADCRUMB
127
+	remove_action('geodir_detail_before_main_content', 'geodir_breadcrumb', 20);
128
+	remove_action('geodir_listings_before_main_content', 'geodir_breadcrumb', 20);
129
+	remove_action('geodir_author_before_main_content', 'geodir_breadcrumb', 20);
130
+	remove_action('geodir_search_before_main_content', 'geodir_breadcrumb', 20);
131
+	remove_action('geodir_home_before_main_content', 'geodir_breadcrumb', 20);
132
+	remove_action('geodir_location_before_main_content', 'geodir_breadcrumb', 20);
133
+
134
+	// REMOVE PAGE TITLES
135
+	remove_action('geodir_listings_page_title', 'geodir_action_listings_title', 10);
136
+	remove_action('geodir_add_listing_page_title', 'geodir_action_add_listing_page_title', 10);
137
+	remove_action('geodir_details_main_content', 'geodir_action_page_title', 20);
138
+	remove_action('geodir_search_page_title', 'geodir_action_search_page_title', 10);
139
+	remove_action('geodir_author_page_title', 'geodir_action_author_page_title', 10);
140
+
141
+	// make top section wide
142
+	remove_action('geodir_home_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
143
+	remove_action('geodir_location_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
144
+	remove_action('geodir_author_before_main_content', 'geodir_action_geodir_sidebar_author_top', 10);
145
+	remove_action('geodir_search_before_main_content', 'geodir_action_geodir_sidebar_search_top', 10);
146
+	remove_action('geodir_detail_before_main_content', 'geodir_action_geodir_sidebar_detail_top', 10);
147
+	remove_action('geodir_listings_before_main_content', 'geodir_action_geodir_sidebar_listings_top', 10);
148
+
149
+	//gd_compat_add_top_section_back();
150 150
 
151 151
 }
152 152
 
@@ -158,17 +158,17 @@  discard block
 block discarded – undo
158 158
  * @package GeoDirectory
159 159
  */
160 160
 function gd_compat_add_top_section_back() {
161
-    if (geodir_is_page('home') || geodir_is_page('location')) {
162
-        geodir_action_geodir_sidebar_home_top();
163
-    } elseif (geodir_is_page('listing')) {
164
-        geodir_action_geodir_sidebar_listings_top();
165
-    } elseif (geodir_is_page('detail')) {
166
-        geodir_action_geodir_sidebar_detail_top();
167
-    } elseif (geodir_is_page('search')) {
168
-        geodir_action_geodir_sidebar_search_top();
169
-    } elseif (geodir_is_page('author')) {
170
-        geodir_action_geodir_sidebar_author_top();
171
-    }
161
+	if (geodir_is_page('home') || geodir_is_page('location')) {
162
+		geodir_action_geodir_sidebar_home_top();
163
+	} elseif (geodir_is_page('listing')) {
164
+		geodir_action_geodir_sidebar_listings_top();
165
+	} elseif (geodir_is_page('detail')) {
166
+		geodir_action_geodir_sidebar_detail_top();
167
+	} elseif (geodir_is_page('search')) {
168
+		geodir_action_geodir_sidebar_search_top();
169
+	} elseif (geodir_is_page('author')) {
170
+		geodir_action_geodir_sidebar_author_top();
171
+	}
172 172
 }
173 173
 
174 174
 add_filter('body_class', 'gd_compat_body_class');
@@ -182,12 +182,12 @@  discard block
 block discarded – undo
182 182
  */
183 183
 function gd_compat_body_class($classes)
184 184
 {
185
-    if (geodir_is_geodir_page()) {
186
-        $classes[] = 'wpgeo-avada';
187
-    } else {
188
-        $classes[] = '';
189
-    }
190
-    return $classes;
185
+	if (geodir_is_geodir_page()) {
186
+		$classes[] = 'wpgeo-avada';
187
+	} else {
188
+		$classes[] = '';
189
+	}
190
+	return $classes;
191 191
 }
192 192
 
193 193
 
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
  */
202 202
 function geodir_before_widget_compat($var)
203 203
 {
204
-    return '<div id="%1$s" class="geodir-widget %2$s">';
204
+	return '<div id="%1$s" class="geodir-widget %2$s">';
205 205
 }
206 206
 
207 207
 /**
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
  */
215 215
 function geodir_after_widget_compat($var)
216 216
 {
217
-    return '</div>';
217
+	return '</div>';
218 218
 }
219 219
 
220 220
 add_filter('geodir_search_form_class', 'geodir_search_form_class_avada');
@@ -228,8 +228,8 @@  discard block
 block discarded – undo
228 228
  */
229 229
 function geodir_search_form_class_avada($class)
230 230
 {
231
-    $class .= ' search';
232
-    return $class;
231
+	$class .= ' search';
232
+	return $class;
233 233
 }
234 234
 
235 235
 
@@ -238,11 +238,11 @@  discard block
 block discarded – undo
238 238
 
239 239
 // Avada sets the search page to use wither post or page, we need it to be 'any'
240 240
 function gd_avada_search_filter( $query ) {
241
-    if ( geodir_is_page('search') && is_search() && $query->is_search) {
242
-        $query->set('post_type', 'any');
243
-    }
244
-    return $query;
241
+	if ( geodir_is_page('search') && is_search() && $query->is_search) {
242
+		$query->set('post_type', 'any');
243
+	}
244
+	return $query;
245 245
 }
246 246
 if ( ! is_admin() ) {
247
-    add_filter( 'pre_get_posts', 'gd_avada_search_filter',11 );
247
+	add_filter( 'pre_get_posts', 'gd_avada_search_filter',11 );
248 248
 }
249 249
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-functions/compatibility/Enfold.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
  * @since 1.0.0
114 114
  * @package GeoDirectory
115 115
  * @param array $classes Class array.
116
- * @return array Modified class array.
116
+ * @return string[] Modified class array.
117 117
  */
118 118
 function geodir_x_body_class($classes)
119 119
 {
Please login to merge, or discard this patch.
Indentation   +135 added lines, -135 removed lines patch added patch discarded remove patch
@@ -17,84 +17,84 @@  discard block
 block discarded – undo
17 17
 function enfold_action_calls()
18 18
 {
19 19
 
20
-    /* ACTIONS
20
+	/* ACTIONS
21 21
     ****************************************************************************************/
22 22
 
23
-    // Add body class for styling purposes
24
-    add_filter('body_class', 'wpgeo_enfold_body_class');
23
+	// Add body class for styling purposes
24
+	add_filter('body_class', 'wpgeo_enfold_body_class');
25 25
 
26
-    // Pages using the page-builder shouldn't redirect on successful payment
27
-    if (isset($_REQUEST['pay_action'])) {
28
-        add_action('init', 'geodir_allow_payment_urls_enfold', 15);
29
-    }
26
+	// Pages using the page-builder shouldn't redirect on successful payment
27
+	if (isset($_REQUEST['pay_action'])) {
28
+		add_action('init', 'geodir_allow_payment_urls_enfold', 15);
29
+	}
30 30
 
31
-    // LOCATION MANAGER MENU ACTIONS - set the location menu item before the Enfold search
32
-    if (function_exists('geodir_location_menu_items')) {
33
-        remove_filter('wp_nav_menu_items', 'geodir_location_menu_items', 110);
34
-        add_filter('wp_nav_menu_items', 'geodir_location_menu_items', 8, 2);
35
-    }
36
-    // GEODIR MENU ACTIONS - set the GeoDir menu items before the Enfold search
37
-    remove_filter('wp_nav_menu_items', 'geodir_menu_items', 100);
38
-    add_filter('wp_nav_menu_items', 'geodir_menu_items', 7, 2);
31
+	// LOCATION MANAGER MENU ACTIONS - set the location menu item before the Enfold search
32
+	if (function_exists('geodir_location_menu_items')) {
33
+		remove_filter('wp_nav_menu_items', 'geodir_location_menu_items', 110);
34
+		add_filter('wp_nav_menu_items', 'geodir_location_menu_items', 8, 2);
35
+	}
36
+	// GEODIR MENU ACTIONS - set the GeoDir menu items before the Enfold search
37
+	remove_filter('wp_nav_menu_items', 'geodir_menu_items', 100);
38
+	add_filter('wp_nav_menu_items', 'geodir_menu_items', 7, 2);
39 39
 
40
-    // HOME TOP SIDEBAR
41
-    remove_action('geodir_home_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
42
-    remove_action('geodir_location_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
43
-    //add_action( 'ava_after_main_container', 'enfold_home_sidebar' );
40
+	// HOME TOP SIDEBAR
41
+	remove_action('geodir_home_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
42
+	remove_action('geodir_location_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
43
+	//add_action( 'ava_after_main_container', 'enfold_home_sidebar' );
44 44
 
45 45
 
46
-    // WRAPPER OPEN ACTIONS
47
-    remove_action('geodir_wrapper_open', 'geodir_action_wrapper_open', 10);
48
-    add_action('geodir_wrapper_open', 'enfold_action_wrapper_open', 9);
49
-    add_action('geodir_wrapper_open', 'enfold_detail_title', 8, 2); // ADD GEODIR TITLE
46
+	// WRAPPER OPEN ACTIONS
47
+	remove_action('geodir_wrapper_open', 'geodir_action_wrapper_open', 10);
48
+	add_action('geodir_wrapper_open', 'enfold_action_wrapper_open', 9);
49
+	add_action('geodir_wrapper_open', 'enfold_detail_title', 8, 2); // ADD GEODIR TITLE
50 50
 
51 51
 
52
-    // WRAPPER CONTENT OPEN ACTIONS
53
-    remove_action('geodir_wrapper_content_open', 'geodir_action_wrapper_content_open', 10);
54
-    add_action('geodir_wrapper_content_open', 'enfold_action_wrapper_content_open', 9, 3);
52
+	// WRAPPER CONTENT OPEN ACTIONS
53
+	remove_action('geodir_wrapper_content_open', 'geodir_action_wrapper_content_open', 10);
54
+	add_action('geodir_wrapper_content_open', 'enfold_action_wrapper_content_open', 9, 3);
55 55
 
56 56
 
57
-    // SIDEBAR RIGHT OPEN ACTIONS
58
-    remove_action('geodir_sidebar_right_open', 'geodir_action_sidebar_right_open', 10);
59
-    add_action('geodir_sidebar_right_open', 'enfold_action_sidebar_right_open', 10, 4);
57
+	// SIDEBAR RIGHT OPEN ACTIONS
58
+	remove_action('geodir_sidebar_right_open', 'geodir_action_sidebar_right_open', 10);
59
+	add_action('geodir_sidebar_right_open', 'enfold_action_sidebar_right_open', 10, 4);
60 60
 
61
-    // SIDEBAR LEFT OPEN ACTIONS
62
-    remove_action('geodir_sidebar_left_open', 'geodir_action_sidebar_left_open', 10);
63
-    add_action('geodir_sidebar_left_open', 'enfold_action_sidebar_left_open', 10, 4);
61
+	// SIDEBAR LEFT OPEN ACTIONS
62
+	remove_action('geodir_sidebar_left_open', 'geodir_action_sidebar_left_open', 10);
63
+	add_action('geodir_sidebar_left_open', 'enfold_action_sidebar_left_open', 10, 4);
64 64
 
65 65
 
66
-    // HOME PAGE BREADCRUMBS
67
-    remove_action('geodir_home_before_main_content', 'geodir_breadcrumb', 20);
68
-    remove_action('geodir_location_before_main_content', 'geodir_breadcrumb', 20);
66
+	// HOME PAGE BREADCRUMBS
67
+	remove_action('geodir_home_before_main_content', 'geodir_breadcrumb', 20);
68
+	remove_action('geodir_location_before_main_content', 'geodir_breadcrumb', 20);
69 69
 
70
-    // LISTINGS PAGE BREADCRUMBS & TITLES
71
-    remove_action('geodir_listings_before_main_content', 'geodir_breadcrumb', 20);
72
-    remove_action('geodir_listings_page_title', 'geodir_action_listings_title', 10);
70
+	// LISTINGS PAGE BREADCRUMBS & TITLES
71
+	remove_action('geodir_listings_before_main_content', 'geodir_breadcrumb', 20);
72
+	remove_action('geodir_listings_page_title', 'geodir_action_listings_title', 10);
73 73
 
74
-    // DETAILS PAGE BREADCRUMBS & TITLES
75
-    remove_action('geodir_detail_before_main_content', 'geodir_breadcrumb', 20);
76
-    remove_action('geodir_details_main_content', 'geodir_action_page_title', 20);
74
+	// DETAILS PAGE BREADCRUMBS & TITLES
75
+	remove_action('geodir_detail_before_main_content', 'geodir_breadcrumb', 20);
76
+	remove_action('geodir_details_main_content', 'geodir_action_page_title', 20);
77 77
 
78
-    // SEARCH PAGE BREADCRUMBS & TITLES
79
-    remove_action('geodir_search_before_main_content', 'geodir_breadcrumb', 20);
80
-    remove_action('geodir_search_page_title', 'geodir_action_search_page_title', 10);
78
+	// SEARCH PAGE BREADCRUMBS & TITLES
79
+	remove_action('geodir_search_before_main_content', 'geodir_breadcrumb', 20);
80
+	remove_action('geodir_search_page_title', 'geodir_action_search_page_title', 10);
81 81
 
82
-    // AUTHOR PAGE BREADCRUMBS & TITLES
83
-    remove_action('geodir_author_before_main_content', 'geodir_breadcrumb', 20);
84
-    remove_action('geodir_author_page_title', 'geodir_action_author_page_title', 10);
82
+	// AUTHOR PAGE BREADCRUMBS & TITLES
83
+	remove_action('geodir_author_before_main_content', 'geodir_breadcrumb', 20);
84
+	remove_action('geodir_author_page_title', 'geodir_action_author_page_title', 10);
85 85
 
86
-    // DISABLE ENFOLD MAPS CALL
87
-    add_filter('avf_load_google_map_api', 'gd_enfold_remove_maps_api', 10, 1);
86
+	// DISABLE ENFOLD MAPS CALL
87
+	add_filter('avf_load_google_map_api', 'gd_enfold_remove_maps_api', 10, 1);
88 88
 
89
-    // make top section wide
90
-    remove_action('geodir_home_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
91
-    remove_action('geodir_location_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
92
-    remove_action('geodir_author_before_main_content', 'geodir_action_geodir_sidebar_author_top', 10);
93
-    remove_action('geodir_search_before_main_content', 'geodir_action_geodir_sidebar_search_top', 10);
94
-    remove_action('geodir_detail_before_main_content', 'geodir_action_geodir_sidebar_detail_top', 10);
95
-    remove_action('geodir_listings_before_main_content', 'geodir_action_geodir_sidebar_listings_top', 10);
89
+	// make top section wide
90
+	remove_action('geodir_home_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
91
+	remove_action('geodir_location_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
92
+	remove_action('geodir_author_before_main_content', 'geodir_action_geodir_sidebar_author_top', 10);
93
+	remove_action('geodir_search_before_main_content', 'geodir_action_geodir_sidebar_search_top', 10);
94
+	remove_action('geodir_detail_before_main_content', 'geodir_action_geodir_sidebar_detail_top', 10);
95
+	remove_action('geodir_listings_before_main_content', 'geodir_action_geodir_sidebar_listings_top', 10);
96 96
 
97
-    add_action('geodir_wrapper_open', 'gd_enfold_compat_add_top_section_back', 5);
97
+	add_action('geodir_wrapper_open', 'gd_enfold_compat_add_top_section_back', 5);
98 98
 
99 99
 } // Close enfold_action_calls
100 100
 
@@ -108,17 +108,17 @@  discard block
 block discarded – undo
108 108
 function gd_enfold_compat_add_top_section_back()
109 109
 {
110 110
 
111
-    if (is_page_geodir_home() || geodir_is_page('location')) {
112
-        add_action('geodir_wrapper_open', 'geodir_action_geodir_sidebar_home_top', 8);
113
-    } elseif (geodir_is_page('listing')) {
114
-        add_action('geodir_wrapper_open', 'geodir_action_geodir_sidebar_listings_top', 8);
115
-    } elseif (geodir_is_page('detail')) {
116
-        add_action('geodir_wrapper_open', 'geodir_action_geodir_sidebar_detail_top', 8);
117
-    } elseif (geodir_is_page('search')) {
118
-        add_action('geodir_wrapper_open', 'geodir_action_geodir_sidebar_search_top', 8);
119
-    } elseif (geodir_is_page('author')) {
120
-        add_action('geodir_wrapper_open', 'geodir_action_geodir_sidebar_author_top', 8);
121
-    }
111
+	if (is_page_geodir_home() || geodir_is_page('location')) {
112
+		add_action('geodir_wrapper_open', 'geodir_action_geodir_sidebar_home_top', 8);
113
+	} elseif (geodir_is_page('listing')) {
114
+		add_action('geodir_wrapper_open', 'geodir_action_geodir_sidebar_listings_top', 8);
115
+	} elseif (geodir_is_page('detail')) {
116
+		add_action('geodir_wrapper_open', 'geodir_action_geodir_sidebar_detail_top', 8);
117
+	} elseif (geodir_is_page('search')) {
118
+		add_action('geodir_wrapper_open', 'geodir_action_geodir_sidebar_search_top', 8);
119
+	} elseif (geodir_is_page('author')) {
120
+		add_action('geodir_wrapper_open', 'geodir_action_geodir_sidebar_author_top', 8);
121
+	}
122 122
 
123 123
 
124 124
 }
@@ -137,8 +137,8 @@  discard block
 block discarded – undo
137 137
  */
138 138
 function wpgeo_enfold_body_class($classes)
139 139
 {
140
-    $classes[] = 'wpgeo-enfold';
141
-    return $classes;
140
+	$classes[] = 'wpgeo-enfold';
141
+	return $classes;
142 142
 }
143 143
 
144 144
 /**
@@ -149,8 +149,8 @@  discard block
 block discarded – undo
149 149
  */
150 150
 function geodir_allow_payment_urls_enfold()
151 151
 {
152
-    global $builder;
153
-    remove_action('template_redirect', array($builder, 'template_redirect'), 1000);
152
+	global $builder;
153
+	remove_action('template_redirect', array($builder, 'template_redirect'), 1000);
154 154
 }
155 155
 
156 156
 
@@ -162,8 +162,8 @@  discard block
 block discarded – undo
162 162
  */
163 163
 function enfold_action_wrapper_open()
164 164
 {
165
-    echo "<div class='container_wrap container_wrap_first main_color " . avia_layout_class('main', false) . "'>";
166
-    echo "<div class='container template-blog '>";
165
+	echo "<div class='container_wrap container_wrap_first main_color " . avia_layout_class('main', false) . "'>";
166
+	echo "<div class='container template-blog '>";
167 167
 }
168 168
 
169 169
 /**
@@ -177,38 +177,38 @@  discard block
 block discarded – undo
177 177
  */
178 178
 function enfold_detail_title($page, $class)
179 179
 {
180
-    //echo '###'.$page;
181
-    global $wp;
182
-    if (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_location_page_id() && !geodir_is_page('login')) {
183
-        add_action('avia_breadcrumbs_trail', 'enfold_detail_breadcrum', 8, 2);
184
-        echo avia_title();
185
-    } elseif ($page == 'details-page') {
186
-        add_action('avia_breadcrumbs_trail', 'enfold_detail_breadcrum', 8, 2);
187
-        echo avia_title();
188
-    } elseif ($page == 'listings-page' || $page == 'search-page') {
189
-        add_action('avia_breadcrumbs_trail', 'enfold_detail_breadcrum', 8, 2);
190
-        ob_start(); // Start buffering;
191
-        geodir_action_listings_title();
192
-        $gd_title = ob_get_clean();
193
-        $title_p = explode('">', $gd_title);
194
-        $title = str_replace('</h1></header>', "", $title_p[2]);
195
-        //print_r($title_p);
196
-        echo avia_title(array('title' => $title));
197
-    } elseif ($page == 'author-page') {
198
-        add_action('avia_breadcrumbs_trail', 'enfold_detail_breadcrum', 8, 2);
199
-        ob_start(); // Start buffering;
200
-        geodir_action_author_page_title();
201
-        $gd_title = ob_get_clean();
202
-        $gd_title = str_replace('<h1>', "", $gd_title);
203
-        $gd_title = str_replace('</h1>', "", $gd_title);
204
-        echo avia_title(array('title' => $gd_title));
205
-    } elseif ($page == 'add-listing-page') {
206
-        add_action('avia_breadcrumbs_trail', 'enfold_detail_breadcrum', 8, 2);
207
-        echo avia_title();
208
-    } elseif ($page == 'add-listing-page') {
209
-        add_action('avia_breadcrumbs_trail', 'enfold_detail_breadcrum', 8, 2);
210
-        echo avia_title();
211
-    }
180
+	//echo '###'.$page;
181
+	global $wp;
182
+	if (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_location_page_id() && !geodir_is_page('login')) {
183
+		add_action('avia_breadcrumbs_trail', 'enfold_detail_breadcrum', 8, 2);
184
+		echo avia_title();
185
+	} elseif ($page == 'details-page') {
186
+		add_action('avia_breadcrumbs_trail', 'enfold_detail_breadcrum', 8, 2);
187
+		echo avia_title();
188
+	} elseif ($page == 'listings-page' || $page == 'search-page') {
189
+		add_action('avia_breadcrumbs_trail', 'enfold_detail_breadcrum', 8, 2);
190
+		ob_start(); // Start buffering;
191
+		geodir_action_listings_title();
192
+		$gd_title = ob_get_clean();
193
+		$title_p = explode('">', $gd_title);
194
+		$title = str_replace('</h1></header>', "", $title_p[2]);
195
+		//print_r($title_p);
196
+		echo avia_title(array('title' => $title));
197
+	} elseif ($page == 'author-page') {
198
+		add_action('avia_breadcrumbs_trail', 'enfold_detail_breadcrum', 8, 2);
199
+		ob_start(); // Start buffering;
200
+		geodir_action_author_page_title();
201
+		$gd_title = ob_get_clean();
202
+		$gd_title = str_replace('<h1>', "", $gd_title);
203
+		$gd_title = str_replace('</h1>', "", $gd_title);
204
+		echo avia_title(array('title' => $gd_title));
205
+	} elseif ($page == 'add-listing-page') {
206
+		add_action('avia_breadcrumbs_trail', 'enfold_detail_breadcrum', 8, 2);
207
+		echo avia_title();
208
+	} elseif ($page == 'add-listing-page') {
209
+		add_action('avia_breadcrumbs_trail', 'enfold_detail_breadcrum', 8, 2);
210
+		echo avia_title();
211
+	}
212 212
 
213 213
 }
214 214
 
@@ -223,22 +223,22 @@  discard block
 block discarded – undo
223 223
  */
224 224
 function enfold_detail_breadcrum($trail, $args)
225 225
 {
226
-    ob_start(); // Start buffering;
227
-    geodir_breadcrumb();
228
-    $gd_crums = ob_get_clean();
229
-    if ($gd_crums) {
230
-        $gd_crums = str_replace('<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs"><li>', "", $gd_crums);
231
-        $gd_crums = str_replace('</li></ul></div>', "", $gd_crums);
232
-        $gd_crums = str_replace('&nbsp;>&nbsp;', " > ", $gd_crums);
233
-        $gd_crums = str_replace('</li><li>', "", $gd_crums);
234
-        $gd_crums = explode(" > ", $gd_crums);
235
-        $trail_end = array_pop($gd_crums);
236
-        $gd_crums['trail_end'] = $trail_end;
237
-        //print_r($gd_crums);
238
-        //print_r($trail);
239
-        $trail = $gd_crums;
240
-    }
241
-    return $trail;
226
+	ob_start(); // Start buffering;
227
+	geodir_breadcrumb();
228
+	$gd_crums = ob_get_clean();
229
+	if ($gd_crums) {
230
+		$gd_crums = str_replace('<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs"><li>', "", $gd_crums);
231
+		$gd_crums = str_replace('</li></ul></div>', "", $gd_crums);
232
+		$gd_crums = str_replace('&nbsp;>&nbsp;', " > ", $gd_crums);
233
+		$gd_crums = str_replace('</li><li>', "", $gd_crums);
234
+		$gd_crums = explode(" > ", $gd_crums);
235
+		$trail_end = array_pop($gd_crums);
236
+		$gd_crums['trail_end'] = $trail_end;
237
+		//print_r($gd_crums);
238
+		//print_r($trail);
239
+		$trail = $gd_crums;
240
+	}
241
+	return $trail;
242 242
 }
243 243
 
244 244
 
@@ -253,12 +253,12 @@  discard block
 block discarded – undo
253 253
  */
254 254
 function enfold_action_wrapper_content_open($type = '', $id = '', $class = '')
255 255
 {
256
-    if (geodir_is_page('login')) {
257
-        echo "<main class='template-page content twelve alpha units " . $class . "' " . avia_markup_helper(array('context' => 'content', 'post_type' => 'page', 'echo' => false)) . ">";
258
-    } else {
259
-        echo "<main class='template-page content " . avia_layout_class('content', false) . " units " . $class . "' " . avia_markup_helper(array('context' => 'content', 'post_type' => 'page', 'echo' => false)) . ">";
260
-    }
261
-    echo '<div class="entry-content-wrapper">';
256
+	if (geodir_is_page('login')) {
257
+		echo "<main class='template-page content twelve alpha units " . $class . "' " . avia_markup_helper(array('context' => 'content', 'post_type' => 'page', 'echo' => false)) . ">";
258
+	} else {
259
+		echo "<main class='template-page content " . avia_layout_class('content', false) . " units " . $class . "' " . avia_markup_helper(array('context' => 'content', 'post_type' => 'page', 'echo' => false)) . ">";
260
+	}
261
+	echo '<div class="entry-content-wrapper">';
262 262
 }
263 263
 
264 264
 
@@ -274,9 +274,9 @@  discard block
 block discarded – undo
274 274
  */
275 275
 function enfold_action_sidebar_right_open($type = '', $id = '', $class = '', $itemtype = '')
276 276
 {
277
-    $sidebar_smartphone = avia_get_option('smartphones_sidebar') == 'smartphones_sidebar' ? 'smartphones_sidebar_active' : "";
278
-    echo "<aside class='sidebar sidebar_right " . $sidebar_smartphone . " " . avia_layout_class('sidebar', false) . " units' " . avia_markup_helper(array('context' => 'sidebar', 'echo' => false)) . ">";
279
-    echo "<div class='inner_sidebar extralight-border'>";
277
+	$sidebar_smartphone = avia_get_option('smartphones_sidebar') == 'smartphones_sidebar' ? 'smartphones_sidebar_active' : "";
278
+	echo "<aside class='sidebar sidebar_right " . $sidebar_smartphone . " " . avia_layout_class('sidebar', false) . " units' " . avia_markup_helper(array('context' => 'sidebar', 'echo' => false)) . ">";
279
+	echo "<div class='inner_sidebar extralight-border'>";
280 280
 }
281 281
 
282 282
 /**
@@ -291,9 +291,9 @@  discard block
 block discarded – undo
291 291
  */
292 292
 function enfold_action_sidebar_left_open($type = '', $id = '', $class = '', $itemtype = '')
293 293
 {
294
-    $sidebar_smartphone = avia_get_option('smartphones_sidebar') == 'smartphones_sidebar' ? 'smartphones_sidebar_active' : "";
295
-    echo "<aside class='sidebar sidebar_left " . $sidebar_smartphone . " " . avia_layout_class('sidebar', false) . " units' " . avia_markup_helper(array('context' => 'sidebar', 'echo' => false)) . ">";
296
-    echo "<div class='inner_sidebar extralight-border'>";
294
+	$sidebar_smartphone = avia_get_option('smartphones_sidebar') == 'smartphones_sidebar' ? 'smartphones_sidebar_active' : "";
295
+	echo "<aside class='sidebar sidebar_left " . $sidebar_smartphone . " " . avia_layout_class('sidebar', false) . " units' " . avia_markup_helper(array('context' => 'sidebar', 'echo' => false)) . ">";
296
+	echo "<div class='inner_sidebar extralight-border'>";
297 297
 }
298 298
 
299 299
 
@@ -307,7 +307,7 @@  discard block
 block discarded – undo
307 307
  */
308 308
 function gd_enfold_remove_maps_api($call)
309 309
 {
310
-    return false;
310
+	return false;
311 311
 }
312 312
 
313 313
 
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
  */
163 163
 function enfold_action_wrapper_open()
164 164
 {
165
-    echo "<div class='container_wrap container_wrap_first main_color " . avia_layout_class('main', false) . "'>";
165
+    echo "<div class='container_wrap container_wrap_first main_color ".avia_layout_class('main', false)."'>";
166 166
     echo "<div class='container template-blog '>";
167 167
 }
168 168
 
@@ -254,9 +254,9 @@  discard block
 block discarded – undo
254 254
 function enfold_action_wrapper_content_open($type = '', $id = '', $class = '')
255 255
 {
256 256
     if (geodir_is_page('login')) {
257
-        echo "<main class='template-page content twelve alpha units " . $class . "' " . avia_markup_helper(array('context' => 'content', 'post_type' => 'page', 'echo' => false)) . ">";
257
+        echo "<main class='template-page content twelve alpha units ".$class."' ".avia_markup_helper(array('context' => 'content', 'post_type' => 'page', 'echo' => false)).">";
258 258
     } else {
259
-        echo "<main class='template-page content " . avia_layout_class('content', false) . " units " . $class . "' " . avia_markup_helper(array('context' => 'content', 'post_type' => 'page', 'echo' => false)) . ">";
259
+        echo "<main class='template-page content ".avia_layout_class('content', false)." units ".$class."' ".avia_markup_helper(array('context' => 'content', 'post_type' => 'page', 'echo' => false)).">";
260 260
     }
261 261
     echo '<div class="entry-content-wrapper">';
262 262
 }
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
 function enfold_action_sidebar_right_open($type = '', $id = '', $class = '', $itemtype = '')
276 276
 {
277 277
     $sidebar_smartphone = avia_get_option('smartphones_sidebar') == 'smartphones_sidebar' ? 'smartphones_sidebar_active' : "";
278
-    echo "<aside class='sidebar sidebar_right " . $sidebar_smartphone . " " . avia_layout_class('sidebar', false) . " units' " . avia_markup_helper(array('context' => 'sidebar', 'echo' => false)) . ">";
278
+    echo "<aside class='sidebar sidebar_right ".$sidebar_smartphone." ".avia_layout_class('sidebar', false)." units' ".avia_markup_helper(array('context' => 'sidebar', 'echo' => false)).">";
279 279
     echo "<div class='inner_sidebar extralight-border'>";
280 280
 }
281 281
 
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
 function enfold_action_sidebar_left_open($type = '', $id = '', $class = '', $itemtype = '')
293 293
 {
294 294
     $sidebar_smartphone = avia_get_option('smartphones_sidebar') == 'smartphones_sidebar' ? 'smartphones_sidebar_active' : "";
295
-    echo "<aside class='sidebar sidebar_left " . $sidebar_smartphone . " " . avia_layout_class('sidebar', false) . " units' " . avia_markup_helper(array('context' => 'sidebar', 'echo' => false)) . ">";
295
+    echo "<aside class='sidebar sidebar_left ".$sidebar_smartphone." ".avia_layout_class('sidebar', false)." units' ".avia_markup_helper(array('context' => 'sidebar', 'echo' => false)).">";
296 296
     echo "<div class='inner_sidebar extralight-border'>";
297 297
 }
298 298
 
Please login to merge, or discard this patch.
geodirectory-functions/post_functions.php 4 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -721,7 +721,7 @@  discard block
 block discarded – undo
721 721
      * @param int $post_id The post ID.
722 722
      * @param string $postmeta Detail table column name.
723 723
      * @param string $meta_value Detail table column value.
724
-     * @return void|bool
724
+     * @return null|false
725 725
      */
726 726
     function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '')
727 727
     {
@@ -775,7 +775,7 @@  discard block
 block discarded – undo
775 775
      * @param string $postmeta Detail table column name.
776 776
      * @todo check if this is depreciated
777 777
      * @todo Fix unknown variable mval
778
-     * @return bool
778
+     * @return boolean|null
779 779
      */
780 780
     function geodir_delete_post_meta($post_id, $postmeta)
781 781
     {
@@ -2124,7 +2124,7 @@  discard block
 block discarded – undo
2124 2124
      * @global string $plugin_prefix Geodirectory plugin table prefix.
2125 2125
      * @param int $deleted_postid The post ID.
2126 2126
      * @param bool $force Optional. Do you want to force delete it? Default: false.
2127
-     * @return bool|void
2127
+     * @return null|false
2128 2128
      */
2129 2129
     function geodir_delete_listing_info($deleted_postid, $force = false)
2130 2130
     {
@@ -2693,7 +2693,7 @@  discard block
 block discarded – undo
2693 2693
  * @since 1.0.0
2694 2694
  * @package GeoDirectory
2695 2695
  * @global object $current_user Current user object.
2696
- * @param int|string $listing_id The post ID.
2696
+ * @param integer $listing_id The post ID.
2697 2697
  * @param bool $exclude_admin Optional. Do you want to exclude admin from the check?. Default true.
2698 2698
  * @return bool
2699 2699
  */
Please login to merge, or discard this patch.
Braces   +174 added lines, -123 removed lines patch added patch discarded remove patch
@@ -21,12 +21,13 @@  discard block
 block discarded – undo
21 21
 {
22 22
 
23 23
     $post_cat_ids = geodir_get_post_meta($post_id, $taxonomy);
24
-    if (!empty($post_cat_ids))
25
-        $post_cat_array = explode(",", trim($post_cat_ids, ","));
24
+    if (!empty($post_cat_ids)) {
25
+            $post_cat_array = explode(",", trim($post_cat_ids, ","));
26
+    }
26 27
 
27 28
     if (!isset($default_cat) || empty($default_cat)) {
28 29
         $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : '';
29
-    }else{
30
+    } else{
30 31
         if(!is_int($default_cat)){
31 32
             $category = get_term_by('name', $default_cat, $taxonomy);
32 33
             if(isset($category->term_id)){
@@ -372,8 +373,9 @@  discard block
 block discarded – undo
372 373
             } elseif (trim($type) == 'file') {
373 374
                 if (isset($request_info[$name])) {
374 375
                     $request_files = array();
375
-                    if ($request_info[$name] != '')
376
-                        $request_files = explode(",", $request_info[$name]);
376
+                    if ($request_info[$name] != '') {
377
+                                            $request_files = explode(",", $request_info[$name]);
378
+                    }
377 379
 
378 380
                     $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL;
379 381
                     geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields);
@@ -399,7 +401,7 @@  discard block
 block discarded – undo
399 401
 
400 402
                         $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
401 403
 
402
-                    }else{
404
+                    } else{
403 405
                         $post_htmlvar_value = $request_info[$name];
404 406
                     }
405 407
 
@@ -439,15 +441,17 @@  discard block
 block discarded – undo
439 441
 
440 442
             foreach ($request_info['post_category'] as $taxonomy => $cat) {
441 443
 
442
-                if ($dummy)
443
-                    $post_category = $cat;
444
-                else {
444
+                if ($dummy) {
445
+                                    $post_category = $cat;
446
+                } else {
445 447
 
446
-                    if (!is_array($cat) && strstr($cat, ','))
447
-                        $cat = explode(',', $cat);
448
+                    if (!is_array($cat) && strstr($cat, ',')) {
449
+                                            $cat = explode(',', $cat);
450
+                    }
448 451
 
449
-                    if (!empty($cat) && is_array($cat))
450
-                        $post_category = array_map('intval', $cat);
452
+                    if (!empty($cat) && is_array($cat)) {
453
+                                            $post_category = array_map('intval', $cat);
454
+                    }
451 455
                 }
452 456
 
453 457
                 wp_set_object_terms($last_post_id, $post_category, $taxonomy);
@@ -465,11 +469,13 @@  discard block
 block discarded – undo
465 469
         if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
466 470
             $post_tags = explode(",", $request_info['post_tags']);
467 471
         } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
468
-            if ($dummy)
469
-                $post_tags = $request_info['post_tags'];
472
+            if ($dummy) {
473
+                            $post_tags = $request_info['post_tags'];
474
+            }
470 475
         } else {
471
-            if ($dummy)
472
-                $post_tags = array($request_info['post_title']);
476
+            if ($dummy) {
477
+                            $post_tags = array($request_info['post_title']);
478
+            }
473 479
         }
474 480
 
475 481
         if (is_array($post_tags)) {
@@ -556,15 +562,17 @@  discard block
 block discarded – undo
556 562
 
557 563
     global $wpdb, $plugin_prefix, $post, $post_info;
558 564
 
559
-    if ($post_id == '' && !empty($post))
560
-        $post_id = $post->ID;
565
+    if ($post_id == '' && !empty($post)) {
566
+            $post_id = $post->ID;
567
+    }
561 568
 
562 569
     $post_type = get_post_type($post_id);
563 570
 
564 571
     $all_postypes = geodir_get_posttypes();
565 572
 
566
-    if (!in_array($post_type, $all_postypes))
567
-        return false;
573
+    if (!in_array($post_type, $all_postypes)) {
574
+            return false;
575
+    }
568 576
 
569 577
     $table = $plugin_prefix . $post_type . '_detail';
570 578
 
@@ -714,8 +722,9 @@  discard block
 block discarded – undo
714 722
             do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
715 723
 
716 724
             return true;
717
-        } else
718
-            return false;
725
+        } else {
726
+                    return false;
727
+        }
719 728
 
720 729
     }
721 730
 }
@@ -769,8 +778,9 @@  discard block
 block discarded – undo
769 778
             }
770 779
 
771 780
 
772
-        } else
773
-            return false;
781
+        } else {
782
+                    return false;
783
+        }
774 784
     }
775 785
 }
776 786
 
@@ -801,8 +811,9 @@  discard block
 block discarded – undo
801 811
             $post_meta_set_query = '';
802 812
 
803 813
             foreach ($postmeta as $mkey) {
804
-                if ($mval != '')
805
-                    $post_meta_set_query .= $mkey . " = '', ";
814
+                if ($mval != '') {
815
+                                    $post_meta_set_query .= $mkey . " = '', ";
816
+                }
806 817
             }
807 818
 
808 819
             $post_meta_set_query = trim($post_meta_set_query, ", ");
@@ -832,8 +843,9 @@  discard block
 block discarded – undo
832 843
                 return true;
833 844
             }
834 845
 
835
-        } else
836
-            return false;
846
+        } else {
847
+                    return false;
848
+        }
837 849
     }
838 850
 }
839 851
 
@@ -863,8 +875,9 @@  discard block
 block discarded – undo
863 875
 
864 876
         $post_type = get_post_type($post_id);
865 877
 
866
-        if (!in_array($post_type, $all_postypes))
867
-            return false;
878
+        if (!in_array($post_type, $all_postypes)) {
879
+                    return false;
880
+        }
868 881
 
869 882
         $table = $plugin_prefix . $post_type . '_detail';
870 883
 
@@ -873,8 +886,9 @@  discard block
 block discarded – undo
873 886
             
874 887
             if ($meta_value && $meta_value !== '') {
875 888
                 return maybe_serialize($meta_value);
876
-            } else
877
-                return $meta_value;
889
+            } else {
890
+                            return $meta_value;
891
+            }
878 892
         } else {
879 893
             return false;
880 894
         }
@@ -1008,7 +1022,7 @@  discard block
 block discarded – undo
1008 1022
                             if (isset($uploaded['error']) && empty($uploaded['error'])) {
1009 1023
                                 $new_name = basename($uploaded['file']);
1010 1024
                                 $uploaded_file = $uploaded;
1011
-                            }else{
1025
+                            } else{
1012 1026
                                 print_r($uploaded);exit;
1013 1027
                             }
1014 1028
                             $external_img = false;
@@ -1033,8 +1047,9 @@  discard block
 block discarded – undo
1033 1047
                                 $file_path = $curr_img_dir . '/' . $filename;
1034 1048
                             }
1035 1049
 
1036
-                            if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path))
1037
-                                unlink($img_path);
1050
+                            if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) {
1051
+                                                            unlink($img_path);
1052
+                            }
1038 1053
                         }
1039 1054
 
1040 1055
                         if (!empty($uploaded_file)) {
@@ -1063,8 +1078,9 @@  discard block
 block discarded – undo
1063 1078
                             $attachment_set = '';
1064 1079
 
1065 1080
                             foreach ($attachment as $key => $val) {
1066
-                                if ($val != '')
1067
-                                    $attachment_set .= $key . " = '" . $val . "', ";
1081
+                                if ($val != '') {
1082
+                                                                    $attachment_set .= $key . " = '" . $val . "', ";
1083
+                                }
1068 1084
                             }
1069 1085
 
1070 1086
                             $attachment_set = trim($attachment_set, ", ");
@@ -1089,8 +1105,9 @@  discard block
 block discarded – undo
1089 1105
                         )
1090 1106
                     );
1091 1107
 
1092
-                    if ($menu_order == 1)
1093
-                        $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1108
+                    if ($menu_order == 1) {
1109
+                                            $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1110
+                    }
1094 1111
 
1095 1112
                 }
1096 1113
 
@@ -1131,8 +1148,9 @@  discard block
 block discarded – undo
1131 1148
 
1132 1149
         $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
1133 1150
 
1134
-        if (!empty($invalid_files))
1135
-            geodir_remove_attachments($invalid_files);
1151
+        if (!empty($invalid_files)) {
1152
+                    geodir_remove_attachments($invalid_files);
1153
+        }
1136 1154
     }
1137 1155
 
1138 1156
 }
@@ -1185,16 +1203,19 @@  discard block
 block discarded – undo
1185 1203
 function geodir_delete_directory($dirname)
1186 1204
 {
1187 1205
     $dir_handle = '';
1188
-    if (is_dir($dirname))
1189
-        $dir_handle = opendir($dirname);
1190
-    if (!$dir_handle)
1191
-        return false;
1206
+    if (is_dir($dirname)) {
1207
+            $dir_handle = opendir($dirname);
1208
+    }
1209
+    if (!$dir_handle) {
1210
+            return false;
1211
+    }
1192 1212
     while ($file = readdir($dir_handle)) {
1193 1213
         if ($file != "." && $file != "..") {
1194
-            if (!is_dir($dirname . "/" . $file))
1195
-                unlink($dirname . "/" . $file);
1196
-            else
1197
-                geodir_delete_directory($dirname . '/' . $file);
1214
+            if (!is_dir($dirname . "/" . $file)) {
1215
+                            unlink($dirname . "/" . $file);
1216
+            } else {
1217
+                            geodir_delete_directory($dirname . '/' . $file);
1218
+            }
1198 1219
         }
1199 1220
     }
1200 1221
     closedir($dir_handle);
@@ -1223,8 +1244,9 @@  discard block
 block discarded – undo
1223 1244
             foreach ($postcurr_images as $postimg) {
1224 1245
                 $image_name_arr = explode('/', $postimg->src);
1225 1246
                 $filename = end($image_name_arr);
1226
-                if (file_exists($uploads_dir . '/' . $filename))
1227
-                    unlink($uploads_dir . '/' . $filename);
1247
+                if (file_exists($uploads_dir . '/' . $filename)) {
1248
+                                    unlink($uploads_dir . '/' . $filename);
1249
+                }
1228 1250
             }
1229 1251
 
1230 1252
         } // endif
@@ -1283,8 +1305,9 @@  discard block
 block discarded – undo
1283 1305
 
1284 1306
             $file_info = pathinfo($file);
1285 1307
             $sub_dir = '';
1286
-            if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1287
-                $sub_dir = stripslashes_deep($file_info['dirname']);
1308
+            if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') {
1309
+                            $sub_dir = stripslashes_deep($file_info['dirname']);
1310
+            }
1288 1311
 
1289 1312
             $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1290 1313
             $uploads_baseurl = $uploads['baseurl'];
@@ -1328,9 +1351,9 @@  discard block
 block discarded – undo
1328 1351
                 $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1329 1352
             }
1330 1353
 
1331
-            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1332
-                $default_img = $default_catimg['src'];
1333
-            elseif ($no_image) {
1354
+            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) {
1355
+                            $default_img = $default_catimg['src'];
1356
+            } elseif ($no_image) {
1334 1357
                 $default_img = get_option('geodir_listing_no_img');
1335 1358
             }
1336 1359
 
@@ -1362,10 +1385,13 @@  discard block
 block discarded – undo
1362 1385
             }
1363 1386
         }
1364 1387
 
1365
-        if (!empty($img_arr))
1366
-            return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path );
1367
-        else
1368
-            return false;
1388
+        if (!empty($img_arr)) {
1389
+                    return (object)$img_arr;
1390
+        }
1391
+        //return (object)array( 'src' => $file_url, 'path' => $file_path );
1392
+        else {
1393
+                    return false;
1394
+        }
1369 1395
     }
1370 1396
 }
1371 1397
 
@@ -1392,8 +1418,9 @@  discard block
 block discarded – undo
1392 1418
             echo $html;
1393 1419
         } elseif (!empty($html)) {
1394 1420
             return $html;
1395
-        } else
1396
-            return false;
1421
+        } else {
1422
+                    return false;
1423
+        }
1397 1424
     }
1398 1425
 }
1399 1426
 
@@ -1421,8 +1448,9 @@  discard block
 block discarded – undo
1421 1448
         }
1422 1449
         $not_featured = '';
1423 1450
         $sub_dir = '';
1424
-        if (!$add_featured)
1425
-            $not_featured = " AND is_featured = 0 ";
1451
+        if (!$add_featured) {
1452
+                    $not_featured = " AND is_featured = 0 ";
1453
+        }
1426 1454
 
1427 1455
         $arrImages = $wpdb->get_results(
1428 1456
             $wpdb->prepare(
@@ -1443,8 +1471,9 @@  discard block
 block discarded – undo
1443 1471
 
1444 1472
                 $file_info = pathinfo($attechment->file);
1445 1473
 
1446
-                if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1447
-                    $sub_dir = stripslashes_deep($file_info['dirname']);
1474
+                if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') {
1475
+                                    $sub_dir = stripslashes_deep($file_info['dirname']);
1476
+                }
1448 1477
 
1449 1478
                 $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1450 1479
                 $uploads_baseurl = $uploads['baseurl'];
@@ -1489,9 +1518,9 @@  discard block
 block discarded – undo
1489 1518
             $default_img = '';
1490 1519
             $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1491 1520
             $post_type = get_post_type($post_id);
1492
-            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1493
-                $default_img = $default_catimg['src'];
1494
-            elseif ($no_images) {
1521
+            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) {
1522
+                            $default_img = $default_catimg['src'];
1523
+            } elseif ($no_images) {
1495 1524
                 $default_img = get_option('geodir_listing_no_img');
1496 1525
             }
1497 1526
 
@@ -1526,8 +1555,9 @@  discard block
 block discarded – undo
1526 1555
                 $return_arr[] = (object)$img_arr;
1527 1556
 
1528 1557
                 return $return_arr;
1529
-            } else
1530
-                return false;
1558
+            } else {
1559
+                            return false;
1560
+            }
1531 1561
         }
1532 1562
     }
1533 1563
 }
@@ -1588,8 +1618,9 @@  discard block
 block discarded – undo
1588 1618
                         $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2);
1589 1619
                     } else if ($image->width < ($max_size->h)) {
1590 1620
                         $width_per = round((($image->width / $max_size->w) * 100), 2);
1591
-                    } else
1592
-                        $width_per = 100;
1621
+                    } else {
1622
+                                            $width_per = 100;
1623
+                    }
1593 1624
                 }
1594 1625
 
1595 1626
                 if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
@@ -1597,7 +1628,7 @@  discard block
 block discarded – undo
1597 1628
                 } else {
1598 1629
                     if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
1599 1630
                         $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1600
-                    }else{
1631
+                    } else{
1601 1632
                         //$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1602 1633
                         //$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>';
1603 1634
                         $html = '<div data-src="'.$image->src.'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
@@ -1612,8 +1643,9 @@  discard block
 block discarded – undo
1612 1643
             echo $html;
1613 1644
         } elseif (!empty($html)) {
1614 1645
             return $html;
1615
-        } else
1616
-            return false;
1646
+        } else {
1647
+                    return false;
1648
+        }
1617 1649
     }
1618 1650
 }
1619 1651
 
@@ -1651,8 +1683,9 @@  discard block
 block discarded – undo
1651 1683
                 $post_obj = get_post($post_id);
1652 1684
 
1653 1685
                 $cat_ids = array('0');
1654
-                if (is_array($tt_ids))
1655
-                    $cat_ids = $tt_ids;
1686
+                if (is_array($tt_ids)) {
1687
+                                    $cat_ids = $tt_ids;
1688
+                }
1656 1689
 
1657 1690
 
1658 1691
                 if (!empty($cat_ids)) {
@@ -1709,8 +1742,9 @@  discard block
 block discarded – undo
1709 1742
                         $json .= '}';
1710 1743
 
1711 1744
 
1712
-                        if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true))
1713
-                            $post_marker_json = $json;
1745
+                        if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true)) {
1746
+                                                    $post_marker_json = $json;
1747
+                        }
1714 1748
 
1715 1749
 
1716 1750
                         if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
@@ -1741,10 +1775,13 @@  discard block
 block discarded – undo
1741 1775
                 if (!empty($post_term) && is_array($post_term)) {
1742 1776
                     $categories = implode(',', $post_term);
1743 1777
 
1744
-                    if ($categories != '' && $categories != 0) $categories = ',' . $categories . ',';
1778
+                    if ($categories != '' && $categories != 0) {
1779
+                    	$categories = ',' . $categories . ',';
1780
+                    }
1745 1781
 
1746
-                    if (empty($post_marker_json))
1747
-                        $post_marker_json = isset($json) ? $json : '';
1782
+                    if (empty($post_marker_json)) {
1783
+                                            $post_marker_json = isset($json) ? $json : '';
1784
+                    }
1748 1785
 
1749 1786
                     if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
1750 1787
 
@@ -1783,8 +1820,9 @@  discard block
 block discarded – undo
1783 1820
 
1784 1821
                                 }
1785 1822
 
1786
-                                if ($default_category == '')
1787
-                                    $default_category = $categories[0];
1823
+                                if ($default_category == '') {
1824
+                                                                    $default_category = $categories[0];
1825
+                                }
1788 1826
 
1789 1827
                                 geodir_set_postcat_structure($post_id, $taxonomy, $default_category, '');
1790 1828
 
@@ -1928,7 +1966,7 @@  discard block
 block discarded – undo
1928 1966
                                     } ?>"><img alt="bubble image" style="max-height:50px;"
1929 1967
                                                src="<?php echo $post_images[0]; ?>"/></a></div>
1930 1968
                             <?php
1931
-                            }else{
1969
+                            } else{
1932 1970
                                 echo '<div class="geodir-bubble_image"></div>';
1933 1971
                             }
1934 1972
                         } else {
@@ -1936,7 +1974,7 @@  discard block
 block discarded – undo
1936 1974
                                 ?>
1937 1975
                                 <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div>
1938 1976
                             <?php
1939
-                            }else{
1977
+                            } else{
1940 1978
                                 echo '<div class="geodir-bubble_image"></div>';
1941 1979
                             }
1942 1980
                         }
@@ -2038,10 +2076,11 @@  discard block
 block discarded – undo
2038 2076
      */
2039 2077
     function geodir_new_post_default_status()
2040 2078
     {
2041
-        if (get_option('geodir_new_post_default_status'))
2042
-            return get_option('geodir_new_post_default_status');
2043
-        else
2044
-            return 'publish';
2079
+        if (get_option('geodir_new_post_default_status')) {
2080
+                    return get_option('geodir_new_post_default_status');
2081
+        } else {
2082
+                    return 'publish';
2083
+        }
2045 2084
 
2046 2085
     }
2047 2086
 }
@@ -2192,8 +2231,9 @@  discard block
 block discarded – undo
2192 2231
 
2193 2232
         $all_postypes = geodir_get_posttypes();
2194 2233
 
2195
-        if (!in_array($post_type, $all_postypes))
2196
-            return false;
2234
+        if (!in_array($post_type, $all_postypes)) {
2235
+                    return false;
2236
+        }
2197 2237
 
2198 2238
         $table = $plugin_prefix . $post_type . '_detail';
2199 2239
 
@@ -2461,8 +2501,9 @@  discard block
 block discarded – undo
2461 2501
         $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
2462 2502
 
2463 2503
         $user_meta_data = '';
2464
-        if (isset($current_user->data->ID))
2465
-            $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2504
+        if (isset($current_user->data->ID)) {
2505
+                    $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2506
+        }
2466 2507
 
2467 2508
         if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
2468 2509
             ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"  ><a
@@ -2475,8 +2516,9 @@  discard block
 block discarded – undo
2475 2516
 
2476 2517
             if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
2477 2518
                 $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\'';
2478
-            } else
2479
-                $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2519
+            } else {
2520
+                            $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2521
+            }
2480 2522
 
2481 2523
             ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon"
2482 2524
                                                                                         href="javascript:void(0);"
@@ -2539,14 +2581,16 @@  discard block
 block discarded – undo
2539 2581
 							WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
2540 2582
 
2541 2583
             $cat_post_count = $wpdb->get_var($count_query);
2542
-            if (empty($cat_post_count) || is_wp_error($cat_post_count))
2543
-                $cat_post_count = 0;
2584
+            if (empty($cat_post_count) || is_wp_error($cat_post_count)) {
2585
+                            $cat_post_count = 0;
2586
+            }
2544 2587
 
2545 2588
             return $cat_post_count;
2546 2589
 
2547
-        } else
2548
-
2549
-            return $term->count;
2590
+        } else {
2591
+        
2592
+            return $term->count;
2593
+        }
2550 2594
     }
2551 2595
     return false;
2552 2596
 
@@ -2593,13 +2637,15 @@  discard block
 block discarded – undo
2593 2637
 		return $length;
2594 2638
 	}
2595 2639
 	
2596
-    if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
2597
-        $length = get_option('geodir_desc_word_limit');
2598
-    elseif (get_query_var('excerpt_length'))
2599
-        $length = get_query_var('excerpt_length');
2640
+    if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit')) {
2641
+            $length = get_option('geodir_desc_word_limit');
2642
+    } elseif (get_query_var('excerpt_length')) {
2643
+            $length = get_query_var('excerpt_length');
2644
+    }
2600 2645
 
2601
-    if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
2602
-        $length = get_option('geodir_author_desc_word_limit');
2646
+    if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit')) {
2647
+            $length = get_option('geodir_author_desc_word_limit');
2648
+    }
2603 2649
 
2604 2650
     return $length;
2605 2651
 }
@@ -2732,10 +2778,11 @@  discard block
 block discarded – undo
2732 2778
 function geodir_lisiting_belong_to_user($listing_id, $user_id)
2733 2779
 {
2734 2780
     $listing_author_id = geodir_get_listing_author($listing_id);
2735
-    if ($listing_author_id == $user_id)
2736
-        return true;
2737
-    else
2738
-        return false;
2781
+    if ($listing_author_id == $user_id) {
2782
+            return true;
2783
+    } else {
2784
+            return false;
2785
+    }
2739 2786
 
2740 2787
 }
2741 2788
 
@@ -2784,10 +2831,11 @@  discard block
 block discarded – undo
2784 2831
     $pattern = '/-\d+x\d+\./';
2785 2832
     preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE);
2786 2833
 
2787
-    if (empty($matches))
2788
-        return '';
2789
-    else
2790
-        return $file;
2834
+    if (empty($matches)) {
2835
+            return '';
2836
+    } else {
2837
+            return $file;
2838
+    }
2791 2839
 
2792 2840
 }
2793 2841
 
@@ -2872,8 +2920,9 @@  discard block
 block discarded – undo
2872 2920
     } else {
2873 2921
         //set_post_thumbnail($post_id,-1);
2874 2922
 
2875
-        if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete'))
2876
-            wp_delete_attachment($post_thumbnail_id);
2923
+        if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
2924
+                    wp_delete_attachment($post_thumbnail_id);
2925
+        }
2877 2926
 
2878 2927
     }
2879 2928
 }
@@ -2958,8 +3007,9 @@  discard block
 block discarded – undo
2958 3007
 
2959 3008
     global $wpdb;
2960 3009
 
2961
-    if ($listing_type == '')
2962
-        $listing_type = 'gd_place';
3010
+    if ($listing_type == '') {
3011
+            $listing_type = 'gd_place';
3012
+    }
2963 3013
 
2964 3014
     $fields_info = array();
2965 3015
 
@@ -2982,8 +3032,9 @@  discard block
 block discarded – undo
2982 3032
 
2983 3033
                 $fields_info[$prefix . 'address'] = $data->field_type;
2984 3034
 
2985
-                if (isset($extra_fields['show_zip']) && $extra_fields['show_zip'])
2986
-                    $fields_info[$prefix . 'zip'] = $data->field_type;
3035
+                if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) {
3036
+                                    $fields_info[$prefix . 'zip'] = $data->field_type;
3037
+                }
2987 3038
 
2988 3039
             } else {
2989 3040
 
Please login to merge, or discard this patch.
Indentation   +2234 added lines, -2234 removed lines patch added patch discarded remove patch
@@ -20,491 +20,491 @@  discard block
 block discarded – undo
20 20
 function geodir_set_postcat_structure($post_id, $taxonomy, $default_cat = '', $category_str = '')
21 21
 {
22 22
 
23
-    $post_cat_ids = geodir_get_post_meta($post_id, $taxonomy);
24
-    if (!empty($post_cat_ids))
25
-        $post_cat_array = explode(",", trim($post_cat_ids, ","));
26
-
27
-    if (!isset($default_cat) || empty($default_cat)) {
28
-        $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : '';
29
-    }else{
30
-        if(!is_int($default_cat)){
31
-            $category = get_term_by('name', $default_cat, $taxonomy);
32
-            if(isset($category->term_id)){
33
-                $default_cat =  $category->term_id;
34
-            }
35
-        }
23
+	$post_cat_ids = geodir_get_post_meta($post_id, $taxonomy);
24
+	if (!empty($post_cat_ids))
25
+		$post_cat_array = explode(",", trim($post_cat_ids, ","));
26
+
27
+	if (!isset($default_cat) || empty($default_cat)) {
28
+		$default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : '';
29
+	}else{
30
+		if(!is_int($default_cat)){
31
+			$category = get_term_by('name', $default_cat, $taxonomy);
32
+			if(isset($category->term_id)){
33
+				$default_cat =  $category->term_id;
34
+			}
35
+		}
36 36
 
37
-    }
37
+	}
38 38
 
39 39
 
40
-    geodir_save_post_meta($post_id, 'default_category', $default_cat);
40
+	geodir_save_post_meta($post_id, 'default_category', $default_cat);
41 41
 
42
-    if (isset($category_str) && empty($category_str)) {
42
+	if (isset($category_str) && empty($category_str)) {
43 43
 
44
-        $post_cat_str = '';
45
-        $post_categories = array();
46
-        if (isset($post_cat_array) && is_array($post_cat_array) && !empty($post_cat_array)) {
47
-            $post_cat_str = implode(",y:#", $post_cat_array);
48
-            $post_cat_str .= ",y:";
49
-            $post_cat_str = substr_replace($post_cat_str, ',y,d:', strpos($post_cat_str, ',y:'), strlen(',y:'));
50
-        }
51
-        $post_categories[$taxonomy] = $post_cat_str;
52
-        $category_str = $post_categories;
53
-    }
44
+		$post_cat_str = '';
45
+		$post_categories = array();
46
+		if (isset($post_cat_array) && is_array($post_cat_array) && !empty($post_cat_array)) {
47
+			$post_cat_str = implode(",y:#", $post_cat_array);
48
+			$post_cat_str .= ",y:";
49
+			$post_cat_str = substr_replace($post_cat_str, ',y,d:', strpos($post_cat_str, ',y:'), strlen(',y:'));
50
+		}
51
+		$post_categories[$taxonomy] = $post_cat_str;
52
+		$category_str = $post_categories;
53
+	}
54 54
 
55
-    $change_cat_str = $category_str[$taxonomy];
55
+	$change_cat_str = $category_str[$taxonomy];
56 56
 
57
-    $default_pos = strpos($change_cat_str, 'd:');
57
+	$default_pos = strpos($change_cat_str, 'd:');
58 58
 
59
-    if ($default_pos === false) {
59
+	if ($default_pos === false) {
60 60
 
61
-        $change_cat_str = str_replace($default_cat . ',y:', $default_cat . ',y,d:', $change_cat_str);
61
+		$change_cat_str = str_replace($default_cat . ',y:', $default_cat . ',y,d:', $change_cat_str);
62 62
 
63
-    }
63
+	}
64 64
 
65
-    $category_str[$taxonomy] = $change_cat_str;
65
+	$category_str[$taxonomy] = $change_cat_str;
66 66
 
67
-    update_post_meta($post_id, 'post_categories', $category_str);
67
+	update_post_meta($post_id, 'post_categories', $category_str);
68 68
 
69 69
 }
70 70
 
71 71
 
72 72
 if (!function_exists('geodir_save_listing')) {
73
-    /**
74
-     * Saves listing in the database using given information.
75
-     *
76
-     * @since 1.0.0
77
-     * @since 1.5.4 New parameter $wp_error added.
78
-     * @package GeoDirectory
79
-     * @global object $wpdb WordPress Database object.
80
-     * @global object $post The current post object.
81
-     * @global object $current_user Current user object.
73
+	/**
74
+	 * Saves listing in the database using given information.
75
+	 *
76
+	 * @since 1.0.0
77
+	 * @since 1.5.4 New parameter $wp_error added.
78
+	 * @package GeoDirectory
79
+	 * @global object $wpdb WordPress Database object.
80
+	 * @global object $post The current post object.
81
+	 * @global object $current_user Current user object.
82 82
 	 * @global object $gd_session GeoDirectory Session object.
83
-     * @param array $request_info {
84
-     *    Array of request info arguments.
85
-     *
86
-     *    @type string $action                                  Ajax action name.
87
-     *    @type string $geodir_ajax                             Ajax type.
88
-     *    @type string $ajax_action                             Ajax action.
89
-     *    @type string $listing_type                            Listing type.
90
-     *    @type string $pid                                     Default Post ID.
91
-     *    @type string $preview                                 Todo Desc needed.
92
-     *    @type string $add_listing_page_id                     Add listing page ID.
93
-     *    @type string $post_title                              Listing title.
94
-     *    @type string $post_desc                               Listing Description.
95
-     *    @type string $post_tags                               Listing tags.
96
-     *    @type array  $cat_limit                               Category limit.
97
-     *    @type array  $post_category                           Category IDs.
98
-     *    @type array  $post_category_str                       Category string.
99
-     *    @type string $post_default_category                   Default category ID.
100
-     *    @type string $post_address                            Listing address.
101
-     *    @type string $geodir_location_add_listing_country_val Add listing country value.
102
-     *    @type string $post_country                            Listing country.
103
-     *    @type string $geodir_location_add_listing_region_val  Add listing region value.
104
-     *    @type string $post_region                             Listing region.
105
-     *    @type string $geodir_location_add_listing_city_val    Add listing city value.
106
-     *    @type string $post_city                               Listing city.
107
-     *    @type string $post_zip                                Listing zip.
108
-     *    @type string $post_latitude                           Listing latitude.
109
-     *    @type string $post_longitude                          Listing longitude.
110
-     *    @type string $post_mapview                            Listing mapview. Default "ROADMAP".
111
-     *    @type string $post_mapzoom                            Listing mapzoom Default "9".
112
-     *    @type string $geodir_timing                           Business timing info.
113
-     *    @type string $geodir_contact                          Contact number.
114
-     *    @type string $geodir_email                            Business contact email.
115
-     *    @type string $geodir_website                          Business website.
116
-     *    @type string $geodir_twitter                          Twitter link.
117
-     *    @type string $geodir_facebook                         Facebook link.
118
-     *    @type string $geodir_video                            Video link.
119
-     *    @type string $geodir_special_offers                   Speacial offers.
120
-     *    @type string $post_images                             Post image urls.
121
-     *    @type string $post_imagesimage_limit                  Post images limit.
122
-     *    @type string $post_imagestotImg                       Todo Desc needed.
123
-     *    @type string $geodir_accept_term_condition            Has accepted terms and conditions?.
124
-     *    @type string $geodir_spamblocker                      Todo Desc needed.
125
-     *    @type string $geodir_filled_by_spam_bot               Todo Desc needed.
126
-     *
127
-     * }
128
-     * @param bool $dummy Optional. Is this a dummy listing? Default false.
129
-     * @param bool $wp_error Optional. Allow return of WP_Error on failure. Default false.
130
-     * @return int|string|WP_Error Created post id or WP_Error on failure.
131
-     */
132
-    function geodir_save_listing($request_info = array(), $dummy = false, $wp_error = false)
133
-    {
134
-        global $wpdb, $current_user, $gd_session;
135
-
136
-        $last_post_id = '';
137
-
138
-        if ($gd_session->get('listing') && !$dummy) {
139
-            $request_info = array();
140
-            $request_session = $gd_session->get('listing');
141
-            $request_info = array_merge($_REQUEST, $request_session);
142
-        } else if (!$gd_session->get('listing') && !$dummy) {
143
-            global $post;
83
+	 * @param array $request_info {
84
+	 *    Array of request info arguments.
85
+	 *
86
+	 *    @type string $action                                  Ajax action name.
87
+	 *    @type string $geodir_ajax                             Ajax type.
88
+	 *    @type string $ajax_action                             Ajax action.
89
+	 *    @type string $listing_type                            Listing type.
90
+	 *    @type string $pid                                     Default Post ID.
91
+	 *    @type string $preview                                 Todo Desc needed.
92
+	 *    @type string $add_listing_page_id                     Add listing page ID.
93
+	 *    @type string $post_title                              Listing title.
94
+	 *    @type string $post_desc                               Listing Description.
95
+	 *    @type string $post_tags                               Listing tags.
96
+	 *    @type array  $cat_limit                               Category limit.
97
+	 *    @type array  $post_category                           Category IDs.
98
+	 *    @type array  $post_category_str                       Category string.
99
+	 *    @type string $post_default_category                   Default category ID.
100
+	 *    @type string $post_address                            Listing address.
101
+	 *    @type string $geodir_location_add_listing_country_val Add listing country value.
102
+	 *    @type string $post_country                            Listing country.
103
+	 *    @type string $geodir_location_add_listing_region_val  Add listing region value.
104
+	 *    @type string $post_region                             Listing region.
105
+	 *    @type string $geodir_location_add_listing_city_val    Add listing city value.
106
+	 *    @type string $post_city                               Listing city.
107
+	 *    @type string $post_zip                                Listing zip.
108
+	 *    @type string $post_latitude                           Listing latitude.
109
+	 *    @type string $post_longitude                          Listing longitude.
110
+	 *    @type string $post_mapview                            Listing mapview. Default "ROADMAP".
111
+	 *    @type string $post_mapzoom                            Listing mapzoom Default "9".
112
+	 *    @type string $geodir_timing                           Business timing info.
113
+	 *    @type string $geodir_contact                          Contact number.
114
+	 *    @type string $geodir_email                            Business contact email.
115
+	 *    @type string $geodir_website                          Business website.
116
+	 *    @type string $geodir_twitter                          Twitter link.
117
+	 *    @type string $geodir_facebook                         Facebook link.
118
+	 *    @type string $geodir_video                            Video link.
119
+	 *    @type string $geodir_special_offers                   Speacial offers.
120
+	 *    @type string $post_images                             Post image urls.
121
+	 *    @type string $post_imagesimage_limit                  Post images limit.
122
+	 *    @type string $post_imagestotImg                       Todo Desc needed.
123
+	 *    @type string $geodir_accept_term_condition            Has accepted terms and conditions?.
124
+	 *    @type string $geodir_spamblocker                      Todo Desc needed.
125
+	 *    @type string $geodir_filled_by_spam_bot               Todo Desc needed.
126
+	 *
127
+	 * }
128
+	 * @param bool $dummy Optional. Is this a dummy listing? Default false.
129
+	 * @param bool $wp_error Optional. Allow return of WP_Error on failure. Default false.
130
+	 * @return int|string|WP_Error Created post id or WP_Error on failure.
131
+	 */
132
+	function geodir_save_listing($request_info = array(), $dummy = false, $wp_error = false)
133
+	{
134
+		global $wpdb, $current_user, $gd_session;
135
+
136
+		$last_post_id = '';
137
+
138
+		if ($gd_session->get('listing') && !$dummy) {
139
+			$request_info = array();
140
+			$request_session = $gd_session->get('listing');
141
+			$request_info = array_merge($_REQUEST, $request_session);
142
+		} else if (!$gd_session->get('listing') && !$dummy) {
143
+			global $post;
144 144
             
145
-            $gd_post = $post;
146
-            if (!empty($gd_post) && is_array($gd_post)) {
147
-                $gd_post = (object)$post;
145
+			$gd_post = $post;
146
+			if (!empty($gd_post) && is_array($gd_post)) {
147
+				$gd_post = (object)$post;
148 148
                 
149
-                // Fix WPML duplicate.
150
-                if (geodir_is_wpml() && !empty($request_info['action']) && $request_info['action'] == 'editpost' && !empty($request_info['icl_trid']) && !isset($post['post_date'])) {
151
-                    return false;
152
-                }
153
-            }
149
+				// Fix WPML duplicate.
150
+				if (geodir_is_wpml() && !empty($request_info['action']) && $request_info['action'] == 'editpost' && !empty($request_info['icl_trid']) && !isset($post['post_date'])) {
151
+					return false;
152
+				}
153
+			}
154 154
             
155
-            $request_info['pid'] = !empty($gd_post->ID) ? $gd_post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL);
156
-            $request_info['post_title'] = $request_info['post_title'];
157
-            $request_info['listing_type'] = !empty($gd_post->post_type) ? $gd_post->post_type : (!empty($request_info['post_type']) ? $request_info['post_type'] : get_post_type($request_info['pid']));
158
-            $request_info['post_desc'] = $request_info['content'];
159
-        } else if (!$dummy) {
160
-            return false;
161
-        }
162
-
163
-        /**
164
-         * Filter the request_info array.
165
-         *
166
-         * You can use this filter to modify request_info array.
167
-         *
168
-         * @since 1.0.0
169
-         * @package GeoDirectory
170
-         * @param array $request_info See {@see geodir_save_listing()} for accepted args.
171
-         */
172
-        $request_info = apply_filters('geodir_action_get_request_info', $request_info);
173
-
174
-        // Check if we need to save post location as new location
175
-        $location_result = geodir_get_default_location();
176
-
177
-        if ($location_result->location_id > 0) {
178
-            if (isset($request_info['post_city']) && isset($request_info['post_region'])) {
179
-                $request_info['post_location'] = array(
180
-                    'city' => $request_info['post_city'],
181
-                    'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '',
182
-                    'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '',
183
-                    'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '',
184
-                    'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : ''
185
-                );
186
-
187
-                $post_location_info = $request_info['post_location'];
188
-
189
-                if ($location_id = geodir_add_new_location($post_location_info)) {
190
-                    $post_location_id = $location_id;
191
-                }
192
-            } else {
193
-                $post_location_id = $location_result->location_id;
194
-            }
195
-        } else {
196
-            $post_location_id = $location_result->location_id;
197
-        }
198
-
199
-        if ($dummy) {
200
-            $post_status = 'publish';
201
-        } else {
202
-            $post_status = geodir_new_post_default_status();
203
-        }
204
-
205
-        if (isset($request_info['pid']) && $request_info['pid'] != '') {
206
-            $post_status = get_post_status($request_info['pid']);
207
-        }
208
-
209
-        /* fix change of slug on every title edit */
210
-        if (!isset($request_info['post_name'])) {
211
-            $request_info['post_name'] = $request_info['post_title'];
212
-
213
-            if (!empty($request_info['pid'])) {
214
-                $post_info = get_post($request_info['pid']);
215
-
216
-                if (!empty($post_info) && isset($post_info->post_name)) {
217
-                    $request_info['post_name'] = $post_info->post_name;
218
-                }
219
-            }
220
-        }
221
-
222
-        $post = array(
223
-            'post_content' => $request_info['post_desc'],
224
-            'post_status' => $post_status,
225
-            'post_title' => $request_info['post_title'],
226
-            'post_name' => $request_info['post_name'],
227
-            'post_type' => $request_info['listing_type']
228
-        );
229
-
230
-        /**
231
-         * Called before a listing is saved to the database.
232
-         *
233
-         * @since 1.0.0
234
-         * @param object $post The post object.
235
-         */
236
-        do_action_ref_array('geodir_before_save_listing', $post);
155
+			$request_info['pid'] = !empty($gd_post->ID) ? $gd_post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL);
156
+			$request_info['post_title'] = $request_info['post_title'];
157
+			$request_info['listing_type'] = !empty($gd_post->post_type) ? $gd_post->post_type : (!empty($request_info['post_type']) ? $request_info['post_type'] : get_post_type($request_info['pid']));
158
+			$request_info['post_desc'] = $request_info['content'];
159
+		} else if (!$dummy) {
160
+			return false;
161
+		}
162
+
163
+		/**
164
+		 * Filter the request_info array.
165
+		 *
166
+		 * You can use this filter to modify request_info array.
167
+		 *
168
+		 * @since 1.0.0
169
+		 * @package GeoDirectory
170
+		 * @param array $request_info See {@see geodir_save_listing()} for accepted args.
171
+		 */
172
+		$request_info = apply_filters('geodir_action_get_request_info', $request_info);
173
+
174
+		// Check if we need to save post location as new location
175
+		$location_result = geodir_get_default_location();
176
+
177
+		if ($location_result->location_id > 0) {
178
+			if (isset($request_info['post_city']) && isset($request_info['post_region'])) {
179
+				$request_info['post_location'] = array(
180
+					'city' => $request_info['post_city'],
181
+					'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '',
182
+					'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '',
183
+					'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '',
184
+					'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : ''
185
+				);
186
+
187
+				$post_location_info = $request_info['post_location'];
188
+
189
+				if ($location_id = geodir_add_new_location($post_location_info)) {
190
+					$post_location_id = $location_id;
191
+				}
192
+			} else {
193
+				$post_location_id = $location_result->location_id;
194
+			}
195
+		} else {
196
+			$post_location_id = $location_result->location_id;
197
+		}
237 198
 
238
-        $send_post_submit_mail = false;
199
+		if ($dummy) {
200
+			$post_status = 'publish';
201
+		} else {
202
+			$post_status = geodir_new_post_default_status();
203
+		}
239 204
 
240
-        // unhook this function so it doesn't loop infinitely
241
-        remove_action('save_post', 'geodir_post_information_save',10,2);
205
+		if (isset($request_info['pid']) && $request_info['pid'] != '') {
206
+			$post_status = get_post_status($request_info['pid']);
207
+		}
242 208
 
243
-        if (isset($request_info['pid']) && $request_info['pid'] != '') {
244
-            $post['ID'] = $request_info['pid'];
209
+		/* fix change of slug on every title edit */
210
+		if (!isset($request_info['post_name'])) {
211
+			$request_info['post_name'] = $request_info['post_title'];
245 212
 
246
-            $last_post_id = wp_update_post($post, $wp_error);
247
-        } else {
248
-            $last_post_id = wp_insert_post($post, $wp_error);
213
+			if (!empty($request_info['pid'])) {
214
+				$post_info = get_post($request_info['pid']);
249 215
 
250
-            if (!$dummy && $last_post_id) {
251
-                $send_post_submit_mail = true; // we move post_submit email from here so the rest of the variables are added to the db first(was breaking permalink in email)
252
-                //geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID);
253
-            }
254
-        }
216
+				if (!empty($post_info) && isset($post_info->post_name)) {
217
+					$request_info['post_name'] = $post_info->post_name;
218
+				}
219
+			}
220
+		}
221
+
222
+		$post = array(
223
+			'post_content' => $request_info['post_desc'],
224
+			'post_status' => $post_status,
225
+			'post_title' => $request_info['post_title'],
226
+			'post_name' => $request_info['post_name'],
227
+			'post_type' => $request_info['listing_type']
228
+		);
229
+
230
+		/**
231
+		 * Called before a listing is saved to the database.
232
+		 *
233
+		 * @since 1.0.0
234
+		 * @param object $post The post object.
235
+		 */
236
+		do_action_ref_array('geodir_before_save_listing', $post);
237
+
238
+		$send_post_submit_mail = false;
239
+
240
+		// unhook this function so it doesn't loop infinitely
241
+		remove_action('save_post', 'geodir_post_information_save',10,2);
242
+
243
+		if (isset($request_info['pid']) && $request_info['pid'] != '') {
244
+			$post['ID'] = $request_info['pid'];
245
+
246
+			$last_post_id = wp_update_post($post, $wp_error);
247
+		} else {
248
+			$last_post_id = wp_insert_post($post, $wp_error);
249
+
250
+			if (!$dummy && $last_post_id) {
251
+				$send_post_submit_mail = true; // we move post_submit email from here so the rest of the variables are added to the db first(was breaking permalink in email)
252
+				//geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID);
253
+			}
254
+		}
255 255
 
256
-        if ($wp_error && is_wp_error($last_post_id)) {
257
-            return $last_post_id; // Return WP_Error on save failure.
258
-        }
256
+		if ($wp_error && is_wp_error($last_post_id)) {
257
+			return $last_post_id; // Return WP_Error on save failure.
258
+		}
259 259
 
260
-        if (!$last_post_id) {
261
-            return false; // Save failure.
262
-        }
260
+		if (!$last_post_id) {
261
+			return false; // Save failure.
262
+		}
263 263
 
264
-        // re-hook this function
265
-        add_action('save_post', 'geodir_post_information_save',10,2);
264
+		// re-hook this function
265
+		add_action('save_post', 'geodir_post_information_save',10,2);
266 266
 
267
-        $post_tags = '';
268
-        if (!isset($request_info['post_tags'])) {
267
+		$post_tags = '';
268
+		if (!isset($request_info['post_tags'])) {
269 269
 
270
-            $post_type = $request_info['listing_type'];
271
-            $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
270
+			$post_type = $request_info['listing_type'];
271
+			$post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
272 272
 
273
-        }
273
+		}
274 274
 
275
-        $gd_post_info = array(
276
-            "post_title" => $request_info['post_title'],
277
-            "post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags,
278
-            "post_status" => $post_status,
279
-            "post_location_id" => $post_location_id,
280
-            "claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '',
281
-            "businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '',
282
-            "submit_time" => time(),
283
-            "submit_ip" => $_SERVER['REMOTE_ADDR'],
284
-        );
275
+		$gd_post_info = array(
276
+			"post_title" => $request_info['post_title'],
277
+			"post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags,
278
+			"post_status" => $post_status,
279
+			"post_location_id" => $post_location_id,
280
+			"claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '',
281
+			"businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '',
282
+			"submit_time" => time(),
283
+			"submit_ip" => $_SERVER['REMOTE_ADDR'],
284
+		);
285 285
 
286
-        $payment_info = array();
287
-        $package_info = array();
286
+		$payment_info = array();
287
+		$package_info = array();
288 288
 
289
-        $package_info = (array)geodir_post_package_info($package_info, $post);
289
+		$package_info = (array)geodir_post_package_info($package_info, $post);
290 290
 
291
-        $post_package_id = geodir_get_post_meta($last_post_id, 'package_id');
291
+		$post_package_id = geodir_get_post_meta($last_post_id, 'package_id');
292 292
 
293
-        if (!empty($package_info) && !$post_package_id) {
294
-            if (isset($package_info['days']) && $package_info['days'] != 0) {
295
-                $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
296
-            } else {
297
-                $payment_info['expire_date'] = 'Never';
298
-            }
293
+		if (!empty($package_info) && !$post_package_id) {
294
+			if (isset($package_info['days']) && $package_info['days'] != 0) {
295
+				$payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
296
+			} else {
297
+				$payment_info['expire_date'] = 'Never';
298
+			}
299 299
 
300
-            $payment_info['package_id'] = $package_info['pid'];
301
-            $payment_info['alive_days'] = $package_info['days'];
302
-            $payment_info['is_featured'] = $package_info['is_featured'];
300
+			$payment_info['package_id'] = $package_info['pid'];
301
+			$payment_info['alive_days'] = $package_info['days'];
302
+			$payment_info['is_featured'] = $package_info['is_featured'];
303 303
 
304
-            $gd_post_info = array_merge($gd_post_info, $payment_info);
305
-        }
304
+			$gd_post_info = array_merge($gd_post_info, $payment_info);
305
+		}
306 306
 
307
-        $custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']);
307
+		$custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']);
308 308
 
309
-        foreach ($custom_metaboxes as $key => $val):
309
+		foreach ($custom_metaboxes as $key => $val):
310 310
 
311
-            $name = $val['name'];
312
-            $type = $val['type'];
313
-            $extrafields = $val['extra_fields'];
311
+			$name = $val['name'];
312
+			$type = $val['type'];
313
+			$extrafields = $val['extra_fields'];
314 314
 
315
-            if (trim($type) == 'address') {
316
-                $prefix = $name . '_';
317
-                $address = $prefix . 'address';
315
+			if (trim($type) == 'address') {
316
+				$prefix = $name . '_';
317
+				$address = $prefix . 'address';
318 318
 
319
-                if (isset($request_info[$address]) && $request_info[$address] != '') {
320
-                    $gd_post_info[$address] = wp_slash($request_info[$address]);
321
-                }
319
+				if (isset($request_info[$address]) && $request_info[$address] != '') {
320
+					$gd_post_info[$address] = wp_slash($request_info[$address]);
321
+				}
322 322
 
323
-                if ($extrafields != '') {
324
-                    $extrafields = unserialize($extrafields);
323
+				if ($extrafields != '') {
324
+					$extrafields = unserialize($extrafields);
325 325
 
326 326
 
327
-                    if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
327
+					if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
328 328
 
329
-                        $location_result = geodir_get_default_location();
329
+						$location_result = geodir_get_default_location();
330 330
 
331
-                        $gd_post_info[$prefix . 'city'] = $location_result->city;
332
-                        $gd_post_info[$prefix . 'region'] = $location_result->region;
333
-                        $gd_post_info[$prefix . 'country'] = $location_result->country;
331
+						$gd_post_info[$prefix . 'city'] = $location_result->city;
332
+						$gd_post_info[$prefix . 'region'] = $location_result->region;
333
+						$gd_post_info[$prefix . 'country'] = $location_result->country;
334 334
 
335
-                        $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
335
+						$gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
336 336
 
337
-                    } else {
337
+					} else {
338 338
 
339
-                        $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city'];
340
-                        $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region'];
341
-                        $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country'];
339
+						$gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city'];
340
+						$gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region'];
341
+						$gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country'];
342 342
 
343
-                        //----------set post locations when import dummy data-------
344
-                        $location_result = geodir_get_default_location();
343
+						//----------set post locations when import dummy data-------
344
+						$location_result = geodir_get_default_location();
345 345
 
346
-                        $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
347
-                        //-----------------------------------------------------------------
346
+						$gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
347
+						//-----------------------------------------------------------------
348 348
 
349
-                    }
349
+					}
350 350
 
351 351
 
352
-                    if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
353
-                        $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip'];
354
-                    }
352
+					if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
353
+						$gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip'];
354
+					}
355 355
 
356 356
 
357
-                    if (isset($extrafields['show_map']) && $extrafields['show_map']) {
357
+					if (isset($extrafields['show_map']) && $extrafields['show_map']) {
358 358
 
359
-                        if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
360
-                            $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude'];
361
-                        }
359
+						if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
360
+							$gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude'];
361
+						}
362 362
 
363
-                        if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
364
-                            $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude'];
365
-                        }
363
+						if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
364
+							$gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude'];
365
+						}
366 366
 
367
-                        if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
368
-                            $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview'];
369
-                        }
367
+						if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
368
+							$gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview'];
369
+						}
370 370
 
371
-                        if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
372
-                            $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom'];
373
-                        }
371
+						if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
372
+							$gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom'];
373
+						}
374 374
 
375
-                    }
375
+					}
376 376
 
377
-                    // show lat lng
378
-                    if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
379
-                        $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng'];
380
-                    }
381
-                }
377
+					// show lat lng
378
+					if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
379
+						$gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng'];
380
+					}
381
+				}
382 382
 
383
-            } elseif (trim($type) == 'file') {
384
-                if (isset($request_info[$name])) {
385
-                    $request_files = array();
386
-                    if ($request_info[$name] != '')
387
-                        $request_files = explode(",", $request_info[$name]);
383
+			} elseif (trim($type) == 'file') {
384
+				if (isset($request_info[$name])) {
385
+					$request_files = array();
386
+					if ($request_info[$name] != '')
387
+						$request_files = explode(",", $request_info[$name]);
388 388
 
389
-                    $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL;
390
-                    geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields);
389
+					$extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL;
390
+					geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields);
391 391
 
392
-                }
393
-            } elseif (trim($type) == 'datepicker') {
394
-                $datetime = '';
395
-                if (isset($request_info[$name]) && $request_info[$name] != '') {
396
-                    $date_format = geodir_default_date_format();
397
-                    if (isset($val['extra_fields']) && $val['extra_fields'] != '') {
398
-                        $extra_fields = unserialize($val['extra_fields']);
399
-                        $date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format;
400
-                    }
392
+				}
393
+			} elseif (trim($type) == 'datepicker') {
394
+				$datetime = '';
395
+				if (isset($request_info[$name]) && $request_info[$name] != '') {
396
+					$date_format = geodir_default_date_format();
397
+					if (isset($val['extra_fields']) && $val['extra_fields'] != '') {
398
+						$extra_fields = unserialize($val['extra_fields']);
399
+						$date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format;
400
+					}
401 401
 
402
-                    // check if we need to change the format or not
403
-                    $date_format_len = strlen(str_replace(' ', '', $date_format));
404
-                    if($date_format_len>5){// if greater then 5 then it's the old style format.
402
+					// check if we need to change the format or not
403
+					$date_format_len = strlen(str_replace(' ', '', $date_format));
404
+					if($date_format_len>5){// if greater then 5 then it's the old style format.
405 405
 
406
-                        $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
407
-                        $replace = array('d','j','l','m','n','F','Y');//PHP date format
406
+						$search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
407
+						$replace = array('d','j','l','m','n','F','Y');//PHP date format
408 408
 
409
-                        $date_format = str_replace($search, $replace, $date_format);
409
+						$date_format = str_replace($search, $replace, $date_format);
410 410
 
411
-                        $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
411
+						$post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
412 412
 
413
-                    }else{
414
-                        $post_htmlvar_value = $request_info[$name];
415
-                    }
413
+					}else{
414
+						$post_htmlvar_value = $request_info[$name];
415
+					}
416 416
 
417
-                    $post_htmlvar_value = geodir_date($post_htmlvar_value, 'Y-m-d', $date_format); // save as sql format Y-m-d
418
-                    $datetime = geodir_maybe_untranslate_date($post_htmlvar_value); // maybe untranslate date string if it was translated
417
+					$post_htmlvar_value = geodir_date($post_htmlvar_value, 'Y-m-d', $date_format); // save as sql format Y-m-d
418
+					$datetime = geodir_maybe_untranslate_date($post_htmlvar_value); // maybe untranslate date string if it was translated
419 419
 
420
-                    //$datetime = date_i18n("Y-m-d", strtotime($post_htmlvar_value)); // save as sql format Y-m-d
420
+					//$datetime = date_i18n("Y-m-d", strtotime($post_htmlvar_value)); // save as sql format Y-m-d
421 421
 
422
-                }
423
-                $gd_post_info[$name] = $datetime;
424
-            } else if ($type == 'multiselect') {
425
-                if (isset($request_info[$name])) {
426
-                    $gd_post_info[$name] = $request_info[$name];
427
-                } else {
428
-                    if (isset($request_info['gd_field_' . $name])) {
429
-                        $gd_post_info[$name] = ''; /* fix de-select for multiselect */
430
-                    }
431
-                }
432
-            } else if (isset($request_info[$name])) {
433
-                $gd_post_info[$name] = $request_info[$name];
434
-            }
422
+				}
423
+				$gd_post_info[$name] = $datetime;
424
+			} else if ($type == 'multiselect') {
425
+				if (isset($request_info[$name])) {
426
+					$gd_post_info[$name] = $request_info[$name];
427
+				} else {
428
+					if (isset($request_info['gd_field_' . $name])) {
429
+						$gd_post_info[$name] = ''; /* fix de-select for multiselect */
430
+					}
431
+				}
432
+			} else if (isset($request_info[$name])) {
433
+				$gd_post_info[$name] = $request_info[$name];
434
+			}
435 435
 
436
-        endforeach;
436
+		endforeach;
437 437
 
438
-        if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') {
439
-            $gd_post_info['post_dummy'] = $request_info['post_dummy'];
440
-        }
438
+		if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') {
439
+			$gd_post_info['post_dummy'] = $request_info['post_dummy'];
440
+		}
441 441
 
442
-        // Save post detail info in detail table
443
-        if (!empty($gd_post_info)) {
444
-            geodir_save_post_info($last_post_id, $gd_post_info);
445
-        }
442
+		// Save post detail info in detail table
443
+		if (!empty($gd_post_info)) {
444
+			geodir_save_post_info($last_post_id, $gd_post_info);
445
+		}
446 446
 
447 447
 
448
-        // Set categories to the listing
449
-        if (isset($request_info['post_category']) && !empty($request_info['post_category'])) {
450
-            $post_category = array();
448
+		// Set categories to the listing
449
+		if (isset($request_info['post_category']) && !empty($request_info['post_category'])) {
450
+			$post_category = array();
451 451
 
452
-            foreach ($request_info['post_category'] as $taxonomy => $cat) {
452
+			foreach ($request_info['post_category'] as $taxonomy => $cat) {
453 453
 
454
-                if ($dummy)
455
-                    $post_category = $cat;
456
-                else {
454
+				if ($dummy)
455
+					$post_category = $cat;
456
+				else {
457 457
 
458
-                    if (!is_array($cat) && strstr($cat, ','))
459
-                        $cat = explode(',', $cat);
458
+					if (!is_array($cat) && strstr($cat, ','))
459
+						$cat = explode(',', $cat);
460 460
 
461
-                    if (!empty($cat) && is_array($cat))
462
-                        $post_category = array_map('intval', $cat);
463
-                }
461
+					if (!empty($cat) && is_array($cat))
462
+						$post_category = array_map('intval', $cat);
463
+				}
464 464
 
465
-                wp_set_object_terms($last_post_id, $post_category, $taxonomy);
466
-            }
465
+				wp_set_object_terms($last_post_id, $post_category, $taxonomy);
466
+			}
467 467
 
468
-            $post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : '';
468
+			$post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : '';
469 469
 
470
-            $post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : '';
471
-            geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str);
470
+			$post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : '';
471
+			geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str);
472 472
 
473
-        }
473
+		}
474 474
 
475
-        $post_tags = '';
476
-        // Set tags to the listing
477
-        if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
478
-            $post_tags = explode(",", $request_info['post_tags']);
479
-        } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
480
-            if ($dummy)
481
-                $post_tags = $request_info['post_tags'];
482
-        } else {
483
-            if ($dummy)
484
-                $post_tags = array($request_info['post_title']);
485
-        }
475
+		$post_tags = '';
476
+		// Set tags to the listing
477
+		if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
478
+			$post_tags = explode(",", $request_info['post_tags']);
479
+		} elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
480
+			if ($dummy)
481
+				$post_tags = $request_info['post_tags'];
482
+		} else {
483
+			if ($dummy)
484
+				$post_tags = array($request_info['post_title']);
485
+		}
486 486
 
487
-        if (is_array($post_tags)) {
488
-            $taxonomy = $request_info['listing_type'] . '_tags';
489
-            wp_set_object_terms($last_post_id, $post_tags, $taxonomy);
490
-        }
487
+		if (is_array($post_tags)) {
488
+			$taxonomy = $request_info['listing_type'] . '_tags';
489
+			wp_set_object_terms($last_post_id, $post_tags, $taxonomy);
490
+		}
491 491
 
492 492
 
493
-        // Insert attechment
493
+		// Insert attechment
494 494
 
495
-        if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) {
496
-            if (!$dummy) {
497
-                $tmpimgArr = trim($request_info['post_images'], ",");
498
-                $tmpimgArr = explode(",", $tmpimgArr);
499
-                geodir_save_post_images($last_post_id, $tmpimgArr, $dummy);
500
-            } else{
501
-                geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy);
502
-            }
495
+		if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) {
496
+			if (!$dummy) {
497
+				$tmpimgArr = trim($request_info['post_images'], ",");
498
+				$tmpimgArr = explode(",", $tmpimgArr);
499
+				geodir_save_post_images($last_post_id, $tmpimgArr, $dummy);
500
+			} else{
501
+				geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy);
502
+			}
503 503
 
504 504
 
505
-        } elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') {
505
+		} elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') {
506 506
 
507
-            /* Delete Attachments
507
+			/* Delete Attachments
508 508
 			$postcurr_images = geodir_get_images($last_post_id);
509 509
 
510 510
 			$wpdb->query(
@@ -520,34 +520,34 @@  discard block
 block discarded – undo
520 520
 			geodir_save_post_info($last_post_id, $gd_post_featured_img);
521 521
 			*/
522 522
 
523
-        }
523
+		}
524 524
 
525
-        geodir_remove_temp_images();
526
-        geodir_set_wp_featured_image($last_post_id);
525
+		geodir_remove_temp_images();
526
+		geodir_set_wp_featured_image($last_post_id);
527 527
 
528
-        /**
529
-         * Called after a listing is saved to the database and before any email have been sent.
530
-         *
531
-         * @since 1.0.0
532
-         * @param int $last_post_id The saved post ID.
533
-         * @param array $request_info The post details in an array.
534
-         * @see 'geodir_after_save_listinginfo'
535
-         */
536
-        do_action('geodir_after_save_listing', $last_post_id, $request_info);
528
+		/**
529
+		 * Called after a listing is saved to the database and before any email have been sent.
530
+		 *
531
+		 * @since 1.0.0
532
+		 * @param int $last_post_id The saved post ID.
533
+		 * @param array $request_info The post details in an array.
534
+		 * @see 'geodir_after_save_listinginfo'
535
+		 */
536
+		do_action('geodir_after_save_listing', $last_post_id, $request_info);
537 537
 
538
-        //die;
538
+		//die;
539 539
 
540
-        if ($send_post_submit_mail) { // if new post send out email
541
-            $to_name = geodir_get_client_name($current_user->ID);
542
-            geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID);
543
-        }
544
-        /*
540
+		if ($send_post_submit_mail) { // if new post send out email
541
+			$to_name = geodir_get_client_name($current_user->ID);
542
+			geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID);
543
+		}
544
+		/*
545 545
          * Unset the session so we don't loop.
546 546
          */
547
-        $gd_session->un_set('listing');
548
-        return $last_post_id;
547
+		$gd_session->un_set('listing');
548
+		return $last_post_id;
549 549
 
550
-    }
550
+	}
551 551
 
552 552
 }
553 553
 
@@ -566,600 +566,600 @@  discard block
 block discarded – undo
566 566
 function geodir_get_post_info($post_id = '')
567 567
 {
568 568
 
569
-    global $wpdb, $plugin_prefix, $post, $post_info;
569
+	global $wpdb, $plugin_prefix, $post, $post_info;
570 570
 
571
-    if ($post_id == '' && !empty($post))
572
-        $post_id = $post->ID;
571
+	if ($post_id == '' && !empty($post))
572
+		$post_id = $post->ID;
573 573
 
574
-    $post_type = get_post_type($post_id);
574
+	$post_type = get_post_type($post_id);
575 575
 
576
-    $all_postypes = geodir_get_posttypes();
576
+	$all_postypes = geodir_get_posttypes();
577 577
 
578
-    if (!in_array($post_type, $all_postypes))
579
-        return false;
578
+	if (!in_array($post_type, $all_postypes))
579
+		return false;
580 580
 
581
-    $table = $plugin_prefix . $post_type . '_detail';
581
+	$table = $plugin_prefix . $post_type . '_detail';
582 582
 
583
-    /**
584
-     * Apply Filter to change Post info
585
-     *
586
-     * You can use this filter to change Post info.
587
-     *
588
-     * @since 1.0.0
589
-     * @package GeoDirectory
590
-     */
591
-    $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
583
+	/**
584
+	 * Apply Filter to change Post info
585
+	 *
586
+	 * You can use this filter to change Post info.
587
+	 *
588
+	 * @since 1.0.0
589
+	 * @package GeoDirectory
590
+	 */
591
+	$query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
592 592
 			  WHERE p.ID = pd.post_id
593 593
 			  AND post_id = " . $post_id);
594 594
 
595
-    $post_detail = $wpdb->get_row($query);
595
+	$post_detail = $wpdb->get_row($query);
596 596
 
597
-    return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false;
597
+	return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false;
598 598
 
599 599
 }
600 600
 
601 601
 
602 602
 if (!function_exists('geodir_save_post_info')) {
603
-    /**
604
-     * Saves post detail info in detail table.
605
-     *
606
-     * @since 1.0.0
607
-     * @package GeoDirectory
608
-     * @global object $wpdb WordPress Database object.
609
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
610
-     * @param int $post_id The post ID.
611
-     * @param array $postinfo_array {
612
-     *    Post info that needs to be saved in detail table.
613
-     *
614
-     *    @type string $post_title              Listing title.
615
-     *    @type string $post_tags               Listing tags.
616
-     *    @type string $post_status             Listing post status.
617
-     *    @type string $post_location_id        Listing location ID.
618
-     *    @type string $claimed                 Todo Desc needed.
619
-     *    @type string $businesses              Todo Desc needed.
620
-     *    @type int    $submit_time             Submitted time in unix timestamp.
621
-     *    @type string $submit_ip               Submitted IP.
622
-     *    @type string $expire_date             Listing expiration date.
623
-     *    @type int    $package_id              Listing package ID.
624
-     *    @type int    $alive_days              Todo Desc needed.
625
-     *    @type int    $is_featured             Is this a featured listing?.
626
-     *    @type string $post_address            Listing address.
627
-     *    @type string $post_city               Listing city.
628
-     *    @type string $post_region             Listing region.
629
-     *    @type string $post_country            Listing country.
630
-     *    @type string $post_locations          Listing locations.
631
-     *    @type string $post_zip                Listing zip.
632
-     *    @type string $post_latitude           Listing latitude.
633
-     *    @type string $post_longitude          Listing longitude.
634
-     *    @type string $post_mapview            Listing mapview. Default "ROADMAP".
635
-     *    @type string $post_mapzoom            Listing mapzoom Default "9".
636
-     *    @type string $geodir_timing           Business timing info.
637
-     *    @type string $geodir_contact          Contact number.
638
-     *    @type string $geodir_email            Business contact email.
639
-     *    @type string $geodir_website          Business website.
640
-     *    @type string $geodir_twitter          Twitter link.
641
-     *    @type string $geodir_facebook         Facebook link.
642
-     *    @type string $geodir_video            Video link.
643
-     *    @type string $geodir_special_offers   Speacial offers.
644
-     *
645
-     * }
646
-     * @return bool
647
-     */
648
-    function geodir_save_post_info($post_id, $postinfo_array = array())
649
-    {
650
-        global $wpdb, $plugin_prefix;
651
-
652
-        $post_type = get_post_type($post_id);
653
-
654
-        $table = $plugin_prefix . $post_type . '_detail';
655
-
656
-        /**
657
-         * Filter to change Post info
658
-         *
659
-         * You can use this filter to change Post info.
660
-         *
661
-         * @since 1.0.0
662
-         * @package GeoDirectory
663
-         * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
664
-         * @param int $post_id The post ID.
665
-         */
666
-        $postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id);
603
+	/**
604
+	 * Saves post detail info in detail table.
605
+	 *
606
+	 * @since 1.0.0
607
+	 * @package GeoDirectory
608
+	 * @global object $wpdb WordPress Database object.
609
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
610
+	 * @param int $post_id The post ID.
611
+	 * @param array $postinfo_array {
612
+	 *    Post info that needs to be saved in detail table.
613
+	 *
614
+	 *    @type string $post_title              Listing title.
615
+	 *    @type string $post_tags               Listing tags.
616
+	 *    @type string $post_status             Listing post status.
617
+	 *    @type string $post_location_id        Listing location ID.
618
+	 *    @type string $claimed                 Todo Desc needed.
619
+	 *    @type string $businesses              Todo Desc needed.
620
+	 *    @type int    $submit_time             Submitted time in unix timestamp.
621
+	 *    @type string $submit_ip               Submitted IP.
622
+	 *    @type string $expire_date             Listing expiration date.
623
+	 *    @type int    $package_id              Listing package ID.
624
+	 *    @type int    $alive_days              Todo Desc needed.
625
+	 *    @type int    $is_featured             Is this a featured listing?.
626
+	 *    @type string $post_address            Listing address.
627
+	 *    @type string $post_city               Listing city.
628
+	 *    @type string $post_region             Listing region.
629
+	 *    @type string $post_country            Listing country.
630
+	 *    @type string $post_locations          Listing locations.
631
+	 *    @type string $post_zip                Listing zip.
632
+	 *    @type string $post_latitude           Listing latitude.
633
+	 *    @type string $post_longitude          Listing longitude.
634
+	 *    @type string $post_mapview            Listing mapview. Default "ROADMAP".
635
+	 *    @type string $post_mapzoom            Listing mapzoom Default "9".
636
+	 *    @type string $geodir_timing           Business timing info.
637
+	 *    @type string $geodir_contact          Contact number.
638
+	 *    @type string $geodir_email            Business contact email.
639
+	 *    @type string $geodir_website          Business website.
640
+	 *    @type string $geodir_twitter          Twitter link.
641
+	 *    @type string $geodir_facebook         Facebook link.
642
+	 *    @type string $geodir_video            Video link.
643
+	 *    @type string $geodir_special_offers   Speacial offers.
644
+	 *
645
+	 * }
646
+	 * @return bool
647
+	 */
648
+	function geodir_save_post_info($post_id, $postinfo_array = array())
649
+	{
650
+		global $wpdb, $plugin_prefix;
651
+
652
+		$post_type = get_post_type($post_id);
653
+
654
+		$table = $plugin_prefix . $post_type . '_detail';
655
+
656
+		/**
657
+		 * Filter to change Post info
658
+		 *
659
+		 * You can use this filter to change Post info.
660
+		 *
661
+		 * @since 1.0.0
662
+		 * @package GeoDirectory
663
+		 * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
664
+		 * @param int $post_id The post ID.
665
+		 */
666
+		$postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id);
667
+
668
+		$query_string_escaped = '';
669
+		$query_string_array = array();
670
+
671
+		if (!empty($postmeta) && $post_id) {
672
+
673
+			$columns = $wpdb->get_col("show columns from $table");
674
+			foreach ($postmeta as $mkey => $mval) {
675
+				if(in_array($mkey,$columns)) {
676
+					if (is_array($mval)) {
677
+						$mval = implode(",", $mval);
678
+					}
679
+					$query_string_escaped .= " $mkey = %s, "; // we can set the key here as we check if the column exists above
680
+					$query_string_array[] = stripslashes($mval); // we strip slashes as we are using wpdb prepare
667 681
 
668
-        $query_string_escaped = '';
669
-        $query_string_array = array();
682
+				}
683
+			}
670 684
 
671
-        if (!empty($postmeta) && $post_id) {
685
+			$query_string_escaped = trim($query_string_escaped, ", ");
672 686
 
673
-            $columns = $wpdb->get_col("show columns from $table");
674
-            foreach ($postmeta as $mkey => $mval) {
675
-                if(in_array($mkey,$columns)) {
676
-                    if (is_array($mval)) {
677
-                        $mval = implode(",", $mval);
678
-                    }
679
-                    $query_string_escaped .= " $mkey = %s, "; // we can set the key here as we check if the column exists above
680
-                    $query_string_array[] = stripslashes($mval); // we strip slashes as we are using wpdb prepare
687
+			if (empty($query_string_array) || trim($query_string_escaped) == '') {
688
+				return false;
689
+			}
681 690
 
682
-                }
683
-            }
691
+			$query_string_array = str_replace(array("'%", "%'"), array("'%%", "%%'"), $query_string_array);
684 692
 
685
-            $query_string_escaped = trim($query_string_escaped, ", ");
686 693
 
687
-            if (empty($query_string_array) || trim($query_string_escaped) == '') {
688
-                return false;
689
-            }
694
+			/**
695
+			 * Called before saving the listing info.
696
+			 *
697
+			 * @since 1.0.0
698
+			 * @package GeoDirectory
699
+			 * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
700
+			 * @param int $post_id The post ID.
701
+			 */
702
+			do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
690 703
 
691
-            $query_string_array = str_replace(array("'%", "%'"), array("'%%", "%%'"), $query_string_array);
704
+			if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
692 705
 
706
+				$query_string_array[] = $post_id;
707
+				$wpdb->query(
708
+					$wpdb->prepare(
709
+						"UPDATE " . $table . " SET " . $query_string_escaped . " where post_id =%d",
710
+						$query_string_array
711
+					)
712
+				);
693 713
 
694
-            /**
695
-             * Called before saving the listing info.
696
-             *
697
-             * @since 1.0.0
698
-             * @package GeoDirectory
699
-             * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
700
-             * @param int $post_id The post ID.
701
-             */
702
-            do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
703 714
 
704
-            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
715
+			} else {
705 716
 
706
-                $query_string_array[] = $post_id;
707
-                $wpdb->query(
708
-                    $wpdb->prepare(
709
-                        "UPDATE " . $table . " SET " . $query_string_escaped . " where post_id =%d",
710
-                        $query_string_array
711
-                    )
712
-                );
717
+				array_unshift($query_string_array, $post_id);
718
+				$wpdb->query(
719
+					$wpdb->prepare(
720
+						"INSERT INTO " . $table . " SET post_id = %d," . $query_string_escaped,
721
+						$query_string_array
722
+					)
723
+				);
724
+                
725
+			}
713 726
 
727
+			/**
728
+			 * Called after saving the listing info.
729
+			 *
730
+			 * @since 1.0.0
731
+			 * @package GeoDirectory
732
+			 * @param array $postinfo_array Post info that needs to be saved in detail table.
733
+			 * @param int $post_id The post ID.
734
+			 * @see 'geodir_after_save_listing'
735
+			 */
736
+			do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
737
+
738
+			return true;
739
+		} else
740
+			return false;
714 741
 
715
-            } else {
742
+	}
743
+}
716 744
 
717
-                array_unshift($query_string_array, $post_id);
718
-                $wpdb->query(
719
-                    $wpdb->prepare(
720
-                        "INSERT INTO " . $table . " SET post_id = %d," . $query_string_escaped,
721
-                        $query_string_array
722
-                    )
723
-                );
724
-                
725
-            }
726 745
 
727
-            /**
728
-             * Called after saving the listing info.
729
-             *
730
-             * @since 1.0.0
731
-             * @package GeoDirectory
732
-             * @param array $postinfo_array Post info that needs to be saved in detail table.
733
-             * @param int $post_id The post ID.
734
-             * @see 'geodir_after_save_listing'
735
-             */
736
-            do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
746
+if (!function_exists('geodir_save_post_meta')) {
747
+	/**
748
+	 * Save or update post custom fields.
749
+	 *
750
+	 * @since 1.0.0
751
+	 * @package GeoDirectory
752
+	 * @global object $wpdb WordPress Database object.
753
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
754
+	 * @param int $post_id The post ID.
755
+	 * @param string $postmeta Detail table column name.
756
+	 * @param string $meta_value Detail table column value.
757
+	 * @return void|bool
758
+	 */
759
+	function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '')
760
+	{
761
+
762
+		global $wpdb, $plugin_prefix;
763
+
764
+		$post_type = get_post_type($post_id);
765
+
766
+		$table = $plugin_prefix . $post_type . '_detail';
767
+
768
+		if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
769
+
770
+			if (is_array($meta_value)) {
771
+				$meta_value = implode(",", $meta_value);
772
+			}
737 773
 
738
-            return true;
739
-        } else
740
-            return false;
774
+			if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
741 775
 
742
-    }
743
-}
776
+				$wpdb->query(
777
+					$wpdb->prepare(
778
+						"UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d",
779
+						array($post_id)
780
+					)
781
+				);
744 782
 
783
+			} else {
745 784
 
746
-if (!function_exists('geodir_save_post_meta')) {
747
-    /**
748
-     * Save or update post custom fields.
749
-     *
750
-     * @since 1.0.0
751
-     * @package GeoDirectory
752
-     * @global object $wpdb WordPress Database object.
753
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
754
-     * @param int $post_id The post ID.
755
-     * @param string $postmeta Detail table column name.
756
-     * @param string $meta_value Detail table column value.
757
-     * @return void|bool
758
-     */
759
-    function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '')
760
-    {
761
-
762
-        global $wpdb, $plugin_prefix;
763
-
764
-        $post_type = get_post_type($post_id);
765
-
766
-        $table = $plugin_prefix . $post_type . '_detail';
767
-
768
-        if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
769
-
770
-            if (is_array($meta_value)) {
771
-                $meta_value = implode(",", $meta_value);
772
-            }
773
-
774
-            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
775
-
776
-                $wpdb->query(
777
-                    $wpdb->prepare(
778
-                        "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d",
779
-                        array($post_id)
780
-                    )
781
-                );
782
-
783
-            } else {
784
-
785
-                $wpdb->query(
786
-                    $wpdb->prepare(
787
-                        "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'",
788
-                        array($post_id)
789
-                    )
790
-                );
791
-            }
792
-
793
-
794
-        } else
795
-            return false;
796
-    }
785
+				$wpdb->query(
786
+					$wpdb->prepare(
787
+						"INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'",
788
+						array($post_id)
789
+					)
790
+				);
791
+			}
792
+
793
+
794
+		} else
795
+			return false;
796
+	}
797 797
 }
798 798
 
799 799
 if (!function_exists('geodir_delete_post_meta')) {
800
-    /**
801
-     * Delete post custom fields.
802
-     *
803
-     * @since 1.0.0
804
-     * @package GeoDirectory
805
-     * @global object $wpdb WordPress Database object.
806
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
807
-     * @param int $post_id The post ID.
808
-     * @param string $postmeta Detail table column name.
809
-     * @todo check if this is depreciated
810
-     * @todo Fix unknown variable mval
811
-     * @return bool
812
-     */
813
-    function geodir_delete_post_meta($post_id, $postmeta)
814
-    {
815
-
816
-        global $wpdb, $plugin_prefix;
817
-
818
-        $post_type = get_post_type($post_id);
819
-
820
-        $table = $plugin_prefix . $post_type . '_detail';
821
-
822
-        if (is_array($postmeta) && !empty($postmeta) && $post_id) {
823
-            $post_meta_set_query = '';
824
-
825
-            foreach ($postmeta as $mkey) {
826
-                if ($mval != '')
827
-                    $post_meta_set_query .= $mkey . " = '', ";
828
-            }
829
-
830
-            $post_meta_set_query = trim($post_meta_set_query, ", ");
800
+	/**
801
+	 * Delete post custom fields.
802
+	 *
803
+	 * @since 1.0.0
804
+	 * @package GeoDirectory
805
+	 * @global object $wpdb WordPress Database object.
806
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
807
+	 * @param int $post_id The post ID.
808
+	 * @param string $postmeta Detail table column name.
809
+	 * @todo check if this is depreciated
810
+	 * @todo Fix unknown variable mval
811
+	 * @return bool
812
+	 */
813
+	function geodir_delete_post_meta($post_id, $postmeta)
814
+	{
815
+
816
+		global $wpdb, $plugin_prefix;
817
+
818
+		$post_type = get_post_type($post_id);
819
+
820
+		$table = $plugin_prefix . $post_type . '_detail';
821
+
822
+		if (is_array($postmeta) && !empty($postmeta) && $post_id) {
823
+			$post_meta_set_query = '';
824
+
825
+			foreach ($postmeta as $mkey) {
826
+				if ($mval != '')
827
+					$post_meta_set_query .= $mkey . " = '', ";
828
+			}
829
+
830
+			$post_meta_set_query = trim($post_meta_set_query, ", ");
831 831
             
832
-            if (empty($post_meta_set_query) || trim($post_meta_set_query) == '') {
833
-                return false;
834
-            }
835
-
836
-            if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
837
-
838
-                $wpdb->query(
839
-                    $wpdb->prepare(
840
-                        "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d",
841
-                        array($post_id)
842
-                    )
843
-                );
844
-
845
-                return true;
846
-            }
847
-
848
-        } elseif ($postmeta != '' && $post_id) {
849
-            if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
850
-
851
-                $wpdb->query(
852
-                    $wpdb->prepare(
853
-                        "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d",
854
-                        array($post_id)
855
-                    )
856
-                );
857
-
858
-                return true;
859
-            }
860
-
861
-        } else
862
-            return false;
863
-    }
832
+			if (empty($post_meta_set_query) || trim($post_meta_set_query) == '') {
833
+				return false;
834
+			}
835
+
836
+			if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
837
+
838
+				$wpdb->query(
839
+					$wpdb->prepare(
840
+						"UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d",
841
+						array($post_id)
842
+					)
843
+				);
844
+
845
+				return true;
846
+			}
847
+
848
+		} elseif ($postmeta != '' && $post_id) {
849
+			if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
850
+
851
+				$wpdb->query(
852
+					$wpdb->prepare(
853
+						"UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d",
854
+						array($post_id)
855
+					)
856
+				);
857
+
858
+				return true;
859
+			}
860
+
861
+		} else
862
+			return false;
863
+	}
864 864
 }
865 865
 
866 866
 
867 867
 if (!function_exists('geodir_get_post_meta')) {
868
-    /**
869
-     * Get post custom meta.
870
-     *
871
-     * @since 1.0.0
872
-     * @package GeoDirectory
873
-     * @global object $wpdb WordPress Database object.
874
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
875
-     * @param int $post_id The post ID.
876
-     * @param string $meta_key The meta key to retrieve.
877
-     * @param bool $single Optional. Whether to return a single value. Default false.
878
-     * @todo single variable not yet implemented.
879
-     * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true.
880
-     */
881
-    function geodir_get_post_meta($post_id, $meta_key, $single = false)
882
-    {
883
-        if (!$post_id) {
884
-            return false;
885
-        }
886
-        global $wpdb, $plugin_prefix;
887
-
888
-        $all_postypes = geodir_get_posttypes();
889
-
890
-        $post_type = get_post_type($post_id);
891
-
892
-        if (!in_array($post_type, $all_postypes))
893
-            return false;
894
-
895
-        $table = $plugin_prefix . $post_type . '_detail';
896
-
897
-        if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
898
-            $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
868
+	/**
869
+	 * Get post custom meta.
870
+	 *
871
+	 * @since 1.0.0
872
+	 * @package GeoDirectory
873
+	 * @global object $wpdb WordPress Database object.
874
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
875
+	 * @param int $post_id The post ID.
876
+	 * @param string $meta_key The meta key to retrieve.
877
+	 * @param bool $single Optional. Whether to return a single value. Default false.
878
+	 * @todo single variable not yet implemented.
879
+	 * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true.
880
+	 */
881
+	function geodir_get_post_meta($post_id, $meta_key, $single = false)
882
+	{
883
+		if (!$post_id) {
884
+			return false;
885
+		}
886
+		global $wpdb, $plugin_prefix;
887
+
888
+		$all_postypes = geodir_get_posttypes();
889
+
890
+		$post_type = get_post_type($post_id);
891
+
892
+		if (!in_array($post_type, $all_postypes))
893
+			return false;
894
+
895
+		$table = $plugin_prefix . $post_type . '_detail';
896
+
897
+		if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
898
+			$meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
899 899
             
900
-            if ($meta_value && $meta_value !== '') {
901
-                return maybe_serialize($meta_value);
902
-            } else
903
-                return $meta_value;
904
-        } else {
905
-            return false;
906
-        }
907
-    }
900
+			if ($meta_value && $meta_value !== '') {
901
+				return maybe_serialize($meta_value);
902
+			} else
903
+				return $meta_value;
904
+		} else {
905
+			return false;
906
+		}
907
+	}
908 908
 }
909 909
 
910 910
 
911 911
 if (!function_exists('geodir_save_post_images')) {
912
-    /**
913
-     * Save post attachments.
914
-     *
915
-     * @since 1.0.0
916
-     * @package GeoDirectory
917
-     * @global object $wpdb WordPress Database object.
918
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
919
-     * @global object $current_user Current user object.
920
-     * @param int $post_id The post ID.
921
-     * @param array $post_image Post image urls as an array.
922
-     * @param bool $dummy Optional. Is this a dummy listing? Default false.
923
-     */
924
-    function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false)
925
-    {
912
+	/**
913
+	 * Save post attachments.
914
+	 *
915
+	 * @since 1.0.0
916
+	 * @package GeoDirectory
917
+	 * @global object $wpdb WordPress Database object.
918
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
919
+	 * @global object $current_user Current user object.
920
+	 * @param int $post_id The post ID.
921
+	 * @param array $post_image Post image urls as an array.
922
+	 * @param bool $dummy Optional. Is this a dummy listing? Default false.
923
+	 */
924
+	function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false)
925
+	{
926 926
 
927 927
 
928
-        global $wpdb, $plugin_prefix, $current_user;
928
+		global $wpdb, $plugin_prefix, $current_user;
929 929
 
930
-        $post_type = get_post_type($post_id);
930
+		$post_type = get_post_type($post_id);
931 931
 
932
-        $table = $plugin_prefix . $post_type . '_detail';
932
+		$table = $plugin_prefix . $post_type . '_detail';
933 933
 
934
-        $post_images = geodir_get_images($post_id);
934
+		$post_images = geodir_get_images($post_id);
935 935
 
936
-        $wpdb->query(
937
-            $wpdb->prepare(
938
-                "UPDATE " . $table . " SET featured_image = '' where post_id =%d",
939
-                array($post_id)
940
-            )
941
-        );
936
+		$wpdb->query(
937
+			$wpdb->prepare(
938
+				"UPDATE " . $table . " SET featured_image = '' where post_id =%d",
939
+				array($post_id)
940
+			)
941
+		);
942 942
 
943
-        $invalid_files = $post_images;
944
-        $valid_file_ids = array();
945
-        $valid_files_condition = '';
946
-        $geodir_uploaddir = '';
943
+		$invalid_files = $post_images;
944
+		$valid_file_ids = array();
945
+		$valid_files_condition = '';
946
+		$geodir_uploaddir = '';
947 947
 
948
-        $remove_files = array();
948
+		$remove_files = array();
949 949
 
950
-        if (!empty($post_image)) {
950
+		if (!empty($post_image)) {
951 951
 
952
-            $uploads = wp_upload_dir();
953
-            $uploads_dir = $uploads['path'];
952
+			$uploads = wp_upload_dir();
953
+			$uploads_dir = $uploads['path'];
954 954
 
955
-            $geodir_uploadpath = $uploads['path'];
956
-            $geodir_uploadurl = $uploads['url'];
957
-            $sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : '';
955
+			$geodir_uploadpath = $uploads['path'];
956
+			$geodir_uploadurl = $uploads['url'];
957
+			$sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : '';
958 958
 
959
-            $invalid_files = array();
960
-            $postcurr_images = array();
959
+			$invalid_files = array();
960
+			$postcurr_images = array();
961 961
 
962
-            for ($m = 0; $m < count($post_image); $m++) {
963
-                $menu_order = $m + 1;
962
+			for ($m = 0; $m < count($post_image); $m++) {
963
+				$menu_order = $m + 1;
964 964
 
965
-                $file_path = '';
966
-                /* --------- start ------- */
965
+				$file_path = '';
966
+				/* --------- start ------- */
967 967
 
968
-                $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
968
+				$split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
969 969
 
970
-                $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
970
+				$split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
971 971
 
972 972
 
973
-                if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
973
+				if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
974 974
 
975
-                    /* --------- end ------- */
976
-                    $curr_img_url = $post_image[$m];
975
+					/* --------- end ------- */
976
+					$curr_img_url = $post_image[$m];
977 977
 
978
-                    $image_name_arr = explode('/', $curr_img_url);
978
+					$image_name_arr = explode('/', $curr_img_url);
979 979
 
980
-                    $count_image_name_arr = count($image_name_arr) - 2;
980
+					$count_image_name_arr = count($image_name_arr) - 2;
981 981
 
982
-                    $count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0;
982
+					$count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0;
983 983
 
984
-                    $curr_img_dir = $image_name_arr[$count_image_name_arr];
984
+					$curr_img_dir = $image_name_arr[$count_image_name_arr];
985 985
 
986
-                    $filename = end($image_name_arr);
987
-                    if (strpos($filename, '?') !== false) {
988
-                        list($filename) = explode('?', $filename);
989
-                    }
986
+					$filename = end($image_name_arr);
987
+					if (strpos($filename, '?') !== false) {
988
+						list($filename) = explode('?', $filename);
989
+					}
990 990
 
991
-                    $curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url);
992
-                    $curr_img_dir = str_replace($filename, "", $curr_img_dir);
991
+					$curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url);
992
+					$curr_img_dir = str_replace($filename, "", $curr_img_dir);
993 993
 
994
-                    $img_name_arr = explode('.', $filename);
994
+					$img_name_arr = explode('.', $filename);
995 995
 
996
-                    $file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename;
997
-                    if (!empty($img_name_arr) && count($img_name_arr) > 2) {
998
-                        $new_img_name_arr = $img_name_arr;
999
-                        if (isset($new_img_name_arr[count($img_name_arr) - 1])) {
1000
-                            unset($new_img_name_arr[count($img_name_arr) - 1]);
1001
-                            $file_title = implode('.', $new_img_name_arr);
1002
-                        }
1003
-                    }
1004
-                    $file_title = sanitize_file_name($file_title);
1005
-                    $file_name = sanitize_file_name($filename);
996
+					$file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename;
997
+					if (!empty($img_name_arr) && count($img_name_arr) > 2) {
998
+						$new_img_name_arr = $img_name_arr;
999
+						if (isset($new_img_name_arr[count($img_name_arr) - 1])) {
1000
+							unset($new_img_name_arr[count($img_name_arr) - 1]);
1001
+							$file_title = implode('.', $new_img_name_arr);
1002
+						}
1003
+					}
1004
+					$file_title = sanitize_file_name($file_title);
1005
+					$file_name = sanitize_file_name($filename);
1006 1006
 
1007
-                    $arr_file_type = wp_check_filetype($filename);
1007
+					$arr_file_type = wp_check_filetype($filename);
1008 1008
 
1009
-                    $uploaded_file_type = $arr_file_type['type'];
1009
+					$uploaded_file_type = $arr_file_type['type'];
1010 1010
 
1011
-                    // Set an array containing a list of acceptable formats
1012
-                    $allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png');
1011
+					// Set an array containing a list of acceptable formats
1012
+					$allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png');
1013 1013
 
1014
-                    // If the uploaded file is the right format
1015
-                    if (in_array($uploaded_file_type, $allowed_file_types)) {
1016
-                        if (!function_exists('wp_handle_upload')) {
1017
-                            require_once(ABSPATH . 'wp-admin/includes/file.php');
1018
-                        }
1014
+					// If the uploaded file is the right format
1015
+					if (in_array($uploaded_file_type, $allowed_file_types)) {
1016
+						if (!function_exists('wp_handle_upload')) {
1017
+							require_once(ABSPATH . 'wp-admin/includes/file.php');
1018
+						}
1019 1019
 
1020
-                        if (!is_dir($geodir_uploadpath)) {
1021
-                            mkdir($geodir_uploadpath);
1022
-                        }
1020
+						if (!is_dir($geodir_uploadpath)) {
1021
+							mkdir($geodir_uploadpath);
1022
+						}
1023 1023
 
1024
-                        $external_img = false;
1025
-                        if (strpos( str_replace( array('http://','https://'),'',$curr_img_url ), str_replace(array('http://','https://'),'',$uploads['baseurl'] ) ) !== false) {
1026
-                        } else {
1027
-                            $external_img = true;
1028
-                        }
1024
+						$external_img = false;
1025
+						if (strpos( str_replace( array('http://','https://'),'',$curr_img_url ), str_replace(array('http://','https://'),'',$uploads['baseurl'] ) ) !== false) {
1026
+						} else {
1027
+							$external_img = true;
1028
+						}
1029 1029
 
1030
-                        if ($dummy || $external_img) {
1031
-                            $uploaded_file = array();
1032
-                            $uploaded = (array)fetch_remote_file($curr_img_url);
1030
+						if ($dummy || $external_img) {
1031
+							$uploaded_file = array();
1032
+							$uploaded = (array)fetch_remote_file($curr_img_url);
1033 1033
 
1034
-                            if (isset($uploaded['error']) && empty($uploaded['error'])) {
1035
-                                $new_name = basename($uploaded['file']);
1036
-                                $uploaded_file = $uploaded;
1037
-                            }else{
1038
-                                print_r($uploaded);exit;
1039
-                            }
1040
-                            $external_img = false;
1041
-                        } else {
1042
-                            $new_name = $post_id . '_' . $file_name;
1034
+							if (isset($uploaded['error']) && empty($uploaded['error'])) {
1035
+								$new_name = basename($uploaded['file']);
1036
+								$uploaded_file = $uploaded;
1037
+							}else{
1038
+								print_r($uploaded);exit;
1039
+							}
1040
+							$external_img = false;
1041
+						} else {
1042
+							$new_name = $post_id . '_' . $file_name;
1043 1043
 
1044
-                            if ($curr_img_dir == $sub_dir) {
1045
-                                $img_path = $geodir_uploadpath . '/' . $filename;
1046
-                                $img_url = $geodir_uploadurl . '/' . $filename;
1047
-                            } else {
1048
-                                $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename;
1049
-                                $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename;
1050
-                            }
1044
+							if ($curr_img_dir == $sub_dir) {
1045
+								$img_path = $geodir_uploadpath . '/' . $filename;
1046
+								$img_url = $geodir_uploadurl . '/' . $filename;
1047
+							} else {
1048
+								$img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename;
1049
+								$img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename;
1050
+							}
1051 1051
 
1052
-                            $uploaded_file = '';
1052
+							$uploaded_file = '';
1053 1053
 
1054
-                            if (file_exists($img_path)) {
1055
-                                $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name);
1056
-                                $file_path = '';
1057
-                            } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
1058
-                                $uploaded_file = true;
1059
-                                $file_path = $curr_img_dir . '/' . $filename;
1060
-                            }
1054
+							if (file_exists($img_path)) {
1055
+								$uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name);
1056
+								$file_path = '';
1057
+							} else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
1058
+								$uploaded_file = true;
1059
+								$file_path = $curr_img_dir . '/' . $filename;
1060
+							}
1061 1061
 
1062
-                            if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path))
1063
-                                unlink($img_path);
1064
-                        }
1062
+							if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path))
1063
+								unlink($img_path);
1064
+						}
1065 1065
 
1066
-                        if (!empty($uploaded_file)) {
1067
-                            if (!isset($file_path) || !$file_path) {
1068
-                                $file_path = $sub_dir . '/' . $new_name;
1069
-                            }
1066
+						if (!empty($uploaded_file)) {
1067
+							if (!isset($file_path) || !$file_path) {
1068
+								$file_path = $sub_dir . '/' . $new_name;
1069
+							}
1070 1070
 
1071
-                            $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
1071
+							$postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
1072 1072
 
1073
-                            if ($menu_order == 1) {
1073
+							if ($menu_order == 1) {
1074 1074
 
1075
-                                $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
1075
+								$wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
1076 1076
 
1077
-                            }
1077
+							}
1078 1078
 
1079
-                            // Set up options array to add this file as an attachment
1080
-                            $attachment = array();
1081
-                            $attachment['post_id'] = $post_id;
1082
-                            $attachment['title'] = $file_title;
1083
-                            $attachment['content'] = '';
1084
-                            $attachment['file'] = $file_path;
1085
-                            $attachment['mime_type'] = $uploaded_file_type;
1086
-                            $attachment['menu_order'] = $menu_order;
1087
-                            $attachment['is_featured'] = 0;
1079
+							// Set up options array to add this file as an attachment
1080
+							$attachment = array();
1081
+							$attachment['post_id'] = $post_id;
1082
+							$attachment['title'] = $file_title;
1083
+							$attachment['content'] = '';
1084
+							$attachment['file'] = $file_path;
1085
+							$attachment['mime_type'] = $uploaded_file_type;
1086
+							$attachment['menu_order'] = $menu_order;
1087
+							$attachment['is_featured'] = 0;
1088 1088
 
1089
-                            $attachment_set = '';
1089
+							$attachment_set = '';
1090 1090
 
1091
-                            foreach ($attachment as $key => $val) {
1092
-                                if ($val != '')
1093
-                                    $attachment_set .= $key . " = '" . $val . "', ";
1094
-                            }
1091
+							foreach ($attachment as $key => $val) {
1092
+								if ($val != '')
1093
+									$attachment_set .= $key . " = '" . $val . "', ";
1094
+							}
1095 1095
 
1096
-                            $attachment_set = trim($attachment_set, ", ");
1096
+							$attachment_set = trim($attachment_set, ", ");
1097
+
1098
+							$wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
1097 1099
 
1098
-                            $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
1100
+							$valid_file_ids[] = $wpdb->insert_id;
1101
+						}
1099 1102
 
1100
-                            $valid_file_ids[] = $wpdb->insert_id;
1101
-                        }
1103
+					}
1102 1104
 
1103
-                    }
1104 1105
 
1106
+				} else {
1107
+					$valid_file_ids[] = $find_image;
1105 1108
 
1106
-                } else {
1107
-                    $valid_file_ids[] = $find_image;
1108
-
1109
-                    $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
1109
+					$postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
1110 1110
 
1111
-                    $wpdb->query(
1112
-                        $wpdb->prepare(
1113
-                            "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d",
1114
-                            array($menu_order, $split_img_path[1], $post_id)
1115
-                        )
1116
-                    );
1111
+					$wpdb->query(
1112
+						$wpdb->prepare(
1113
+							"UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d",
1114
+							array($menu_order, $split_img_path[1], $post_id)
1115
+						)
1116
+					);
1117 1117
 
1118
-                    if ($menu_order == 1)
1119
-                        $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1118
+					if ($menu_order == 1)
1119
+						$wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1120 1120
 
1121
-                }
1121
+				}
1122 1122
 
1123 1123
 
1124
-            }
1124
+			}
1125 1125
 
1126
-            if (!empty($valid_file_ids)) {
1126
+			if (!empty($valid_file_ids)) {
1127 1127
 
1128
-                $remove_files = $valid_file_ids;
1128
+				$remove_files = $valid_file_ids;
1129 1129
 
1130
-                $remove_files_length = count($remove_files);
1131
-                $remove_files_format = array_fill(0, $remove_files_length, '%d');
1132
-                $format = implode(',', $remove_files_format);
1133
-                $valid_files_condition = " ID NOT IN ($format) AND ";
1130
+				$remove_files_length = count($remove_files);
1131
+				$remove_files_format = array_fill(0, $remove_files_length, '%d');
1132
+				$format = implode(',', $remove_files_format);
1133
+				$valid_files_condition = " ID NOT IN ($format) AND ";
1134 1134
 
1135
-            }
1135
+			}
1136 1136
 
1137
-            //Get and remove all old images of post from database to set by new order
1137
+			//Get and remove all old images of post from database to set by new order
1138 1138
 
1139
-            if (!empty($post_images)) {
1139
+			if (!empty($post_images)) {
1140 1140
 
1141
-                foreach ($post_images as $img) {
1141
+				foreach ($post_images as $img) {
1142 1142
 
1143
-                    if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
1143
+					if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
1144 1144
 
1145
-                        $invalid_files[] = (object)array('src' => $img->src);
1145
+						$invalid_files[] = (object)array('src' => $img->src);
1146 1146
 
1147
-                    }
1147
+					}
1148 1148
 
1149
-                }
1149
+				}
1150 1150
 
1151
-            }
1151
+			}
1152 1152
 
1153
-            $invalid_files = (object)$invalid_files;
1154
-        }
1153
+			$invalid_files = (object)$invalid_files;
1154
+		}
1155 1155
 
1156
-        $remove_files[] = $post_id;
1156
+		$remove_files[] = $post_id;
1157 1157
 
1158
-        $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
1158
+		$wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
1159 1159
 
1160
-        if (!empty($invalid_files))
1161
-            geodir_remove_attachments($invalid_files);
1162
-    }
1160
+		if (!empty($invalid_files))
1161
+			geodir_remove_attachments($invalid_files);
1162
+	}
1163 1163
 
1164 1164
 }
1165 1165
 
@@ -1173,12 +1173,12 @@  discard block
 block discarded – undo
1173 1173
 function geodir_remove_temp_images()
1174 1174
 {
1175 1175
 
1176
-    global $current_user;
1176
+	global $current_user;
1177 1177
 
1178
-    $uploads = wp_upload_dir();
1179
-    $uploads_dir = $uploads['path'];
1178
+	$uploads = wp_upload_dir();
1179
+	$uploads_dir = $uploads['path'];
1180 1180
 
1181
-    /*	if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){
1181
+	/*	if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){
1182 1182
 
1183 1183
 			$dirPath = $uploads_dir.'/temp_'.$current_user->data->ID;
1184 1184
 			if (substr($dirPath, strlen($dirPath) - 1, 1) != '/') {
@@ -1195,8 +1195,8 @@  discard block
 block discarded – undo
1195 1195
 			rmdir($dirPath);
1196 1196
 	}	*/
1197 1197
 
1198
-    $dirname = $uploads_dir . '/temp_' . $current_user->ID;
1199
-    geodir_delete_directory($dirname);
1198
+	$dirname = $uploads_dir . '/temp_' . $current_user->ID;
1199
+	geodir_delete_directory($dirname);
1200 1200
 }
1201 1201
 
1202 1202
 
@@ -1210,116 +1210,116 @@  discard block
 block discarded – undo
1210 1210
  */
1211 1211
 function geodir_delete_directory($dirname)
1212 1212
 {
1213
-    $dir_handle = '';
1214
-    if (is_dir($dirname))
1215
-        $dir_handle = opendir($dirname);
1216
-    if (!$dir_handle)
1217
-        return false;
1218
-    while ($file = readdir($dir_handle)) {
1219
-        if ($file != "." && $file != "..") {
1220
-            if (!is_dir($dirname . "/" . $file))
1221
-                unlink($dirname . "/" . $file);
1222
-            else
1223
-                geodir_delete_directory($dirname . '/' . $file);
1224
-        }
1225
-    }
1226
-    closedir($dir_handle);
1227
-    rmdir($dirname);
1228
-    return true;
1213
+	$dir_handle = '';
1214
+	if (is_dir($dirname))
1215
+		$dir_handle = opendir($dirname);
1216
+	if (!$dir_handle)
1217
+		return false;
1218
+	while ($file = readdir($dir_handle)) {
1219
+		if ($file != "." && $file != "..") {
1220
+			if (!is_dir($dirname . "/" . $file))
1221
+				unlink($dirname . "/" . $file);
1222
+			else
1223
+				geodir_delete_directory($dirname . '/' . $file);
1224
+		}
1225
+	}
1226
+	closedir($dir_handle);
1227
+	rmdir($dirname);
1228
+	return true;
1229 1229
 
1230 1230
 }
1231 1231
 
1232 1232
 
1233 1233
 if (!function_exists('geodir_remove_attachments')) {
1234
-    /**
1235
-     * Remove post attachments.
1236
-     *
1237
-     * @since 1.0.0
1238
-     * @package GeoDirectory
1239
-     * @param array $postcurr_images Array of image objects.
1240
-     */
1241
-    function geodir_remove_attachments($postcurr_images = array())
1242
-    {
1243
-        // Unlink all past images of post
1244
-        if (!empty($postcurr_images)) {
1245
-
1246
-            $uploads = wp_upload_dir();
1247
-            $uploads_dir = $uploads['path'];
1248
-
1249
-            foreach ($postcurr_images as $postimg) {
1250
-                $image_name_arr = explode('/', $postimg->src);
1251
-                $filename = end($image_name_arr);
1252
-                if (file_exists($uploads_dir . '/' . $filename))
1253
-                    unlink($uploads_dir . '/' . $filename);
1254
-            }
1255
-
1256
-        } // endif
1257
-        // Unlink all past images of post end
1258
-    }
1234
+	/**
1235
+	 * Remove post attachments.
1236
+	 *
1237
+	 * @since 1.0.0
1238
+	 * @package GeoDirectory
1239
+	 * @param array $postcurr_images Array of image objects.
1240
+	 */
1241
+	function geodir_remove_attachments($postcurr_images = array())
1242
+	{
1243
+		// Unlink all past images of post
1244
+		if (!empty($postcurr_images)) {
1245
+
1246
+			$uploads = wp_upload_dir();
1247
+			$uploads_dir = $uploads['path'];
1248
+
1249
+			foreach ($postcurr_images as $postimg) {
1250
+				$image_name_arr = explode('/', $postimg->src);
1251
+				$filename = end($image_name_arr);
1252
+				if (file_exists($uploads_dir . '/' . $filename))
1253
+					unlink($uploads_dir . '/' . $filename);
1254
+			}
1255
+
1256
+		} // endif
1257
+		// Unlink all past images of post end
1258
+	}
1259 1259
 }
1260 1260
 
1261 1261
 if (!function_exists('geodir_get_featured_image')) {
1262
-    /**
1263
-     * Gets the post featured image.
1264
-     *
1265
-     * @since 1.0.0
1266
-     * @package GeoDirectory
1267
-     * @global object $wpdb WordPress Database object.
1268
-     * @global object $post The current post object.
1269
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
1270
-     * @param int|string $post_id The post ID.
1271
-     * @param string $size Optional. Thumbnail size. Default: thumbnail.
1272
-     * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1273
-     * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false.
1274
-     * @return bool|object Image details as an object.
1275
-     */
1276
-    function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false)
1277
-    {
1278
-
1279
-        /*$img_arr['src'] = get_the_post_thumbnail_url( $post_id,  'medium');//medium/thumbnail
1262
+	/**
1263
+	 * Gets the post featured image.
1264
+	 *
1265
+	 * @since 1.0.0
1266
+	 * @package GeoDirectory
1267
+	 * @global object $wpdb WordPress Database object.
1268
+	 * @global object $post The current post object.
1269
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
1270
+	 * @param int|string $post_id The post ID.
1271
+	 * @param string $size Optional. Thumbnail size. Default: thumbnail.
1272
+	 * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1273
+	 * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false.
1274
+	 * @return bool|object Image details as an object.
1275
+	 */
1276
+	function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false)
1277
+	{
1278
+
1279
+		/*$img_arr['src'] = get_the_post_thumbnail_url( $post_id,  'medium');//medium/thumbnail
1280 1280
         $img_arr['path'] = '';
1281 1281
         $img_arr['width'] = '';
1282 1282
         $img_arr['height'] = '';
1283 1283
         $img_arr['title'] = '';
1284 1284
         return (object)$img_arr;*/
1285
-        global $wpdb, $plugin_prefix, $post;
1285
+		global $wpdb, $plugin_prefix, $post;
1286 1286
 
1287
-        if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) {
1288
-            $post_type = $post->post_type;
1289
-        } else {
1290
-            $post_type = get_post_type($post_id);
1291
-        }
1287
+		if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) {
1288
+			$post_type = $post->post_type;
1289
+		} else {
1290
+			$post_type = get_post_type($post_id);
1291
+		}
1292 1292
 
1293
-        if (!in_array($post_type, geodir_get_posttypes())) {
1294
-            return false;// if not a GD CPT return;
1295
-        }
1293
+		if (!in_array($post_type, geodir_get_posttypes())) {
1294
+			return false;// if not a GD CPT return;
1295
+		}
1296 1296
 
1297
-        $table = $plugin_prefix . $post_type . '_detail';
1297
+		$table = $plugin_prefix . $post_type . '_detail';
1298 1298
 
1299
-        if (!$file) {
1300
-            if (isset($post->featured_image)) {
1301
-                $file = $post->featured_image;
1302
-            } else {
1303
-                $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
1304
-            }
1305
-        }
1299
+		if (!$file) {
1300
+			if (isset($post->featured_image)) {
1301
+				$file = $post->featured_image;
1302
+			} else {
1303
+				$file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
1304
+			}
1305
+		}
1306 1306
 
1307
-        if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) {
1308
-            $img_arr = array();
1307
+		if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) {
1308
+			$img_arr = array();
1309 1309
 
1310
-            $file_info = pathinfo($file);
1311
-            $sub_dir = '';
1312
-            if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1313
-                $sub_dir = stripslashes_deep($file_info['dirname']);
1310
+			$file_info = pathinfo($file);
1311
+			$sub_dir = '';
1312
+			if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1313
+				$sub_dir = stripslashes_deep($file_info['dirname']);
1314 1314
 
1315
-            $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1316
-            $uploads_baseurl = $uploads['baseurl'];
1317
-            $uploads_path = $uploads['path'];
1315
+			$uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1316
+			$uploads_baseurl = $uploads['baseurl'];
1317
+			$uploads_path = $uploads['path'];
1318 1318
 
1319
-            $file_name = $file_info['basename'];
1319
+			$file_name = $file_info['basename'];
1320 1320
 
1321
-            $uploads_url = $uploads_baseurl . $sub_dir;
1322
-            /*
1321
+			$uploads_url = $uploads_baseurl . $sub_dir;
1322
+			/*
1323 1323
              * Allows the filter of image src for such things as CDN change.
1324 1324
              *
1325 1325
              * @since 1.5.7
@@ -1328,158 +1328,158 @@  discard block
 block discarded – undo
1328 1328
              * @param string $uploads_url The server upload directory url.
1329 1329
              * @param string $uploads_baseurl The uploads dir base url.
1330 1330
              */
1331
-            $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1332
-            $img_arr['path'] = $uploads_path . '/' . $file_name;
1333
-            $width = 0;
1334
-            $height = 0;
1335
-            if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1336
-                $imagesize = getimagesize($img_arr['path']);
1337
-                $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1338
-                $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1339
-            }
1340
-            $img_arr['width'] = $width;
1341
-            $img_arr['height'] = $height;
1342
-            $img_arr['title'] = '';
1343
-        } elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) {
1344
-            foreach ($post_images as $image) {
1345
-                return $image;
1346
-            }
1347
-        } else if ($no_image) {
1348
-            $img_arr = array();
1349
-
1350
-            $default_img = '';
1351
-            if (isset($post->default_category) && $post->default_category) {
1352
-                $default_cat = $post->default_category;
1353
-            } else {
1354
-                $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1355
-            }
1356
-
1357
-            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1358
-                $default_img = $default_catimg['src'];
1359
-            elseif ($no_image) {
1360
-                $default_img = get_option('geodir_listing_no_img');
1361
-            }
1362
-
1363
-            if (!empty($default_img)) {
1364
-                $uploads = wp_upload_dir(); // Array of key => value pairs
1365
-                $uploads_baseurl = $uploads['baseurl'];
1366
-                $uploads_path = $uploads['path'];
1367
-
1368
-                $img_arr = array();
1369
-
1370
-                $file_info = pathinfo($default_img);
1371
-
1372
-                $file_name = $file_info['basename'];
1373
-
1374
-                $img_arr['src'] = $default_img;
1375
-                $img_arr['path'] = $uploads_path . '/' . $file_name;
1376
-
1377
-                $width = 0;
1378
-                $height = 0;
1379
-                if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1380
-                    $imagesize = getimagesize($img_arr['path']);
1381
-                    $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1382
-                    $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1383
-                }
1384
-                $img_arr['width'] = $width;
1385
-                $img_arr['height'] = $height;
1386
-
1387
-                $img_arr['title'] = ''; // add the title to the array
1388
-            }
1389
-        }
1390
-
1391
-        if (!empty($img_arr))
1392
-            return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path );
1393
-        else
1394
-            return false;
1395
-    }
1331
+			$img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1332
+			$img_arr['path'] = $uploads_path . '/' . $file_name;
1333
+			$width = 0;
1334
+			$height = 0;
1335
+			if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1336
+				$imagesize = getimagesize($img_arr['path']);
1337
+				$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1338
+				$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1339
+			}
1340
+			$img_arr['width'] = $width;
1341
+			$img_arr['height'] = $height;
1342
+			$img_arr['title'] = '';
1343
+		} elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) {
1344
+			foreach ($post_images as $image) {
1345
+				return $image;
1346
+			}
1347
+		} else if ($no_image) {
1348
+			$img_arr = array();
1349
+
1350
+			$default_img = '';
1351
+			if (isset($post->default_category) && $post->default_category) {
1352
+				$default_cat = $post->default_category;
1353
+			} else {
1354
+				$default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1355
+			}
1356
+
1357
+			if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1358
+				$default_img = $default_catimg['src'];
1359
+			elseif ($no_image) {
1360
+				$default_img = get_option('geodir_listing_no_img');
1361
+			}
1362
+
1363
+			if (!empty($default_img)) {
1364
+				$uploads = wp_upload_dir(); // Array of key => value pairs
1365
+				$uploads_baseurl = $uploads['baseurl'];
1366
+				$uploads_path = $uploads['path'];
1367
+
1368
+				$img_arr = array();
1369
+
1370
+				$file_info = pathinfo($default_img);
1371
+
1372
+				$file_name = $file_info['basename'];
1373
+
1374
+				$img_arr['src'] = $default_img;
1375
+				$img_arr['path'] = $uploads_path . '/' . $file_name;
1376
+
1377
+				$width = 0;
1378
+				$height = 0;
1379
+				if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1380
+					$imagesize = getimagesize($img_arr['path']);
1381
+					$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1382
+					$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1383
+				}
1384
+				$img_arr['width'] = $width;
1385
+				$img_arr['height'] = $height;
1386
+
1387
+				$img_arr['title'] = ''; // add the title to the array
1388
+			}
1389
+		}
1390
+
1391
+		if (!empty($img_arr))
1392
+			return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path );
1393
+		else
1394
+			return false;
1395
+	}
1396 1396
 }
1397 1397
 
1398 1398
 if (!function_exists('geodir_show_featured_image')) {
1399
-    /**
1400
-     * Gets the post featured image.
1401
-     *
1402
-     * @since 1.0.0
1403
-     * @package GeoDirectory
1404
-     * @param int|string $post_id The post ID.
1405
-     * @param string $size Optional. Thumbnail size. Default: thumbnail.
1406
-     * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1407
-     * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1408
-     * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false.
1409
-     * @return bool|string Returns image html.
1410
-     */
1411
-    function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false)
1412
-    {
1413
-        $image = geodir_get_featured_image($post_id, $size, $no_image, $fimage);
1414
-
1415
-        $html = geodir_show_image($image, $size, $no_image, false);
1416
-
1417
-        if (!empty($html) && $echo) {
1418
-            echo $html;
1419
-        } elseif (!empty($html)) {
1420
-            return $html;
1421
-        } else
1422
-            return false;
1423
-    }
1399
+	/**
1400
+	 * Gets the post featured image.
1401
+	 *
1402
+	 * @since 1.0.0
1403
+	 * @package GeoDirectory
1404
+	 * @param int|string $post_id The post ID.
1405
+	 * @param string $size Optional. Thumbnail size. Default: thumbnail.
1406
+	 * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1407
+	 * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1408
+	 * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false.
1409
+	 * @return bool|string Returns image html.
1410
+	 */
1411
+	function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false)
1412
+	{
1413
+		$image = geodir_get_featured_image($post_id, $size, $no_image, $fimage);
1414
+
1415
+		$html = geodir_show_image($image, $size, $no_image, false);
1416
+
1417
+		if (!empty($html) && $echo) {
1418
+			echo $html;
1419
+		} elseif (!empty($html)) {
1420
+			return $html;
1421
+		} else
1422
+			return false;
1423
+	}
1424 1424
 }
1425 1425
 
1426 1426
 if (!function_exists('geodir_get_images')) {
1427
-    /**
1428
-     * Gets the post images.
1429
-     *
1430
-     * @since 1.0.0
1431
-     * @package GeoDirectory
1432
-     * @global object $wpdb WordPress Database object.
1433
-     * @param int $post_id The post ID.
1434
-     * @param string $img_size Optional. Thumbnail size.
1435
-     * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false.
1436
-     * @param bool $add_featured Optional. Do you want to include featured images too? Default: true.
1437
-     * @param int|string $limit Optional. Number of images.
1438
-     * @return array|bool Returns images as an array. Each item is an object.
1439
-     */
1440
-    function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '')
1441
-    {
1442
-        global $wpdb;
1443
-        if ($limit) {
1444
-            $limit_q = " LIMIT $limit ";
1445
-        } else {
1446
-            $limit_q = '';
1447
-        }
1448
-        $not_featured = '';
1449
-        $sub_dir = '';
1450
-        if (!$add_featured)
1451
-            $not_featured = " AND is_featured = 0 ";
1452
-
1453
-        $arrImages = $wpdb->get_results(
1454
-            $wpdb->prepare(
1455
-                "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ",
1456
-                array('%image%', $post_id)
1457
-            )
1458
-        );
1459
-
1460
-        $counter = 0;
1461
-        $return_arr = array();
1462
-
1463
-        if (!empty($arrImages)) {
1464
-            foreach ($arrImages as $attechment) {
1465
-
1466
-                $img_arr = array();
1467
-                $img_arr['id'] = $attechment->ID;
1468
-                $img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0;
1469
-
1470
-                $file_info = pathinfo($attechment->file);
1471
-
1472
-                if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1473
-                    $sub_dir = stripslashes_deep($file_info['dirname']);
1474
-
1475
-                $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1476
-                $uploads_baseurl = $uploads['baseurl'];
1477
-                $uploads_path = $uploads['path'];
1478
-
1479
-                $file_name = $file_info['basename'];
1480
-
1481
-                $uploads_url = $uploads_baseurl . $sub_dir;
1482
-                /*
1427
+	/**
1428
+	 * Gets the post images.
1429
+	 *
1430
+	 * @since 1.0.0
1431
+	 * @package GeoDirectory
1432
+	 * @global object $wpdb WordPress Database object.
1433
+	 * @param int $post_id The post ID.
1434
+	 * @param string $img_size Optional. Thumbnail size.
1435
+	 * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false.
1436
+	 * @param bool $add_featured Optional. Do you want to include featured images too? Default: true.
1437
+	 * @param int|string $limit Optional. Number of images.
1438
+	 * @return array|bool Returns images as an array. Each item is an object.
1439
+	 */
1440
+	function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '')
1441
+	{
1442
+		global $wpdb;
1443
+		if ($limit) {
1444
+			$limit_q = " LIMIT $limit ";
1445
+		} else {
1446
+			$limit_q = '';
1447
+		}
1448
+		$not_featured = '';
1449
+		$sub_dir = '';
1450
+		if (!$add_featured)
1451
+			$not_featured = " AND is_featured = 0 ";
1452
+
1453
+		$arrImages = $wpdb->get_results(
1454
+			$wpdb->prepare(
1455
+				"SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ",
1456
+				array('%image%', $post_id)
1457
+			)
1458
+		);
1459
+
1460
+		$counter = 0;
1461
+		$return_arr = array();
1462
+
1463
+		if (!empty($arrImages)) {
1464
+			foreach ($arrImages as $attechment) {
1465
+
1466
+				$img_arr = array();
1467
+				$img_arr['id'] = $attechment->ID;
1468
+				$img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0;
1469
+
1470
+				$file_info = pathinfo($attechment->file);
1471
+
1472
+				if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1473
+					$sub_dir = stripslashes_deep($file_info['dirname']);
1474
+
1475
+				$uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1476
+				$uploads_baseurl = $uploads['baseurl'];
1477
+				$uploads_path = $uploads['path'];
1478
+
1479
+				$file_name = $file_info['basename'];
1480
+
1481
+				$uploads_url = $uploads_baseurl . $sub_dir;
1482
+				/*
1483 1483
                 * Allows the filter of image src for such things as CDN change.
1484 1484
                 *
1485 1485
                 * @since 1.5.7
@@ -1488,517 +1488,517 @@  discard block
 block discarded – undo
1488 1488
                 * @param string $uploads_url The server upload directory url.
1489 1489
                 * @param string $uploads_baseurl The uploads dir base url.
1490 1490
                 */
1491
-                $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1492
-                $img_arr['path'] = $uploads_path . '/' . $file_name;
1493
-                $width = 0;
1494
-                $height = 0;
1495
-                if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1496
-                    $imagesize = getimagesize($img_arr['path']);
1497
-                    $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1498
-                    $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1499
-                }
1500
-                $img_arr['width'] = $width;
1501
-                $img_arr['height'] = $height;
1502
-
1503
-                $img_arr['file'] = $file_name; // add the title to the array
1504
-                $img_arr['title'] = $attechment->title; // add the title to the array
1505
-                $img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array
1506
-                $img_arr['content'] = $attechment->content; // add the description to the array
1507
-                $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1.
1508
-
1509
-                $return_arr[] = (object)$img_arr;
1510
-
1511
-                $counter++;
1512
-            }
1513
-            return (object)$return_arr;
1514
-        } else if ($no_images) {
1515
-            $default_img = '';
1516
-            $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1517
-            $post_type = get_post_type($post_id);
1518
-            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1519
-                $default_img = $default_catimg['src'];
1520
-            elseif ($no_images) {
1521
-                $default_img = get_option('geodir_listing_no_img');
1522
-            }
1523
-
1524
-            if (!empty($default_img)) {
1525
-                $uploads = wp_upload_dir(); // Array of key => value pairs
1491
+				$img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1492
+				$img_arr['path'] = $uploads_path . '/' . $file_name;
1493
+				$width = 0;
1494
+				$height = 0;
1495
+				if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1496
+					$imagesize = getimagesize($img_arr['path']);
1497
+					$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1498
+					$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1499
+				}
1500
+				$img_arr['width'] = $width;
1501
+				$img_arr['height'] = $height;
1502
+
1503
+				$img_arr['file'] = $file_name; // add the title to the array
1504
+				$img_arr['title'] = $attechment->title; // add the title to the array
1505
+				$img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array
1506
+				$img_arr['content'] = $attechment->content; // add the description to the array
1507
+				$img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1.
1508
+
1509
+				$return_arr[] = (object)$img_arr;
1510
+
1511
+				$counter++;
1512
+			}
1513
+			return (object)$return_arr;
1514
+		} else if ($no_images) {
1515
+			$default_img = '';
1516
+			$default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1517
+			$post_type = get_post_type($post_id);
1518
+			if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1519
+				$default_img = $default_catimg['src'];
1520
+			elseif ($no_images) {
1521
+				$default_img = get_option('geodir_listing_no_img');
1522
+			}
1523
+
1524
+			if (!empty($default_img)) {
1525
+				$uploads = wp_upload_dir(); // Array of key => value pairs
1526 1526
                 
1527
-                $image_path = $default_img;
1528
-                if (!path_is_absolute($image_path)) {
1529
-                    $image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path);
1530
-                }
1531
-
1532
-                $file_info = pathinfo($default_img);
1533
-                $file_name = $file_info['basename'];
1534
-
1535
-                $width = '';
1536
-                $height = '';
1537
-                if (is_file($image_path) && file_exists($image_path)) {
1538
-                    $imagesize = getimagesize($image_path);
1539
-                    $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1540
-                    $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1541
-                }
1527
+				$image_path = $default_img;
1528
+				if (!path_is_absolute($image_path)) {
1529
+					$image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path);
1530
+				}
1531
+
1532
+				$file_info = pathinfo($default_img);
1533
+				$file_name = $file_info['basename'];
1534
+
1535
+				$width = '';
1536
+				$height = '';
1537
+				if (is_file($image_path) && file_exists($image_path)) {
1538
+					$imagesize = getimagesize($image_path);
1539
+					$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1540
+					$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1541
+				}
1542 1542
                 
1543
-                $img_arr = array();
1544
-                $img_arr['src'] = $default_img;
1545
-                $img_arr['path'] = $image_path;
1546
-                $img_arr['width'] = $width;
1547
-                $img_arr['height'] = $height;
1548
-                $img_arr['file'] = $file_name; // add the title to the array
1549
-                $img_arr['title'] = $file_info['filename']; // add the title to the array
1550
-                $img_arr['content'] = $file_info['filename']; // add the description to the array
1551
-
1552
-                $return_arr[] = (object)$img_arr;
1553
-
1554
-                return $return_arr;
1555
-            } else
1556
-                return false;
1557
-        }
1558
-    }
1543
+				$img_arr = array();
1544
+				$img_arr['src'] = $default_img;
1545
+				$img_arr['path'] = $image_path;
1546
+				$img_arr['width'] = $width;
1547
+				$img_arr['height'] = $height;
1548
+				$img_arr['file'] = $file_name; // add the title to the array
1549
+				$img_arr['title'] = $file_info['filename']; // add the title to the array
1550
+				$img_arr['content'] = $file_info['filename']; // add the description to the array
1551
+
1552
+				$return_arr[] = (object)$img_arr;
1553
+
1554
+				return $return_arr;
1555
+			} else
1556
+				return false;
1557
+		}
1558
+	}
1559 1559
 }
1560 1560
 
1561 1561
 if (!function_exists('geodir_show_image')) {
1562
-    /**
1563
-     * Show image using image details.
1564
-     *
1565
-     * @since 1.0.0
1566
-     * @package GeoDirectory
1567
-     * @param array|object $request Image info either as an array or object.
1568
-     * @param string $size Optional. Thumbnail size. Default: thumbnail.
1569
-     * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1570
-     * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1571
-     * @return bool|string Returns image html.
1572
-     */
1573
-    function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true)
1574
-    {
1575
-        $image = new stdClass();
1576
-
1577
-        $html = '';
1578
-        if (!empty($request)) {
1579
-            if (!is_object($request)){
1580
-                $request = (object)$request;
1581
-            }
1582
-
1583
-            if (isset($request->src) && !isset($request->path)) {
1584
-                $request->path = $request->src;
1585
-            }
1586
-
1587
-            /*
1562
+	/**
1563
+	 * Show image using image details.
1564
+	 *
1565
+	 * @since 1.0.0
1566
+	 * @package GeoDirectory
1567
+	 * @param array|object $request Image info either as an array or object.
1568
+	 * @param string $size Optional. Thumbnail size. Default: thumbnail.
1569
+	 * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1570
+	 * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1571
+	 * @return bool|string Returns image html.
1572
+	 */
1573
+	function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true)
1574
+	{
1575
+		$image = new stdClass();
1576
+
1577
+		$html = '';
1578
+		if (!empty($request)) {
1579
+			if (!is_object($request)){
1580
+				$request = (object)$request;
1581
+			}
1582
+
1583
+			if (isset($request->src) && !isset($request->path)) {
1584
+				$request->path = $request->src;
1585
+			}
1586
+
1587
+			/*
1588 1588
              * getimagesize() works faster from path than url so we try and get path if we can.
1589 1589
              */
1590
-            $upload_dir = wp_upload_dir();
1591
-            $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
1592
-            $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
1593
-            if (strpos($img_no_http, $upload_no_http) !== false) {
1594
-                $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path);
1595
-            }
1590
+			$upload_dir = wp_upload_dir();
1591
+			$img_no_http = str_replace(array("http://", "https://"), "", $request->path);
1592
+			$upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
1593
+			if (strpos($img_no_http, $upload_no_http) !== false) {
1594
+				$request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path);
1595
+			}
1596 1596
             
1597
-            $width = 0;
1598
-            $height = 0;
1599
-            if (is_file($request->path) && file_exists($request->path)) {
1600
-                $imagesize = getimagesize($request->path);
1601
-                $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1602
-                $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1603
-            }
1604
-
1605
-            $image->src = $request->src;
1606
-            $image->width = $width;
1607
-            $image->height = $height;
1608
-
1609
-            $max_size = (object)geodir_get_imagesize($size);
1610
-
1611
-            if (!is_wp_error($max_size)) {
1612
-                if ($image->width) {
1613
-                    if ($image->height >= $image->width) {
1614
-                        $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2);
1615
-                    } else if ($image->width < ($max_size->h)) {
1616
-                        $width_per = round((($image->width / $max_size->w) * 100), 2);
1617
-                    } else
1618
-                        $width_per = 100;
1619
-                }
1620
-
1621
-                if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
1622
-                    $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '"  /></div>';
1623
-                } else {
1624
-                    if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
1625
-                        $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1626
-                    }else{
1627
-                        //$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1628
-                        //$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>';
1629
-                        $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
1630
-
1631
-                    }
1632
-
1633
-                }
1634
-            }
1635
-        }
1636
-
1637
-        if (!empty($html) && $echo) {
1638
-            echo $html;
1639
-        } elseif (!empty($html)) {
1640
-            return $html;
1641
-        } else
1642
-            return false;
1643
-    }
1644
-}
1597
+			$width = 0;
1598
+			$height = 0;
1599
+			if (is_file($request->path) && file_exists($request->path)) {
1600
+				$imagesize = getimagesize($request->path);
1601
+				$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1602
+				$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1603
+			}
1645 1604
 
1646
-if (!function_exists('geodir_set_post_terms')) {
1647
-    /**
1648
-     * Set post Categories.
1649
-     *
1650
-     * @since 1.0.0
1651
-     * @package GeoDirectory
1652
-     * @global object $wpdb WordPress Database object.
1653
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
1654
-     * @param int $post_id The post ID.
1655
-     * @param array $terms An array of term objects.
1656
-     * @param array $tt_ids An array of term taxonomy IDs.
1657
-     * @param string $taxonomy Taxonomy slug.
1658
-     */
1659
-    function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy)
1660
-    {
1661
-        global $wpdb, $plugin_prefix;
1605
+			$image->src = $request->src;
1606
+			$image->width = $width;
1607
+			$image->height = $height;
1608
+
1609
+			$max_size = (object)geodir_get_imagesize($size);
1662 1610
 
1663
-        $post_type = get_post_type($post_id);
1611
+			if (!is_wp_error($max_size)) {
1612
+				if ($image->width) {
1613
+					if ($image->height >= $image->width) {
1614
+						$width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2);
1615
+					} else if ($image->width < ($max_size->h)) {
1616
+						$width_per = round((($image->width / $max_size->w) * 100), 2);
1617
+					} else
1618
+						$width_per = 100;
1619
+				}
1620
+
1621
+				if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
1622
+					$html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '"  /></div>';
1623
+				} else {
1624
+					if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
1625
+						$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1626
+					}else{
1627
+						//$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1628
+						//$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>';
1629
+						$html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
1664 1630
 
1665
-        $table = $plugin_prefix . $post_type . '_detail';
1631
+					}
1666 1632
 
1667
-        if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
1633
+				}
1634
+			}
1635
+		}
1636
+
1637
+		if (!empty($html) && $echo) {
1638
+			echo $html;
1639
+		} elseif (!empty($html)) {
1640
+			return $html;
1641
+		} else
1642
+			return false;
1643
+	}
1644
+}
1668 1645
 
1669
-            if ($taxonomy == $post_type . '_tags') {
1670
-                if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1671
-                    geodir_save_post_meta($post_id, 'post_tags', $terms);
1672
-                }
1673
-            } elseif ($taxonomy == $post_type . 'category') {
1674
-                $srcharr = array('"', '\\');
1675
-                $replarr = array("&quot;", '');
1646
+if (!function_exists('geodir_set_post_terms')) {
1647
+	/**
1648
+	 * Set post Categories.
1649
+	 *
1650
+	 * @since 1.0.0
1651
+	 * @package GeoDirectory
1652
+	 * @global object $wpdb WordPress Database object.
1653
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
1654
+	 * @param int $post_id The post ID.
1655
+	 * @param array $terms An array of term objects.
1656
+	 * @param array $tt_ids An array of term taxonomy IDs.
1657
+	 * @param string $taxonomy Taxonomy slug.
1658
+	 */
1659
+	function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy)
1660
+	{
1661
+		global $wpdb, $plugin_prefix;
1662
+
1663
+		$post_type = get_post_type($post_id);
1664
+
1665
+		$table = $plugin_prefix . $post_type . '_detail';
1666
+
1667
+		if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
1668
+
1669
+			if ($taxonomy == $post_type . '_tags') {
1670
+				if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1671
+					geodir_save_post_meta($post_id, 'post_tags', $terms);
1672
+				}
1673
+			} elseif ($taxonomy == $post_type . 'category') {
1674
+				$srcharr = array('"', '\\');
1675
+				$replarr = array("&quot;", '');
1676 1676
 
1677
-                $post_obj = get_post($post_id);
1677
+				$post_obj = get_post($post_id);
1678 1678
 
1679
-                $cat_ids = array('0');
1680
-                if (is_array($tt_ids))
1681
-                    $cat_ids = $tt_ids;
1679
+				$cat_ids = array('0');
1680
+				if (is_array($tt_ids))
1681
+					$cat_ids = $tt_ids;
1682 1682
 
1683 1683
 
1684
-                if (!empty($cat_ids)) {
1685
-                    $cat_ids_array = $cat_ids;
1686
-                    $cat_ids_length = count($cat_ids_array);
1687
-                    $cat_ids_format = array_fill(0, $cat_ids_length, '%d');
1688
-                    $format = implode(',', $cat_ids_format);
1684
+				if (!empty($cat_ids)) {
1685
+					$cat_ids_array = $cat_ids;
1686
+					$cat_ids_length = count($cat_ids_array);
1687
+					$cat_ids_format = array_fill(0, $cat_ids_length, '%d');
1688
+					$format = implode(',', $cat_ids_format);
1689 1689
 
1690
-                    $cat_ids_array_del = $cat_ids_array;
1691
-                    $cat_ids_array_del[] = $post_id;
1690
+					$cat_ids_array_del = $cat_ids_array;
1691
+					$cat_ids_array_del[] = $post_id;
1692 1692
 
1693
-                    $wpdb->get_var(
1694
-                        $wpdb->prepare(
1695
-                            "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ",
1696
-                            $cat_ids_array_del
1697
-                        )
1698
-                    );
1693
+					$wpdb->get_var(
1694
+						$wpdb->prepare(
1695
+							"DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ",
1696
+							$cat_ids_array_del
1697
+						)
1698
+					);
1699 1699
 
1700 1700
 
1701
-                    $post_term = $wpdb->get_col(
1702
-                        $wpdb->prepare(
1703
-                            "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id",
1704
-                            $cat_ids_array
1705
-                        )
1706
-                    );
1701
+					$post_term = $wpdb->get_col(
1702
+						$wpdb->prepare(
1703
+							"SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id",
1704
+							$cat_ids_array
1705
+						)
1706
+					);
1707 1707
 
1708
-                }
1708
+				}
1709 1709
 
1710
-                $post_marker_json = '';
1710
+				$post_marker_json = '';
1711 1711
 
1712
-                if (!empty($post_term)):
1712
+				if (!empty($post_term)):
1713 1713
 
1714
-                    foreach ($post_term as $cat_id):
1714
+					foreach ($post_term as $cat_id):
1715 1715
 
1716
-                        $term_icon_url = get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type);
1717
-                        $term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : '';
1716
+						$term_icon_url = get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type);
1717
+						$term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : '';
1718 1718
 
1719
-                        $post_title = $post_obj->title;
1720
-                        $title = str_replace($srcharr, $replarr, $post_title);
1719
+						$post_title = $post_obj->title;
1720
+						$title = str_replace($srcharr, $replarr, $post_title);
1721 1721
 
1722
-                        $lat = geodir_get_post_meta($post_id, 'post_latitude', true);
1723
-                        $lng = geodir_get_post_meta($post_id, 'post_longitude', true);
1722
+						$lat = geodir_get_post_meta($post_id, 'post_latitude', true);
1723
+						$lng = geodir_get_post_meta($post_id, 'post_longitude', true);
1724 1724
 
1725
-                        $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
1726
-                        $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true);
1725
+						$timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
1726
+						$timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true);
1727 1727
 
1728
-                        $json = '{';
1729
-                        $json .= '"id":"' . $post_id . '",';
1730
-                        $json .= '"lat_pos": "' . $lat . '",';
1731
-                        $json .= '"long_pos": "' . $lng . '",';
1732
-                        $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",';
1733
-                        $json .= '"icon":"' . $term_icon . '",';
1734
-                        $json .= '"group":"catgroup' . $cat_id . '"';
1735
-                        $json .= '}';
1728
+						$json = '{';
1729
+						$json .= '"id":"' . $post_id . '",';
1730
+						$json .= '"lat_pos": "' . $lat . '",';
1731
+						$json .= '"long_pos": "' . $lng . '",';
1732
+						$json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",';
1733
+						$json .= '"icon":"' . $term_icon . '",';
1734
+						$json .= '"group":"catgroup' . $cat_id . '"';
1735
+						$json .= '}';
1736 1736
 
1737 1737
 
1738
-                        if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true))
1739
-                            $post_marker_json = $json;
1738
+						if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true))
1739
+							$post_marker_json = $json;
1740 1740
 
1741 1741
 
1742
-                        if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
1742
+						if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
1743 1743
 
1744
-                            $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
1744
+							$json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
1745 1745
 										post_title = %s,
1746 1746
 										json = %s
1747 1747
 										WHERE post_id = %d AND cat_id = %d ",
1748
-                                array($post_title, $json, $post_id, $cat_id));
1748
+								array($post_title, $json, $post_id, $cat_id));
1749 1749
 
1750
-                        } else {
1750
+						} else {
1751 1751
 
1752
-                            $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
1752
+							$json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
1753 1753
 										post_id = %d,
1754 1754
 										post_title = %s,
1755 1755
 										cat_id = %d,
1756 1756
 										json = %s",
1757
-                                array($post_id, $post_title, $cat_id, $json));
1757
+								array($post_id, $post_title, $cat_id, $json));
1758 1758
 
1759
-                        }
1759
+						}
1760 1760
 
1761
-                        $wpdb->query($json_query);
1761
+						$wpdb->query($json_query);
1762 1762
 
1763
-                    endforeach;
1763
+					endforeach;
1764 1764
 
1765
-                endif;
1765
+				endif;
1766 1766
 
1767
-                if (!empty($post_term) && is_array($post_term)) {
1768
-                    $categories = implode(',', $post_term);
1767
+				if (!empty($post_term) && is_array($post_term)) {
1768
+					$categories = implode(',', $post_term);
1769 1769
 
1770
-                    if ($categories != '' && $categories != 0) $categories = ',' . $categories . ',';
1770
+					if ($categories != '' && $categories != 0) $categories = ',' . $categories . ',';
1771 1771
 
1772
-                    if (empty($post_marker_json))
1773
-                        $post_marker_json = isset($json) ? $json : '';
1772
+					if (empty($post_marker_json))
1773
+						$post_marker_json = isset($json) ? $json : '';
1774 1774
 
1775
-                    if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
1775
+					if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
1776 1776
 
1777
-                        $wpdb->query(
1778
-                            $wpdb->prepare(
1779
-                                "UPDATE " . $table . " SET
1777
+						$wpdb->query(
1778
+							$wpdb->prepare(
1779
+								"UPDATE " . $table . " SET
1780 1780
 								" . $taxonomy . " = %s,
1781 1781
 								marker_json = %s
1782 1782
 								where post_id = %d",
1783
-                                array($categories, $post_marker_json, $post_id)
1784
-                            )
1785
-                        );
1783
+								array($categories, $post_marker_json, $post_id)
1784
+							)
1785
+						);
1786 1786
 
1787
-                        if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') {
1787
+						if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') {
1788 1788
 
1789
-                            $categories = trim($categories, ',');
1789
+							$categories = trim($categories, ',');
1790 1790
 
1791
-                            if ($categories) {
1791
+							if ($categories) {
1792 1792
 
1793
-                                $categories = explode(',', $categories);
1793
+								$categories = explode(',', $categories);
1794 1794
 
1795
-                                $default_category = geodir_get_post_meta($post_id, 'default_category', true);
1795
+								$default_category = geodir_get_post_meta($post_id, 'default_category', true);
1796 1796
 
1797
-                                if (!in_array($default_category, $categories)) {
1797
+								if (!in_array($default_category, $categories)) {
1798 1798
 
1799
-                                    $wpdb->query(
1800
-                                        $wpdb->prepare(
1801
-                                            "UPDATE " . $table . " SET
1799
+									$wpdb->query(
1800
+										$wpdb->prepare(
1801
+											"UPDATE " . $table . " SET
1802 1802
 											default_category = %s
1803 1803
 											where post_id = %d",
1804
-                                            array($categories[0], $post_id)
1805
-                                        )
1806
-                                    );
1804
+											array($categories[0], $post_id)
1805
+										)
1806
+									);
1807 1807
 
1808
-                                    $default_category = $categories[0];
1808
+									$default_category = $categories[0];
1809 1809
 
1810
-                                }
1810
+								}
1811 1811
 
1812
-                                if ($default_category == '')
1813
-                                    $default_category = $categories[0];
1812
+								if ($default_category == '')
1813
+									$default_category = $categories[0];
1814 1814
 
1815
-                                geodir_set_postcat_structure($post_id, $taxonomy, $default_category, '');
1815
+								geodir_set_postcat_structure($post_id, $taxonomy, $default_category, '');
1816 1816
 
1817
-                            }
1817
+							}
1818 1818
 
1819
-                        }
1819
+						}
1820 1820
 
1821 1821
 
1822
-                    } else {
1822
+					} else {
1823 1823
 
1824
-                        $wpdb->query(
1825
-                            $wpdb->prepare(
1826
-                                "INSERT INTO " . $table . " SET
1824
+						$wpdb->query(
1825
+							$wpdb->prepare(
1826
+								"INSERT INTO " . $table . " SET
1827 1827
 								post_id = %d,
1828 1828
 								" . $taxonomy . " = %s,
1829 1829
 								marker_json = %s ",
1830 1830
 
1831
-                                array($post_id, $categories, $post_marker_json)
1832
-                            )
1833
-                        );
1834
-                    }
1835
-                }
1836
-            }
1837
-        }
1838
-    }
1831
+								array($post_id, $categories, $post_marker_json)
1832
+							)
1833
+						);
1834
+					}
1835
+				}
1836
+			}
1837
+		}
1838
+	}
1839 1839
 }
1840 1840
 
1841 1841
 if (!function_exists('geodir_get_infowindow_html')) {
1842
-    /**
1843
-     * Set post Map Marker info html.
1844
-     *
1845
-     * @since 1.0.0
1846
-     * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before".
1847
-     * @package GeoDirectory
1848
-     * @global array $geodir_addon_list List of active GeoDirectory extensions.
1849
-     * @global object $gd_session GeoDirectory Session object.
1850
-     * @param object $postinfo_obj The post details object.
1851
-     * @param string $post_preview Is this a post preview?.
1852
-     * @return mixed|string|void
1853
-     */
1854
-    function geodir_get_infowindow_html($postinfo_obj, $post_preview = '')
1855
-    {
1856
-        global $preview, $gd_session;
1857
-        $srcharr = array("'", "/", "-", '"', '\\');
1858
-        $replarr = array("&prime;", "&frasl;", "&ndash;", "&ldquo;", '');
1859
-
1860
-        if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1861
-            $ID = '';
1862
-            $plink = '';
1863
-
1864
-            if (isset($postinfo_obj->pid)) {
1865
-                $ID = $postinfo_obj->pid;
1866
-                $plink = get_permalink($ID);
1867
-            }
1868
-
1869
-            $title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title));
1870
-            $lat = $postinfo_obj->post_latitude;
1871
-            $lng = $postinfo_obj->post_longitude;
1872
-        } else {
1873
-            $ID = $postinfo_obj->post_id;
1874
-            $title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan
1875
-            $title = wp_specialchars_decode($title); // Fixed #post-320722 on 2016-12-08
1876
-            $plink = get_permalink($ID);
1877
-            $lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true));
1878
-            $lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true));
1879
-        }
1880
-
1881
-        // filter field as per price package
1882
-        global $geodir_addon_list;
1883
-        if (isset($geodir_addon_list['geodir_payment_manager']) && $geodir_addon_list['geodir_payment_manager'] == 'yes') {
1884
-            $post_type = get_post_type($ID);
1885
-            $package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL;
1886
-            $field_name = 'geodir_contact';
1887
-            if (!check_field_visibility($package_id, $field_name, $post_type)) {
1888
-                $contact = '';
1889
-            }
1890
-
1891
-            $field_name = 'geodir_timing';
1892
-            if (!check_field_visibility($package_id, $field_name, $post_type)) {
1893
-                $timing = '';
1894
-            }
1895
-        }
1896
-
1897
-        if ($lat && $lng) {
1898
-            ob_start(); ?>
1842
+	/**
1843
+	 * Set post Map Marker info html.
1844
+	 *
1845
+	 * @since 1.0.0
1846
+	 * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before".
1847
+	 * @package GeoDirectory
1848
+	 * @global array $geodir_addon_list List of active GeoDirectory extensions.
1849
+	 * @global object $gd_session GeoDirectory Session object.
1850
+	 * @param object $postinfo_obj The post details object.
1851
+	 * @param string $post_preview Is this a post preview?.
1852
+	 * @return mixed|string|void
1853
+	 */
1854
+	function geodir_get_infowindow_html($postinfo_obj, $post_preview = '')
1855
+	{
1856
+		global $preview, $gd_session;
1857
+		$srcharr = array("'", "/", "-", '"', '\\');
1858
+		$replarr = array("&prime;", "&frasl;", "&ndash;", "&ldquo;", '');
1859
+
1860
+		if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1861
+			$ID = '';
1862
+			$plink = '';
1863
+
1864
+			if (isset($postinfo_obj->pid)) {
1865
+				$ID = $postinfo_obj->pid;
1866
+				$plink = get_permalink($ID);
1867
+			}
1868
+
1869
+			$title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title));
1870
+			$lat = $postinfo_obj->post_latitude;
1871
+			$lng = $postinfo_obj->post_longitude;
1872
+		} else {
1873
+			$ID = $postinfo_obj->post_id;
1874
+			$title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan
1875
+			$title = wp_specialchars_decode($title); // Fixed #post-320722 on 2016-12-08
1876
+			$plink = get_permalink($ID);
1877
+			$lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true));
1878
+			$lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true));
1879
+		}
1880
+
1881
+		// filter field as per price package
1882
+		global $geodir_addon_list;
1883
+		if (isset($geodir_addon_list['geodir_payment_manager']) && $geodir_addon_list['geodir_payment_manager'] == 'yes') {
1884
+			$post_type = get_post_type($ID);
1885
+			$package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL;
1886
+			$field_name = 'geodir_contact';
1887
+			if (!check_field_visibility($package_id, $field_name, $post_type)) {
1888
+				$contact = '';
1889
+			}
1890
+
1891
+			$field_name = 'geodir_timing';
1892
+			if (!check_field_visibility($package_id, $field_name, $post_type)) {
1893
+				$timing = '';
1894
+			}
1895
+		}
1896
+
1897
+		if ($lat && $lng) {
1898
+			ob_start(); ?>
1899 1899
             <div class="gd-bubble" style="">
1900 1900
                 <div class="gd-bubble-inside">
1901 1901
                     <?php
1902
-                    $comment_count = '';
1903
-                    $rating_star = '';
1904
-                    if ($ID != '') {
1905
-                        $rating_star = '';
1906
-                        $comment_count = geodir_get_review_count_total($ID);
1907
-
1908
-                        if (!$preview) {
1909
-                            $post_avgratings = geodir_get_post_rating($ID);
1910
-
1911
-                            $rating_star = geodir_get_rating_stars($post_avgratings, $ID, false);
1912
-
1913
-                            /**
1914
-                             * Filter to change rating stars
1915
-                             *
1916
-                             * You can use this filter to change Rating stars.
1917
-                             *
1918
-                             * @since 1.0.0
1919
-                             * @package GeoDirectory
1920
-                             * @param string $rating_star Rating stars.
1921
-                             * @param float $post_avgratings Average ratings of the post.
1922
-                             * @param int $ID The post ID.
1923
-                             */
1924
-                            $rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID);
1925
-                        }
1926
-                    }
1927
-                    ?>
1902
+					$comment_count = '';
1903
+					$rating_star = '';
1904
+					if ($ID != '') {
1905
+						$rating_star = '';
1906
+						$comment_count = geodir_get_review_count_total($ID);
1907
+
1908
+						if (!$preview) {
1909
+							$post_avgratings = geodir_get_post_rating($ID);
1910
+
1911
+							$rating_star = geodir_get_rating_stars($post_avgratings, $ID, false);
1912
+
1913
+							/**
1914
+							 * Filter to change rating stars
1915
+							 *
1916
+							 * You can use this filter to change Rating stars.
1917
+							 *
1918
+							 * @since 1.0.0
1919
+							 * @package GeoDirectory
1920
+							 * @param string $rating_star Rating stars.
1921
+							 * @param float $post_avgratings Average ratings of the post.
1922
+							 * @param int $ID The post ID.
1923
+							 */
1924
+							$rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID);
1925
+						}
1926
+					}
1927
+					?>
1928 1928
                     <div class="geodir-bubble_desc">
1929 1929
                         <h4>
1930 1930
                             <a href="<?php if ($plink != '') {
1931
-                                echo $plink;
1932
-                            } else {
1933
-                                echo 'javascript:void(0);';
1934
-                            } ?>"><?php echo $title; ?></a>
1931
+								echo $plink;
1932
+							} else {
1933
+								echo 'javascript:void(0);';
1934
+							} ?>"><?php echo $title; ?></a>
1935 1935
                         </h4>
1936 1936
                         <?php
1937
-                        if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1938
-                            $post_images = array();
1939
-                            if (!empty($postinfo_obj->post_images)) {
1940
-                                $post_images = explode(",", $postinfo_obj->post_images);
1941
-                            }
1942
-
1943
-                            if (!empty($post_images)) {
1944
-                                ?>
1937
+						if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1938
+							$post_images = array();
1939
+							if (!empty($postinfo_obj->post_images)) {
1940
+								$post_images = explode(",", $postinfo_obj->post_images);
1941
+							}
1942
+
1943
+							if (!empty($post_images)) {
1944
+								?>
1945 1945
                                 <div class="geodir-bubble_image"><a href="<?php if ($plink != '') {
1946
-                                        echo $plink;
1947
-                                    } else {
1948
-                                        echo 'javascript:void(0);';
1949
-                                    } ?>"><img alt="bubble image" style="max-height:50px;"
1946
+										echo $plink;
1947
+									} else {
1948
+										echo 'javascript:void(0);';
1949
+									} ?>"><img alt="bubble image" style="max-height:50px;"
1950 1950
                                                src="<?php echo $post_images[0]; ?>"/></a></div>
1951 1951
                             <?php
1952
-                            }else{
1953
-                                echo '<div class="geodir-bubble_image"></div>';
1954
-                            }
1955
-                        } else {
1956
-                            if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) {
1957
-                                ?>
1952
+							}else{
1953
+								echo '<div class="geodir-bubble_image"></div>';
1954
+							}
1955
+						} else {
1956
+							if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) {
1957
+								?>
1958 1958
                                 <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div>
1959 1959
                             <?php
1960
-                            }else{
1961
-                                echo '<div class="geodir-bubble_image"></div>';
1962
-                            }
1963
-                        }
1964
-                        ?>
1960
+							}else{
1961
+								echo '<div class="geodir-bubble_image"></div>';
1962
+							}
1963
+						}
1964
+						?>
1965 1965
                         <div class="geodir-bubble-meta-side">
1966 1966
                             <?php
1967
-                            /**
1968
-                             * Fires before the meta info in the map info window.
1969
-                             *
1970
-                             * This can be used to add more info to the map info window before the normal meta info.
1971
-                             *
1972
-                             * @since 1.5.4
1973
-                             * @param int $ID The post id.
1974
-                             * @param object $postinfo_obj The posts info as an object.
1975
-                             * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
1976
-                             */
1977
-                            do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview);
1978
-
1979
-
1980
-                            echo geodir_show_listing_info('mapbubble');
1967
+							/**
1968
+							 * Fires before the meta info in the map info window.
1969
+							 *
1970
+							 * This can be used to add more info to the map info window before the normal meta info.
1971
+							 *
1972
+							 * @since 1.5.4
1973
+							 * @param int $ID The post id.
1974
+							 * @param object $postinfo_obj The posts info as an object.
1975
+							 * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
1976
+							 */
1977
+							do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview);
1978
+
1979
+
1980
+							echo geodir_show_listing_info('mapbubble');
1981 1981
                             
1982 1982
                                                       
1983 1983
 
1984
-                            /**
1985
-                             * Fires after the meta info in the map info window.
1986
-                             *
1987
-                             * This can be used to add more info to the map info window after the normal meta info.
1988
-                             *
1989
-                             * @since 1.4.2
1990
-                             * @param object $postinfo_obj The posts info as an object.
1991
-                             * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
1992
-                             */
1993
-                            do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
1994
-                            ?>
1984
+							/**
1985
+							 * Fires after the meta info in the map info window.
1986
+							 *
1987
+							 * This can be used to add more info to the map info window after the normal meta info.
1988
+							 *
1989
+							 * @since 1.4.2
1990
+							 * @param object $postinfo_obj The posts info as an object.
1991
+							 * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
1992
+							 */
1993
+							do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
1994
+							?>
1995 1995
                         </div>
1996 1996
                         <?php
1997 1997
 
1998
-                        if ($ID) {
1998
+						if ($ID) {
1999 1999
 
2000
-                            $post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID);
2001
-                            ?>
2000
+							$post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID);
2001
+							?>
2002 2002
                             <div class="geodir-bubble-meta-fade"></div>
2003 2003
 
2004 2004
                             <div class="geodir-bubble-meta-bottom">
@@ -2018,69 +2018,69 @@  discard block
 block discarded – undo
2018 2018
                 </div>
2019 2019
             </div>
2020 2020
             <?php
2021
-            $html = ob_get_clean();
2022
-            /**
2023
-             * Filter to change infowindow html
2024
-             *
2025
-             * You can use this filter to change infowindow html.
2026
-             *
2027
-             * @since 1.0.0
2028
-             * @package GeoDirectory
2029
-             * @param string $html Infowindow html.
2030
-             * @param object $postinfo_obj The Post object.
2031
-             * @param bool|string $post_preview Is this a post preview?
2032
-             */
2033
-            $html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview);
2034
-            return $html;
2035
-        }
2036
-    }
2021
+			$html = ob_get_clean();
2022
+			/**
2023
+			 * Filter to change infowindow html
2024
+			 *
2025
+			 * You can use this filter to change infowindow html.
2026
+			 *
2027
+			 * @since 1.0.0
2028
+			 * @package GeoDirectory
2029
+			 * @param string $html Infowindow html.
2030
+			 * @param object $postinfo_obj The Post object.
2031
+			 * @param bool|string $post_preview Is this a post preview?
2032
+			 */
2033
+			$html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview);
2034
+			return $html;
2035
+		}
2036
+	}
2037 2037
 }
2038 2038
 
2039 2039
 
2040 2040
 if (!function_exists('geodir_new_post_default_status')) {
2041
-    /**
2042
-     * Default post status for new posts.
2043
-     *
2044
-     * @since 1.0.0
2045
-     * @package GeoDirectory
2046
-     * @return string Returns the default post status for new posts. Ex: draft, publish etc.
2047
-     */
2048
-    function geodir_new_post_default_status()
2049
-    {
2050
-        if (get_option('geodir_new_post_default_status'))
2051
-            return get_option('geodir_new_post_default_status');
2052
-        else
2053
-            return 'publish';
2054
-
2055
-    }
2041
+	/**
2042
+	 * Default post status for new posts.
2043
+	 *
2044
+	 * @since 1.0.0
2045
+	 * @package GeoDirectory
2046
+	 * @return string Returns the default post status for new posts. Ex: draft, publish etc.
2047
+	 */
2048
+	function geodir_new_post_default_status()
2049
+	{
2050
+		if (get_option('geodir_new_post_default_status'))
2051
+			return get_option('geodir_new_post_default_status');
2052
+		else
2053
+			return 'publish';
2054
+
2055
+	}
2056 2056
 }
2057 2057
 
2058 2058
 if (!function_exists('geodir_change_post_status')) {
2059
-    /**
2060
-     * Change post status of a post.
2061
-     *
2062
-     * @global object $wpdb WordPress Database object.
2063
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
2064
-     * @param int|string $post_id The post ID.
2065
-     * @param string $status New post status. Ex: draft, publish etc.
2066
-     */
2067
-    function geodir_change_post_status($post_id = '', $status = '')
2068
-    {
2069
-        global $wpdb, $plugin_prefix;
2070
-
2071
-        $post_type = get_post_type($post_id);
2072
-
2073
-        $table = $plugin_prefix . $post_type . '_detail';
2074
-
2075
-        $wpdb->query(
2076
-            $wpdb->prepare(
2077
-                "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d",
2078
-                array($status, $post_id)
2079
-            )
2080
-        );
2081
-
2082
-
2083
-    }
2059
+	/**
2060
+	 * Change post status of a post.
2061
+	 *
2062
+	 * @global object $wpdb WordPress Database object.
2063
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
2064
+	 * @param int|string $post_id The post ID.
2065
+	 * @param string $status New post status. Ex: draft, publish etc.
2066
+	 */
2067
+	function geodir_change_post_status($post_id = '', $status = '')
2068
+	{
2069
+		global $wpdb, $plugin_prefix;
2070
+
2071
+		$post_type = get_post_type($post_id);
2072
+
2073
+		$table = $plugin_prefix . $post_type . '_detail';
2074
+
2075
+		$wpdb->query(
2076
+			$wpdb->prepare(
2077
+				"UPDATE " . $table . " SET post_status=%s WHERE post_id=%d",
2078
+				array($status, $post_id)
2079
+			)
2080
+		);
2081
+
2082
+
2083
+	}
2084 2084
 }
2085 2085
 
2086 2086
 /**
@@ -2094,13 +2094,13 @@  discard block
 block discarded – undo
2094 2094
  */
2095 2095
 function geodir_set_post_status($pid, $status)
2096 2096
 {
2097
-    if ($pid) {
2098
-        global $wpdb;
2099
-        $my_post = array();
2100
-        $my_post['post_status'] = $status;
2101
-        $my_post['ID'] = $pid;
2102
-        $last_postid = wp_update_post($my_post);
2103
-    }
2097
+	if ($pid) {
2098
+		global $wpdb;
2099
+		$my_post = array();
2100
+		$my_post['post_status'] = $status;
2101
+		$my_post['ID'] = $pid;
2102
+		$last_postid = wp_update_post($my_post);
2103
+	}
2104 2104
 }
2105 2105
 
2106 2106
 
@@ -2116,384 +2116,384 @@  discard block
 block discarded – undo
2116 2116
  */
2117 2117
 function geodir_update_poststatus($new_status, $old_status, $post)
2118 2118
 {
2119
-    global $wpdb;
2119
+	global $wpdb;
2120 2120
 
2121
-    $geodir_posttypes = geodir_get_posttypes();
2121
+	$geodir_posttypes = geodir_get_posttypes();
2122 2122
 
2123
-    if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) {
2123
+	if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) {
2124 2124
 
2125
-        geodir_change_post_status($post->ID, $new_status);
2126
-    }
2125
+		geodir_change_post_status($post->ID, $new_status);
2126
+	}
2127 2127
 }
2128 2128
 
2129 2129
 
2130 2130
 if (!function_exists('geodir_update_listing_info')) {
2131
-    /**
2132
-     * Update post info.
2133
-     *
2134
-     * @since 1.0.0
2135
-     * @package GeoDirectory
2136
-     * @global object $wpdb WordPress Database object.
2137
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
2138
-     * @param int $updatingpost The updating post ID.
2139
-     * @param int $temppost The temporary post ID.
2140
-     * @todo fix post_id variable
2141
-     */
2142
-    function geodir_update_listing_info($updatingpost, $temppost)
2143
-    {
2144
-
2145
-        global $wpdb, $plugin_prefix;
2146
-
2147
-        $post_type = get_post_type($post_id);
2148
-
2149
-        $table = $plugin_prefix . $post_type . '_detail';
2150
-
2151
-        $wpdb->query(
2152
-            $wpdb->prepare(
2153
-                "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d",
2154
-                array($updatingpost, $temppost)
2155
-            )
2156
-        );
2157
-
2158
-        $wpdb->query(
2159
-            $wpdb->prepare(
2160
-                "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2161
-                array($updatingpost, $temppost)
2162
-            )
2163
-        );
2164
-
2165
-        /* Update Attachments*/
2166
-
2167
-        $wpdb->query(
2168
-            $wpdb->prepare(
2169
-                "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2170
-                array($updatingpost, $temppost)
2171
-            )
2172
-        );
2173
-
2174
-    }
2131
+	/**
2132
+	 * Update post info.
2133
+	 *
2134
+	 * @since 1.0.0
2135
+	 * @package GeoDirectory
2136
+	 * @global object $wpdb WordPress Database object.
2137
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
2138
+	 * @param int $updatingpost The updating post ID.
2139
+	 * @param int $temppost The temporary post ID.
2140
+	 * @todo fix post_id variable
2141
+	 */
2142
+	function geodir_update_listing_info($updatingpost, $temppost)
2143
+	{
2144
+
2145
+		global $wpdb, $plugin_prefix;
2146
+
2147
+		$post_type = get_post_type($post_id);
2148
+
2149
+		$table = $plugin_prefix . $post_type . '_detail';
2150
+
2151
+		$wpdb->query(
2152
+			$wpdb->prepare(
2153
+				"UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d",
2154
+				array($updatingpost, $temppost)
2155
+			)
2156
+		);
2157
+
2158
+		$wpdb->query(
2159
+			$wpdb->prepare(
2160
+				"UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2161
+				array($updatingpost, $temppost)
2162
+			)
2163
+		);
2164
+
2165
+		/* Update Attachments*/
2166
+
2167
+		$wpdb->query(
2168
+			$wpdb->prepare(
2169
+				"UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2170
+				array($updatingpost, $temppost)
2171
+			)
2172
+		);
2173
+
2174
+	}
2175 2175
 }
2176 2176
 
2177 2177
 
2178 2178
 if (!function_exists('geodir_delete_listing_info')) {
2179
-    /**
2180
-     * Delete Listing info from details table for the given post id.
2181
-     *
2182
-     * @since 1.0.0
2183
-     * @package GeoDirectory
2184
-     * @global object $wpdb WordPress Database object.
2185
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
2186
-     * @param int $deleted_postid The post ID.
2187
-     * @param bool $force Optional. Do you want to force delete it? Default: false.
2188
-     * @return bool|void
2189
-     */
2190
-    function geodir_delete_listing_info($deleted_postid, $force = false)
2191
-    {
2192
-        global $wpdb, $plugin_prefix;
2193
-
2194
-        // check for multisite deletions
2195
-        if (strpos($plugin_prefix, $wpdb->prefix) !== false) {
2196
-        } else {
2197
-            return;
2198
-        }
2199
-
2200
-        $post_type = get_post_type($deleted_postid);
2201
-
2202
-        $all_postypes = geodir_get_posttypes();
2203
-
2204
-        if (!in_array($post_type, $all_postypes))
2205
-            return false;
2206
-
2207
-        $table = $plugin_prefix . $post_type . '_detail';
2208
-
2209
-        /* Delete custom post meta*/
2210
-        $wpdb->query(
2211
-            $wpdb->prepare(
2212
-                "DELETE FROM " . $table . " WHERE `post_id` = %d",
2213
-                array($deleted_postid)
2214
-            )
2215
-        );
2216
-
2217
-        /* Delete post map icons*/
2218
-
2219
-        $wpdb->query(
2220
-            $wpdb->prepare(
2221
-                "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d",
2222
-                array($deleted_postid)
2223
-            )
2224
-        );
2225
-
2226
-        /* Delete Attachments*/
2227
-        $postcurr_images = geodir_get_images($deleted_postid);
2228
-
2229
-        $wpdb->query(
2230
-            $wpdb->prepare(
2231
-                "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d",
2232
-                array($deleted_postid)
2233
-            )
2234
-        );
2235
-        geodir_remove_attachments($postcurr_images);
2236
-
2237
-    }
2179
+	/**
2180
+	 * Delete Listing info from details table for the given post id.
2181
+	 *
2182
+	 * @since 1.0.0
2183
+	 * @package GeoDirectory
2184
+	 * @global object $wpdb WordPress Database object.
2185
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
2186
+	 * @param int $deleted_postid The post ID.
2187
+	 * @param bool $force Optional. Do you want to force delete it? Default: false.
2188
+	 * @return bool|void
2189
+	 */
2190
+	function geodir_delete_listing_info($deleted_postid, $force = false)
2191
+	{
2192
+		global $wpdb, $plugin_prefix;
2193
+
2194
+		// check for multisite deletions
2195
+		if (strpos($plugin_prefix, $wpdb->prefix) !== false) {
2196
+		} else {
2197
+			return;
2198
+		}
2199
+
2200
+		$post_type = get_post_type($deleted_postid);
2201
+
2202
+		$all_postypes = geodir_get_posttypes();
2203
+
2204
+		if (!in_array($post_type, $all_postypes))
2205
+			return false;
2206
+
2207
+		$table = $plugin_prefix . $post_type . '_detail';
2208
+
2209
+		/* Delete custom post meta*/
2210
+		$wpdb->query(
2211
+			$wpdb->prepare(
2212
+				"DELETE FROM " . $table . " WHERE `post_id` = %d",
2213
+				array($deleted_postid)
2214
+			)
2215
+		);
2216
+
2217
+		/* Delete post map icons*/
2218
+
2219
+		$wpdb->query(
2220
+			$wpdb->prepare(
2221
+				"DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d",
2222
+				array($deleted_postid)
2223
+			)
2224
+		);
2225
+
2226
+		/* Delete Attachments*/
2227
+		$postcurr_images = geodir_get_images($deleted_postid);
2228
+
2229
+		$wpdb->query(
2230
+			$wpdb->prepare(
2231
+				"DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d",
2232
+				array($deleted_postid)
2233
+			)
2234
+		);
2235
+		geodir_remove_attachments($postcurr_images);
2236
+
2237
+	}
2238 2238
 }
2239 2239
 
2240 2240
 
2241 2241
 if (!function_exists('geodir_add_to_favorite')) {
2242
-    /**
2243
-     * This function would add listing to favorite listing.
2244
-     *
2245
-     * @since 1.0.0
2246
-     * @package GeoDirectory
2247
-     * @global object $current_user Current user object.
2248
-     * @param int $post_id The post ID.
2249
-     */
2250
-    function geodir_add_to_favorite($post_id)
2251
-    {
2252
-
2253
-        global $current_user;
2254
-
2255
-        /**
2256
-         * Filter to modify "Unfavorite" text
2257
-         *
2258
-         * You can use this filter to rename "Unfavorite" text to something else.
2259
-         *
2260
-         * @since 1.0.0
2261
-         * @package GeoDirectory
2262
-         */
2263
-        $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2264
-
2265
-        /**
2266
-         * Filter to modify "Remove from Favorites" text
2267
-         *
2268
-         * You can use this filter to rename "Remove from Favorites" text to something else.
2269
-         *
2270
-         * @since 1.0.0
2271
-         * @package GeoDirectory
2272
-         */
2273
-        $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2274
-
2275
-        /**
2276
-         * Filter to modify "fa fa-heart" icon
2277
-         *
2278
-         * You can use this filter to change "fa fa-heart" icon to something else.
2279
-         *
2280
-         * @since 1.0.0
2281
-         * @package GeoDirectory
2282
-         */
2283
-        $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2284
-
2285
-        $user_meta_data = array();
2286
-        $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2287
-
2288
-        if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) {
2289
-            $user_meta_data[] = $post_id;
2290
-        }
2291
-
2292
-        update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2293
-
2294
-        /**
2295
-         * Called before adding the post from favourites.
2296
-         *
2297
-         * @since 1.0.0
2298
-         * @package GeoDirectory
2299
-         * @param int $post_id The post ID.
2300
-         */
2301
-        do_action('geodir_before_add_from_favorite', $post_id);
2302
-
2303
-        echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>';
2242
+	/**
2243
+	 * This function would add listing to favorite listing.
2244
+	 *
2245
+	 * @since 1.0.0
2246
+	 * @package GeoDirectory
2247
+	 * @global object $current_user Current user object.
2248
+	 * @param int $post_id The post ID.
2249
+	 */
2250
+	function geodir_add_to_favorite($post_id)
2251
+	{
2252
+
2253
+		global $current_user;
2254
+
2255
+		/**
2256
+		 * Filter to modify "Unfavorite" text
2257
+		 *
2258
+		 * You can use this filter to rename "Unfavorite" text to something else.
2259
+		 *
2260
+		 * @since 1.0.0
2261
+		 * @package GeoDirectory
2262
+		 */
2263
+		$remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2264
+
2265
+		/**
2266
+		 * Filter to modify "Remove from Favorites" text
2267
+		 *
2268
+		 * You can use this filter to rename "Remove from Favorites" text to something else.
2269
+		 *
2270
+		 * @since 1.0.0
2271
+		 * @package GeoDirectory
2272
+		 */
2273
+		$unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2274
+
2275
+		/**
2276
+		 * Filter to modify "fa fa-heart" icon
2277
+		 *
2278
+		 * You can use this filter to change "fa fa-heart" icon to something else.
2279
+		 *
2280
+		 * @since 1.0.0
2281
+		 * @package GeoDirectory
2282
+		 */
2283
+		$favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2284
+
2285
+		$user_meta_data = array();
2286
+		$user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2287
+
2288
+		if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) {
2289
+			$user_meta_data[] = $post_id;
2290
+		}
2291
+
2292
+		update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2293
+
2294
+		/**
2295
+		 * Called before adding the post from favourites.
2296
+		 *
2297
+		 * @since 1.0.0
2298
+		 * @package GeoDirectory
2299
+		 * @param int $post_id The post ID.
2300
+		 */
2301
+		do_action('geodir_before_add_from_favorite', $post_id);
2302
+
2303
+		echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>';
2304
+
2305
+		/**
2306
+		 * Called after adding the post from favourites.
2307
+		 *
2308
+		 * @since 1.0.0
2309
+		 * @package GeoDirectory
2310
+		 * @param int $post_id The post ID.
2311
+		 */
2312
+		do_action('geodir_after_add_from_favorite', $post_id);
2304 2313
 
2305
-        /**
2306
-         * Called after adding the post from favourites.
2307
-         *
2308
-         * @since 1.0.0
2309
-         * @package GeoDirectory
2310
-         * @param int $post_id The post ID.
2311
-         */
2312
-        do_action('geodir_after_add_from_favorite', $post_id);
2313
-
2314
-    }
2314
+	}
2315 2315
 }
2316 2316
 
2317 2317
 if (!function_exists('geodir_remove_from_favorite')) {
2318
-    /**
2319
-     * This function would remove the favourited property earlier.
2320
-     *
2321
-     * @since 1.0.0
2322
-     * @package GeoDirectory
2323
-     * @global object $current_user Current user object.
2324
-     * @param int $post_id The post ID.
2325
-     */
2326
-    function geodir_remove_from_favorite($post_id)
2327
-    {
2328
-        global $current_user;
2329
-
2330
-        /**
2331
-         * Filter to modify "Add to Favorites" text
2332
-         *
2333
-         * You can use this filter to rename "Add to Favorites" text to something else.
2334
-         *
2335
-         * @since 1.0.0
2336
-         * @package GeoDirectory
2337
-         */
2338
-        $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2339
-
2340
-        /**
2341
-         * Filter to modify "Favourite" text
2342
-         *
2343
-         * You can use this filter to rename "Favourite" text to something else.
2344
-         *
2345
-         * @since 1.0.0
2346
-         * @package GeoDirectory
2347
-         */
2348
-        $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2349
-
2350
-        /**
2351
-         * Filter to modify "fa fa-heart" icon
2352
-         *
2353
-         * You can use this filter to change "fa fa-heart" icon to something else.
2354
-         *
2355
-         * @since 1.0.0
2356
-         * @package GeoDirectory
2357
-         */
2358
-        $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2359
-
2360
-        $user_meta_data = array();
2361
-        $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2362
-
2363
-        if (!empty($user_meta_data)) {
2318
+	/**
2319
+	 * This function would remove the favourited property earlier.
2320
+	 *
2321
+	 * @since 1.0.0
2322
+	 * @package GeoDirectory
2323
+	 * @global object $current_user Current user object.
2324
+	 * @param int $post_id The post ID.
2325
+	 */
2326
+	function geodir_remove_from_favorite($post_id)
2327
+	{
2328
+		global $current_user;
2329
+
2330
+		/**
2331
+		 * Filter to modify "Add to Favorites" text
2332
+		 *
2333
+		 * You can use this filter to rename "Add to Favorites" text to something else.
2334
+		 *
2335
+		 * @since 1.0.0
2336
+		 * @package GeoDirectory
2337
+		 */
2338
+		$add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2339
+
2340
+		/**
2341
+		 * Filter to modify "Favourite" text
2342
+		 *
2343
+		 * You can use this filter to rename "Favourite" text to something else.
2344
+		 *
2345
+		 * @since 1.0.0
2346
+		 * @package GeoDirectory
2347
+		 */
2348
+		$favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2349
+
2350
+		/**
2351
+		 * Filter to modify "fa fa-heart" icon
2352
+		 *
2353
+		 * You can use this filter to change "fa fa-heart" icon to something else.
2354
+		 *
2355
+		 * @since 1.0.0
2356
+		 * @package GeoDirectory
2357
+		 */
2358
+		$favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2359
+
2360
+		$user_meta_data = array();
2361
+		$user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2362
+
2363
+		if (!empty($user_meta_data)) {
2364
+
2365
+			if (($key = array_search($post_id, $user_meta_data)) !== false) {
2366
+				unset($user_meta_data[$key]);
2367
+			}
2364 2368
 
2365
-            if (($key = array_search($post_id, $user_meta_data)) !== false) {
2366
-                unset($user_meta_data[$key]);
2367
-            }
2369
+		}
2368 2370
 
2369
-        }
2371
+		update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2370 2372
 
2371
-        update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2373
+		/**
2374
+		 * Called before removing the post from favourites.
2375
+		 *
2376
+		 * @since 1.0.0
2377
+		 * @package GeoDirectory
2378
+		 * @param int $post_id The post ID.
2379
+		 */
2380
+		do_action('geodir_before_remove_from_favorite', $post_id);
2372 2381
 
2373
-        /**
2374
-         * Called before removing the post from favourites.
2375
-         *
2376
-         * @since 1.0.0
2377
-         * @package GeoDirectory
2378
-         * @param int $post_id The post ID.
2379
-         */
2380
-        do_action('geodir_before_remove_from_favorite', $post_id);
2382
+		echo '<a href="javascript:void(0);"  title="' . $add_favourite_text . '" class="geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>';
2381 2383
 
2382
-        echo '<a href="javascript:void(0);"  title="' . $add_favourite_text . '" class="geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>';
2384
+		/**
2385
+		 * Called after removing the post from favourites.
2386
+		 *
2387
+		 * @since 1.0.0
2388
+		 * @package GeoDirectory
2389
+		 * @param int $post_id The post ID.
2390
+		 */
2391
+		do_action('geodir_after_remove_from_favorite', $post_id);
2383 2392
 
2384
-        /**
2385
-         * Called after removing the post from favourites.
2386
-         *
2387
-         * @since 1.0.0
2388
-         * @package GeoDirectory
2389
-         * @param int $post_id The post ID.
2390
-         */
2391
-        do_action('geodir_after_remove_from_favorite', $post_id);
2392
-
2393
-    }
2393
+	}
2394 2394
 }
2395 2395
 
2396 2396
 if (!function_exists('geodir_favourite_html')) {
2397
-    /**
2398
-     * This function would display the html content for add to favorite or remove from favorite.
2399
-     *
2400
-     * @since 1.0.0
2401
-     * @package GeoDirectory
2402
-     * @global object $current_user Current user object.
2403
-     * @global object $post The current post object.
2404
-     * @param int $user_id The user ID.
2405
-     * @param int $post_id The post ID.
2406
-     */
2407
-    function geodir_favourite_html($user_id, $post_id)
2408
-    {
2409
-
2410
-        global $current_user, $post;
2411
-
2412
-        /**
2413
-         * Filter to modify "Add to Favorites" text
2414
-         *
2415
-         * You can use this filter to rename "Add to Favorites" text to something else.
2416
-         *
2417
-         * @since 1.0.0
2418
-         * @package GeoDirectory
2419
-         */
2420
-        $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2421
-
2422
-        /**
2423
-         * Filter to modify "Favourite" text
2424
-         *
2425
-         * You can use this filter to rename "Favourite" text to something else.
2426
-         *
2427
-         * @since 1.0.0
2428
-         * @package GeoDirectory
2429
-         */
2430
-        $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2431
-
2432
-        /**
2433
-         * Filter to modify "Unfavorite" text
2434
-         *
2435
-         * You can use this filter to rename "Unfavorite" text to something else.
2436
-         *
2437
-         * @since 1.0.0
2438
-         * @package GeoDirectory
2439
-         */
2440
-        $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2441
-
2442
-        /**
2443
-         * Filter to modify "Remove from Favorites" text
2444
-         *
2445
-         * You can use this filter to rename "Remove from Favorites" text to something else.
2446
-         *
2447
-         * @since 1.0.0
2448
-         * @package GeoDirectory
2449
-         */
2450
-        $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2451
-
2452
-        /**
2453
-         * Filter to modify "fa fa-heart" icon
2454
-         *
2455
-         * You can use this filter to change "fa fa-heart" icon to something else.
2456
-         *
2457
-         * @since 1.0.0
2458
-         * @package GeoDirectory
2459
-         */
2460
-        $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2461
-
2462
-        /**
2463
-         * Filter to modify "fa fa-heart" icon for "remove from favorites" link
2464
-         *
2465
-         * You can use this filter to change "fa fa-heart" icon to something else.
2466
-         *
2467
-         * @since 1.0.0
2468
-         * @package GeoDirectory
2469
-         */
2470
-        $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
2471
-
2472
-        $user_meta_data = '';
2473
-        if (isset($current_user->data->ID))
2474
-            $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2475
-
2476
-        if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
2477
-            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"  ><a
2397
+	/**
2398
+	 * This function would display the html content for add to favorite or remove from favorite.
2399
+	 *
2400
+	 * @since 1.0.0
2401
+	 * @package GeoDirectory
2402
+	 * @global object $current_user Current user object.
2403
+	 * @global object $post The current post object.
2404
+	 * @param int $user_id The user ID.
2405
+	 * @param int $post_id The post ID.
2406
+	 */
2407
+	function geodir_favourite_html($user_id, $post_id)
2408
+	{
2409
+
2410
+		global $current_user, $post;
2411
+
2412
+		/**
2413
+		 * Filter to modify "Add to Favorites" text
2414
+		 *
2415
+		 * You can use this filter to rename "Add to Favorites" text to something else.
2416
+		 *
2417
+		 * @since 1.0.0
2418
+		 * @package GeoDirectory
2419
+		 */
2420
+		$add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2421
+
2422
+		/**
2423
+		 * Filter to modify "Favourite" text
2424
+		 *
2425
+		 * You can use this filter to rename "Favourite" text to something else.
2426
+		 *
2427
+		 * @since 1.0.0
2428
+		 * @package GeoDirectory
2429
+		 */
2430
+		$favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2431
+
2432
+		/**
2433
+		 * Filter to modify "Unfavorite" text
2434
+		 *
2435
+		 * You can use this filter to rename "Unfavorite" text to something else.
2436
+		 *
2437
+		 * @since 1.0.0
2438
+		 * @package GeoDirectory
2439
+		 */
2440
+		$remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2441
+
2442
+		/**
2443
+		 * Filter to modify "Remove from Favorites" text
2444
+		 *
2445
+		 * You can use this filter to rename "Remove from Favorites" text to something else.
2446
+		 *
2447
+		 * @since 1.0.0
2448
+		 * @package GeoDirectory
2449
+		 */
2450
+		$unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2451
+
2452
+		/**
2453
+		 * Filter to modify "fa fa-heart" icon
2454
+		 *
2455
+		 * You can use this filter to change "fa fa-heart" icon to something else.
2456
+		 *
2457
+		 * @since 1.0.0
2458
+		 * @package GeoDirectory
2459
+		 */
2460
+		$favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2461
+
2462
+		/**
2463
+		 * Filter to modify "fa fa-heart" icon for "remove from favorites" link
2464
+		 *
2465
+		 * You can use this filter to change "fa fa-heart" icon to something else.
2466
+		 *
2467
+		 * @since 1.0.0
2468
+		 * @package GeoDirectory
2469
+		 */
2470
+		$unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
2471
+
2472
+		$user_meta_data = '';
2473
+		if (isset($current_user->data->ID))
2474
+			$user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2475
+
2476
+		if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
2477
+			?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"  ><a
2478 2478
                 class="geodir-removetofav-icon" href="javascript:void(0);"
2479 2479
                 onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');"
2480 2480
                 title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?>
2481 2481
             </a>   </span><?php
2482 2482
 
2483
-        } else {
2483
+		} else {
2484 2484
 
2485
-            if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
2486
-                $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\'';
2487
-            } else
2488
-                $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2485
+			if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
2486
+				$script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\'';
2487
+			} else
2488
+				$script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2489 2489
 
2490
-            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon"
2490
+			?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon"
2491 2491
                                                                                         href="javascript:void(0);"
2492 2492
                                                                                         onclick="<?php echo $script_text;?>"
2493 2493
                                                                                         title="<?php echo $add_favourite_text;?>"><i
2494 2494
                     class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span>
2495 2495
         <?php }
2496
-    }
2496
+	}
2497 2497
 }
2498 2498
 
2499 2499
 
@@ -2510,54 +2510,54 @@  discard block
 block discarded – undo
2510 2510
 function geodir_get_cat_postcount($term = array())
2511 2511
 {
2512 2512
 
2513
-    if (!empty($term)) {
2513
+	if (!empty($term)) {
2514 2514
 
2515
-        global $wpdb, $plugin_prefix;
2515
+		global $wpdb, $plugin_prefix;
2516 2516
 
2517
-        $where = '';
2518
-        $join = '';
2519
-        if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') {
2520
-            $taxonomy_obj = get_taxonomy($term->taxonomy);
2517
+		$where = '';
2518
+		$join = '';
2519
+		if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') {
2520
+			$taxonomy_obj = get_taxonomy($term->taxonomy);
2521 2521
 
2522
-            $post_type = $taxonomy_obj->object_type[0];
2522
+			$post_type = $taxonomy_obj->object_type[0];
2523 2523
 
2524
-            $table = $plugin_prefix . $post_type . '_detail';
2524
+			$table = $plugin_prefix . $post_type . '_detail';
2525 2525
 
2526
-            /**
2527
-             * Filter to modify the 'join' query
2528
-             *
2529
-             * @since 1.0.0
2530
-             * @package GeoDirectory
2531
-             * @param object|array $term category / term object that need to be processed.
2532
-             * @param string $join The join query.
2533
-             */
2534
-            $join = apply_filters('geodir_cat_post_count_join', $join, $term);
2526
+			/**
2527
+			 * Filter to modify the 'join' query
2528
+			 *
2529
+			 * @since 1.0.0
2530
+			 * @package GeoDirectory
2531
+			 * @param object|array $term category / term object that need to be processed.
2532
+			 * @param string $join The join query.
2533
+			 */
2534
+			$join = apply_filters('geodir_cat_post_count_join', $join, $term);
2535 2535
 
2536
-            /**
2537
-             * Filter to modify the 'where' query
2538
-             *
2539
-             * @since 1.0.0
2540
-             * @package GeoDirectory
2541
-             * @param object|array $term category / term object that need to be processed.
2542
-             * @param string $where The where query.
2543
-             */
2544
-            $where = apply_filters('geodir_cat_post_count_where', $where, $term);
2536
+			/**
2537
+			 * Filter to modify the 'where' query
2538
+			 *
2539
+			 * @since 1.0.0
2540
+			 * @package GeoDirectory
2541
+			 * @param object|array $term category / term object that need to be processed.
2542
+			 * @param string $where The where query.
2543
+			 */
2544
+			$where = apply_filters('geodir_cat_post_count_where', $where, $term);
2545 2545
 
2546
-            $count_query = "SELECT count(post_id) FROM
2546
+			$count_query = "SELECT count(post_id) FROM
2547 2547
 							" . $table . " as pd " . $join . "
2548 2548
 							WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
2549 2549
 
2550
-            $cat_post_count = $wpdb->get_var($count_query);
2551
-            if (empty($cat_post_count) || is_wp_error($cat_post_count))
2552
-                $cat_post_count = 0;
2550
+			$cat_post_count = $wpdb->get_var($count_query);
2551
+			if (empty($cat_post_count) || is_wp_error($cat_post_count))
2552
+				$cat_post_count = 0;
2553 2553
 
2554
-            return $cat_post_count;
2554
+			return $cat_post_count;
2555 2555
 
2556
-        } else
2556
+		} else
2557 2557
 
2558
-            return $term->count;
2559
-    }
2560
-    return false;
2558
+			return $term->count;
2559
+	}
2560
+	return false;
2561 2561
 
2562 2562
 }
2563 2563
 
@@ -2570,17 +2570,17 @@  discard block
 block discarded – undo
2570 2570
  */
2571 2571
 function geodir_allow_post_type_frontend()
2572 2572
 {
2573
-    $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
2573
+	$geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
2574 2574
 
2575
-    if (!is_admin() && isset($_REQUEST['listing_type'])
2576
-        && !empty($geodir_allow_posttype_frontend)
2577
-        && !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend)
2578
-    ) {
2575
+	if (!is_admin() && isset($_REQUEST['listing_type'])
2576
+		&& !empty($geodir_allow_posttype_frontend)
2577
+		&& !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend)
2578
+	) {
2579 2579
 
2580
-        wp_redirect(home_url());
2581
-        exit;
2580
+		wp_redirect(home_url());
2581
+		exit;
2582 2582
 
2583
-    }
2583
+	}
2584 2584
 
2585 2585
 }
2586 2586
 
@@ -2597,20 +2597,20 @@  discard block
 block discarded – undo
2597 2597
  */
2598 2598
 function geodir_excerpt_length($length)
2599 2599
 {
2600
-    global $wp_query, $geodir_is_widget_listing;
2600
+	global $wp_query, $geodir_is_widget_listing;
2601 2601
 	if ($geodir_is_widget_listing) {
2602 2602
 		return $length;
2603 2603
 	}
2604 2604
 	
2605
-    if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
2606
-        $length = get_option('geodir_desc_word_limit');
2607
-    elseif (get_query_var('excerpt_length'))
2608
-        $length = get_query_var('excerpt_length');
2605
+	if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
2606
+		$length = get_option('geodir_desc_word_limit');
2607
+	elseif (get_query_var('excerpt_length'))
2608
+		$length = get_query_var('excerpt_length');
2609 2609
 
2610
-    if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
2611
-        $length = get_option('geodir_author_desc_word_limit');
2610
+	if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
2611
+		$length = get_option('geodir_author_desc_word_limit');
2612 2612
 
2613
-    return $length;
2613
+	return $length;
2614 2614
 }
2615 2615
 
2616 2616
 /**
@@ -2625,13 +2625,13 @@  discard block
 block discarded – undo
2625 2625
  */
2626 2626
 function geodir_excerpt_more($more)
2627 2627
 {
2628
-    global $post;
2629
-    $all_postypes = geodir_get_posttypes();
2630
-    if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
2631
-        return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>';
2632
-    }
2628
+	global $post;
2629
+	$all_postypes = geodir_get_posttypes();
2630
+	if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
2631
+		return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>';
2632
+	}
2633 2633
 
2634
-    return $more;
2634
+	return $more;
2635 2635
 }
2636 2636
 
2637 2637
 
@@ -2648,63 +2648,63 @@  discard block
 block discarded – undo
2648 2648
  */
2649 2649
 function geodir_update_markers_oncatedit($term_id, $tt_id, $taxonomy)
2650 2650
 {
2651
-    global $plugin_prefix, $wpdb;
2651
+	global $plugin_prefix, $wpdb;
2652 2652
 
2653
-    $gd_taxonomies = geodir_get_taxonomies();
2653
+	$gd_taxonomies = geodir_get_taxonomies();
2654 2654
 
2655
-    if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
2655
+	if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
2656 2656
 
2657
-        $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy);
2658
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
2657
+		$geodir_post_type = geodir_get_taxonomy_posttype($taxonomy);
2658
+		$table = $plugin_prefix . $geodir_post_type . '_detail';
2659 2659
 
2660
-        $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']);
2661
-        $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png';
2660
+		$path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']);
2661
+		$term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png';
2662 2662
 
2663
-        $posts = $wpdb->get_results(
2664
-            $wpdb->prepare(
2665
-                "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ",
2666
-                array($term_id, $taxonomy)
2667
-            )
2668
-        );
2663
+		$posts = $wpdb->get_results(
2664
+			$wpdb->prepare(
2665
+				"SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ",
2666
+				array($term_id, $taxonomy)
2667
+			)
2668
+		);
2669 2669
 
2670
-        if (!empty($posts)):
2671
-            foreach ($posts as $post_obj) {
2670
+		if (!empty($posts)):
2671
+			foreach ($posts as $post_obj) {
2672 2672
 
2673
-                $lat = $post_obj->post_latitude;
2674
-                $lng = $post_obj->post_longitude;
2673
+				$lat = $post_obj->post_latitude;
2674
+				$lng = $post_obj->post_longitude;
2675 2675
 
2676
-                $json = '{';
2677
-                $json .= '"id":"' . $post_obj->post_id . '",';
2678
-                $json .= '"lat_pos": "' . $lat . '",';
2679
-                $json .= '"long_pos": "' . $lng . '",';
2680
-                $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",';
2681
-                $json .= '"icon":"' . $term_icon . '",';
2682
-                $json .= '"group":"catgroup' . $term_id . '"';
2683
-                $json .= '}';
2676
+				$json = '{';
2677
+				$json .= '"id":"' . $post_obj->post_id . '",';
2678
+				$json .= '"lat_pos": "' . $lat . '",';
2679
+				$json .= '"long_pos": "' . $lng . '",';
2680
+				$json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",';
2681
+				$json .= '"icon":"' . $term_icon . '",';
2682
+				$json .= '"group":"catgroup' . $term_id . '"';
2683
+				$json .= '}';
2684 2684
 
2685
-                if ($post_obj->default_category == $term_id) {
2685
+				if ($post_obj->default_category == $term_id) {
2686 2686
 
2687
-                    $wpdb->query(
2688
-                        $wpdb->prepare(
2689
-                            "UPDATE " . $table . " SET marker_json = %s where post_id = %d",
2690
-                            array($json, $post_obj->post_id)
2691
-                        )
2692
-                    );
2693
-                }
2687
+					$wpdb->query(
2688
+						$wpdb->prepare(
2689
+							"UPDATE " . $table . " SET marker_json = %s where post_id = %d",
2690
+							array($json, $post_obj->post_id)
2691
+						)
2692
+					);
2693
+				}
2694 2694
 
2695
-                $wpdb->query(
2696
-                    $wpdb->prepare(
2697
-                        "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d",
2698
-                        array($json, $post_obj->post_id, $term_id)
2699
-                    )
2700
-                );
2695
+				$wpdb->query(
2696
+					$wpdb->prepare(
2697
+						"UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d",
2698
+						array($json, $post_obj->post_id, $term_id)
2699
+					)
2700
+				);
2701 2701
 
2702
-            }
2702
+			}
2703 2703
 
2704 2704
 
2705
-        endif;
2705
+		endif;
2706 2706
 
2707
-    }
2707
+	}
2708 2708
 
2709 2709
 }
2710 2710
 
@@ -2718,14 +2718,14 @@  discard block
 block discarded – undo
2718 2718
  */
2719 2719
 function geodir_get_listing_author($listing_id = '')
2720 2720
 {
2721
-    if ($listing_id == '') {
2722
-        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
2723
-            $listing_id = $_REQUEST['pid'];
2724
-        }
2725
-    }
2726
-    $listing = get_post(strip_tags($listing_id));
2727
-    $listing_author_id = $listing->post_author;
2728
-    return $listing_author_id;
2721
+	if ($listing_id == '') {
2722
+		if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
2723
+			$listing_id = $_REQUEST['pid'];
2724
+		}
2725
+	}
2726
+	$listing = get_post(strip_tags($listing_id));
2727
+	$listing_author_id = $listing->post_author;
2728
+	return $listing_author_id;
2729 2729
 }
2730 2730
 
2731 2731
 
@@ -2740,11 +2740,11 @@  discard block
 block discarded – undo
2740 2740
  */
2741 2741
 function geodir_lisiting_belong_to_user($listing_id, $user_id)
2742 2742
 {
2743
-    $listing_author_id = geodir_get_listing_author($listing_id);
2744
-    if ($listing_author_id == $user_id)
2745
-        return true;
2746
-    else
2747
-        return false;
2743
+	$listing_author_id = geodir_get_listing_author($listing_id);
2744
+	if ($listing_author_id == $user_id)
2745
+		return true;
2746
+	else
2747
+		return false;
2748 2748
 
2749 2749
 }
2750 2750
 
@@ -2760,17 +2760,17 @@  discard block
 block discarded – undo
2760 2760
  */
2761 2761
 function geodir_listing_belong_to_current_user($listing_id = '', $exclude_admin = true)
2762 2762
 {
2763
-    global $current_user;
2764
-    if ($exclude_admin) {
2765
-        foreach ($current_user->caps as $key => $caps) {
2766
-            if (geodir_strtolower($key) == 'administrator') {
2767
-                return true;
2768
-                break;
2769
-            }
2770
-        }
2771
-    }
2772
-
2773
-    return geodir_lisiting_belong_to_user($listing_id, $current_user->ID);
2763
+	global $current_user;
2764
+	if ($exclude_admin) {
2765
+		foreach ($current_user->caps as $key => $caps) {
2766
+			if (geodir_strtolower($key) == 'administrator') {
2767
+				return true;
2768
+				break;
2769
+			}
2770
+		}
2771
+	}
2772
+
2773
+	return geodir_lisiting_belong_to_user($listing_id, $current_user->ID);
2774 2774
 }
2775 2775
 
2776 2776
 
@@ -2786,17 +2786,17 @@  discard block
 block discarded – undo
2786 2786
 function geodir_only_supportable_attachments_remove($file)
2787 2787
 {
2788 2788
 
2789
-    global $wpdb;
2789
+	global $wpdb;
2790 2790
 
2791
-    $matches = array();
2791
+	$matches = array();
2792 2792
 
2793
-    $pattern = '/-\d+x\d+\./';
2794
-    preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE);
2793
+	$pattern = '/-\d+x\d+\./';
2794
+	preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE);
2795 2795
 
2796
-    if (empty($matches))
2797
-        return '';
2798
-    else
2799
-        return $file;
2796
+	if (empty($matches))
2797
+		return '';
2798
+	else
2799
+		return $file;
2800 2800
 
2801 2801
 }
2802 2802
 
@@ -2813,78 +2813,78 @@  discard block
 block discarded – undo
2813 2813
 function geodir_set_wp_featured_image($post_id)
2814 2814
 {
2815 2815
 
2816
-    global $wpdb, $plugin_prefix;
2817
-    $uploads = wp_upload_dir();
2816
+	global $wpdb, $plugin_prefix;
2817
+	$uploads = wp_upload_dir();
2818 2818
 //	print_r($uploads ) ;
2819
-    $post_first_image = $wpdb->get_results(
2820
-        $wpdb->prepare(
2821
-            "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1  ", array($post_id)
2822
-        )
2823
-    );
2824
-
2825
-    $old_attachment_name = '';
2826
-    $post_thumbnail_id = '';
2827
-    if (has_post_thumbnail($post_id)) {
2819
+	$post_first_image = $wpdb->get_results(
2820
+		$wpdb->prepare(
2821
+			"SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1  ", array($post_id)
2822
+		)
2823
+	);
2828 2824
 
2829
-        if (has_post_thumbnail($post_id)) {
2825
+	$old_attachment_name = '';
2826
+	$post_thumbnail_id = '';
2827
+	if (has_post_thumbnail($post_id)) {
2830 2828
 
2831
-            $post_thumbnail_id = get_post_thumbnail_id($post_id);
2829
+		if (has_post_thumbnail($post_id)) {
2832 2830
 
2833
-            $old_attachment_name = basename(get_attached_file($post_thumbnail_id));
2831
+			$post_thumbnail_id = get_post_thumbnail_id($post_id);
2834 2832
 
2835
-        }
2836
-    }
2833
+			$old_attachment_name = basename(get_attached_file($post_thumbnail_id));
2837 2834
 
2838
-    if (!empty($post_first_image)) {
2835
+		}
2836
+	}
2839 2837
 
2840
-        $post_type = get_post_type($post_id);
2838
+	if (!empty($post_first_image)) {
2841 2839
 
2842
-        $table_name = $plugin_prefix . $post_type . '_detail';
2840
+		$post_type = get_post_type($post_id);
2843 2841
 
2844
-        $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
2842
+		$table_name = $plugin_prefix . $post_type . '_detail';
2845 2843
 
2846
-        $new_attachment_name = basename($post_first_image[0]->file);
2844
+		$wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
2847 2845
 
2848
-        if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) {
2846
+		$new_attachment_name = basename($post_first_image[0]->file);
2849 2847
 
2850
-            if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
2848
+		if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) {
2851 2849
 
2852
-                add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove');
2850
+			if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
2853 2851
 
2854
-                wp_delete_attachment($post_thumbnail_id);
2852
+				add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove');
2855 2853
 
2856
-            }
2857
-            $filename = $uploads['basedir'] . $post_first_image[0]->file;
2854
+				wp_delete_attachment($post_thumbnail_id);
2858 2855
 
2859
-            $attachment = array(
2860
-                'post_mime_type' => $post_first_image[0]->mime_type,
2861
-                'guid' => $uploads['baseurl'] . $post_first_image[0]->file,
2862
-                'post_parent' => $post_id,
2863
-                'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
2864
-                'post_content' => ''
2865
-            );
2856
+			}
2857
+			$filename = $uploads['basedir'] . $post_first_image[0]->file;
2858
+
2859
+			$attachment = array(
2860
+				'post_mime_type' => $post_first_image[0]->mime_type,
2861
+				'guid' => $uploads['baseurl'] . $post_first_image[0]->file,
2862
+				'post_parent' => $post_id,
2863
+				'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
2864
+				'post_content' => ''
2865
+			);
2866 2866
 
2867 2867
 
2868
-            $id = wp_insert_attachment($attachment, $filename, $post_id);
2868
+			$id = wp_insert_attachment($attachment, $filename, $post_id);
2869 2869
 
2870
-            if (!is_wp_error($id)) {
2870
+			if (!is_wp_error($id)) {
2871 2871
 
2872
-                set_post_thumbnail($post_id, $id);
2872
+				set_post_thumbnail($post_id, $id);
2873 2873
 
2874
-                require_once(ABSPATH . 'wp-admin/includes/image.php');
2875
-                wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
2874
+				require_once(ABSPATH . 'wp-admin/includes/image.php');
2875
+				wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
2876 2876
 
2877
-            }
2877
+			}
2878 2878
 
2879
-        }
2879
+		}
2880 2880
 
2881
-    } else {
2882
-        //set_post_thumbnail($post_id,-1);
2881
+	} else {
2882
+		//set_post_thumbnail($post_id,-1);
2883 2883
 
2884
-        if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete'))
2885
-            wp_delete_attachment($post_thumbnail_id);
2884
+		if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete'))
2885
+			wp_delete_attachment($post_thumbnail_id);
2886 2886
 
2887
-    }
2887
+	}
2888 2888
 }
2889 2889
 
2890 2890
 
@@ -2899,53 +2899,53 @@  discard block
 block discarded – undo
2899 2899
  */
2900 2900
 function gd_copy_original_translation()
2901 2901
 {
2902
-    if (function_exists('icl_object_id')) {
2903
-        global $wpdb, $table_prefix, $plugin_prefix;
2904
-        $post_id = absint($_POST['post_id']);
2905
-        $upload_dir = wp_upload_dir();
2906
-        $post_type = get_post_type($_POST['post_id']);
2907
-        $table = $plugin_prefix . $post_type . '_detail';
2908
-
2909
-        $post_arr = $wpdb->get_results($wpdb->prepare(
2910
-            "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1",
2911
-            array($post_id)
2912
-        )
2913
-            , ARRAY_A);
2914
-
2915
-        $arrImages = $wpdb->get_results(
2916
-            $wpdb->prepare(
2917
-                "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ",
2918
-                array('%image%', $post_id)
2919
-            )
2920
-        );
2921
-        if ($arrImages) {
2922
-            $image_arr = array();
2923
-            foreach ($arrImages as $img) {
2924
-                $image_arr[] = $upload_dir['baseurl'] . $img->file;
2925
-            }
2926
-            $comma_separated = implode(",", $image_arr);
2927
-            $post_arr[0]['post_images'] = $comma_separated;
2928
-        }
2929
-
2930
-
2931
-        $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category'];
2932
-        $cat_arr = array_filter(explode(",", $cats));
2933
-        $trans_cat = array();
2934
-        foreach ($cat_arr as $cat) {
2935
-            $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false);
2936
-        }
2937
-
2938
-
2939
-        $post_arr[0]['categories'] = array_filter($trans_cat);
2902
+	if (function_exists('icl_object_id')) {
2903
+		global $wpdb, $table_prefix, $plugin_prefix;
2904
+		$post_id = absint($_POST['post_id']);
2905
+		$upload_dir = wp_upload_dir();
2906
+		$post_type = get_post_type($_POST['post_id']);
2907
+		$table = $plugin_prefix . $post_type . '_detail';
2908
+
2909
+		$post_arr = $wpdb->get_results($wpdb->prepare(
2910
+			"SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1",
2911
+			array($post_id)
2912
+		)
2913
+			, ARRAY_A);
2914
+
2915
+		$arrImages = $wpdb->get_results(
2916
+			$wpdb->prepare(
2917
+				"SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ",
2918
+				array('%image%', $post_id)
2919
+			)
2920
+		);
2921
+		if ($arrImages) {
2922
+			$image_arr = array();
2923
+			foreach ($arrImages as $img) {
2924
+				$image_arr[] = $upload_dir['baseurl'] . $img->file;
2925
+			}
2926
+			$comma_separated = implode(",", $image_arr);
2927
+			$post_arr[0]['post_images'] = $comma_separated;
2928
+		}
2929
+
2930
+
2931
+		$cats = $post_arr[0][$post_arr[0]['post_type'] . 'category'];
2932
+		$cat_arr = array_filter(explode(",", $cats));
2933
+		$trans_cat = array();
2934
+		foreach ($cat_arr as $cat) {
2935
+			$trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false);
2936
+		}
2937
+
2938
+
2939
+		$post_arr[0]['categories'] = array_filter($trans_cat);
2940 2940
 //print_r($image_arr);
2941
-        //print_r($arrImages);
2942
-        //echo $_REQUEST['lang'];
2941
+		//print_r($arrImages);
2942
+		//echo $_REQUEST['lang'];
2943 2943
 //print_r($post_arr);
2944 2944
 //print_r($trans_cat);
2945
-        echo json_encode($post_arr[0]);
2945
+		echo json_encode($post_arr[0]);
2946 2946
 
2947
-    }
2948
-    die();
2947
+	}
2948
+	die();
2949 2949
 }
2950 2950
 
2951 2951
 
@@ -2965,54 +2965,54 @@  discard block
 block discarded – undo
2965 2965
 function geodir_get_custom_fields_type($listing_type = '')
2966 2966
 {
2967 2967
 
2968
-    global $wpdb;
2968
+	global $wpdb;
2969 2969
 
2970
-    if ($listing_type == '')
2971
-        $listing_type = 'gd_place';
2970
+	if ($listing_type == '')
2971
+		$listing_type = 'gd_place';
2972 2972
 
2973
-    $fields_info = array();
2973
+	$fields_info = array();
2974 2974
 
2975
-    $get_data = $wpdb->get_results(
2976
-        $wpdb->prepare(
2977
-            "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'",
2978
-            array($listing_type)
2979
-        )
2980
-    );
2975
+	$get_data = $wpdb->get_results(
2976
+		$wpdb->prepare(
2977
+			"SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'",
2978
+			array($listing_type)
2979
+		)
2980
+	);
2981 2981
 
2982
-    if (!empty($get_data)) {
2982
+	if (!empty($get_data)) {
2983 2983
 
2984
-        foreach ($get_data as $data) {
2984
+		foreach ($get_data as $data) {
2985 2985
 
2986
-            if ($data->field_type == 'address') {
2986
+			if ($data->field_type == 'address') {
2987 2987
 
2988
-                $extra_fields = unserialize($data->extra_fields);
2988
+				$extra_fields = unserialize($data->extra_fields);
2989 2989
 
2990
-                $prefix = $data->htmlvar_name . '_';
2990
+				$prefix = $data->htmlvar_name . '_';
2991 2991
 
2992
-                $fields_info[$prefix . 'address'] = $data->field_type;
2992
+				$fields_info[$prefix . 'address'] = $data->field_type;
2993 2993
 
2994
-                if (isset($extra_fields['show_zip']) && $extra_fields['show_zip'])
2995
-                    $fields_info[$prefix . 'zip'] = $data->field_type;
2994
+				if (isset($extra_fields['show_zip']) && $extra_fields['show_zip'])
2995
+					$fields_info[$prefix . 'zip'] = $data->field_type;
2996 2996
 
2997
-            } else {
2997
+			} else {
2998 2998
 
2999
-                $fields_info[$data->htmlvar_name] = $data->field_type;
2999
+				$fields_info[$data->htmlvar_name] = $data->field_type;
3000 3000
 
3001
-            }
3001
+			}
3002 3002
 
3003
-        }
3003
+		}
3004 3004
 
3005
-    }
3005
+	}
3006 3006
 
3007
-    /**
3008
-     * Filter to modify custom fields info using listing post type.
3009
-     *
3010
-     * @since 1.0.0
3011
-     * @package GeoDirectory
3012
-     * @return array $fields_info Custom fields info.
3013
-     * @param string $listing_type The listing post type.
3014
-     */
3015
-    return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type);
3007
+	/**
3008
+	 * Filter to modify custom fields info using listing post type.
3009
+	 *
3010
+	 * @since 1.0.0
3011
+	 * @package GeoDirectory
3012
+	 * @return array $fields_info Custom fields info.
3013
+	 * @param string $listing_type The listing post type.
3014
+	 */
3015
+	return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type);
3016 3016
 }
3017 3017
 
3018 3018
 
@@ -3027,58 +3027,58 @@  discard block
 block discarded – undo
3027 3027
  */
3028 3028
 function geodir_function_post_updated($post_ID, $post_after, $post_before)
3029 3029
 {
3030
-    $post_type = get_post_type($post_ID);
3030
+	$post_type = get_post_type($post_ID);
3031 3031
 
3032
-    if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) {
3033
-        // send notification to client when post moves from draft to publish
3034
-        if (!empty($post_after->post_status) && $post_after->post_status == 'publish' && !empty($post_before->post_status) && ($post_before->post_status == 'draft' || $post_before->post_status == 'auto-draft')) {
3035
-            $post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL;
3036
-            $post_author_data = get_userdata($post_author_id);
3032
+	if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) {
3033
+		// send notification to client when post moves from draft to publish
3034
+		if (!empty($post_after->post_status) && $post_after->post_status == 'publish' && !empty($post_before->post_status) && ($post_before->post_status == 'draft' || $post_before->post_status == 'auto-draft')) {
3035
+			$post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL;
3036
+			$post_author_data = get_userdata($post_author_id);
3037 3037
 
3038
-            $to_name = geodir_get_client_name($post_author_id);
3038
+			$to_name = geodir_get_client_name($post_author_id);
3039 3039
 
3040
-            $from_email = geodir_get_site_email_id();
3041
-            $from_name = get_site_emailName();
3042
-            $to_email = $post_author_data->user_email;
3040
+			$from_email = geodir_get_site_email_id();
3041
+			$from_name = get_site_emailName();
3042
+			$to_email = $post_author_data->user_email;
3043 3043
 
3044
-            if (!is_email($to_email) && !empty($post_author_data->user_email)) {
3045
-                $to_email = $post_author_data->user_email;
3046
-            }
3044
+			if (!is_email($to_email) && !empty($post_author_data->user_email)) {
3045
+				$to_email = $post_author_data->user_email;
3046
+			}
3047 3047
 
3048
-            $message_type = 'listing_published';
3048
+			$message_type = 'listing_published';
3049 3049
 
3050
-            if (get_option('geodir_post_published_email_subject') == '') {
3051
-                update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory'));
3052
-            }
3050
+			if (get_option('geodir_post_published_email_subject') == '') {
3051
+				update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory'));
3052
+			}
3053 3053
 
3054
-            if (get_option('geodir_post_published_email_content') == '') {
3055
-                update_option('geodir_post_published_email_content', __("<p>Dear [#client_name#],</p><p>Your listing [#listing_link#] has been published. This email is just for your information.</p><p>[#listing_link#]</p><br><p>Thank you for your contribution.</p><p>[#site_name#]</p>", 'geodirectory'));
3056
-            }
3054
+			if (get_option('geodir_post_published_email_content') == '') {
3055
+				update_option('geodir_post_published_email_content', __("<p>Dear [#client_name#],</p><p>Your listing [#listing_link#] has been published. This email is just for your information.</p><p>[#listing_link#]</p><br><p>Thank you for your contribution.</p><p>[#site_name#]</p>", 'geodirectory'));
3056
+			}
3057 3057
 
3058
-            /**
3059
-             * Called before sending the email when listing gets published.
3060
-             *
3061
-             * @since 1.0.0
3062
-             * @package GeoDirectory
3063
-             * @param object $post_after The post object after update.
3064
-             * @param object $post_before The post object before update.
3065
-             */
3066
-            do_action('geodir_before_listing_published_email', $post_after, $post_before);
3067
-            if (is_email($to_email)) {
3068
-                geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
3069
-            }
3058
+			/**
3059
+			 * Called before sending the email when listing gets published.
3060
+			 *
3061
+			 * @since 1.0.0
3062
+			 * @package GeoDirectory
3063
+			 * @param object $post_after The post object after update.
3064
+			 * @param object $post_before The post object before update.
3065
+			 */
3066
+			do_action('geodir_before_listing_published_email', $post_after, $post_before);
3067
+			if (is_email($to_email)) {
3068
+				geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
3069
+			}
3070 3070
 
3071
-            /**
3072
-             * Called after sending the email when listing gets published.
3073
-             *
3074
-             * @since 1.0.0
3075
-             * @package GeoDirectory
3076
-             * @param object $post_after The post object after update.
3077
-             * @param object $post_before The post object before update.
3078
-             */
3079
-            do_action('geodir_after_listing_published_email', $post_after, $post_before);
3080
-        }
3081
-    }
3071
+			/**
3072
+			 * Called after sending the email when listing gets published.
3073
+			 *
3074
+			 * @since 1.0.0
3075
+			 * @package GeoDirectory
3076
+			 * @param object $post_after The post object after update.
3077
+			 * @param object $post_before The post object before update.
3078
+			 */
3079
+			do_action('geodir_after_listing_published_email', $post_after, $post_before);
3080
+		}
3081
+	}
3082 3082
 }
3083 3083
 
3084 3084
 add_action('wp_head', 'geodir_fb_like_thumbnail');
@@ -3092,14 +3092,14 @@  discard block
 block discarded – undo
3092 3092
  */
3093 3093
 function geodir_fb_like_thumbnail(){
3094 3094
 
3095
-    // return if not a single post
3096
-    if(!is_single()){return;}
3095
+	// return if not a single post
3096
+	if(!is_single()){return;}
3097 3097
 
3098
-    global $post;
3099
-    if(isset($post->featured_image) && $post->featured_image){
3100
-        $upload_dir = wp_upload_dir();
3101
-        $thumb = $upload_dir['baseurl'].$post->featured_image;
3102
-        echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n";
3098
+	global $post;
3099
+	if(isset($post->featured_image) && $post->featured_image){
3100
+		$upload_dir = wp_upload_dir();
3101
+		$thumb = $upload_dir['baseurl'].$post->featured_image;
3102
+		echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n";
3103 3103
 
3104
-    }
3104
+	}
3105 3105
 }
3106 3106
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +204 added lines, -204 removed lines patch added patch discarded remove patch
@@ -26,11 +26,11 @@  discard block
 block discarded – undo
26 26
 
27 27
     if (!isset($default_cat) || empty($default_cat)) {
28 28
         $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : '';
29
-    }else{
30
-        if(!is_int($default_cat)){
29
+    } else {
30
+        if (!is_int($default_cat)) {
31 31
             $category = get_term_by('name', $default_cat, $taxonomy);
32
-            if(isset($category->term_id)){
33
-                $default_cat =  $category->term_id;
32
+            if (isset($category->term_id)) {
33
+                $default_cat = $category->term_id;
34 34
             }
35 35
         }
36 36
 
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
     if ($default_pos === false) {
60 60
 
61
-        $change_cat_str = str_replace($default_cat . ',y:', $default_cat . ',y,d:', $change_cat_str);
61
+        $change_cat_str = str_replace($default_cat.',y:', $default_cat.',y,d:', $change_cat_str);
62 62
 
63 63
     }
64 64
 
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
             
145 145
             $gd_post = $post;
146 146
             if (!empty($gd_post) && is_array($gd_post)) {
147
-                $gd_post = (object)$post;
147
+                $gd_post = (object) $post;
148 148
                 
149 149
                 // Fix WPML duplicate.
150 150
                 if (geodir_is_wpml() && !empty($request_info['action']) && $request_info['action'] == 'editpost' && !empty($request_info['icl_trid']) && !isset($post['post_date'])) {
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
         $send_post_submit_mail = false;
239 239
 
240 240
         // unhook this function so it doesn't loop infinitely
241
-        remove_action('save_post', 'geodir_post_information_save',10,2);
241
+        remove_action('save_post', 'geodir_post_information_save', 10, 2);
242 242
 
243 243
         if (isset($request_info['pid']) && $request_info['pid'] != '') {
244 244
             $post['ID'] = $request_info['pid'];
@@ -262,13 +262,13 @@  discard block
 block discarded – undo
262 262
         }
263 263
 
264 264
         // re-hook this function
265
-        add_action('save_post', 'geodir_post_information_save',10,2);
265
+        add_action('save_post', 'geodir_post_information_save', 10, 2);
266 266
 
267 267
         $post_tags = '';
268 268
         if (!isset($request_info['post_tags'])) {
269 269
 
270 270
             $post_type = $request_info['listing_type'];
271
-            $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
271
+            $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type.'_tags', array('fields' => 'names')));
272 272
 
273 273
         }
274 274
 
@@ -286,13 +286,13 @@  discard block
 block discarded – undo
286 286
         $payment_info = array();
287 287
         $package_info = array();
288 288
 
289
-        $package_info = (array)geodir_post_package_info($package_info, $post);
289
+        $package_info = (array) geodir_post_package_info($package_info, $post);
290 290
 
291 291
         $post_package_id = geodir_get_post_meta($last_post_id, 'package_id');
292 292
 
293 293
         if (!empty($package_info) && !$post_package_id) {
294 294
             if (isset($package_info['days']) && $package_info['days'] != 0) {
295
-                $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
295
+                $payment_info['expire_date'] = date('Y-m-d', strtotime("+".$package_info['days']." days"));
296 296
             } else {
297 297
                 $payment_info['expire_date'] = 'Never';
298 298
             }
@@ -313,8 +313,8 @@  discard block
 block discarded – undo
313 313
             $extrafields = $val['extra_fields'];
314 314
 
315 315
             if (trim($type) == 'address') {
316
-                $prefix = $name . '_';
317
-                $address = $prefix . 'address';
316
+                $prefix = $name.'_';
317
+                $address = $prefix.'address';
318 318
 
319 319
                 if (isset($request_info[$address]) && $request_info[$address] != '') {
320 320
                     $gd_post_info[$address] = wp_slash($request_info[$address]);
@@ -324,59 +324,59 @@  discard block
 block discarded – undo
324 324
                     $extrafields = unserialize($extrafields);
325 325
 
326 326
 
327
-                    if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
327
+                    if (!isset($request_info[$prefix.'city']) || $request_info[$prefix.'city'] == '') {
328 328
 
329 329
                         $location_result = geodir_get_default_location();
330 330
 
331
-                        $gd_post_info[$prefix . 'city'] = $location_result->city;
332
-                        $gd_post_info[$prefix . 'region'] = $location_result->region;
333
-                        $gd_post_info[$prefix . 'country'] = $location_result->country;
331
+                        $gd_post_info[$prefix.'city'] = $location_result->city;
332
+                        $gd_post_info[$prefix.'region'] = $location_result->region;
333
+                        $gd_post_info[$prefix.'country'] = $location_result->country;
334 334
 
335
-                        $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
335
+                        $gd_post_info['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // set all overall post location
336 336
 
337 337
                     } else {
338 338
 
339
-                        $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city'];
340
-                        $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region'];
341
-                        $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country'];
339
+                        $gd_post_info[$prefix.'city'] = $request_info[$prefix.'city'];
340
+                        $gd_post_info[$prefix.'region'] = $request_info[$prefix.'region'];
341
+                        $gd_post_info[$prefix.'country'] = $request_info[$prefix.'country'];
342 342
 
343 343
                         //----------set post locations when import dummy data-------
344 344
                         $location_result = geodir_get_default_location();
345 345
 
346
-                        $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
346
+                        $gd_post_info['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // set all overall post location
347 347
                         //-----------------------------------------------------------------
348 348
 
349 349
                     }
350 350
 
351 351
 
352
-                    if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
353
-                        $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip'];
352
+                    if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix.'zip'])) {
353
+                        $gd_post_info[$prefix.'zip'] = $request_info[$prefix.'zip'];
354 354
                     }
355 355
 
356 356
 
357 357
                     if (isset($extrafields['show_map']) && $extrafields['show_map']) {
358 358
 
359
-                        if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
360
-                            $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude'];
359
+                        if (isset($request_info[$prefix.'latitude']) && $request_info[$prefix.'latitude'] != '') {
360
+                            $gd_post_info[$prefix.'latitude'] = $request_info[$prefix.'latitude'];
361 361
                         }
362 362
 
363
-                        if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
364
-                            $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude'];
363
+                        if (isset($request_info[$prefix.'longitude']) && $request_info[$prefix.'longitude'] != '') {
364
+                            $gd_post_info[$prefix.'longitude'] = $request_info[$prefix.'longitude'];
365 365
                         }
366 366
 
367
-                        if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
368
-                            $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview'];
367
+                        if (isset($request_info[$prefix.'mapview']) && $request_info[$prefix.'mapview'] != '') {
368
+                            $gd_post_info[$prefix.'mapview'] = $request_info[$prefix.'mapview'];
369 369
                         }
370 370
 
371
-                        if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
372
-                            $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom'];
371
+                        if (isset($request_info[$prefix.'mapzoom']) && $request_info[$prefix.'mapzoom'] != '') {
372
+                            $gd_post_info[$prefix.'mapzoom'] = $request_info[$prefix.'mapzoom'];
373 373
                         }
374 374
 
375 375
                     }
376 376
 
377 377
                     // show lat lng
378
-                    if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
379
-                        $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng'];
378
+                    if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix.'latlng'])) {
379
+                        $gd_post_info[$prefix.'latlng'] = $request_info[$prefix.'latlng'];
380 380
                     }
381 381
                 }
382 382
 
@@ -401,16 +401,16 @@  discard block
 block discarded – undo
401 401
 
402 402
                     // check if we need to change the format or not
403 403
                     $date_format_len = strlen(str_replace(' ', '', $date_format));
404
-                    if($date_format_len>5){// if greater then 5 then it's the old style format.
404
+                    if ($date_format_len > 5) {// if greater then 5 then it's the old style format.
405 405
 
406
-                        $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
407
-                        $replace = array('d','j','l','m','n','F','Y');//PHP date format
406
+                        $search = array('dd', 'd', 'DD', 'mm', 'm', 'MM', 'yy'); //jQuery UI datepicker format
407
+                        $replace = array('d', 'j', 'l', 'm', 'n', 'F', 'Y'); //PHP date format
408 408
 
409 409
                         $date_format = str_replace($search, $replace, $date_format);
410 410
 
411 411
                         $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
412 412
 
413
-                    }else{
413
+                    } else {
414 414
                         $post_htmlvar_value = $request_info[$name];
415 415
                     }
416 416
 
@@ -425,7 +425,7 @@  discard block
 block discarded – undo
425 425
                 if (isset($request_info[$name])) {
426 426
                     $gd_post_info[$name] = $request_info[$name];
427 427
                 } else {
428
-                    if (isset($request_info['gd_field_' . $name])) {
428
+                    if (isset($request_info['gd_field_'.$name])) {
429 429
                         $gd_post_info[$name] = ''; /* fix de-select for multiselect */
430 430
                     }
431 431
                 }
@@ -485,7 +485,7 @@  discard block
 block discarded – undo
485 485
         }
486 486
 
487 487
         if (is_array($post_tags)) {
488
-            $taxonomy = $request_info['listing_type'] . '_tags';
488
+            $taxonomy = $request_info['listing_type'].'_tags';
489 489
             wp_set_object_terms($last_post_id, $post_tags, $taxonomy);
490 490
         }
491 491
 
@@ -497,7 +497,7 @@  discard block
 block discarded – undo
497 497
                 $tmpimgArr = trim($request_info['post_images'], ",");
498 498
                 $tmpimgArr = explode(",", $tmpimgArr);
499 499
                 geodir_save_post_images($last_post_id, $tmpimgArr, $dummy);
500
-            } else{
500
+            } else {
501 501
                 geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy);
502 502
             }
503 503
 
@@ -578,7 +578,7 @@  discard block
 block discarded – undo
578 578
     if (!in_array($post_type, $all_postypes))
579 579
         return false;
580 580
 
581
-    $table = $plugin_prefix . $post_type . '_detail';
581
+    $table = $plugin_prefix.$post_type.'_detail';
582 582
 
583 583
     /**
584 584
      * Apply Filter to change Post info
@@ -588,7 +588,7 @@  discard block
 block discarded – undo
588 588
      * @since 1.0.0
589 589
      * @package GeoDirectory
590 590
      */
591
-    $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
591
+    $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM ".$wpdb->posts." p,".$table." pd
592 592
 			  WHERE p.ID = pd.post_id
593 593
 			  AND post_id = " . $post_id);
594 594
 
@@ -651,7 +651,7 @@  discard block
 block discarded – undo
651 651
 
652 652
         $post_type = get_post_type($post_id);
653 653
 
654
-        $table = $plugin_prefix . $post_type . '_detail';
654
+        $table = $plugin_prefix.$post_type.'_detail';
655 655
 
656 656
         /**
657 657
          * Filter to change Post info
@@ -672,7 +672,7 @@  discard block
 block discarded – undo
672 672
 
673 673
             $columns = $wpdb->get_col("show columns from $table");
674 674
             foreach ($postmeta as $mkey => $mval) {
675
-                if(in_array($mkey,$columns)) {
675
+                if (in_array($mkey, $columns)) {
676 676
                     if (is_array($mval)) {
677 677
                         $mval = implode(",", $mval);
678 678
                     }
@@ -701,12 +701,12 @@  discard block
 block discarded – undo
701 701
              */
702 702
             do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
703 703
 
704
-            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
704
+            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) {
705 705
 
706 706
                 $query_string_array[] = $post_id;
707 707
                 $wpdb->query(
708 708
                     $wpdb->prepare(
709
-                        "UPDATE " . $table . " SET " . $query_string_escaped . " where post_id =%d",
709
+                        "UPDATE ".$table." SET ".$query_string_escaped." where post_id =%d",
710 710
                         $query_string_array
711 711
                     )
712 712
                 );
@@ -717,7 +717,7 @@  discard block
 block discarded – undo
717 717
                 array_unshift($query_string_array, $post_id);
718 718
                 $wpdb->query(
719 719
                     $wpdb->prepare(
720
-                        "INSERT INTO " . $table . " SET post_id = %d," . $query_string_escaped,
720
+                        "INSERT INTO ".$table." SET post_id = %d,".$query_string_escaped,
721 721
                         $query_string_array
722 722
                     )
723 723
                 );
@@ -763,7 +763,7 @@  discard block
 block discarded – undo
763 763
 
764 764
         $post_type = get_post_type($post_id);
765 765
 
766
-        $table = $plugin_prefix . $post_type . '_detail';
766
+        $table = $plugin_prefix.$post_type.'_detail';
767 767
 
768 768
         if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
769 769
 
@@ -771,11 +771,11 @@  discard block
 block discarded – undo
771 771
                 $meta_value = implode(",", $meta_value);
772 772
             }
773 773
 
774
-            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
774
+            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) {
775 775
 
776 776
                 $wpdb->query(
777 777
                     $wpdb->prepare(
778
-                        "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d",
778
+                        "UPDATE ".$table." SET ".$postmeta." = '".$meta_value."' where post_id =%d",
779 779
                         array($post_id)
780 780
                     )
781 781
                 );
@@ -784,7 +784,7 @@  discard block
 block discarded – undo
784 784
 
785 785
                 $wpdb->query(
786 786
                     $wpdb->prepare(
787
-                        "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'",
787
+                        "INSERT INTO ".$table." SET post_id = %d, ".$postmeta." = '".$meta_value."'",
788 788
                         array($post_id)
789 789
                     )
790 790
                 );
@@ -817,14 +817,14 @@  discard block
 block discarded – undo
817 817
 
818 818
         $post_type = get_post_type($post_id);
819 819
 
820
-        $table = $plugin_prefix . $post_type . '_detail';
820
+        $table = $plugin_prefix.$post_type.'_detail';
821 821
 
822 822
         if (is_array($postmeta) && !empty($postmeta) && $post_id) {
823 823
             $post_meta_set_query = '';
824 824
 
825 825
             foreach ($postmeta as $mkey) {
826 826
                 if ($mval != '')
827
-                    $post_meta_set_query .= $mkey . " = '', ";
827
+                    $post_meta_set_query .= $mkey." = '', ";
828 828
             }
829 829
 
830 830
             $post_meta_set_query = trim($post_meta_set_query, ", ");
@@ -833,11 +833,11 @@  discard block
 block discarded – undo
833 833
                 return false;
834 834
             }
835 835
 
836
-            if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
836
+            if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$postmeta."'") != '') {
837 837
 
838 838
                 $wpdb->query(
839 839
                     $wpdb->prepare(
840
-                        "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d",
840
+                        "UPDATE ".$table." SET ".$post_meta_set_query." where post_id = %d",
841 841
                         array($post_id)
842 842
                     )
843 843
                 );
@@ -846,11 +846,11 @@  discard block
 block discarded – undo
846 846
             }
847 847
 
848 848
         } elseif ($postmeta != '' && $post_id) {
849
-            if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
849
+            if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$postmeta."'") != '') {
850 850
 
851 851
                 $wpdb->query(
852 852
                     $wpdb->prepare(
853
-                        "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d",
853
+                        "UPDATE ".$table." SET ".$postmeta."= '' where post_id = %d",
854 854
                         array($post_id)
855 855
                     )
856 856
                 );
@@ -892,10 +892,10 @@  discard block
 block discarded – undo
892 892
         if (!in_array($post_type, $all_postypes))
893 893
             return false;
894 894
 
895
-        $table = $plugin_prefix . $post_type . '_detail';
895
+        $table = $plugin_prefix.$post_type.'_detail';
896 896
 
897
-        if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
898
-            $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
897
+        if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$meta_key."'") != '') {
898
+            $meta_value = $wpdb->get_var($wpdb->prepare("SELECT ".$meta_key." from ".$table." where post_id = %d", array($post_id)));
899 899
             
900 900
             if ($meta_value && $meta_value !== '') {
901 901
                 return maybe_serialize($meta_value);
@@ -929,13 +929,13 @@  discard block
 block discarded – undo
929 929
 
930 930
         $post_type = get_post_type($post_id);
931 931
 
932
-        $table = $plugin_prefix . $post_type . '_detail';
932
+        $table = $plugin_prefix.$post_type.'_detail';
933 933
 
934 934
         $post_images = geodir_get_images($post_id);
935 935
 
936 936
         $wpdb->query(
937 937
             $wpdb->prepare(
938
-                "UPDATE " . $table . " SET featured_image = '' where post_id =%d",
938
+                "UPDATE ".$table." SET featured_image = '' where post_id =%d",
939 939
                 array($post_id)
940 940
             )
941 941
         );
@@ -965,12 +965,12 @@  discard block
 block discarded – undo
965 965
                 $file_path = '';
966 966
                 /* --------- start ------- */
967 967
 
968
-                $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
968
+                $split_img_path = explode(str_replace(array('http://', 'https://'), '', $uploads['baseurl']), str_replace(array('http://', 'https://'), '', $post_image[$m]));
969 969
 
970 970
                 $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
971 971
 
972 972
 
973
-                if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
973
+                if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM ".GEODIR_ATTACHMENT_TABLE." WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
974 974
 
975 975
                     /* --------- end ------- */
976 976
                     $curr_img_url = $post_image[$m];
@@ -1014,7 +1014,7 @@  discard block
 block discarded – undo
1014 1014
                     // If the uploaded file is the right format
1015 1015
                     if (in_array($uploaded_file_type, $allowed_file_types)) {
1016 1016
                         if (!function_exists('wp_handle_upload')) {
1017
-                            require_once(ABSPATH . 'wp-admin/includes/file.php');
1017
+                            require_once(ABSPATH.'wp-admin/includes/file.php');
1018 1018
                         }
1019 1019
 
1020 1020
                         if (!is_dir($geodir_uploadpath)) {
@@ -1022,41 +1022,41 @@  discard block
 block discarded – undo
1022 1022
                         }
1023 1023
 
1024 1024
                         $external_img = false;
1025
-                        if (strpos( str_replace( array('http://','https://'),'',$curr_img_url ), str_replace(array('http://','https://'),'',$uploads['baseurl'] ) ) !== false) {
1025
+                        if (strpos(str_replace(array('http://', 'https://'), '', $curr_img_url), str_replace(array('http://', 'https://'), '', $uploads['baseurl'])) !== false) {
1026 1026
                         } else {
1027 1027
                             $external_img = true;
1028 1028
                         }
1029 1029
 
1030 1030
                         if ($dummy || $external_img) {
1031 1031
                             $uploaded_file = array();
1032
-                            $uploaded = (array)fetch_remote_file($curr_img_url);
1032
+                            $uploaded = (array) fetch_remote_file($curr_img_url);
1033 1033
 
1034 1034
                             if (isset($uploaded['error']) && empty($uploaded['error'])) {
1035 1035
                                 $new_name = basename($uploaded['file']);
1036 1036
                                 $uploaded_file = $uploaded;
1037
-                            }else{
1038
-                                print_r($uploaded);exit;
1037
+                            } else {
1038
+                                print_r($uploaded); exit;
1039 1039
                             }
1040 1040
                             $external_img = false;
1041 1041
                         } else {
1042
-                            $new_name = $post_id . '_' . $file_name;
1042
+                            $new_name = $post_id.'_'.$file_name;
1043 1043
 
1044 1044
                             if ($curr_img_dir == $sub_dir) {
1045
-                                $img_path = $geodir_uploadpath . '/' . $filename;
1046
-                                $img_url = $geodir_uploadurl . '/' . $filename;
1045
+                                $img_path = $geodir_uploadpath.'/'.$filename;
1046
+                                $img_url = $geodir_uploadurl.'/'.$filename;
1047 1047
                             } else {
1048
-                                $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename;
1049
-                                $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename;
1048
+                                $img_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$filename;
1049
+                                $img_url = $uploads['url'].'/temp_'.$current_user->data->ID.'/'.$filename;
1050 1050
                             }
1051 1051
 
1052 1052
                             $uploaded_file = '';
1053 1053
 
1054 1054
                             if (file_exists($img_path)) {
1055
-                                $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name);
1055
+                                $uploaded_file = copy($img_path, $geodir_uploadpath.'/'.$new_name);
1056 1056
                                 $file_path = '';
1057
-                            } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
1057
+                            } else if (file_exists($uploads['basedir'].$curr_img_dir.$filename)) {
1058 1058
                                 $uploaded_file = true;
1059
-                                $file_path = $curr_img_dir . '/' . $filename;
1059
+                                $file_path = $curr_img_dir.'/'.$filename;
1060 1060
                             }
1061 1061
 
1062 1062
                             if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path))
@@ -1065,14 +1065,14 @@  discard block
 block discarded – undo
1065 1065
 
1066 1066
                         if (!empty($uploaded_file)) {
1067 1067
                             if (!isset($file_path) || !$file_path) {
1068
-                                $file_path = $sub_dir . '/' . $new_name;
1068
+                                $file_path = $sub_dir.'/'.$new_name;
1069 1069
                             }
1070 1070
 
1071
-                            $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
1071
+                            $postcurr_images[] = str_replace(array('http://', 'https://'), '', $uploads['baseurl'].$file_path);
1072 1072
 
1073 1073
                             if ($menu_order == 1) {
1074 1074
 
1075
-                                $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
1075
+                                $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
1076 1076
 
1077 1077
                             }
1078 1078
 
@@ -1090,12 +1090,12 @@  discard block
 block discarded – undo
1090 1090
 
1091 1091
                             foreach ($attachment as $key => $val) {
1092 1092
                                 if ($val != '')
1093
-                                    $attachment_set .= $key . " = '" . $val . "', ";
1093
+                                    $attachment_set .= $key." = '".$val."', ";
1094 1094
                             }
1095 1095
 
1096 1096
                             $attachment_set = trim($attachment_set, ", ");
1097 1097
 
1098
-                            $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
1098
+                            $wpdb->query("INSERT INTO ".GEODIR_ATTACHMENT_TABLE." SET ".$attachment_set);
1099 1099
 
1100 1100
                             $valid_file_ids[] = $wpdb->insert_id;
1101 1101
                         }
@@ -1106,17 +1106,17 @@  discard block
 block discarded – undo
1106 1106
                 } else {
1107 1107
                     $valid_file_ids[] = $find_image;
1108 1108
 
1109
-                    $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
1109
+                    $postcurr_images[] = str_replace(array('http://', 'https://'), '', $post_image[$m]);
1110 1110
 
1111 1111
                     $wpdb->query(
1112 1112
                         $wpdb->prepare(
1113
-                            "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d",
1113
+                            "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order = %d where file =%s AND post_id =%d",
1114 1114
                             array($menu_order, $split_img_path[1], $post_id)
1115 1115
                         )
1116 1116
                     );
1117 1117
 
1118 1118
                     if ($menu_order == 1)
1119
-                        $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1119
+                        $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1120 1120
 
1121 1121
                 }
1122 1122
 
@@ -1140,9 +1140,9 @@  discard block
 block discarded – undo
1140 1140
 
1141 1141
                 foreach ($post_images as $img) {
1142 1142
 
1143
-                    if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
1143
+                    if (!in_array(str_replace(array('http://', 'https://'), '', $img->src), $postcurr_images)) {
1144 1144
 
1145
-                        $invalid_files[] = (object)array('src' => $img->src);
1145
+                        $invalid_files[] = (object) array('src' => $img->src);
1146 1146
 
1147 1147
                     }
1148 1148
 
@@ -1150,12 +1150,12 @@  discard block
 block discarded – undo
1150 1150
 
1151 1151
             }
1152 1152
 
1153
-            $invalid_files = (object)$invalid_files;
1153
+            $invalid_files = (object) $invalid_files;
1154 1154
         }
1155 1155
 
1156 1156
         $remove_files[] = $post_id;
1157 1157
 
1158
-        $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
1158
+        $wpdb->query($wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE ".$valid_files_condition." post_id = %d", $remove_files));
1159 1159
 
1160 1160
         if (!empty($invalid_files))
1161 1161
             geodir_remove_attachments($invalid_files);
@@ -1195,7 +1195,7 @@  discard block
 block discarded – undo
1195 1195
 			rmdir($dirPath);
1196 1196
 	}	*/
1197 1197
 
1198
-    $dirname = $uploads_dir . '/temp_' . $current_user->ID;
1198
+    $dirname = $uploads_dir.'/temp_'.$current_user->ID;
1199 1199
     geodir_delete_directory($dirname);
1200 1200
 }
1201 1201
 
@@ -1217,10 +1217,10 @@  discard block
 block discarded – undo
1217 1217
         return false;
1218 1218
     while ($file = readdir($dir_handle)) {
1219 1219
         if ($file != "." && $file != "..") {
1220
-            if (!is_dir($dirname . "/" . $file))
1221
-                unlink($dirname . "/" . $file);
1220
+            if (!is_dir($dirname."/".$file))
1221
+                unlink($dirname."/".$file);
1222 1222
             else
1223
-                geodir_delete_directory($dirname . '/' . $file);
1223
+                geodir_delete_directory($dirname.'/'.$file);
1224 1224
         }
1225 1225
     }
1226 1226
     closedir($dir_handle);
@@ -1249,8 +1249,8 @@  discard block
 block discarded – undo
1249 1249
             foreach ($postcurr_images as $postimg) {
1250 1250
                 $image_name_arr = explode('/', $postimg->src);
1251 1251
                 $filename = end($image_name_arr);
1252
-                if (file_exists($uploads_dir . '/' . $filename))
1253
-                    unlink($uploads_dir . '/' . $filename);
1252
+                if (file_exists($uploads_dir.'/'.$filename))
1253
+                    unlink($uploads_dir.'/'.$filename);
1254 1254
             }
1255 1255
 
1256 1256
         } // endif
@@ -1291,16 +1291,16 @@  discard block
 block discarded – undo
1291 1291
         }
1292 1292
 
1293 1293
         if (!in_array($post_type, geodir_get_posttypes())) {
1294
-            return false;// if not a GD CPT return;
1294
+            return false; // if not a GD CPT return;
1295 1295
         }
1296 1296
 
1297
-        $table = $plugin_prefix . $post_type . '_detail';
1297
+        $table = $plugin_prefix.$post_type.'_detail';
1298 1298
 
1299 1299
         if (!$file) {
1300 1300
             if (isset($post->featured_image)) {
1301 1301
                 $file = $post->featured_image;
1302 1302
             } else {
1303
-                $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
1303
+                $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM ".$table." WHERE post_id = %d", array($post_id)));
1304 1304
             }
1305 1305
         }
1306 1306
 
@@ -1318,7 +1318,7 @@  discard block
 block discarded – undo
1318 1318
 
1319 1319
             $file_name = $file_info['basename'];
1320 1320
 
1321
-            $uploads_url = $uploads_baseurl . $sub_dir;
1321
+            $uploads_url = $uploads_baseurl.$sub_dir;
1322 1322
             /*
1323 1323
              * Allows the filter of image src for such things as CDN change.
1324 1324
              *
@@ -1328,8 +1328,8 @@  discard block
 block discarded – undo
1328 1328
              * @param string $uploads_url The server upload directory url.
1329 1329
              * @param string $uploads_baseurl The uploads dir base url.
1330 1330
              */
1331
-            $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1332
-            $img_arr['path'] = $uploads_path . '/' . $file_name;
1331
+            $img_arr['src'] = apply_filters('geodir_get_featured_image_src', $uploads_url.'/'.$file_name, $file_name, $uploads_url, $uploads_baseurl);
1332
+            $img_arr['path'] = $uploads_path.'/'.$file_name;
1333 1333
             $width = 0;
1334 1334
             $height = 0;
1335 1335
             if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
@@ -1372,7 +1372,7 @@  discard block
 block discarded – undo
1372 1372
                 $file_name = $file_info['basename'];
1373 1373
 
1374 1374
                 $img_arr['src'] = $default_img;
1375
-                $img_arr['path'] = $uploads_path . '/' . $file_name;
1375
+                $img_arr['path'] = $uploads_path.'/'.$file_name;
1376 1376
 
1377 1377
                 $width = 0;
1378 1378
                 $height = 0;
@@ -1389,7 +1389,7 @@  discard block
 block discarded – undo
1389 1389
         }
1390 1390
 
1391 1391
         if (!empty($img_arr))
1392
-            return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path );
1392
+            return (object) $img_arr; //return (object)array( 'src' => $file_url, 'path' => $file_path );
1393 1393
         else
1394 1394
             return false;
1395 1395
     }
@@ -1452,7 +1452,7 @@  discard block
 block discarded – undo
1452 1452
 
1453 1453
         $arrImages = $wpdb->get_results(
1454 1454
             $wpdb->prepare(
1455
-                "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ",
1455
+                "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d".$not_featured." ORDER BY menu_order ASC, ID DESC $limit_q ",
1456 1456
                 array('%image%', $post_id)
1457 1457
             )
1458 1458
         );
@@ -1478,7 +1478,7 @@  discard block
 block discarded – undo
1478 1478
 
1479 1479
                 $file_name = $file_info['basename'];
1480 1480
 
1481
-                $uploads_url = $uploads_baseurl . $sub_dir;
1481
+                $uploads_url = $uploads_baseurl.$sub_dir;
1482 1482
                 /*
1483 1483
                 * Allows the filter of image src for such things as CDN change.
1484 1484
                 *
@@ -1488,8 +1488,8 @@  discard block
 block discarded – undo
1488 1488
                 * @param string $uploads_url The server upload directory url.
1489 1489
                 * @param string $uploads_baseurl The uploads dir base url.
1490 1490
                 */
1491
-                $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1492
-                $img_arr['path'] = $uploads_path . '/' . $file_name;
1491
+                $img_arr['src'] = apply_filters('geodir_get_images_src', $uploads_url.'/'.$file_name, $file_name, $uploads_url, $uploads_baseurl);
1492
+                $img_arr['path'] = $uploads_path.'/'.$file_name;
1493 1493
                 $width = 0;
1494 1494
                 $height = 0;
1495 1495
                 if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
@@ -1506,11 +1506,11 @@  discard block
 block discarded – undo
1506 1506
                 $img_arr['content'] = $attechment->content; // add the description to the array
1507 1507
                 $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1.
1508 1508
 
1509
-                $return_arr[] = (object)$img_arr;
1509
+                $return_arr[] = (object) $img_arr;
1510 1510
 
1511 1511
                 $counter++;
1512 1512
             }
1513
-            return (object)$return_arr;
1513
+            return (object) $return_arr;
1514 1514
         } else if ($no_images) {
1515 1515
             $default_img = '';
1516 1516
             $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
@@ -1549,7 +1549,7 @@  discard block
 block discarded – undo
1549 1549
                 $img_arr['title'] = $file_info['filename']; // add the title to the array
1550 1550
                 $img_arr['content'] = $file_info['filename']; // add the description to the array
1551 1551
 
1552
-                $return_arr[] = (object)$img_arr;
1552
+                $return_arr[] = (object) $img_arr;
1553 1553
 
1554 1554
                 return $return_arr;
1555 1555
             } else
@@ -1576,8 +1576,8 @@  discard block
 block discarded – undo
1576 1576
 
1577 1577
         $html = '';
1578 1578
         if (!empty($request)) {
1579
-            if (!is_object($request)){
1580
-                $request = (object)$request;
1579
+            if (!is_object($request)) {
1580
+                $request = (object) $request;
1581 1581
             }
1582 1582
 
1583 1583
             if (isset($request->src) && !isset($request->path)) {
@@ -1591,7 +1591,7 @@  discard block
 block discarded – undo
1591 1591
             $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
1592 1592
             $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
1593 1593
             if (strpos($img_no_http, $upload_no_http) !== false) {
1594
-                $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path);
1594
+                $request->path = str_replace($img_no_http, $upload_dir['basedir'], $request->path);
1595 1595
             }
1596 1596
             
1597 1597
             $width = 0;
@@ -1606,7 +1606,7 @@  discard block
 block discarded – undo
1606 1606
             $image->width = $width;
1607 1607
             $image->height = $height;
1608 1608
 
1609
-            $max_size = (object)geodir_get_imagesize($size);
1609
+            $max_size = (object) geodir_get_imagesize($size);
1610 1610
 
1611 1611
             if (!is_wp_error($max_size)) {
1612 1612
                 if ($image->width) {
@@ -1618,15 +1618,15 @@  discard block
 block discarded – undo
1618 1618
                         $width_per = 100;
1619 1619
                 }
1620 1620
 
1621
-                if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
1622
-                    $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '"  /></div>';
1621
+                if (is_admin() && !isset($_REQUEST['geodir_ajax'])) {
1622
+                    $html = '<div class="geodir_thumbnail"><img style="max-height:'.$max_size->h.'px;" alt="place image" src="'.$image->src.'"  /></div>';
1623 1623
                 } else {
1624
-                    if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
1625
-                        $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1626
-                    }else{
1624
+                    if ($size == 'widget-thumb' || !get_option('geodir_lazy_load', 1)) {
1625
+                        $html = '<div class="geodir_thumbnail" style="background-image:url(\''.$image->src.'\');"></div>';
1626
+                    } else {
1627 1627
                         //$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1628 1628
                         //$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>';
1629
-                        $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
1629
+                        $html = '<div data-src="'.str_replace(' ', '%20', $image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
1630 1630
 
1631 1631
                     }
1632 1632
 
@@ -1662,15 +1662,15 @@  discard block
 block discarded – undo
1662 1662
 
1663 1663
         $post_type = get_post_type($post_id);
1664 1664
 
1665
-        $table = $plugin_prefix . $post_type . '_detail';
1665
+        $table = $plugin_prefix.$post_type.'_detail';
1666 1666
 
1667 1667
         if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
1668 1668
 
1669
-            if ($taxonomy == $post_type . '_tags') {
1669
+            if ($taxonomy == $post_type.'_tags') {
1670 1670
                 if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1671 1671
                     geodir_save_post_meta($post_id, 'post_tags', $terms);
1672 1672
                 }
1673
-            } elseif ($taxonomy == $post_type . 'category') {
1673
+            } elseif ($taxonomy == $post_type.'category') {
1674 1674
                 $srcharr = array('"', '\\');
1675 1675
                 $replarr = array("&quot;", '');
1676 1676
 
@@ -1692,7 +1692,7 @@  discard block
 block discarded – undo
1692 1692
 
1693 1693
                     $wpdb->get_var(
1694 1694
                         $wpdb->prepare(
1695
-                            "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ",
1695
+                            "DELETE from ".GEODIR_ICON_TABLE." WHERE cat_id NOT IN ($format) AND post_id = %d ",
1696 1696
                             $cat_ids_array_del
1697 1697
                         )
1698 1698
                     );
@@ -1700,7 +1700,7 @@  discard block
 block discarded – undo
1700 1700
 
1701 1701
                     $post_term = $wpdb->get_col(
1702 1702
                         $wpdb->prepare(
1703
-                            "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id",
1703
+                            "SELECT term_id FROM ".$wpdb->term_taxonomy." WHERE term_taxonomy_id IN($format) GROUP BY term_id",
1704 1704
                             $cat_ids_array
1705 1705
                         )
1706 1706
                     );
@@ -1722,16 +1722,16 @@  discard block
 block discarded – undo
1722 1722
                         $lat = geodir_get_post_meta($post_id, 'post_latitude', true);
1723 1723
                         $lng = geodir_get_post_meta($post_id, 'post_longitude', true);
1724 1724
 
1725
-                        $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
1726
-                        $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true);
1725
+                        $timing = ' - '.date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
1726
+                        $timing .= ' - '.geodir_get_post_meta($post_id, 'st_time', true);
1727 1727
 
1728 1728
                         $json = '{';
1729
-                        $json .= '"id":"' . $post_id . '",';
1730
-                        $json .= '"lat_pos": "' . $lat . '",';
1731
-                        $json .= '"long_pos": "' . $lng . '",';
1732
-                        $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",';
1733
-                        $json .= '"icon":"' . $term_icon . '",';
1734
-                        $json .= '"group":"catgroup' . $cat_id . '"';
1729
+                        $json .= '"id":"'.$post_id.'",';
1730
+                        $json .= '"lat_pos": "'.$lat.'",';
1731
+                        $json .= '"long_pos": "'.$lng.'",';
1732
+                        $json .= '"marker_id":"'.$post_id.'_'.$cat_id.'",';
1733
+                        $json .= '"icon":"'.$term_icon.'",';
1734
+                        $json .= '"group":"catgroup'.$cat_id.'"';
1735 1735
                         $json .= '}';
1736 1736
 
1737 1737
 
@@ -1739,9 +1739,9 @@  discard block
 block discarded – undo
1739 1739
                             $post_marker_json = $json;
1740 1740
 
1741 1741
 
1742
-                        if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
1742
+                        if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".GEODIR_ICON_TABLE." WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
1743 1743
 
1744
-                            $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
1744
+                            $json_query = $wpdb->prepare("UPDATE ".GEODIR_ICON_TABLE." SET
1745 1745
 										post_title = %s,
1746 1746
 										json = %s
1747 1747
 										WHERE post_id = %d AND cat_id = %d ",
@@ -1749,7 +1749,7 @@  discard block
 block discarded – undo
1749 1749
 
1750 1750
                         } else {
1751 1751
 
1752
-                            $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
1752
+                            $json_query = $wpdb->prepare("INSERT INTO ".GEODIR_ICON_TABLE." SET
1753 1753
 										post_id = %d,
1754 1754
 										post_title = %s,
1755 1755
 										cat_id = %d,
@@ -1767,17 +1767,17 @@  discard block
 block discarded – undo
1767 1767
                 if (!empty($post_term) && is_array($post_term)) {
1768 1768
                     $categories = implode(',', $post_term);
1769 1769
 
1770
-                    if ($categories != '' && $categories != 0) $categories = ',' . $categories . ',';
1770
+                    if ($categories != '' && $categories != 0) $categories = ','.$categories.',';
1771 1771
 
1772 1772
                     if (empty($post_marker_json))
1773 1773
                         $post_marker_json = isset($json) ? $json : '';
1774 1774
 
1775
-                    if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
1775
+                    if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) {
1776 1776
 
1777 1777
                         $wpdb->query(
1778 1778
                             $wpdb->prepare(
1779
-                                "UPDATE " . $table . " SET
1780
-								" . $taxonomy . " = %s,
1779
+                                "UPDATE ".$table." SET
1780
+								" . $taxonomy." = %s,
1781 1781
 								marker_json = %s
1782 1782
 								where post_id = %d",
1783 1783
                                 array($categories, $post_marker_json, $post_id)
@@ -1798,7 +1798,7 @@  discard block
 block discarded – undo
1798 1798
 
1799 1799
                                     $wpdb->query(
1800 1800
                                         $wpdb->prepare(
1801
-                                            "UPDATE " . $table . " SET
1801
+                                            "UPDATE ".$table." SET
1802 1802
 											default_category = %s
1803 1803
 											where post_id = %d",
1804 1804
                                             array($categories[0], $post_id)
@@ -1823,9 +1823,9 @@  discard block
 block discarded – undo
1823 1823
 
1824 1824
                         $wpdb->query(
1825 1825
                             $wpdb->prepare(
1826
-                                "INSERT INTO " . $table . " SET
1826
+                                "INSERT INTO ".$table." SET
1827 1827
 								post_id = %d,
1828
-								" . $taxonomy . " = %s,
1828
+								" . $taxonomy." = %s,
1829 1829
 								marker_json = %s ",
1830 1830
 
1831 1831
                                 array($post_id, $categories, $post_marker_json)
@@ -1949,7 +1949,7 @@  discard block
 block discarded – undo
1949 1949
                                     } ?>"><img alt="bubble image" style="max-height:50px;"
1950 1950
                                                src="<?php echo $post_images[0]; ?>"/></a></div>
1951 1951
                             <?php
1952
-                            }else{
1952
+                            } else {
1953 1953
                                 echo '<div class="geodir-bubble_image"></div>';
1954 1954
                             }
1955 1955
                         } else {
@@ -1957,7 +1957,7 @@  discard block
 block discarded – undo
1957 1957
                                 ?>
1958 1958
                                 <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div>
1959 1959
                             <?php
1960
-                            }else{
1960
+                            } else {
1961 1961
                                 echo '<div class="geodir-bubble_image"></div>';
1962 1962
                             }
1963 1963
                         }
@@ -1990,7 +1990,7 @@  discard block
 block discarded – undo
1990 1990
                              * @param object $postinfo_obj The posts info as an object.
1991 1991
                              * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
1992 1992
                              */
1993
-                            do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
1993
+                            do_action('geodir_infowindow_meta_after', $postinfo_obj, $post_preview);
1994 1994
                             ?>
1995 1995
                         </div>
1996 1996
                         <?php
@@ -2002,10 +2002,10 @@  discard block
 block discarded – undo
2002 2002
                             <div class="geodir-bubble-meta-fade"></div>
2003 2003
 
2004 2004
                             <div class="geodir-bubble-meta-bottom">
2005
-                                <span class="geodir-bubble-rating"><?php echo $rating_star;?></span>
2005
+                                <span class="geodir-bubble-rating"><?php echo $rating_star; ?></span>
2006 2006
 
2007 2007
                                 <span
2008
-                                    class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID);?></span>
2008
+                                    class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID); ?></span>
2009 2009
                   <span class="geodir-bubble-reviews"><a href="<?php echo get_comments_link($ID); ?>"
2010 2010
                                                          class="geodir-pcomments"><i class="fa fa-comments"></i>
2011 2011
                           <?php echo get_comments_number($ID); ?>
@@ -2070,11 +2070,11 @@  discard block
 block discarded – undo
2070 2070
 
2071 2071
         $post_type = get_post_type($post_id);
2072 2072
 
2073
-        $table = $plugin_prefix . $post_type . '_detail';
2073
+        $table = $plugin_prefix.$post_type.'_detail';
2074 2074
 
2075 2075
         $wpdb->query(
2076 2076
             $wpdb->prepare(
2077
-                "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d",
2077
+                "UPDATE ".$table." SET post_status=%s WHERE post_id=%d",
2078 2078
                 array($status, $post_id)
2079 2079
             )
2080 2080
         );
@@ -2146,18 +2146,18 @@  discard block
 block discarded – undo
2146 2146
 
2147 2147
         $post_type = get_post_type($post_id);
2148 2148
 
2149
-        $table = $plugin_prefix . $post_type . '_detail';
2149
+        $table = $plugin_prefix.$post_type.'_detail';
2150 2150
 
2151 2151
         $wpdb->query(
2152 2152
             $wpdb->prepare(
2153
-                "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d",
2153
+                "UPDATE ".$table." SET `post_id` = %d WHERE `post_id` = %d",
2154 2154
                 array($updatingpost, $temppost)
2155 2155
             )
2156 2156
         );
2157 2157
 
2158 2158
         $wpdb->query(
2159 2159
             $wpdb->prepare(
2160
-                "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2160
+                "UPDATE ".GEODIR_ICON_TABLE." SET `post_id` = %d WHERE `post_id` = %d",
2161 2161
                 array($updatingpost, $temppost)
2162 2162
             )
2163 2163
         );
@@ -2166,7 +2166,7 @@  discard block
 block discarded – undo
2166 2166
 
2167 2167
         $wpdb->query(
2168 2168
             $wpdb->prepare(
2169
-                "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2169
+                "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET `post_id` = %d WHERE `post_id` = %d",
2170 2170
                 array($updatingpost, $temppost)
2171 2171
             )
2172 2172
         );
@@ -2204,12 +2204,12 @@  discard block
 block discarded – undo
2204 2204
         if (!in_array($post_type, $all_postypes))
2205 2205
             return false;
2206 2206
 
2207
-        $table = $plugin_prefix . $post_type . '_detail';
2207
+        $table = $plugin_prefix.$post_type.'_detail';
2208 2208
 
2209 2209
         /* Delete custom post meta*/
2210 2210
         $wpdb->query(
2211 2211
             $wpdb->prepare(
2212
-                "DELETE FROM " . $table . " WHERE `post_id` = %d",
2212
+                "DELETE FROM ".$table." WHERE `post_id` = %d",
2213 2213
                 array($deleted_postid)
2214 2214
             )
2215 2215
         );
@@ -2218,7 +2218,7 @@  discard block
 block discarded – undo
2218 2218
 
2219 2219
         $wpdb->query(
2220 2220
             $wpdb->prepare(
2221
-                "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d",
2221
+                "DELETE FROM ".GEODIR_ICON_TABLE." WHERE `post_id` = %d",
2222 2222
                 array($deleted_postid)
2223 2223
             )
2224 2224
         );
@@ -2228,7 +2228,7 @@  discard block
 block discarded – undo
2228 2228
 
2229 2229
         $wpdb->query(
2230 2230
             $wpdb->prepare(
2231
-                "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d",
2231
+                "DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE `post_id` = %d",
2232 2232
                 array($deleted_postid)
2233 2233
             )
2234 2234
         );
@@ -2300,7 +2300,7 @@  discard block
 block discarded – undo
2300 2300
          */
2301 2301
         do_action('geodir_before_add_from_favorite', $post_id);
2302 2302
 
2303
-        echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>';
2303
+        echo '<a href="javascript:void(0);" title="'.$remove_favourite_text.'" class="geodir-removetofav-icon" onclick="javascript:addToFavourite(\''.$post_id.'\',\'remove\');"><i class="'.$favourite_icon.'"></i> '.$unfavourite_text.'</a>';
2304 2304
 
2305 2305
         /**
2306 2306
          * Called after adding the post from favourites.
@@ -2379,7 +2379,7 @@  discard block
 block discarded – undo
2379 2379
          */
2380 2380
         do_action('geodir_before_remove_from_favorite', $post_id);
2381 2381
 
2382
-        echo '<a href="javascript:void(0);"  title="' . $add_favourite_text . '" class="geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>';
2382
+        echo '<a href="javascript:void(0);"  title="'.$add_favourite_text.'" class="geodir-addtofav-icon" onclick="javascript:addToFavourite(\''.$post_id.'\',\'add\');"><i class="'.$favourite_icon.'"></i> '.$favourite_text.'</a>';
2383 2383
 
2384 2384
         /**
2385 2385
          * Called after removing the post from favourites.
@@ -2474,24 +2474,24 @@  discard block
 block discarded – undo
2474 2474
             $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2475 2475
 
2476 2476
         if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
2477
-            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"  ><a
2477
+            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>"  ><a
2478 2478
                 class="geodir-removetofav-icon" href="javascript:void(0);"
2479
-                onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');"
2480
-                title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?>
2479
+                onclick="javascript:addToFavourite(<?php echo $post_id; ?>,'remove');"
2480
+                title="<?php echo $remove_favourite_text; ?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text; ?>
2481 2481
             </a>   </span><?php
2482 2482
 
2483 2483
         } else {
2484 2484
 
2485 2485
             if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
2486
-                $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\'';
2486
+                $script_text = 'javascript:window.location.href=\''.geodir_login_url().'\'';
2487 2487
             } else
2488
-                $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2488
+                $script_text = 'javascript:addToFavourite('.$post_id.',\'add\')';
2489 2489
 
2490
-            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon"
2490
+            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>"><a class="geodir-addtofav-icon"
2491 2491
                                                                                         href="javascript:void(0);"
2492
-                                                                                        onclick="<?php echo $script_text;?>"
2493
-                                                                                        title="<?php echo $add_favourite_text;?>"><i
2494
-                    class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span>
2492
+                                                                                        onclick="<?php echo $script_text; ?>"
2493
+                                                                                        title="<?php echo $add_favourite_text; ?>"><i
2494
+                    class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text; ?></a></span>
2495 2495
         <?php }
2496 2496
     }
2497 2497
 }
@@ -2521,7 +2521,7 @@  discard block
 block discarded – undo
2521 2521
 
2522 2522
             $post_type = $taxonomy_obj->object_type[0];
2523 2523
 
2524
-            $table = $plugin_prefix . $post_type . '_detail';
2524
+            $table = $plugin_prefix.$post_type.'_detail';
2525 2525
 
2526 2526
             /**
2527 2527
              * Filter to modify the 'join' query
@@ -2544,8 +2544,8 @@  discard block
 block discarded – undo
2544 2544
             $where = apply_filters('geodir_cat_post_count_where', $where, $term);
2545 2545
 
2546 2546
             $count_query = "SELECT count(post_id) FROM
2547
-							" . $table . " as pd " . $join . "
2548
-							WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
2547
+							" . $table." as pd ".$join."
2548
+							WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id."',".$term->taxonomy.") ".$where;
2549 2549
 
2550 2550
             $cat_post_count = $wpdb->get_var($count_query);
2551 2551
             if (empty($cat_post_count) || is_wp_error($cat_post_count))
@@ -2628,7 +2628,7 @@  discard block
 block discarded – undo
2628 2628
     global $post;
2629 2629
     $all_postypes = geodir_get_posttypes();
2630 2630
     if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
2631
-        return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>';
2631
+        return ' <a href="'.get_permalink($post->ID).'">'.READ_MORE_TXT.'</a>';
2632 2632
     }
2633 2633
 
2634 2634
     return $more;
@@ -2655,14 +2655,14 @@  discard block
 block discarded – undo
2655 2655
     if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
2656 2656
 
2657 2657
         $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy);
2658
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
2658
+        $table = $plugin_prefix.$geodir_post_type.'_detail';
2659 2659
 
2660 2660
         $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']);
2661
-        $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png';
2661
+        $term_icon = $path_parts['dirname'].'/cat_icon_'.$term_id.'.png';
2662 2662
 
2663 2663
         $posts = $wpdb->get_results(
2664 2664
             $wpdb->prepare(
2665
-                "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ",
2665
+                "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM ".$table." WHERE FIND_IN_SET(%s,%1\$s ) ",
2666 2666
                 array($term_id, $taxonomy)
2667 2667
             )
2668 2668
         );
@@ -2674,19 +2674,19 @@  discard block
 block discarded – undo
2674 2674
                 $lng = $post_obj->post_longitude;
2675 2675
 
2676 2676
                 $json = '{';
2677
-                $json .= '"id":"' . $post_obj->post_id . '",';
2678
-                $json .= '"lat_pos": "' . $lat . '",';
2679
-                $json .= '"long_pos": "' . $lng . '",';
2680
-                $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",';
2681
-                $json .= '"icon":"' . $term_icon . '",';
2682
-                $json .= '"group":"catgroup' . $term_id . '"';
2677
+                $json .= '"id":"'.$post_obj->post_id.'",';
2678
+                $json .= '"lat_pos": "'.$lat.'",';
2679
+                $json .= '"long_pos": "'.$lng.'",';
2680
+                $json .= '"marker_id":"'.$post_obj->post_id.'_'.$term_id.'",';
2681
+                $json .= '"icon":"'.$term_icon.'",';
2682
+                $json .= '"group":"catgroup'.$term_id.'"';
2683 2683
                 $json .= '}';
2684 2684
 
2685 2685
                 if ($post_obj->default_category == $term_id) {
2686 2686
 
2687 2687
                     $wpdb->query(
2688 2688
                         $wpdb->prepare(
2689
-                            "UPDATE " . $table . " SET marker_json = %s where post_id = %d",
2689
+                            "UPDATE ".$table." SET marker_json = %s where post_id = %d",
2690 2690
                             array($json, $post_obj->post_id)
2691 2691
                         )
2692 2692
                     );
@@ -2694,7 +2694,7 @@  discard block
 block discarded – undo
2694 2694
 
2695 2695
                 $wpdb->query(
2696 2696
                     $wpdb->prepare(
2697
-                        "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d",
2697
+                        "UPDATE ".GEODIR_ICON_TABLE." SET json = %s WHERE post_id = %d AND cat_id = %d",
2698 2698
                         array($json, $post_obj->post_id, $term_id)
2699 2699
                     )
2700 2700
                 );
@@ -2818,7 +2818,7 @@  discard block
 block discarded – undo
2818 2818
 //	print_r($uploads ) ;
2819 2819
     $post_first_image = $wpdb->get_results(
2820 2820
         $wpdb->prepare(
2821
-            "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1  ", array($post_id)
2821
+            "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = %d and menu_order = 1  ", array($post_id)
2822 2822
         )
2823 2823
     );
2824 2824
 
@@ -2839,9 +2839,9 @@  discard block
 block discarded – undo
2839 2839
 
2840 2840
         $post_type = get_post_type($post_id);
2841 2841
 
2842
-        $table_name = $plugin_prefix . $post_type . '_detail';
2842
+        $table_name = $plugin_prefix.$post_type.'_detail';
2843 2843
 
2844
-        $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
2844
+        $wpdb->query("UPDATE ".$table_name." SET featured_image='".$post_first_image[0]->file."' WHERE post_id =".$post_id);
2845 2845
 
2846 2846
         $new_attachment_name = basename($post_first_image[0]->file);
2847 2847
 
@@ -2854,11 +2854,11 @@  discard block
 block discarded – undo
2854 2854
                 wp_delete_attachment($post_thumbnail_id);
2855 2855
 
2856 2856
             }
2857
-            $filename = $uploads['basedir'] . $post_first_image[0]->file;
2857
+            $filename = $uploads['basedir'].$post_first_image[0]->file;
2858 2858
 
2859 2859
             $attachment = array(
2860 2860
                 'post_mime_type' => $post_first_image[0]->mime_type,
2861
-                'guid' => $uploads['baseurl'] . $post_first_image[0]->file,
2861
+                'guid' => $uploads['baseurl'].$post_first_image[0]->file,
2862 2862
                 'post_parent' => $post_id,
2863 2863
                 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
2864 2864
                 'post_content' => ''
@@ -2871,7 +2871,7 @@  discard block
 block discarded – undo
2871 2871
 
2872 2872
                 set_post_thumbnail($post_id, $id);
2873 2873
 
2874
-                require_once(ABSPATH . 'wp-admin/includes/image.php');
2874
+                require_once(ABSPATH.'wp-admin/includes/image.php');
2875 2875
                 wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
2876 2876
 
2877 2877
             }
@@ -2904,35 +2904,35 @@  discard block
 block discarded – undo
2904 2904
         $post_id = absint($_POST['post_id']);
2905 2905
         $upload_dir = wp_upload_dir();
2906 2906
         $post_type = get_post_type($_POST['post_id']);
2907
-        $table = $plugin_prefix . $post_type . '_detail';
2907
+        $table = $plugin_prefix.$post_type.'_detail';
2908 2908
 
2909 2909
         $post_arr = $wpdb->get_results($wpdb->prepare(
2910
-            "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1",
2910
+            "SELECT * FROM $wpdb->posts p JOIN ".$table." gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1",
2911 2911
             array($post_id)
2912 2912
         )
2913 2913
             , ARRAY_A);
2914 2914
 
2915 2915
         $arrImages = $wpdb->get_results(
2916 2916
             $wpdb->prepare(
2917
-                "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ",
2917
+                "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ",
2918 2918
                 array('%image%', $post_id)
2919 2919
             )
2920 2920
         );
2921 2921
         if ($arrImages) {
2922 2922
             $image_arr = array();
2923 2923
             foreach ($arrImages as $img) {
2924
-                $image_arr[] = $upload_dir['baseurl'] . $img->file;
2924
+                $image_arr[] = $upload_dir['baseurl'].$img->file;
2925 2925
             }
2926 2926
             $comma_separated = implode(",", $image_arr);
2927 2927
             $post_arr[0]['post_images'] = $comma_separated;
2928 2928
         }
2929 2929
 
2930 2930
 
2931
-        $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category'];
2931
+        $cats = $post_arr[0][$post_arr[0]['post_type'].'category'];
2932 2932
         $cat_arr = array_filter(explode(",", $cats));
2933 2933
         $trans_cat = array();
2934 2934
         foreach ($cat_arr as $cat) {
2935
-            $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false);
2935
+            $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'].'category', false);
2936 2936
         }
2937 2937
 
2938 2938
 
@@ -2974,7 +2974,7 @@  discard block
 block discarded – undo
2974 2974
 
2975 2975
     $get_data = $wpdb->get_results(
2976 2976
         $wpdb->prepare(
2977
-            "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'",
2977
+            "SELECT htmlvar_name, field_type, extra_fields FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type=%s AND is_active='1'",
2978 2978
             array($listing_type)
2979 2979
         )
2980 2980
     );
@@ -2987,12 +2987,12 @@  discard block
 block discarded – undo
2987 2987
 
2988 2988
                 $extra_fields = unserialize($data->extra_fields);
2989 2989
 
2990
-                $prefix = $data->htmlvar_name . '_';
2990
+                $prefix = $data->htmlvar_name.'_';
2991 2991
 
2992
-                $fields_info[$prefix . 'address'] = $data->field_type;
2992
+                $fields_info[$prefix.'address'] = $data->field_type;
2993 2993
 
2994 2994
                 if (isset($extra_fields['show_zip']) && $extra_fields['show_zip'])
2995
-                    $fields_info[$prefix . 'zip'] = $data->field_type;
2995
+                    $fields_info[$prefix.'zip'] = $data->field_type;
2996 2996
 
2997 2997
             } else {
2998 2998
 
@@ -3090,13 +3090,13 @@  discard block
 block discarded – undo
3090 3090
  * @since 1.4.9
3091 3091
  * @package GeoDirectory
3092 3092
  */
3093
-function geodir_fb_like_thumbnail(){
3093
+function geodir_fb_like_thumbnail() {
3094 3094
 
3095 3095
     // return if not a single post
3096
-    if(!is_single()){return;}
3096
+    if (!is_single()) {return; }
3097 3097
 
3098 3098
     global $post;
3099
-    if(isset($post->featured_image) && $post->featured_image){
3099
+    if (isset($post->featured_image) && $post->featured_image) {
3100 3100
         $upload_dir = wp_upload_dir();
3101 3101
         $thumb = $upload_dir['baseurl'].$post->featured_image;
3102 3102
         echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n";
Please login to merge, or discard this patch.
geodirectory-admin/option-pages/create_field.php 3 patches
Braces   +12 added lines, -8 removed lines patch added patch discarded remove patch
@@ -35,23 +35,26 @@  discard block
 block discarded – undo
35 35
 
36 36
 /* ---- Delete field ---- */
37 37
 if ($field_id != '' && $field_action == 'delete' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') {
38
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
39
-        return;
38
+    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id)) {
39
+            return;
40
+    }
40 41
     
41 42
     echo geodir_custom_field_delete($field_id);
42 43
 }
43 44
 
44 45
 if ($field_id != '' && $field_action == 'delete' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') {
45
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
46
-        return;
46
+    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id)) {
47
+            return;
48
+    }
47 49
     
48 50
     echo geodir_custom_sort_field_delete($field_id);
49 51
 }
50 52
 
51 53
 /* ---- Save field  ---- */
52 54
 if ($field_id != '' && $field_action == 'submit' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') {
53
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
54
-        return;
55
+    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id)) {
56
+            return;
57
+    }
55 58
 
56 59
     foreach ($_REQUEST as $pkey => $pval) {
57 60
         if (is_array($_REQUEST[$pkey])) {
@@ -77,8 +80,9 @@  discard block
 block discarded – undo
77 80
 
78 81
 /* ---- Save sort field  ---- */
79 82
 if ($field_id != '' && $field_action == 'submit' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') {
80
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
81
-        return;
83
+    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id)) {
84
+            return;
85
+    }
82 86
 
83 87
     foreach ($_REQUEST as $pkey => $pval) {
84 88
         if (is_array($_REQUEST[$pkey])) {
Please login to merge, or discard this patch.
Indentation   +65 added lines, -65 removed lines patch added patch discarded remove patch
@@ -16,100 +16,100 @@
 block discarded – undo
16 16
 
17 17
 $field_ids = array();
18 18
 if (!empty($_REQUEST['licontainer']) && is_array($_REQUEST['licontainer'])) {
19
-    foreach ($_REQUEST['licontainer'] as $lic_id) {
20
-        $field_ids[] = sanitize_text_field($lic_id);
21
-    }
19
+	foreach ($_REQUEST['licontainer'] as $lic_id) {
20
+		$field_ids[] = sanitize_text_field($lic_id);
21
+	}
22 22
 }
23 23
 
24 24
 /* ------- check nonce field ------- */
25 25
 if (isset($_REQUEST['update']) && $_REQUEST['update'] == "update" && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') {
26
-    echo godir_set_field_order($field_ids);
26
+	echo godir_set_field_order($field_ids);
27 27
 }
28 28
 
29 29
 if (isset($_REQUEST['update']) && $_REQUEST['update'] == "update" && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') {
30
-    $response = godir_set_sort_field_order($field_ids);
31
-    if (is_array($response)) {
32
-        wp_send_json($response);
33
-    } else {
34
-        echo $response;
35
-    }
30
+	$response = godir_set_sort_field_order($field_ids);
31
+	if (is_array($response)) {
32
+		wp_send_json($response);
33
+	} else {
34
+		echo $response;
35
+	}
36 36
 }
37 37
 
38 38
 /* ---- Show field form in admin ---- */
39 39
 if ($field_type != '' && $field_id != '' && $field_action == 'new' && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') {
40
-    geodir_custom_field_adminhtml($field_type, $field_id, $field_action,$field_type_key);
40
+	geodir_custom_field_adminhtml($field_type, $field_id, $field_action,$field_type_key);
41 41
 }
42 42
 
43 43
 if ($field_type != '' && $field_id != '' && $field_action == 'new' && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') {
44
-    geodir_custom_sort_field_adminhtml($field_type, $field_id, $field_action,$field_type_key);
44
+	geodir_custom_sort_field_adminhtml($field_type, $field_id, $field_action,$field_type_key);
45 45
 }
46 46
 
47 47
 /* ---- Delete field ---- */
48 48
 if ($field_id != '' && $field_action == 'delete' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') {
49
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
50
-        return;
49
+	if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
50
+		return;
51 51
     
52
-    echo geodir_custom_field_delete($field_id);
52
+	echo geodir_custom_field_delete($field_id);
53 53
 }
54 54
 
55 55
 if ($field_id != '' && $field_action == 'delete' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') {
56
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
57
-        return;
56
+	if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
57
+		return;
58 58
     
59
-    echo geodir_custom_sort_field_delete($field_id);
59
+	echo geodir_custom_sort_field_delete($field_id);
60 60
 }
61 61
 
62 62
 /* ---- Save field  ---- */
63 63
 if ($field_id != '' && $field_action == 'submit' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') {
64
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
65
-        return;
66
-
67
-    foreach ($_REQUEST as $pkey => $pval) {
68
-        if (is_array($_REQUEST[$pkey]) || $pkey=='default_value') {
69
-            $tags = 'skip_field';
70
-        } else {
71
-            $tags = '';
72
-        }
73
-
74
-        if ($tags != 'skip_field') {
75
-            $_REQUEST[$pkey] = strip_tags($_REQUEST[$pkey], $tags);
76
-        }
77
-    }
78
-
79
-    $return = geodir_custom_field_save($_REQUEST);
80
-
81
-    if (is_int($return)) {
82
-        $lastid = $return;
83
-        geodir_custom_field_adminhtml($field_type, $lastid, 'submit',$field_type_key);
84
-    } else {
85
-        echo $return;
86
-    }
64
+	if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
65
+		return;
66
+
67
+	foreach ($_REQUEST as $pkey => $pval) {
68
+		if (is_array($_REQUEST[$pkey]) || $pkey=='default_value') {
69
+			$tags = 'skip_field';
70
+		} else {
71
+			$tags = '';
72
+		}
73
+
74
+		if ($tags != 'skip_field') {
75
+			$_REQUEST[$pkey] = strip_tags($_REQUEST[$pkey], $tags);
76
+		}
77
+	}
78
+
79
+	$return = geodir_custom_field_save($_REQUEST);
80
+
81
+	if (is_int($return)) {
82
+		$lastid = $return;
83
+		geodir_custom_field_adminhtml($field_type, $lastid, 'submit',$field_type_key);
84
+	} else {
85
+		echo $return;
86
+	}
87 87
 }
88 88
 
89 89
 /* ---- Save sort field  ---- */
90 90
 if ($field_id != '' && $field_action == 'submit' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') {
91
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
92
-        return;
93
-
94
-    foreach ($_REQUEST as $pkey => $pval) {
95
-        if (is_array($_REQUEST[$pkey])) {
96
-            $tags = 'skip_field';
97
-        } else {
98
-            $tags = '';
99
-        }
100
-
101
-        if ($tags != 'skip_field') {
102
-            $_REQUEST[$pkey] = strip_tags($_REQUEST[$pkey], $tags);
103
-        }
104
-    }
105
-
106
-    $return = geodir_custom_sort_field_save($_REQUEST);
107
-
108
-    if (is_int($return)) {
109
-        $lastid = $return;
110
-        $default = false;
111
-        geodir_custom_sort_field_adminhtml($field_type, $lastid, 'submit', $default);
112
-    } else {
113
-        echo $return;
114
-    }
91
+	if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
92
+		return;
93
+
94
+	foreach ($_REQUEST as $pkey => $pval) {
95
+		if (is_array($_REQUEST[$pkey])) {
96
+			$tags = 'skip_field';
97
+		} else {
98
+			$tags = '';
99
+		}
100
+
101
+		if ($tags != 'skip_field') {
102
+			$_REQUEST[$pkey] = strip_tags($_REQUEST[$pkey], $tags);
103
+		}
104
+	}
105
+
106
+	$return = geodir_custom_sort_field_save($_REQUEST);
107
+
108
+	if (is_int($return)) {
109
+		$lastid = $return;
110
+		$default = false;
111
+		geodir_custom_sort_field_adminhtml($field_type, $lastid, 'submit', $default);
112
+	} else {
113
+		echo $return;
114
+	}
115 115
 }
116 116
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -37,23 +37,23 @@  discard block
 block discarded – undo
37 37
 
38 38
 /* ---- Show field form in admin ---- */
39 39
 if ($field_type != '' && $field_id != '' && $field_action == 'new' && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') {
40
-    geodir_custom_field_adminhtml($field_type, $field_id, $field_action,$field_type_key);
40
+    geodir_custom_field_adminhtml($field_type, $field_id, $field_action, $field_type_key);
41 41
 }
42 42
 
43 43
 if ($field_type != '' && $field_id != '' && $field_action == 'new' && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') {
44
-    geodir_custom_sort_field_adminhtml($field_type, $field_id, $field_action,$field_type_key);
44
+    geodir_custom_sort_field_adminhtml($field_type, $field_id, $field_action, $field_type_key);
45 45
 }
46 46
 
47 47
 /* ---- Delete field ---- */
48 48
 if ($field_id != '' && $field_action == 'delete' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') {
49
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
49
+    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_'.$field_id))
50 50
         return;
51 51
     
52 52
     echo geodir_custom_field_delete($field_id);
53 53
 }
54 54
 
55 55
 if ($field_id != '' && $field_action == 'delete' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') {
56
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
56
+    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_'.$field_id))
57 57
         return;
58 58
     
59 59
     echo geodir_custom_sort_field_delete($field_id);
@@ -61,11 +61,11 @@  discard block
 block discarded – undo
61 61
 
62 62
 /* ---- Save field  ---- */
63 63
 if ($field_id != '' && $field_action == 'submit' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') {
64
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
64
+    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_'.$field_id))
65 65
         return;
66 66
 
67 67
     foreach ($_REQUEST as $pkey => $pval) {
68
-        if (is_array($_REQUEST[$pkey]) || $pkey=='default_value') {
68
+        if (is_array($_REQUEST[$pkey]) || $pkey == 'default_value') {
69 69
             $tags = 'skip_field';
70 70
         } else {
71 71
             $tags = '';
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 
81 81
     if (is_int($return)) {
82 82
         $lastid = $return;
83
-        geodir_custom_field_adminhtml($field_type, $lastid, 'submit',$field_type_key);
83
+        geodir_custom_field_adminhtml($field_type, $lastid, 'submit', $field_type_key);
84 84
     } else {
85 85
         echo $return;
86 86
     }
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 
89 89
 /* ---- Save sort field  ---- */
90 90
 if ($field_id != '' && $field_action == 'submit' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') {
91
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
91
+    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_'.$field_id))
92 92
         return;
93 93
 
94 94
     foreach ($_REQUEST as $pkey => $pval) {
Please login to merge, or discard this patch.