@@ -54,8 +54,9 @@ |
||
| 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()); ?>" |
@@ -10,13 +10,13 @@ discard block |
||
| 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,36 +38,36 @@ discard block |
||
| 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 | - ?> |
|
| 60 | + ?> |
|
| 61 | 61 | <form name="cus_loginform" id="cus_loginform" action="<?php echo esc_url(geodir_curPageURL()); ?>" |
| 62 | 62 | method="post"> |
| 63 | 63 | |
| 64 | 64 | <div class="form_row clearfix"> |
| 65 | 65 | <input placeholder='<?php echo USERNAME_TEXT; ?>' type="text" name="log" id="user_login" |
| 66 | 66 | value="<?php global $user_login; |
| 67 | - if (!isset($user_login)) {
|
|
| 68 | - $user_login = ''; |
|
| 69 | - } |
|
| 70 | - echo esc_attr($user_login); ?>" size="20" class="textfield"/> |
|
| 67 | + if (!isset($user_login)) {
|
|
| 68 | + $user_login = ''; |
|
| 69 | + } |
|
| 70 | + echo esc_attr($user_login); ?>" size="20" class="textfield"/> |
|
| 71 | 71 | <span class="user_loginInfo"></span> |
| 72 | 72 | </div> |
| 73 | 73 | |
@@ -78,14 +78,14 @@ discard block |
||
| 78 | 78 | </div> |
| 79 | 79 | |
| 80 | 80 | <?php |
| 81 | - /** |
|
| 82 | - * This is a default WordPress action that calls any additional elements needed for any login forms. |
|
| 83 | - * |
|
| 84 | - * We use this action before the remember me checkbox on the sigin form. |
|
| 85 | - * |
|
| 86 | - * @since 1.0.0 |
|
| 87 | - */ |
|
| 88 | - do_action('login_form'); ?>
|
|
| 81 | + /** |
|
| 82 | + * This is a default WordPress action that calls any additional elements needed for any login forms. |
|
| 83 | + * |
|
| 84 | + * We use this action before the remember me checkbox on the sigin form. |
|
| 85 | + * |
|
| 86 | + * @since 1.0.0 |
|
| 87 | + */ |
|
| 88 | + do_action('login_form'); ?>
|
|
| 89 | 89 | <p class="rember"> |
| 90 | 90 | <input name="rememberme" type="checkbox" id="rememberme" value="forever" class="fl"/> |
| 91 | 91 | <?php echo REMEMBER_ON_COMPUTER_TEXT; ?> |
@@ -109,12 +109,12 @@ discard block |
||
| 109 | 109 | <input placeholder='<?php echo USERNAME_EMAIL_TEXT; ?>' type="text" name="user_login" |
| 110 | 110 | value="<?php echo esc_attr($user_login); ?>" size="20" class="user_login1 textfield"/> |
| 111 | 111 | <?php |
| 112 | - /** |
|
| 113 | - * Called before the get new password button in the login box template. |
|
| 114 | - * |
|
| 115 | - * @since 1.0.0 |
|
| 116 | - */ |
|
| 117 | - do_action('lostpassword_form'); ?>
|
|
| 112 | + /** |
|
| 113 | + * Called before the get new password button in the login box template. |
|
| 114 | + * |
|
| 115 | + * @since 1.0.0 |
|
| 116 | + */ |
|
| 117 | + do_action('lostpassword_form'); ?>
|
|
| 118 | 118 | </div> |
| 119 | 119 | <input type="submit" name="get_new_password" value="<?php echo GET_NEW_PW_TEXT; ?>" class="geodir_button"/> |
| 120 | 120 | </form> |
@@ -49,13 +49,13 @@ |
||
| 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()); ?>" |
@@ -61,10 +61,11 @@ |
||
| 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(); |
@@ -15,9 +15,9 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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> |
@@ -15,9 +15,9 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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(); |
@@ -353,7 +353,7 @@ |
||
| 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 | |
@@ -13,210 +13,210 @@ discard block |
||
| 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 | - * |
|
| 31 | - * @param array $args Widget arguments. |
|
| 32 | - * @param array $instance Saved values from database. |
|
| 33 | - */ |
|
| 34 | - public function widget($args, $instance) { |
|
| 35 | - $params = array(); |
|
| 36 | - /** |
|
| 37 | - * Filter the widget title. |
|
| 38 | - * |
|
| 39 | - * @since 1.5.4 |
|
| 40 | - * |
|
| 41 | - * @param string $title The widget title. Default empty. |
|
| 42 | - * @param array $instance An array of the widget's settings. |
|
| 43 | - * @param mixed $id_base The widget ID. |
|
| 44 | - */ |
|
| 45 | - $params['title'] = apply_filters('geodir_cpt_categories_widget_title', empty($instance['title']) ? '' : $instance['title'], $instance, $this->id_base); |
|
| 46 | - |
|
| 47 | - /** |
|
| 48 | - * Filter the widget setting post type. |
|
| 49 | - * |
|
| 50 | - * @since 1.5.4 |
|
| 51 | - * |
|
| 52 | - * @param array $post_type The post types to display categories. |
|
| 53 | - * @param array $instance An array of the widget's settings. |
|
| 54 | - * @param mixed $id_base The widget ID. |
|
| 55 | - */ |
|
| 56 | - $params['post_type'] = apply_filters('geodir_cpt_categories_widget_post_type', empty($instance['post_type']) ? array() : $instance['post_type'], $instance, $this->id_base); |
|
| 57 | - |
|
| 58 | - /** |
|
| 59 | - * Filter the widget setting to hide empty categories. |
|
| 60 | - * |
|
| 61 | - * @since 1.5.4 |
|
| 62 | - * |
|
| 63 | - * @param bool $hide_empty If true then empty category will be not displayed. |
|
| 64 | - * @param array $instance An array of the widget's settings. |
|
| 65 | - * @param mixed $id_base The widget ID. |
|
| 66 | - */ |
|
| 67 | - $params['hide_empty'] = apply_filters('geodir_cpt_categories_widget_hide_empty', empty($instance['hide_empty']) ? 0 : 1, $instance, $this->id_base); |
|
| 68 | - |
|
| 69 | - /** |
|
| 70 | - * Filter the widget setting to show/hide category count. |
|
| 71 | - * |
|
| 72 | - * @since 1.5.4 |
|
| 73 | - * |
|
| 74 | - * @param bool $show_count If true then category count will be displayed. |
|
| 75 | - * @param array $instance An array of the widget's settings. |
|
| 76 | - * @param mixed $id_base The widget ID. |
|
| 77 | - */ |
|
| 78 | - $params['show_count'] = apply_filters('geodir_cpt_categories_widget_show_count', empty($instance['show_count']) ? 0 : 1, $instance, $this->id_base); |
|
| 79 | - |
|
| 80 | - /** |
|
| 81 | - * Filter the widget setting to show/hide category icon. |
|
| 82 | - * |
|
| 83 | - * @since 1.5.4 |
|
| 84 | - * |
|
| 85 | - * @param bool $hide_icon If true then category icon will be not displayed. |
|
| 86 | - * @param array $instance An array of the widget's settings. |
|
| 87 | - * @param mixed $id_base The widget ID. |
|
| 88 | - */ |
|
| 89 | - $params['hide_icon'] = apply_filters('geodir_cpt_categories_widget_hide_icon', empty($instance['hide_icon']) ? 0 : 1, $instance, $this->id_base); |
|
| 90 | - |
|
| 91 | - /** |
|
| 92 | - * Filter the widget setting to show CPT inline or not. |
|
| 93 | - * |
|
| 94 | - * @since 1.5.4 |
|
| 95 | - * |
|
| 96 | - * @param bool $cpt_left If true then CPT will be displayed inline. |
|
| 97 | - * @param array $instance An array of the widget's settings. |
|
| 98 | - * @param mixed $id_base The widget ID. |
|
| 99 | - */ |
|
| 100 | - $params['cpt_left'] = apply_filters('geodir_cpt_categories_widget_cpt_left', empty($instance['cpt_left']) ? 0 : 1, $instance, $this->id_base); |
|
| 101 | - |
|
| 102 | - /** |
|
| 103 | - * Filter the widget categories sorting order settings. |
|
| 104 | - * |
|
| 105 | - * @since 1.5.4 |
|
| 106 | - * |
|
| 107 | - * @param string $max_count Widget max no of sub-categories count. Default 'count'. |
|
| 108 | - * @param array $instance An array of the widget's settings. |
|
| 109 | - * @param mixed $id_base The widget ID. |
|
| 110 | - */ |
|
| 111 | - $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); |
|
| 112 | - |
|
| 113 | - /** |
|
| 114 | - * Filter the widget max no of sub-categories count. |
|
| 115 | - * |
|
| 116 | - * @since 1.5.4 |
|
| 117 | - * |
|
| 118 | - * @param bool|string $max_count Widget max no of sub-categories count. |
|
| 119 | - * @param array $instance An array of the widget's settings. |
|
| 120 | - * @param mixed $id_base The widget ID. |
|
| 121 | - */ |
|
| 122 | - $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); |
|
| 123 | - |
|
| 124 | - /** |
|
| 125 | - * Filter the widget max sub-categories depth. |
|
| 126 | - * |
|
| 127 | - * @since 1.5.4 |
|
| 128 | - * |
|
| 129 | - * @param bool|string $max_level Widget max sub-categories depth. |
|
| 130 | - * @param array $instance An array of the widget's settings. |
|
| 131 | - * @param mixed $id_base The widget ID. |
|
| 132 | - */ |
|
| 133 | - $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); |
|
| 134 | - |
|
| 135 | - /** |
|
| 136 | - * Filter the widget parameters. |
|
| 137 | - * |
|
| 138 | - * @since 1.5.4 |
|
| 139 | - * |
|
| 140 | - * @param array $params The widget parameters. |
|
| 141 | - * @param array $instance An array of the widget's settings. |
|
| 142 | - * @param mixed $id_base The widget ID. |
|
| 143 | - */ |
|
| 144 | - $params = apply_filters('geodir_cpt_categories_widget_params', $params, $instance, $this->id_base); |
|
| 145 | - |
|
| 146 | - $output = geodir_cpt_categories_output($params); |
|
| 147 | - |
|
| 148 | - echo $args['before_widget']; |
|
| 149 | - if ( $params['title'] ) { |
|
| 150 | - echo '<div class="geodir_list_heading clearfix">'; |
|
| 151 | - echo $args['before_title'] . $params['title'] . $args['after_title']; |
|
| 152 | - echo '</div>'; |
|
| 153 | - } |
|
| 154 | - echo '<div class="gd-cptcats-widget">'; |
|
| 155 | - echo $output; |
|
| 156 | - echo '</div>'; |
|
| 157 | - echo $args['after_widget']; |
|
| 158 | - } |
|
| 159 | - |
|
| 160 | - /** |
|
| 161 | - * Sanitize cpt categories widget values as they are saved. |
|
| 162 | - * |
|
| 163 | - * @since 1.5.4 |
|
| 164 | - * |
|
| 165 | - * @param array $new_instance Values just sent to be saved. |
|
| 166 | - * @param array $old_instance Previously saved values from database. |
|
| 167 | - * |
|
| 168 | - * @return array Updated safe values to be saved. |
|
| 169 | - */ |
|
| 170 | - public function update($new_instance, $old_instance) { |
|
| 171 | - $new_instance['post_type'] = is_array($new_instance['post_type']) && in_array('0', $new_instance['post_type']) ? array('0') : $new_instance['post_type']; |
|
| 172 | - $instance = $old_instance; |
|
| 173 | - $instance['title'] = strip_tags($new_instance['title']); |
|
| 174 | - $instance['post_type'] = isset($new_instance['post_type']) ? $new_instance['post_type'] : array('0'); |
|
| 175 | - $instance['hide_empty'] = !empty($new_instance['hide_empty']) ? 1 : 0; |
|
| 176 | - $instance['show_count'] = !empty($new_instance['show_count']) ? 1 : 0; |
|
| 177 | - $instance['hide_icon'] = !empty($new_instance['hide_icon']) ? 1 : 0; |
|
| 178 | - $instance['cpt_left'] = !empty($new_instance['cpt_left']) ? 1 : 0; |
|
| 179 | - $instance['sort_by'] = isset($new_instance['sort_by']) && in_array($new_instance['sort_by'], array('az', 'count')) ? $new_instance['sort_by'] : 'count'; |
|
| 180 | - $instance['max_count'] = strip_tags($new_instance['max_count']); |
|
| 181 | - $instance['max_level'] = strip_tags($new_instance['max_level']); |
|
| 182 | - |
|
| 183 | - return $instance; |
|
| 184 | - } |
|
| 185 | - |
|
| 186 | - /** |
|
| 187 | - * Back-end cpt categories settings form. |
|
| 188 | - * |
|
| 189 | - * @since 1.5.4 |
|
| 190 | - * |
|
| 191 | - * @param array $instance Previously saved values from database. |
|
| 192 | - */ |
|
| 193 | - public function form($instance) { |
|
| 194 | - $instance = wp_parse_args( (array)$instance, |
|
| 195 | - array( |
|
| 196 | - 'title' => '', |
|
| 197 | - 'post_type' => array(), // NULL for all |
|
| 198 | - 'hide_empty' => '', |
|
| 199 | - 'show_count' => '', |
|
| 200 | - 'hide_icon' => '', |
|
| 201 | - 'cpt_left' => '', |
|
| 202 | - 'sort_by' => 'count', |
|
| 203 | - 'max_count' => 'all', |
|
| 204 | - 'max_level' => '1' |
|
| 205 | - ) |
|
| 206 | - ); |
|
| 207 | - |
|
| 208 | - $title = strip_tags($instance['title']); |
|
| 209 | - $post_type = $instance['post_type']; |
|
| 210 | - $hide_empty = !empty($instance['hide_empty']) ? true : false; |
|
| 211 | - $show_count = !empty($instance['show_count']) ? true : false; |
|
| 212 | - $hide_icon = !empty($instance['hide_icon']) ? true : false; |
|
| 213 | - $cpt_left = !empty($instance['cpt_left']) ? true : false; |
|
| 214 | - $max_count = strip_tags($instance['max_count']); |
|
| 215 | - $max_level = strip_tags($instance['max_level']); |
|
| 216 | - $sort_by = isset($instance['sort_by']) && in_array($instance['sort_by'], array('az', 'count')) ? $instance['sort_by'] : 'count'; |
|
| 217 | - |
|
| 218 | - $post_type_options = geodir_get_posttypes('options'); |
|
| 219 | - ?> |
|
| 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 | + * |
|
| 31 | + * @param array $args Widget arguments. |
|
| 32 | + * @param array $instance Saved values from database. |
|
| 33 | + */ |
|
| 34 | + public function widget($args, $instance) { |
|
| 35 | + $params = array(); |
|
| 36 | + /** |
|
| 37 | + * Filter the widget title. |
|
| 38 | + * |
|
| 39 | + * @since 1.5.4 |
|
| 40 | + * |
|
| 41 | + * @param string $title The widget title. Default empty. |
|
| 42 | + * @param array $instance An array of the widget's settings. |
|
| 43 | + * @param mixed $id_base The widget ID. |
|
| 44 | + */ |
|
| 45 | + $params['title'] = apply_filters('geodir_cpt_categories_widget_title', empty($instance['title']) ? '' : $instance['title'], $instance, $this->id_base); |
|
| 46 | + |
|
| 47 | + /** |
|
| 48 | + * Filter the widget setting post type. |
|
| 49 | + * |
|
| 50 | + * @since 1.5.4 |
|
| 51 | + * |
|
| 52 | + * @param array $post_type The post types to display categories. |
|
| 53 | + * @param array $instance An array of the widget's settings. |
|
| 54 | + * @param mixed $id_base The widget ID. |
|
| 55 | + */ |
|
| 56 | + $params['post_type'] = apply_filters('geodir_cpt_categories_widget_post_type', empty($instance['post_type']) ? array() : $instance['post_type'], $instance, $this->id_base); |
|
| 57 | + |
|
| 58 | + /** |
|
| 59 | + * Filter the widget setting to hide empty categories. |
|
| 60 | + * |
|
| 61 | + * @since 1.5.4 |
|
| 62 | + * |
|
| 63 | + * @param bool $hide_empty If true then empty category will be not displayed. |
|
| 64 | + * @param array $instance An array of the widget's settings. |
|
| 65 | + * @param mixed $id_base The widget ID. |
|
| 66 | + */ |
|
| 67 | + $params['hide_empty'] = apply_filters('geodir_cpt_categories_widget_hide_empty', empty($instance['hide_empty']) ? 0 : 1, $instance, $this->id_base); |
|
| 68 | + |
|
| 69 | + /** |
|
| 70 | + * Filter the widget setting to show/hide category count. |
|
| 71 | + * |
|
| 72 | + * @since 1.5.4 |
|
| 73 | + * |
|
| 74 | + * @param bool $show_count If true then category count will be displayed. |
|
| 75 | + * @param array $instance An array of the widget's settings. |
|
| 76 | + * @param mixed $id_base The widget ID. |
|
| 77 | + */ |
|
| 78 | + $params['show_count'] = apply_filters('geodir_cpt_categories_widget_show_count', empty($instance['show_count']) ? 0 : 1, $instance, $this->id_base); |
|
| 79 | + |
|
| 80 | + /** |
|
| 81 | + * Filter the widget setting to show/hide category icon. |
|
| 82 | + * |
|
| 83 | + * @since 1.5.4 |
|
| 84 | + * |
|
| 85 | + * @param bool $hide_icon If true then category icon will be not displayed. |
|
| 86 | + * @param array $instance An array of the widget's settings. |
|
| 87 | + * @param mixed $id_base The widget ID. |
|
| 88 | + */ |
|
| 89 | + $params['hide_icon'] = apply_filters('geodir_cpt_categories_widget_hide_icon', empty($instance['hide_icon']) ? 0 : 1, $instance, $this->id_base); |
|
| 90 | + |
|
| 91 | + /** |
|
| 92 | + * Filter the widget setting to show CPT inline or not. |
|
| 93 | + * |
|
| 94 | + * @since 1.5.4 |
|
| 95 | + * |
|
| 96 | + * @param bool $cpt_left If true then CPT will be displayed inline. |
|
| 97 | + * @param array $instance An array of the widget's settings. |
|
| 98 | + * @param mixed $id_base The widget ID. |
|
| 99 | + */ |
|
| 100 | + $params['cpt_left'] = apply_filters('geodir_cpt_categories_widget_cpt_left', empty($instance['cpt_left']) ? 0 : 1, $instance, $this->id_base); |
|
| 101 | + |
|
| 102 | + /** |
|
| 103 | + * Filter the widget categories sorting order settings. |
|
| 104 | + * |
|
| 105 | + * @since 1.5.4 |
|
| 106 | + * |
|
| 107 | + * @param string $max_count Widget max no of sub-categories count. Default 'count'. |
|
| 108 | + * @param array $instance An array of the widget's settings. |
|
| 109 | + * @param mixed $id_base The widget ID. |
|
| 110 | + */ |
|
| 111 | + $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); |
|
| 112 | + |
|
| 113 | + /** |
|
| 114 | + * Filter the widget max no of sub-categories count. |
|
| 115 | + * |
|
| 116 | + * @since 1.5.4 |
|
| 117 | + * |
|
| 118 | + * @param bool|string $max_count Widget max no of sub-categories count. |
|
| 119 | + * @param array $instance An array of the widget's settings. |
|
| 120 | + * @param mixed $id_base The widget ID. |
|
| 121 | + */ |
|
| 122 | + $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); |
|
| 123 | + |
|
| 124 | + /** |
|
| 125 | + * Filter the widget max sub-categories depth. |
|
| 126 | + * |
|
| 127 | + * @since 1.5.4 |
|
| 128 | + * |
|
| 129 | + * @param bool|string $max_level Widget max sub-categories depth. |
|
| 130 | + * @param array $instance An array of the widget's settings. |
|
| 131 | + * @param mixed $id_base The widget ID. |
|
| 132 | + */ |
|
| 133 | + $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); |
|
| 134 | + |
|
| 135 | + /** |
|
| 136 | + * Filter the widget parameters. |
|
| 137 | + * |
|
| 138 | + * @since 1.5.4 |
|
| 139 | + * |
|
| 140 | + * @param array $params The widget parameters. |
|
| 141 | + * @param array $instance An array of the widget's settings. |
|
| 142 | + * @param mixed $id_base The widget ID. |
|
| 143 | + */ |
|
| 144 | + $params = apply_filters('geodir_cpt_categories_widget_params', $params, $instance, $this->id_base); |
|
| 145 | + |
|
| 146 | + $output = geodir_cpt_categories_output($params); |
|
| 147 | + |
|
| 148 | + echo $args['before_widget']; |
|
| 149 | + if ( $params['title'] ) { |
|
| 150 | + echo '<div class="geodir_list_heading clearfix">'; |
|
| 151 | + echo $args['before_title'] . $params['title'] . $args['after_title']; |
|
| 152 | + echo '</div>'; |
|
| 153 | + } |
|
| 154 | + echo '<div class="gd-cptcats-widget">'; |
|
| 155 | + echo $output; |
|
| 156 | + echo '</div>'; |
|
| 157 | + echo $args['after_widget']; |
|
| 158 | + } |
|
| 159 | + |
|
| 160 | + /** |
|
| 161 | + * Sanitize cpt categories widget values as they are saved. |
|
| 162 | + * |
|
| 163 | + * @since 1.5.4 |
|
| 164 | + * |
|
| 165 | + * @param array $new_instance Values just sent to be saved. |
|
| 166 | + * @param array $old_instance Previously saved values from database. |
|
| 167 | + * |
|
| 168 | + * @return array Updated safe values to be saved. |
|
| 169 | + */ |
|
| 170 | + public function update($new_instance, $old_instance) { |
|
| 171 | + $new_instance['post_type'] = is_array($new_instance['post_type']) && in_array('0', $new_instance['post_type']) ? array('0') : $new_instance['post_type']; |
|
| 172 | + $instance = $old_instance; |
|
| 173 | + $instance['title'] = strip_tags($new_instance['title']); |
|
| 174 | + $instance['post_type'] = isset($new_instance['post_type']) ? $new_instance['post_type'] : array('0'); |
|
| 175 | + $instance['hide_empty'] = !empty($new_instance['hide_empty']) ? 1 : 0; |
|
| 176 | + $instance['show_count'] = !empty($new_instance['show_count']) ? 1 : 0; |
|
| 177 | + $instance['hide_icon'] = !empty($new_instance['hide_icon']) ? 1 : 0; |
|
| 178 | + $instance['cpt_left'] = !empty($new_instance['cpt_left']) ? 1 : 0; |
|
| 179 | + $instance['sort_by'] = isset($new_instance['sort_by']) && in_array($new_instance['sort_by'], array('az', 'count')) ? $new_instance['sort_by'] : 'count'; |
|
| 180 | + $instance['max_count'] = strip_tags($new_instance['max_count']); |
|
| 181 | + $instance['max_level'] = strip_tags($new_instance['max_level']); |
|
| 182 | + |
|
| 183 | + return $instance; |
|
| 184 | + } |
|
| 185 | + |
|
| 186 | + /** |
|
| 187 | + * Back-end cpt categories settings form. |
|
| 188 | + * |
|
| 189 | + * @since 1.5.4 |
|
| 190 | + * |
|
| 191 | + * @param array $instance Previously saved values from database. |
|
| 192 | + */ |
|
| 193 | + public function form($instance) { |
|
| 194 | + $instance = wp_parse_args( (array)$instance, |
|
| 195 | + array( |
|
| 196 | + 'title' => '', |
|
| 197 | + 'post_type' => array(), // NULL for all |
|
| 198 | + 'hide_empty' => '', |
|
| 199 | + 'show_count' => '', |
|
| 200 | + 'hide_icon' => '', |
|
| 201 | + 'cpt_left' => '', |
|
| 202 | + 'sort_by' => 'count', |
|
| 203 | + 'max_count' => 'all', |
|
| 204 | + 'max_level' => '1' |
|
| 205 | + ) |
|
| 206 | + ); |
|
| 207 | + |
|
| 208 | + $title = strip_tags($instance['title']); |
|
| 209 | + $post_type = $instance['post_type']; |
|
| 210 | + $hide_empty = !empty($instance['hide_empty']) ? true : false; |
|
| 211 | + $show_count = !empty($instance['show_count']) ? true : false; |
|
| 212 | + $hide_icon = !empty($instance['hide_icon']) ? true : false; |
|
| 213 | + $cpt_left = !empty($instance['cpt_left']) ? true : false; |
|
| 214 | + $max_count = strip_tags($instance['max_count']); |
|
| 215 | + $max_level = strip_tags($instance['max_level']); |
|
| 216 | + $sort_by = isset($instance['sort_by']) && in_array($instance['sort_by'], array('az', 'count')) ? $instance['sort_by'] : 'count'; |
|
| 217 | + |
|
| 218 | + $post_type_options = geodir_get_posttypes('options'); |
|
| 219 | + ?> |
|
| 220 | 220 | <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> |
| 221 | 221 | <p> |
| 222 | 222 | <label for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Select CPT:', 'geodirectory'); ?></label> |
@@ -261,7 +261,7 @@ discard block |
||
| 261 | 261 | </select> |
| 262 | 262 | </p> |
| 263 | 263 | <?php |
| 264 | - } |
|
| 264 | + } |
|
| 265 | 265 | } // class geodir_cpt_categories_widget |
| 266 | 266 | |
| 267 | 267 | register_widget('geodir_cpt_categories_widget'); |
@@ -275,152 +275,152 @@ discard block |
||
| 275 | 275 | * @return string CPT categories content. |
| 276 | 276 | */ |
| 277 | 277 | function geodir_cpt_categories_output($params) { |
| 278 | - $args = wp_parse_args((array)$params, |
|
| 279 | - array( |
|
| 280 | - 'title' => '', |
|
| 281 | - 'post_type' => array(), // NULL for all |
|
| 282 | - 'hide_empty' => '', |
|
| 283 | - 'show_count' => '', |
|
| 284 | - 'hide_icon' => '', |
|
| 285 | - 'cpt_left' => '', |
|
| 286 | - 'sort_by' => 'count', |
|
| 287 | - 'max_count' => 'all', |
|
| 288 | - 'max_level' => '1', |
|
| 289 | - ) |
|
| 290 | - ); |
|
| 291 | - |
|
| 292 | - $sort_by = isset($args['sort_by']) && in_array($args['sort_by'], array('az', 'count')) ? $args['sort_by'] : 'count'; |
|
| 293 | - |
|
| 294 | - $gd_post_types = geodir_get_posttypes('array'); |
|
| 295 | - |
|
| 296 | - $post_type_arr = !is_array($args['post_type']) ? explode(',', $args['post_type']) : $args['post_type']; |
|
| 297 | - $current_posttype = geodir_get_current_posttype(); |
|
| 298 | - |
|
| 299 | - $is_listing = false; |
|
| 300 | - $is_category = false; |
|
| 301 | - if (geodir_is_page('listing')) { |
|
| 302 | - $current_posttype = geodir_get_current_posttype(); |
|
| 303 | - |
|
| 304 | - if ($current_posttype != '' && isset($gd_post_types[$current_posttype])) { |
|
| 305 | - $is_listing = true; |
|
| 306 | - |
|
| 307 | - if (is_tax()) { // category page |
|
| 308 | - $current_term_id = get_queried_object_id(); |
|
| 309 | - $current_taxonomy = get_query_var('taxonomy'); |
|
| 310 | - $current_posttype = geodir_get_current_posttype(); |
|
| 311 | - |
|
| 312 | - if ($current_term_id && $current_posttype && get_query_var('taxonomy') == $current_posttype . 'category') { |
|
| 313 | - $is_category = true; |
|
| 314 | - } |
|
| 315 | - } |
|
| 316 | - } |
|
| 317 | - } |
|
| 318 | - |
|
| 319 | - $parent_category = 0; |
|
| 320 | - if ($is_listing) { |
|
| 321 | - $post_type_arr = array($current_posttype); |
|
| 322 | - |
|
| 323 | - if ($is_category) { |
|
| 324 | - $parent_category = $current_term_id; |
|
| 325 | - } |
|
| 326 | - } |
|
| 327 | - |
|
| 328 | - $post_types = array(); |
|
| 329 | - if (!empty($post_type_arr)) { |
|
| 330 | - if (in_array('0', $post_type_arr)) { |
|
| 331 | - $post_types = $gd_post_types; |
|
| 332 | - } else { |
|
| 333 | - foreach ($post_type_arr as $cpt) { |
|
| 334 | - if (isset($gd_post_types[$cpt])) { |
|
| 335 | - $post_types[$cpt] = $gd_post_types[$cpt]; |
|
| 336 | - } |
|
| 337 | - } |
|
| 338 | - } |
|
| 339 | - } |
|
| 340 | - |
|
| 341 | - if (empty($post_type_arr)) { |
|
| 342 | - $post_types = $gd_post_types; |
|
| 343 | - } |
|
| 344 | - |
|
| 345 | - $hide_empty = !empty($args['hide_empty']) ? true : false; |
|
| 346 | - $max_count = strip_tags($args['max_count']); |
|
| 347 | - $all_childs = $max_count == 'all' ? true : false; |
|
| 348 | - $max_count = $max_count > 0 ? (int)$max_count : 0; |
|
| 349 | - $max_level = strip_tags($args['max_level']); |
|
| 350 | - $show_count = !empty($args['show_count']) ? true : false; |
|
| 351 | - $hide_icon = !empty($args['hide_icon']) ? true : false; |
|
| 352 | - $cpt_left = !empty($args['cpt_left']) ? true : false; |
|
| 353 | - |
|
| 354 | - if(!$cpt_left){ |
|
| 355 | - $cpt_left = "gd-cpt-flat"; |
|
| 356 | - }else{ |
|
| 357 | - $cpt_left = ''; |
|
| 358 | - } |
|
| 359 | - |
|
| 360 | - $orderby = 'count'; |
|
| 361 | - $order = 'DESC'; |
|
| 362 | - if ($sort_by == 'az') { |
|
| 363 | - $orderby = 'name'; |
|
| 364 | - $order = 'ASC'; |
|
| 365 | - } |
|
| 366 | - |
|
| 367 | - $output = ''; |
|
| 368 | - if (!empty($post_types)) { |
|
| 369 | - foreach ($post_types as $cpt => $cpt_info) { |
|
| 370 | - $cat_taxonomy = $cpt . 'category'; |
|
| 371 | - $categories = get_terms($cat_taxonomy, array('orderby' => $orderby, 'order' => $order, 'hide_empty' => $hide_empty, 'parent' => $parent_category)); |
|
| 372 | - if ($hide_empty) { |
|
| 373 | - $categories = geodir_filter_empty_terms($categories); |
|
| 374 | - } |
|
| 375 | - if ($sort_by == 'count') { |
|
| 376 | - $categories = geodir_sort_terms($categories, 'count'); |
|
| 377 | - } |
|
| 378 | - |
|
| 379 | - if (!empty($categories)) { |
|
| 380 | - $term_icons = !$hide_icon ? geodir_get_term_icon() : array(); |
|
| 381 | - $row_class = ''; |
|
| 382 | - |
|
| 383 | - if ($is_listing) { |
|
| 384 | - $row_class = $is_category ? ' gd-cptcat-categ' : ' gd-cptcat-listing'; |
|
| 385 | - } |
|
| 386 | - $cpt_row = '<div class="gd-cptcat-row gd-cptcat-' . $cpt . $row_class . ' '.$cpt_left.'">'; |
|
| 387 | - |
|
| 388 | - if ($is_category) { |
|
| 389 | - $term_info = get_term($current_term_id, $cat_taxonomy); |
|
| 390 | - |
|
| 391 | - $term_icon_url = !empty($term_icons) && isset($term_icons[$term_info->term_id]) ? $term_icons[$term_info->term_id] : ''; |
|
| 392 | - $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($term_info->name) . ' icon" src="' . $term_icon_url . '" /> ' : ''; |
|
| 393 | - |
|
| 394 | - $count = $show_count ? ' <span class="gd-cptcat-count">(' . $term_info->count . ')</span>' : ''; |
|
| 395 | - $cpt_row .= '<h2 class="gd-cptcat-title">' . $term_icon_url . $term_info->name . $count . '</h2>'; |
|
| 396 | - } else { |
|
| 397 | - $cpt_row .= '<h2 class="gd-cptcat-title">' . __($cpt_info['labels']['name'], 'geodirectory') . '</h2>'; |
|
| 398 | - } |
|
| 399 | - foreach ($categories as $category) { |
|
| 400 | - $term_icon_url = !empty($term_icons) && isset($term_icons[$category->term_id]) ? $term_icons[$category->term_id] : ''; |
|
| 401 | - $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($category->name) . ' icon" src="' . $term_icon_url . '" /> ' : ''; |
|
| 402 | - |
|
| 403 | - $term_link = get_term_link( $category, $category->taxonomy ); |
|
| 404 | - /** Filter documented in geodirectory-functions/general_functions.php **/ |
|
| 405 | - $term_link = apply_filters( 'geodir_category_term_link', $term_link, $category->term_id, $cpt ); |
|
| 406 | - |
|
| 407 | - $cpt_row .= '<ul class="gd-cptcat-ul gd-cptcat-parent '.$cpt_left.'">'; |
|
| 408 | - $cpt_row .= '<li class="gd-cptcat-li gd-cptcat-li-main">'; |
|
| 409 | - $count = $show_count ? ' <span class="gd-cptcat-count">(' . $category->count . ')</span>' : ''; |
|
| 410 | - $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>'; |
|
| 411 | - if (($all_childs || $max_count > 0) && ($max_level == 'all' || (int)$max_level > 0)) { |
|
| 412 | - $cpt_row .= geodir_cpt_categories_child_cats($category->term_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons); |
|
| 413 | - } |
|
| 414 | - $cpt_row .= '</li>'; |
|
| 415 | - $cpt_row .= '</ul>'; |
|
| 416 | - } |
|
| 417 | - $cpt_row .= '</ul></div>'; |
|
| 418 | - |
|
| 419 | - $output .= $cpt_row; |
|
| 420 | - } |
|
| 421 | - } |
|
| 422 | - } |
|
| 423 | - return $output; |
|
| 278 | + $args = wp_parse_args((array)$params, |
|
| 279 | + array( |
|
| 280 | + 'title' => '', |
|
| 281 | + 'post_type' => array(), // NULL for all |
|
| 282 | + 'hide_empty' => '', |
|
| 283 | + 'show_count' => '', |
|
| 284 | + 'hide_icon' => '', |
|
| 285 | + 'cpt_left' => '', |
|
| 286 | + 'sort_by' => 'count', |
|
| 287 | + 'max_count' => 'all', |
|
| 288 | + 'max_level' => '1', |
|
| 289 | + ) |
|
| 290 | + ); |
|
| 291 | + |
|
| 292 | + $sort_by = isset($args['sort_by']) && in_array($args['sort_by'], array('az', 'count')) ? $args['sort_by'] : 'count'; |
|
| 293 | + |
|
| 294 | + $gd_post_types = geodir_get_posttypes('array'); |
|
| 295 | + |
|
| 296 | + $post_type_arr = !is_array($args['post_type']) ? explode(',', $args['post_type']) : $args['post_type']; |
|
| 297 | + $current_posttype = geodir_get_current_posttype(); |
|
| 298 | + |
|
| 299 | + $is_listing = false; |
|
| 300 | + $is_category = false; |
|
| 301 | + if (geodir_is_page('listing')) { |
|
| 302 | + $current_posttype = geodir_get_current_posttype(); |
|
| 303 | + |
|
| 304 | + if ($current_posttype != '' && isset($gd_post_types[$current_posttype])) { |
|
| 305 | + $is_listing = true; |
|
| 306 | + |
|
| 307 | + if (is_tax()) { // category page |
|
| 308 | + $current_term_id = get_queried_object_id(); |
|
| 309 | + $current_taxonomy = get_query_var('taxonomy'); |
|
| 310 | + $current_posttype = geodir_get_current_posttype(); |
|
| 311 | + |
|
| 312 | + if ($current_term_id && $current_posttype && get_query_var('taxonomy') == $current_posttype . 'category') { |
|
| 313 | + $is_category = true; |
|
| 314 | + } |
|
| 315 | + } |
|
| 316 | + } |
|
| 317 | + } |
|
| 318 | + |
|
| 319 | + $parent_category = 0; |
|
| 320 | + if ($is_listing) { |
|
| 321 | + $post_type_arr = array($current_posttype); |
|
| 322 | + |
|
| 323 | + if ($is_category) { |
|
| 324 | + $parent_category = $current_term_id; |
|
| 325 | + } |
|
| 326 | + } |
|
| 327 | + |
|
| 328 | + $post_types = array(); |
|
| 329 | + if (!empty($post_type_arr)) { |
|
| 330 | + if (in_array('0', $post_type_arr)) { |
|
| 331 | + $post_types = $gd_post_types; |
|
| 332 | + } else { |
|
| 333 | + foreach ($post_type_arr as $cpt) { |
|
| 334 | + if (isset($gd_post_types[$cpt])) { |
|
| 335 | + $post_types[$cpt] = $gd_post_types[$cpt]; |
|
| 336 | + } |
|
| 337 | + } |
|
| 338 | + } |
|
| 339 | + } |
|
| 340 | + |
|
| 341 | + if (empty($post_type_arr)) { |
|
| 342 | + $post_types = $gd_post_types; |
|
| 343 | + } |
|
| 344 | + |
|
| 345 | + $hide_empty = !empty($args['hide_empty']) ? true : false; |
|
| 346 | + $max_count = strip_tags($args['max_count']); |
|
| 347 | + $all_childs = $max_count == 'all' ? true : false; |
|
| 348 | + $max_count = $max_count > 0 ? (int)$max_count : 0; |
|
| 349 | + $max_level = strip_tags($args['max_level']); |
|
| 350 | + $show_count = !empty($args['show_count']) ? true : false; |
|
| 351 | + $hide_icon = !empty($args['hide_icon']) ? true : false; |
|
| 352 | + $cpt_left = !empty($args['cpt_left']) ? true : false; |
|
| 353 | + |
|
| 354 | + if(!$cpt_left){ |
|
| 355 | + $cpt_left = "gd-cpt-flat"; |
|
| 356 | + }else{ |
|
| 357 | + $cpt_left = ''; |
|
| 358 | + } |
|
| 359 | + |
|
| 360 | + $orderby = 'count'; |
|
| 361 | + $order = 'DESC'; |
|
| 362 | + if ($sort_by == 'az') { |
|
| 363 | + $orderby = 'name'; |
|
| 364 | + $order = 'ASC'; |
|
| 365 | + } |
|
| 366 | + |
|
| 367 | + $output = ''; |
|
| 368 | + if (!empty($post_types)) { |
|
| 369 | + foreach ($post_types as $cpt => $cpt_info) { |
|
| 370 | + $cat_taxonomy = $cpt . 'category'; |
|
| 371 | + $categories = get_terms($cat_taxonomy, array('orderby' => $orderby, 'order' => $order, 'hide_empty' => $hide_empty, 'parent' => $parent_category)); |
|
| 372 | + if ($hide_empty) { |
|
| 373 | + $categories = geodir_filter_empty_terms($categories); |
|
| 374 | + } |
|
| 375 | + if ($sort_by == 'count') { |
|
| 376 | + $categories = geodir_sort_terms($categories, 'count'); |
|
| 377 | + } |
|
| 378 | + |
|
| 379 | + if (!empty($categories)) { |
|
| 380 | + $term_icons = !$hide_icon ? geodir_get_term_icon() : array(); |
|
| 381 | + $row_class = ''; |
|
| 382 | + |
|
| 383 | + if ($is_listing) { |
|
| 384 | + $row_class = $is_category ? ' gd-cptcat-categ' : ' gd-cptcat-listing'; |
|
| 385 | + } |
|
| 386 | + $cpt_row = '<div class="gd-cptcat-row gd-cptcat-' . $cpt . $row_class . ' '.$cpt_left.'">'; |
|
| 387 | + |
|
| 388 | + if ($is_category) { |
|
| 389 | + $term_info = get_term($current_term_id, $cat_taxonomy); |
|
| 390 | + |
|
| 391 | + $term_icon_url = !empty($term_icons) && isset($term_icons[$term_info->term_id]) ? $term_icons[$term_info->term_id] : ''; |
|
| 392 | + $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($term_info->name) . ' icon" src="' . $term_icon_url . '" /> ' : ''; |
|
| 393 | + |
|
| 394 | + $count = $show_count ? ' <span class="gd-cptcat-count">(' . $term_info->count . ')</span>' : ''; |
|
| 395 | + $cpt_row .= '<h2 class="gd-cptcat-title">' . $term_icon_url . $term_info->name . $count . '</h2>'; |
|
| 396 | + } else { |
|
| 397 | + $cpt_row .= '<h2 class="gd-cptcat-title">' . __($cpt_info['labels']['name'], 'geodirectory') . '</h2>'; |
|
| 398 | + } |
|
| 399 | + foreach ($categories as $category) { |
|
| 400 | + $term_icon_url = !empty($term_icons) && isset($term_icons[$category->term_id]) ? $term_icons[$category->term_id] : ''; |
|
| 401 | + $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($category->name) . ' icon" src="' . $term_icon_url . '" /> ' : ''; |
|
| 402 | + |
|
| 403 | + $term_link = get_term_link( $category, $category->taxonomy ); |
|
| 404 | + /** Filter documented in geodirectory-functions/general_functions.php **/ |
|
| 405 | + $term_link = apply_filters( 'geodir_category_term_link', $term_link, $category->term_id, $cpt ); |
|
| 406 | + |
|
| 407 | + $cpt_row .= '<ul class="gd-cptcat-ul gd-cptcat-parent '.$cpt_left.'">'; |
|
| 408 | + $cpt_row .= '<li class="gd-cptcat-li gd-cptcat-li-main">'; |
|
| 409 | + $count = $show_count ? ' <span class="gd-cptcat-count">(' . $category->count . ')</span>' : ''; |
|
| 410 | + $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>'; |
|
| 411 | + if (($all_childs || $max_count > 0) && ($max_level == 'all' || (int)$max_level > 0)) { |
|
| 412 | + $cpt_row .= geodir_cpt_categories_child_cats($category->term_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons); |
|
| 413 | + } |
|
| 414 | + $cpt_row .= '</li>'; |
|
| 415 | + $cpt_row .= '</ul>'; |
|
| 416 | + } |
|
| 417 | + $cpt_row .= '</ul></div>'; |
|
| 418 | + |
|
| 419 | + $output .= $cpt_row; |
|
| 420 | + } |
|
| 421 | + } |
|
| 422 | + } |
|
| 423 | + return $output; |
|
| 424 | 424 | } |
| 425 | 425 | |
| 426 | 426 | /** |
@@ -440,49 +440,49 @@ discard block |
||
| 440 | 440 | * @return string Html content. |
| 441 | 441 | */ |
| 442 | 442 | function geodir_cpt_categories_child_cats($parent_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons, $depth = 1) { |
| 443 | - $cat_taxonomy = $cpt . 'category'; |
|
| 444 | - |
|
| 445 | - $orderby = 'count'; |
|
| 446 | - $order = 'DESC'; |
|
| 447 | - if ($sort_by == 'az') { |
|
| 448 | - $orderby = 'name'; |
|
| 449 | - $order = 'ASC'; |
|
| 450 | - } |
|
| 451 | - |
|
| 452 | - if ($max_level != 'all' && $depth > (int)$max_level ) { |
|
| 453 | - return ''; |
|
| 454 | - } |
|
| 455 | - |
|
| 456 | - $child_cats = get_terms($cat_taxonomy, array('orderby' => $orderby, 'order' => $order, 'hide_empty' => $hide_empty, 'parent' => $parent_id, 'number' => $max_count)); |
|
| 457 | - if ($hide_empty) { |
|
| 458 | - $child_cats = geodir_filter_empty_terms($child_cats); |
|
| 459 | - } |
|
| 460 | - |
|
| 461 | - if (empty($child_cats)) { |
|
| 462 | - return ''; |
|
| 463 | - } |
|
| 464 | - |
|
| 465 | - if ($sort_by == 'count') { |
|
| 466 | - $child_cats = geodir_sort_terms($child_cats, 'count'); |
|
| 467 | - } |
|
| 468 | - |
|
| 469 | - $content = '<li class="gd-cptcat-li gd-cptcat-li-sub"><ul class="gd-cptcat-ul gd-cptcat-sub gd-cptcat-sub-' . $depth . '">'; |
|
| 470 | - $depth++; |
|
| 471 | - foreach ($child_cats as $category) { |
|
| 472 | - $term_icon_url = !empty($term_icons) && isset($term_icons[$category->term_id]) ? $term_icons[$category->term_id] : ''; |
|
| 473 | - $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($category->name) . ' icon" src="' . $term_icon_url . '" /> ' : ''; |
|
| 474 | - $term_link = get_term_link( $category, $category->taxonomy ); |
|
| 475 | - /** Filter documented in geodirectory-functions/general_functions.php **/ |
|
| 476 | - $term_link = apply_filters( 'geodir_category_term_link', $term_link, $category->term_id, $cpt ); |
|
| 477 | - $count = $show_count ? ' <span class="gd-cptcat-count">(' . $category->count . ')</span>' : ''; |
|
| 478 | - |
|
| 479 | - $content .= '<li class="gd-cptcat-li gd-cptcat-li-sub">'; |
|
| 480 | - $content .= '<a href="' . esc_url($term_link) . '" title="' . esc_attr($category->name) . '">' . $term_icon_url . $category->name . $count . '</a></li>'; |
|
| 481 | - $content .= geodir_cpt_categories_child_cats($category->term_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons, $depth); |
|
| 482 | - } |
|
| 483 | - $content .= '</li></ul>'; |
|
| 484 | - |
|
| 485 | - return $content; |
|
| 443 | + $cat_taxonomy = $cpt . 'category'; |
|
| 444 | + |
|
| 445 | + $orderby = 'count'; |
|
| 446 | + $order = 'DESC'; |
|
| 447 | + if ($sort_by == 'az') { |
|
| 448 | + $orderby = 'name'; |
|
| 449 | + $order = 'ASC'; |
|
| 450 | + } |
|
| 451 | + |
|
| 452 | + if ($max_level != 'all' && $depth > (int)$max_level ) { |
|
| 453 | + return ''; |
|
| 454 | + } |
|
| 455 | + |
|
| 456 | + $child_cats = get_terms($cat_taxonomy, array('orderby' => $orderby, 'order' => $order, 'hide_empty' => $hide_empty, 'parent' => $parent_id, 'number' => $max_count)); |
|
| 457 | + if ($hide_empty) { |
|
| 458 | + $child_cats = geodir_filter_empty_terms($child_cats); |
|
| 459 | + } |
|
| 460 | + |
|
| 461 | + if (empty($child_cats)) { |
|
| 462 | + return ''; |
|
| 463 | + } |
|
| 464 | + |
|
| 465 | + if ($sort_by == 'count') { |
|
| 466 | + $child_cats = geodir_sort_terms($child_cats, 'count'); |
|
| 467 | + } |
|
| 468 | + |
|
| 469 | + $content = '<li class="gd-cptcat-li gd-cptcat-li-sub"><ul class="gd-cptcat-ul gd-cptcat-sub gd-cptcat-sub-' . $depth . '">'; |
|
| 470 | + $depth++; |
|
| 471 | + foreach ($child_cats as $category) { |
|
| 472 | + $term_icon_url = !empty($term_icons) && isset($term_icons[$category->term_id]) ? $term_icons[$category->term_id] : ''; |
|
| 473 | + $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($category->name) . ' icon" src="' . $term_icon_url . '" /> ' : ''; |
|
| 474 | + $term_link = get_term_link( $category, $category->taxonomy ); |
|
| 475 | + /** Filter documented in geodirectory-functions/general_functions.php **/ |
|
| 476 | + $term_link = apply_filters( 'geodir_category_term_link', $term_link, $category->term_id, $cpt ); |
|
| 477 | + $count = $show_count ? ' <span class="gd-cptcat-count">(' . $category->count . ')</span>' : ''; |
|
| 478 | + |
|
| 479 | + $content .= '<li class="gd-cptcat-li gd-cptcat-li-sub">'; |
|
| 480 | + $content .= '<a href="' . esc_url($term_link) . '" title="' . esc_attr($category->name) . '">' . $term_icon_url . $category->name . $count . '</a></li>'; |
|
| 481 | + $content .= geodir_cpt_categories_child_cats($category->term_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons, $depth); |
|
| 482 | + } |
|
| 483 | + $content .= '</li></ul>'; |
|
| 484 | + |
|
| 485 | + return $content; |
|
| 486 | 486 | } |
| 487 | 487 | |
| 488 | 488 | /** |
@@ -494,16 +494,16 @@ discard block |
||
| 494 | 494 | * @return array Terms. |
| 495 | 495 | */ |
| 496 | 496 | function geodir_filter_empty_terms($terms) { |
| 497 | - if (empty($terms)) { |
|
| 498 | - return $terms; |
|
| 499 | - } |
|
| 500 | - |
|
| 501 | - $return = array(); |
|
| 502 | - foreach ($terms as $term) { |
|
| 503 | - if (isset($term->count) && $term->count > 0) { |
|
| 504 | - $return[] = $term; |
|
| 505 | - } |
|
| 506 | - } |
|
| 507 | - return $return; |
|
| 497 | + if (empty($terms)) { |
|
| 498 | + return $terms; |
|
| 499 | + } |
|
| 500 | + |
|
| 501 | + $return = array(); |
|
| 502 | + foreach ($terms as $term) { |
|
| 503 | + if (isset($term->count) && $term->count > 0) { |
|
| 504 | + $return[] = $term; |
|
| 505 | + } |
|
| 506 | + } |
|
| 507 | + return $return; |
|
| 508 | 508 | } |
| 509 | 509 | ?> |
| 510 | 510 | \ No newline at end of file |
@@ -146,9 +146,9 @@ discard block |
||
| 146 | 146 | $output = geodir_cpt_categories_output($params); |
| 147 | 147 | |
| 148 | 148 | echo $args['before_widget']; |
| 149 | - if ( $params['title'] ) { |
|
| 149 | + if ($params['title']) { |
|
| 150 | 150 | echo '<div class="geodir_list_heading clearfix">'; |
| 151 | - echo $args['before_title'] . $params['title'] . $args['after_title']; |
|
| 151 | + echo $args['before_title'].$params['title'].$args['after_title']; |
|
| 152 | 152 | echo '</div>'; |
| 153 | 153 | } |
| 154 | 154 | echo '<div class="gd-cptcats-widget">'; |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | * @param array $instance Previously saved values from database. |
| 192 | 192 | */ |
| 193 | 193 | public function form($instance) { |
| 194 | - $instance = wp_parse_args( (array)$instance, |
|
| 194 | + $instance = wp_parse_args((array) $instance, |
|
| 195 | 195 | array( |
| 196 | 196 | 'title' => '', |
| 197 | 197 | 'post_type' => array(), // NULL for all |
@@ -221,42 +221,42 @@ discard block |
||
| 221 | 221 | <p> |
| 222 | 222 | <label for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Select CPT:', 'geodirectory'); ?></label> |
| 223 | 223 | <select name="<?php echo $this->get_field_name('post_type'); ?>[]" id="<?php echo $this->get_field_id('post_type'); ?>" class="widefat" multiple="multiple"> |
| 224 | - <option value="0" <?php selected( (empty($post_type) || (is_array($post_type) && in_array('0', $post_type))), true ); ?>><?php _e('All', 'geodirectory'); ?></option> |
|
| 224 | + <option value="0" <?php selected((empty($post_type) || (is_array($post_type) && in_array('0', $post_type))), true); ?>><?php _e('All', 'geodirectory'); ?></option> |
|
| 225 | 225 | <?php foreach ($post_type_options as $name => $title) { ?> |
| 226 | - <option value="<?php echo $name;?>" <?php selected( is_array($post_type) && in_array($name, $post_type), true ); ?>><?php echo $title; ?></option> |
|
| 226 | + <option value="<?php echo $name; ?>" <?php selected(is_array($post_type) && in_array($name, $post_type), true); ?>><?php echo $title; ?></option> |
|
| 227 | 227 | <?php } ?> |
| 228 | 228 | </select> |
| 229 | 229 | </p> |
| 230 | - <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" /> |
|
| 231 | - <label for="<?php echo $this->get_field_id('hide_empty'); ?>"><?php _e( 'Hide empty categories', 'geodirectory' ); ?></label><br /> |
|
| 232 | - <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" /> |
|
| 233 | - <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 /> |
|
| 234 | - <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" /> |
|
| 235 | - <label for="<?php echo $this->get_field_id('hide_icon'); ?>"><?php _e( 'Hide category icon', 'geodirectory' ); ?></label><br /> |
|
| 236 | - <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" /> |
|
| 237 | - <label for="<?php echo $this->get_field_id('cpt_left'); ?>"><?php _e( 'Show CPT on same line', 'geodirectory' ); ?></label> |
|
| 230 | + <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" /> |
|
| 231 | + <label for="<?php echo $this->get_field_id('hide_empty'); ?>"><?php _e('Hide empty categories', 'geodirectory'); ?></label><br /> |
|
| 232 | + <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" /> |
|
| 233 | + <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 /> |
|
| 234 | + <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" /> |
|
| 235 | + <label for="<?php echo $this->get_field_id('hide_icon'); ?>"><?php _e('Hide category icon', 'geodirectory'); ?></label><br /> |
|
| 236 | + <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" /> |
|
| 237 | + <label for="<?php echo $this->get_field_id('cpt_left'); ?>"><?php _e('Show CPT on same line', 'geodirectory'); ?></label> |
|
| 238 | 238 | <p> |
| 239 | 239 | <label for="<?php echo $this->get_field_id('sort_by'); ?>"><?php _e('Sort by:', 'geodirectory'); ?></label> |
| 240 | 240 | <select name="<?php echo $this->get_field_name('sort_by'); ?>" id="<?php echo $this->get_field_id('sort_by'); ?>" class="widefat"> |
| 241 | - <option value="az" <?php selected( $sort_by, 'az' ); ?>><?php _e('A-Z', 'geodirectory'); ?></option> |
|
| 242 | - <option value="count" <?php selected( $sort_by, 'count' ); ?>><?php _e('Count', 'geodirectory'); ?></option> |
|
| 241 | + <option value="az" <?php selected($sort_by, 'az'); ?>><?php _e('A-Z', 'geodirectory'); ?></option> |
|
| 242 | + <option value="count" <?php selected($sort_by, 'count'); ?>><?php _e('Count', 'geodirectory'); ?></option> |
|
| 243 | 243 | </select> |
| 244 | 244 | </p> |
| 245 | 245 | <p> |
| 246 | 246 | <label for="<?php echo $this->get_field_id('max_count'); ?>"><?php _e('Max no of sub-categories:', 'geodirectory'); ?></label> |
| 247 | 247 | <select name="<?php echo $this->get_field_name('max_count'); ?>" id="<?php echo $this->get_field_id('max_count'); ?>" class="widefat"> |
| 248 | - <option value="all" <?php selected( $max_count, 'all' ); ?>><?php _e('All', 'geodirectory'); ?></option> |
|
| 248 | + <option value="all" <?php selected($max_count, 'all'); ?>><?php _e('All', 'geodirectory'); ?></option> |
|
| 249 | 249 | <?php for ($n = 10; $n >= 0; $n--) { ?> |
| 250 | - <option value="<?php echo $n;?>" <?php selected( $max_count, $n ); ?>><?php echo $n; ?></option> |
|
| 250 | + <option value="<?php echo $n; ?>" <?php selected($max_count, $n); ?>><?php echo $n; ?></option> |
|
| 251 | 251 | <?php } ?> |
| 252 | 252 | </select> |
| 253 | 253 | </p> |
| 254 | 254 | <p> |
| 255 | 255 | <label for="<?php echo $this->get_field_id('max_level'); ?>"><?php _e('Show max sub-categories depth:', 'geodirectory'); ?></label> |
| 256 | 256 | <select name="<?php echo $this->get_field_name('max_level'); ?>" id="<?php echo $this->get_field_id('max_level'); ?>" class="widefat"> |
| 257 | - <option value="all" <?php selected( $max_level, 'all' ); ?>><?php _e('All', 'geodirectory'); ?></option> |
|
| 257 | + <option value="all" <?php selected($max_level, 'all'); ?>><?php _e('All', 'geodirectory'); ?></option> |
|
| 258 | 258 | <?php for ($n = 0; $n <= 10; $n++) { ?> |
| 259 | - <option value="<?php echo $n;?>" <?php selected( $max_level, $n ); ?>><?php echo $n; ?></option> |
|
| 259 | + <option value="<?php echo $n; ?>" <?php selected($max_level, $n); ?>><?php echo $n; ?></option> |
|
| 260 | 260 | <?php } ?> |
| 261 | 261 | </select> |
| 262 | 262 | </p> |
@@ -275,7 +275,7 @@ discard block |
||
| 275 | 275 | * @return string CPT categories content. |
| 276 | 276 | */ |
| 277 | 277 | function geodir_cpt_categories_output($params) { |
| 278 | - $args = wp_parse_args((array)$params, |
|
| 278 | + $args = wp_parse_args((array) $params, |
|
| 279 | 279 | array( |
| 280 | 280 | 'title' => '', |
| 281 | 281 | 'post_type' => array(), // NULL for all |
@@ -309,7 +309,7 @@ discard block |
||
| 309 | 309 | $current_taxonomy = get_query_var('taxonomy'); |
| 310 | 310 | $current_posttype = geodir_get_current_posttype(); |
| 311 | 311 | |
| 312 | - if ($current_term_id && $current_posttype && get_query_var('taxonomy') == $current_posttype . 'category') { |
|
| 312 | + if ($current_term_id && $current_posttype && get_query_var('taxonomy') == $current_posttype.'category') { |
|
| 313 | 313 | $is_category = true; |
| 314 | 314 | } |
| 315 | 315 | } |
@@ -345,15 +345,15 @@ discard block |
||
| 345 | 345 | $hide_empty = !empty($args['hide_empty']) ? true : false; |
| 346 | 346 | $max_count = strip_tags($args['max_count']); |
| 347 | 347 | $all_childs = $max_count == 'all' ? true : false; |
| 348 | - $max_count = $max_count > 0 ? (int)$max_count : 0; |
|
| 348 | + $max_count = $max_count > 0 ? (int) $max_count : 0; |
|
| 349 | 349 | $max_level = strip_tags($args['max_level']); |
| 350 | 350 | $show_count = !empty($args['show_count']) ? true : false; |
| 351 | 351 | $hide_icon = !empty($args['hide_icon']) ? true : false; |
| 352 | 352 | $cpt_left = !empty($args['cpt_left']) ? true : false; |
| 353 | 353 | |
| 354 | - if(!$cpt_left){ |
|
| 354 | + if (!$cpt_left) { |
|
| 355 | 355 | $cpt_left = "gd-cpt-flat"; |
| 356 | - }else{ |
|
| 356 | + } else { |
|
| 357 | 357 | $cpt_left = ''; |
| 358 | 358 | } |
| 359 | 359 | |
@@ -367,7 +367,7 @@ discard block |
||
| 367 | 367 | $output = ''; |
| 368 | 368 | if (!empty($post_types)) { |
| 369 | 369 | foreach ($post_types as $cpt => $cpt_info) { |
| 370 | - $cat_taxonomy = $cpt . 'category'; |
|
| 370 | + $cat_taxonomy = $cpt.'category'; |
|
| 371 | 371 | $categories = get_terms($cat_taxonomy, array('orderby' => $orderby, 'order' => $order, 'hide_empty' => $hide_empty, 'parent' => $parent_category)); |
| 372 | 372 | if ($hide_empty) { |
| 373 | 373 | $categories = geodir_filter_empty_terms($categories); |
@@ -383,32 +383,32 @@ discard block |
||
| 383 | 383 | if ($is_listing) { |
| 384 | 384 | $row_class = $is_category ? ' gd-cptcat-categ' : ' gd-cptcat-listing'; |
| 385 | 385 | } |
| 386 | - $cpt_row = '<div class="gd-cptcat-row gd-cptcat-' . $cpt . $row_class . ' '.$cpt_left.'">'; |
|
| 386 | + $cpt_row = '<div class="gd-cptcat-row gd-cptcat-'.$cpt.$row_class.' '.$cpt_left.'">'; |
|
| 387 | 387 | |
| 388 | 388 | if ($is_category) { |
| 389 | 389 | $term_info = get_term($current_term_id, $cat_taxonomy); |
| 390 | 390 | |
| 391 | 391 | $term_icon_url = !empty($term_icons) && isset($term_icons[$term_info->term_id]) ? $term_icons[$term_info->term_id] : ''; |
| 392 | - $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($term_info->name) . ' icon" src="' . $term_icon_url . '" /> ' : ''; |
|
| 392 | + $term_icon_url = $term_icon_url != '' ? '<img alt="'.esc_attr($term_info->name).' icon" src="'.$term_icon_url.'" /> ' : ''; |
|
| 393 | 393 | |
| 394 | - $count = $show_count ? ' <span class="gd-cptcat-count">(' . $term_info->count . ')</span>' : ''; |
|
| 395 | - $cpt_row .= '<h2 class="gd-cptcat-title">' . $term_icon_url . $term_info->name . $count . '</h2>'; |
|
| 394 | + $count = $show_count ? ' <span class="gd-cptcat-count">('.$term_info->count.')</span>' : ''; |
|
| 395 | + $cpt_row .= '<h2 class="gd-cptcat-title">'.$term_icon_url.$term_info->name.$count.'</h2>'; |
|
| 396 | 396 | } else { |
| 397 | - $cpt_row .= '<h2 class="gd-cptcat-title">' . __($cpt_info['labels']['name'], 'geodirectory') . '</h2>'; |
|
| 397 | + $cpt_row .= '<h2 class="gd-cptcat-title">'.__($cpt_info['labels']['name'], 'geodirectory').'</h2>'; |
|
| 398 | 398 | } |
| 399 | 399 | foreach ($categories as $category) { |
| 400 | 400 | $term_icon_url = !empty($term_icons) && isset($term_icons[$category->term_id]) ? $term_icons[$category->term_id] : ''; |
| 401 | - $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($category->name) . ' icon" src="' . $term_icon_url . '" /> ' : ''; |
|
| 401 | + $term_icon_url = $term_icon_url != '' ? '<img alt="'.esc_attr($category->name).' icon" src="'.$term_icon_url.'" /> ' : ''; |
|
| 402 | 402 | |
| 403 | - $term_link = get_term_link( $category, $category->taxonomy ); |
|
| 403 | + $term_link = get_term_link($category, $category->taxonomy); |
|
| 404 | 404 | /** Filter documented in geodirectory-functions/general_functions.php **/ |
| 405 | - $term_link = apply_filters( 'geodir_category_term_link', $term_link, $category->term_id, $cpt ); |
|
| 405 | + $term_link = apply_filters('geodir_category_term_link', $term_link, $category->term_id, $cpt); |
|
| 406 | 406 | |
| 407 | 407 | $cpt_row .= '<ul class="gd-cptcat-ul gd-cptcat-parent '.$cpt_left.'">'; |
| 408 | 408 | $cpt_row .= '<li class="gd-cptcat-li gd-cptcat-li-main">'; |
| 409 | - $count = $show_count ? ' <span class="gd-cptcat-count">(' . $category->count . ')</span>' : ''; |
|
| 410 | - $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>'; |
|
| 411 | - if (($all_childs || $max_count > 0) && ($max_level == 'all' || (int)$max_level > 0)) { |
|
| 409 | + $count = $show_count ? ' <span class="gd-cptcat-count">('.$category->count.')</span>' : ''; |
|
| 410 | + $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>'; |
|
| 411 | + if (($all_childs || $max_count > 0) && ($max_level == 'all' || (int) $max_level > 0)) { |
|
| 412 | 412 | $cpt_row .= geodir_cpt_categories_child_cats($category->term_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons); |
| 413 | 413 | } |
| 414 | 414 | $cpt_row .= '</li>'; |
@@ -440,7 +440,7 @@ discard block |
||
| 440 | 440 | * @return string Html content. |
| 441 | 441 | */ |
| 442 | 442 | function geodir_cpt_categories_child_cats($parent_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons, $depth = 1) { |
| 443 | - $cat_taxonomy = $cpt . 'category'; |
|
| 443 | + $cat_taxonomy = $cpt.'category'; |
|
| 444 | 444 | |
| 445 | 445 | $orderby = 'count'; |
| 446 | 446 | $order = 'DESC'; |
@@ -449,7 +449,7 @@ discard block |
||
| 449 | 449 | $order = 'ASC'; |
| 450 | 450 | } |
| 451 | 451 | |
| 452 | - if ($max_level != 'all' && $depth > (int)$max_level ) { |
|
| 452 | + if ($max_level != 'all' && $depth > (int) $max_level) { |
|
| 453 | 453 | return ''; |
| 454 | 454 | } |
| 455 | 455 | |
@@ -466,18 +466,18 @@ discard block |
||
| 466 | 466 | $child_cats = geodir_sort_terms($child_cats, 'count'); |
| 467 | 467 | } |
| 468 | 468 | |
| 469 | - $content = '<li class="gd-cptcat-li gd-cptcat-li-sub"><ul class="gd-cptcat-ul gd-cptcat-sub gd-cptcat-sub-' . $depth . '">'; |
|
| 469 | + $content = '<li class="gd-cptcat-li gd-cptcat-li-sub"><ul class="gd-cptcat-ul gd-cptcat-sub gd-cptcat-sub-'.$depth.'">'; |
|
| 470 | 470 | $depth++; |
| 471 | 471 | foreach ($child_cats as $category) { |
| 472 | 472 | $term_icon_url = !empty($term_icons) && isset($term_icons[$category->term_id]) ? $term_icons[$category->term_id] : ''; |
| 473 | - $term_icon_url = $term_icon_url != '' ? '<img alt="' . esc_attr($category->name) . ' icon" src="' . $term_icon_url . '" /> ' : ''; |
|
| 474 | - $term_link = get_term_link( $category, $category->taxonomy ); |
|
| 473 | + $term_icon_url = $term_icon_url != '' ? '<img alt="'.esc_attr($category->name).' icon" src="'.$term_icon_url.'" /> ' : ''; |
|
| 474 | + $term_link = get_term_link($category, $category->taxonomy); |
|
| 475 | 475 | /** Filter documented in geodirectory-functions/general_functions.php **/ |
| 476 | - $term_link = apply_filters( 'geodir_category_term_link', $term_link, $category->term_id, $cpt ); |
|
| 477 | - $count = $show_count ? ' <span class="gd-cptcat-count">(' . $category->count . ')</span>' : ''; |
|
| 476 | + $term_link = apply_filters('geodir_category_term_link', $term_link, $category->term_id, $cpt); |
|
| 477 | + $count = $show_count ? ' <span class="gd-cptcat-count">('.$category->count.')</span>' : ''; |
|
| 478 | 478 | |
| 479 | 479 | $content .= '<li class="gd-cptcat-li gd-cptcat-li-sub">'; |
| 480 | - $content .= '<a href="' . esc_url($term_link) . '" title="' . esc_attr($category->name) . '">' . $term_icon_url . $category->name . $count . '</a></li>'; |
|
| 480 | + $content .= '<a href="'.esc_url($term_link).'" title="'.esc_attr($category->name).'">'.$term_icon_url.$category->name.$count.'</a></li>'; |
|
| 481 | 481 | $content .= geodir_cpt_categories_child_cats($category->term_id, $cpt, $hide_empty, $show_count, $sort_by, $max_count, $max_level, $term_icons, $depth); |
| 482 | 482 | } |
| 483 | 483 | $content .= '</li></ul>'; |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | {
|
| 91 | 91 | |
| 92 | 92 | //widgetform in backend |
| 93 | - $instance = wp_parse_args((array)$instance, |
|
| 93 | + $instance = wp_parse_args((array) $instance, |
|
| 94 | 94 | array('title' => '',
|
| 95 | 95 | 'post_type' => '', |
| 96 | 96 | 'category' => '', |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | ?> |
| 147 | 147 | |
| 148 | 148 | <p> |
| 149 | - <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory');?>
|
|
| 149 | + <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory'); ?>
|
|
| 150 | 150 | |
| 151 | 151 | <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>"
|
| 152 | 152 | name="<?php echo $this->get_field_name('title'); ?>" type="text"
|
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | |
| 157 | 157 | <p> |
| 158 | 158 | <label |
| 159 | - for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Post Type:', 'geodirectory');?>
|
|
| 159 | + for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Post Type:', 'geodirectory'); ?>
|
|
| 160 | 160 | |
| 161 | 161 | <?php $postypes = geodir_get_posttypes(); ?> |
| 162 | 162 | |
@@ -180,7 +180,7 @@ discard block |
||
| 180 | 180 | |
| 181 | 181 | <p> |
| 182 | 182 | <label |
| 183 | - for="<?php echo $this->get_field_id('category'); ?>"><?php _e('Post Category:', 'geodirectory');?>
|
|
| 183 | + for="<?php echo $this->get_field_id('category'); ?>"><?php _e('Post Category:', 'geodirectory'); ?>
|
|
| 184 | 184 | |
| 185 | 185 | <?php |
| 186 | 186 | $category_taxonomy = geodir_get_taxonomies('gd_place');
|
@@ -217,7 +217,7 @@ discard block |
||
| 217 | 217 | </p> |
| 218 | 218 | <p> |
| 219 | 219 | <label |
| 220 | - for="<?php echo $this->get_field_id('post_number'); ?>"><?php _e('Number of posts(total):', 'geodirectory');?>
|
|
| 220 | + for="<?php echo $this->get_field_id('post_number'); ?>"><?php _e('Number of posts(total):', 'geodirectory'); ?>
|
|
| 221 | 221 | <input class="widefat" id="<?php echo $this->get_field_id('post_number'); ?>"
|
| 222 | 222 | name="<?php echo $this->get_field_name('post_number'); ?>" type="text"
|
| 223 | 223 | value="<?php echo esc_attr($post_number); ?>"/> |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | |
| 227 | 227 | <p> |
| 228 | 228 | <label |
| 229 | - for="<?php echo $this->get_field_id('max_show'); ?>"><?php _e('Number of posts(shown at one time, requires a slide width to be set):', 'geodirectory');?>
|
|
| 229 | + for="<?php echo $this->get_field_id('max_show'); ?>"><?php _e('Number of posts(shown at one time, requires a slide width to be set):', 'geodirectory'); ?>
|
|
| 230 | 230 | <input class="widefat" id="<?php echo $this->get_field_id('max_show'); ?>"
|
| 231 | 231 | name="<?php echo $this->get_field_name('max_show'); ?>" type="text"
|
| 232 | 232 | value="<?php echo esc_attr($max_show); ?>"/> |
@@ -235,7 +235,7 @@ discard block |
||
| 235 | 235 | |
| 236 | 236 | <p> |
| 237 | 237 | <label |
| 238 | - for="<?php echo $this->get_field_id('slide_width'); ?>"><?php _e('Slide width(leave blank unless showing more than one slide at a time, ex: 210):', 'geodirectory');?>
|
|
| 238 | + for="<?php echo $this->get_field_id('slide_width'); ?>"><?php _e('Slide width(leave blank unless showing more than one slide at a time, ex: 210):', 'geodirectory'); ?>
|
|
| 239 | 239 | <input class="widefat" id="<?php echo $this->get_field_id('slide_width'); ?>"
|
| 240 | 240 | name="<?php echo $this->get_field_name('slide_width'); ?>" type="text"
|
| 241 | 241 | value="<?php echo esc_attr($slide_width); ?>"/> |
@@ -244,7 +244,7 @@ discard block |
||
| 244 | 244 | |
| 245 | 245 | <p> |
| 246 | 246 | <label |
| 247 | - for="<?php echo $this->get_field_id('animation'); ?>"><?php _e('Animation:', 'geodirectory');?>
|
|
| 247 | + for="<?php echo $this->get_field_id('animation'); ?>"><?php _e('Animation:', 'geodirectory'); ?>
|
|
| 248 | 248 | |
| 249 | 249 | <select class="widefat" id="<?php echo $this->get_field_id('animation'); ?>"
|
| 250 | 250 | name="<?php echo $this->get_field_name('animation'); ?>">
|
@@ -262,7 +262,7 @@ discard block |
||
| 262 | 262 | |
| 263 | 263 | <p> |
| 264 | 264 | <label |
| 265 | - for="<?php echo $this->get_field_id('slideshowSpeed'); ?>"><?php _e('Slide Show Speed: (milliseconds)', 'geodirectory');?>
|
|
| 265 | + for="<?php echo $this->get_field_id('slideshowSpeed'); ?>"><?php _e('Slide Show Speed: (milliseconds)', 'geodirectory'); ?>
|
|
| 266 | 266 | |
| 267 | 267 | <input class="widefat" id="<?php echo $this->get_field_id('slideshowSpeed'); ?>"
|
| 268 | 268 | name="<?php echo $this->get_field_name('slideshowSpeed'); ?>" type="text"
|
@@ -272,7 +272,7 @@ discard block |
||
| 272 | 272 | |
| 273 | 273 | <p> |
| 274 | 274 | <label |
| 275 | - for="<?php echo $this->get_field_id('animationSpeed'); ?>"><?php _e('Animation Speed: (milliseconds)', 'geodirectory');?>
|
|
| 275 | + for="<?php echo $this->get_field_id('animationSpeed'); ?>"><?php _e('Animation Speed: (milliseconds)', 'geodirectory'); ?>
|
|
| 276 | 276 | |
| 277 | 277 | <input class="widefat" id="<?php echo $this->get_field_id('animationSpeed'); ?>"
|
| 278 | 278 | name="<?php echo $this->get_field_name('animationSpeed'); ?>" type="text"
|
@@ -282,7 +282,7 @@ discard block |
||
| 282 | 282 | |
| 283 | 283 | <p> |
| 284 | 284 | <label |
| 285 | - for="<?php echo $this->get_field_id('slideshow'); ?>"><?php _e('SlideShow:', 'geodirectory');?>
|
|
| 285 | + for="<?php echo $this->get_field_id('slideshow'); ?>"><?php _e('SlideShow:', 'geodirectory'); ?>
|
|
| 286 | 286 | |
| 287 | 287 | <input type="checkbox" <?php if ($slideshow) {
|
| 288 | 288 | echo 'checked="checked"'; |
@@ -294,7 +294,7 @@ discard block |
||
| 294 | 294 | |
| 295 | 295 | <p> |
| 296 | 296 | <label |
| 297 | - for="<?php echo $this->get_field_id('animationLoop'); ?>"><?php _e('AnimationLoop:', 'geodirectory');?>
|
|
| 297 | + for="<?php echo $this->get_field_id('animationLoop'); ?>"><?php _e('AnimationLoop:', 'geodirectory'); ?>
|
|
| 298 | 298 | |
| 299 | 299 | <input type="checkbox" <?php if ($animationLoop) {
|
| 300 | 300 | echo 'checked="checked"'; |
@@ -306,7 +306,7 @@ discard block |
||
| 306 | 306 | |
| 307 | 307 | <p> |
| 308 | 308 | <label |
| 309 | - for="<?php echo $this->get_field_id('directionNav'); ?>"><?php _e('DirectionNav:', 'geodirectory');?>
|
|
| 309 | + for="<?php echo $this->get_field_id('directionNav'); ?>"><?php _e('DirectionNav:', 'geodirectory'); ?>
|
|
| 310 | 310 | |
| 311 | 311 | <input type="checkbox" <?php if ($directionNav) {
|
| 312 | 312 | echo 'checked="checked"'; |
@@ -319,7 +319,7 @@ discard block |
||
| 319 | 319 | |
| 320 | 320 | <p> |
| 321 | 321 | <label |
| 322 | - for="<?php echo $this->get_field_id('show_title'); ?>"><?php _e('Show Title:', 'geodirectory');?>
|
|
| 322 | + for="<?php echo $this->get_field_id('show_title'); ?>"><?php _e('Show Title:', 'geodirectory'); ?>
|
|
| 323 | 323 | |
| 324 | 324 | <input type="checkbox" <?php if ($show_title) {
|
| 325 | 325 | echo 'checked="checked"'; |
@@ -353,10 +353,10 @@ discard block |
||
| 353 | 353 | |
| 354 | 354 | } |
| 355 | 355 | |
| 356 | - <?php if(is_active_widget( false, false, $this->id_base, true )){ ?>
|
|
| 356 | + <?php if (is_active_widget(false, false, $this->id_base, true)) { ?>
|
|
| 357 | 357 | var post_type = jQuery('#<?php echo $this->get_field_id('post_type'); ?>').val();
|
| 358 | 358 | |
| 359 | - geodir_change_category_list(post_type, '<?php echo $category;?>'); |
|
| 359 | + geodir_change_category_list(post_type, '<?php echo $category; ?>'); |
|
| 360 | 360 | <?php } ?> |
| 361 | 361 | |
| 362 | 362 | </script> |
@@ -332,7 +332,10 @@ |
||
| 332 | 332 | <label |
| 333 | 333 | for="<?php echo $this->get_field_id('show_featured_only'); ?>"><?php _e('Show only featured listings:', 'geodirectory'); ?>
|
| 334 | 334 | <input type="checkbox" id="<?php echo $this->get_field_id('show_featured_only'); ?>"
|
| 335 | - name="<?php echo $this->get_field_name('show_featured_only'); ?>" <?php if ($show_featured_only) echo 'checked="checked"'; ?>
|
|
| 335 | + name="<?php echo $this->get_field_name('show_featured_only'); ?>" <?php if ($show_featured_only) { |
|
| 336 | + echo 'checked="checked"'; |
|
| 337 | +} |
|
| 338 | +?> |
|
| 336 | 339 | value="1"/> |
| 337 | 340 | </label> |
| 338 | 341 | </p> |
@@ -15,40 +15,40 @@ discard block |
||
| 15 | 15 | class geodir_listing_slider_widget extends WP_Widget |
| 16 | 16 | {
|
| 17 | 17 | |
| 18 | - /** |
|
| 18 | + /** |
|
| 19 | 19 | * Register the listing slider widget. |
| 20 | 20 | * |
| 21 | 21 | * @since 1.0.0 |
| 22 | - * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
| 22 | + * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
| 23 | 23 | */ |
| 24 | - public function __construct() {
|
|
| 25 | - $widget_ops = array('classname' => 'geodir_listing_slider_view', 'description' => __('GD > Listing Slider', 'geodirectory'));
|
|
| 26 | - parent::__construct( |
|
| 27 | - 'listing_slider_view', // Base ID |
|
| 28 | - __('GD > Listing Slider', 'geodirectory'), // Name
|
|
| 29 | - $widget_ops// Args |
|
| 30 | - ); |
|
| 31 | - } |
|
| 24 | + public function __construct() {
|
|
| 25 | + $widget_ops = array('classname' => 'geodir_listing_slider_view', 'description' => __('GD > Listing Slider', 'geodirectory'));
|
|
| 26 | + parent::__construct( |
|
| 27 | + 'listing_slider_view', // Base ID |
|
| 28 | + __('GD > Listing Slider', 'geodirectory'), // Name
|
|
| 29 | + $widget_ops// Args |
|
| 30 | + ); |
|
| 31 | + } |
|
| 32 | 32 | |
| 33 | 33 | /** |
| 34 | 34 | * Front-end display content for listing slider widget. |
| 35 | 35 | * |
| 36 | 36 | * @since 1.0.0 |
| 37 | - * @since 1.5.1 Declare function public. |
|
| 37 | + * @since 1.5.1 Declare function public. |
|
| 38 | 38 | * |
| 39 | 39 | * @param array $args Widget arguments. |
| 40 | 40 | * @param array $instance Saved values from database. |
| 41 | 41 | */ |
| 42 | - public function widget($args, $instance) |
|
| 43 | - {
|
|
| 44 | - geodir_listing_slider_widget_output($args, $instance); |
|
| 45 | - } |
|
| 42 | + public function widget($args, $instance) |
|
| 43 | + {
|
|
| 44 | + geodir_listing_slider_widget_output($args, $instance); |
|
| 45 | + } |
|
| 46 | 46 | |
| 47 | 47 | /** |
| 48 | 48 | * Sanitize listing slider widget form values as they are saved. |
| 49 | 49 | * |
| 50 | 50 | * @since 1.0.0 |
| 51 | - * @since 1.5.1 Declare function public. |
|
| 51 | + * @since 1.5.1 Declare function public. |
|
| 52 | 52 | * |
| 53 | 53 | * @param array $new_instance Values just sent to be saved. |
| 54 | 54 | * @param array $old_instance Previously saved values from database. |
@@ -56,94 +56,94 @@ discard block |
||
| 56 | 56 | * @return array Updated safe values to be saved. |
| 57 | 57 | */ |
| 58 | 58 | public function update($new_instance, $old_instance) |
| 59 | - {
|
|
| 60 | - //save the widget |
|
| 61 | - $instance = $old_instance; |
|
| 62 | - $instance['title'] = strip_tags($new_instance['title']); |
|
| 63 | - $instance['post_type'] = strip_tags($new_instance['post_type']); |
|
| 64 | - $instance['category'] = strip_tags($new_instance['category']); |
|
| 65 | - $instance['post_number'] = strip_tags($new_instance['post_number']); |
|
| 66 | - $instance['max_show'] = strip_tags($new_instance['max_show']); |
|
| 67 | - $instance['slide_width'] = strip_tags($new_instance['slide_width']); |
|
| 68 | - $instance['show_title'] = isset($new_instance['show_title']) ? $new_instance['show_title'] : ''; |
|
| 69 | - $instance['slideshow'] = isset($new_instance['slideshow']) ? $new_instance['slideshow'] : ''; |
|
| 70 | - $instance['animationLoop'] = isset($new_instance['animationLoop']) ? $new_instance['animationLoop'] : ''; |
|
| 71 | - $instance['directionNav'] = isset($new_instance['directionNav']) ? $new_instance['directionNav'] : ''; |
|
| 72 | - $instance['slideshowSpeed'] = $new_instance['slideshowSpeed']; |
|
| 73 | - $instance['animationSpeed'] = $new_instance['animationSpeed']; |
|
| 74 | - $instance['animation'] = $new_instance['animation']; |
|
| 75 | - $instance['list_sort'] = isset($new_instance['list_sort']) ? $new_instance['list_sort'] : ''; |
|
| 76 | - $instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0; |
|
| 77 | - |
|
| 78 | - return $instance; |
|
| 79 | - } |
|
| 59 | + {
|
|
| 60 | + //save the widget |
|
| 61 | + $instance = $old_instance; |
|
| 62 | + $instance['title'] = strip_tags($new_instance['title']); |
|
| 63 | + $instance['post_type'] = strip_tags($new_instance['post_type']); |
|
| 64 | + $instance['category'] = strip_tags($new_instance['category']); |
|
| 65 | + $instance['post_number'] = strip_tags($new_instance['post_number']); |
|
| 66 | + $instance['max_show'] = strip_tags($new_instance['max_show']); |
|
| 67 | + $instance['slide_width'] = strip_tags($new_instance['slide_width']); |
|
| 68 | + $instance['show_title'] = isset($new_instance['show_title']) ? $new_instance['show_title'] : ''; |
|
| 69 | + $instance['slideshow'] = isset($new_instance['slideshow']) ? $new_instance['slideshow'] : ''; |
|
| 70 | + $instance['animationLoop'] = isset($new_instance['animationLoop']) ? $new_instance['animationLoop'] : ''; |
|
| 71 | + $instance['directionNav'] = isset($new_instance['directionNav']) ? $new_instance['directionNav'] : ''; |
|
| 72 | + $instance['slideshowSpeed'] = $new_instance['slideshowSpeed']; |
|
| 73 | + $instance['animationSpeed'] = $new_instance['animationSpeed']; |
|
| 74 | + $instance['animation'] = $new_instance['animation']; |
|
| 75 | + $instance['list_sort'] = isset($new_instance['list_sort']) ? $new_instance['list_sort'] : ''; |
|
| 76 | + $instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0; |
|
| 77 | + |
|
| 78 | + return $instance; |
|
| 79 | + } |
|
| 80 | 80 | |
| 81 | 81 | /** |
| 82 | 82 | * Back-end listing slider widget settings form. |
| 83 | 83 | * |
| 84 | 84 | * @since 1.0.0 |
| 85 | - * @since 1.5.1 Declare function public. |
|
| 85 | + * @since 1.5.1 Declare function public. |
|
| 86 | 86 | * |
| 87 | 87 | * @param array $instance Previously saved values from database. |
| 88 | 88 | */ |
| 89 | 89 | public function form($instance) |
| 90 | - {
|
|
| 90 | + {
|
|
| 91 | 91 | |
| 92 | - //widgetform in backend |
|
| 93 | - $instance = wp_parse_args((array)$instance, |
|
| 94 | - array('title' => '',
|
|
| 95 | - 'post_type' => '', |
|
| 96 | - 'category' => '', |
|
| 97 | - 'post_number' => '5', |
|
| 98 | - 'max_show' => '1', |
|
| 99 | - 'slide_width' => '', |
|
| 100 | - 'show_title' => '', |
|
| 101 | - 'slideshow' => '', |
|
| 102 | - 'animationLoop' => '', |
|
| 103 | - 'directionNav' => '', |
|
| 104 | - 'slideshowSpeed' => 5000, |
|
| 105 | - 'animationSpeed' => 600, |
|
| 106 | - 'animation' => '', |
|
| 107 | - 'list_sort' => 'latest', |
|
| 108 | - 'show_featured_only' => '', |
|
| 109 | - ) |
|
| 110 | - ); |
|
| 92 | + //widgetform in backend |
|
| 93 | + $instance = wp_parse_args((array)$instance, |
|
| 94 | + array('title' => '',
|
|
| 95 | + 'post_type' => '', |
|
| 96 | + 'category' => '', |
|
| 97 | + 'post_number' => '5', |
|
| 98 | + 'max_show' => '1', |
|
| 99 | + 'slide_width' => '', |
|
| 100 | + 'show_title' => '', |
|
| 101 | + 'slideshow' => '', |
|
| 102 | + 'animationLoop' => '', |
|
| 103 | + 'directionNav' => '', |
|
| 104 | + 'slideshowSpeed' => 5000, |
|
| 105 | + 'animationSpeed' => 600, |
|
| 106 | + 'animation' => '', |
|
| 107 | + 'list_sort' => 'latest', |
|
| 108 | + 'show_featured_only' => '', |
|
| 109 | + ) |
|
| 110 | + ); |
|
| 111 | 111 | |
| 112 | - $title = strip_tags($instance['title']); |
|
| 112 | + $title = strip_tags($instance['title']); |
|
| 113 | 113 | |
| 114 | - $post_type = strip_tags($instance['post_type']); |
|
| 114 | + $post_type = strip_tags($instance['post_type']); |
|
| 115 | 115 | |
| 116 | - $category = strip_tags($instance['category']); |
|
| 116 | + $category = strip_tags($instance['category']); |
|
| 117 | 117 | |
| 118 | - $post_number = strip_tags($instance['post_number']); |
|
| 118 | + $post_number = strip_tags($instance['post_number']); |
|
| 119 | 119 | |
| 120 | - $max_show = strip_tags($instance['max_show']); |
|
| 120 | + $max_show = strip_tags($instance['max_show']); |
|
| 121 | 121 | |
| 122 | - $slide_width = strip_tags($instance['slide_width']); |
|
| 122 | + $slide_width = strip_tags($instance['slide_width']); |
|
| 123 | 123 | |
| 124 | - $show_title = $instance['show_title']; |
|
| 124 | + $show_title = $instance['show_title']; |
|
| 125 | 125 | |
| 126 | - $slideshow = $instance['slideshow']; |
|
| 126 | + $slideshow = $instance['slideshow']; |
|
| 127 | 127 | |
| 128 | - $animationLoop = $instance['animationLoop']; |
|
| 128 | + $animationLoop = $instance['animationLoop']; |
|
| 129 | 129 | |
| 130 | - $directionNav = $instance['directionNav']; |
|
| 130 | + $directionNav = $instance['directionNav']; |
|
| 131 | 131 | |
| 132 | - $slideshowSpeed = $instance['slideshowSpeed']; |
|
| 132 | + $slideshowSpeed = $instance['slideshowSpeed']; |
|
| 133 | 133 | |
| 134 | - $animationSpeed = $instance['animationSpeed']; |
|
| 134 | + $animationSpeed = $instance['animationSpeed']; |
|
| 135 | 135 | |
| 136 | - $animation = $instance['animation']; |
|
| 137 | - $list_sort = $instance['list_sort']; |
|
| 138 | - $show_featured_only = isset($instance['show_featured_only']) && $instance['show_featured_only'] ? true : false; |
|
| 136 | + $animation = $instance['animation']; |
|
| 137 | + $list_sort = $instance['list_sort']; |
|
| 138 | + $show_featured_only = isset($instance['show_featured_only']) && $instance['show_featured_only'] ? true : false; |
|
| 139 | 139 | |
| 140 | - $sort_fields = array(); |
|
| 141 | - $sort_fields[] = array('field' => 'latest', 'label' => __('Latest', 'geodirectory'));
|
|
| 142 | - $sort_fields[] = array('field' => 'featured', 'label' => __('Featured', 'geodirectory'));
|
|
| 143 | - $sort_fields[] = array('field' => 'high_review', 'label' => __('Review', 'geodirectory'));
|
|
| 144 | - $sort_fields[] = array('field' => 'high_rating', 'label' => __('Rating', 'geodirectory'));
|
|
| 145 | - $sort_fields[] = array('field' => 'random', 'label' => __('Random', 'geodirectory'));
|
|
| 146 | - ?> |
|
| 140 | + $sort_fields = array(); |
|
| 141 | + $sort_fields[] = array('field' => 'latest', 'label' => __('Latest', 'geodirectory'));
|
|
| 142 | + $sort_fields[] = array('field' => 'featured', 'label' => __('Featured', 'geodirectory'));
|
|
| 143 | + $sort_fields[] = array('field' => 'high_review', 'label' => __('Review', 'geodirectory'));
|
|
| 144 | + $sort_fields[] = array('field' => 'high_rating', 'label' => __('Rating', 'geodirectory'));
|
|
| 145 | + $sort_fields[] = array('field' => 'random', 'label' => __('Random', 'geodirectory'));
|
|
| 146 | + ?> |
|
| 147 | 147 | |
| 148 | 148 | <p> |
| 149 | 149 | <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory');?>
|
@@ -167,9 +167,9 @@ discard block |
||
| 167 | 167 | <?php foreach ($postypes as $postypes_obj) { ?>
|
| 168 | 168 | |
| 169 | 169 | <option <?php if ($post_type == $postypes_obj) {
|
| 170 | - echo 'selected="selected"'; |
|
| 171 | - } ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj);
|
|
| 172 | - echo ucfirst($extvalue[1]); ?></option> |
|
| 170 | + echo 'selected="selected"'; |
|
| 171 | + } ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj);
|
|
| 172 | + echo ucfirst($extvalue[1]); ?></option> |
|
| 173 | 173 | |
| 174 | 174 | <?php } ?> |
| 175 | 175 | |
@@ -183,20 +183,20 @@ discard block |
||
| 183 | 183 | for="<?php echo $this->get_field_id('category'); ?>"><?php _e('Post Category:', 'geodirectory');?>
|
| 184 | 184 | |
| 185 | 185 | <?php |
| 186 | - $category_taxonomy = geodir_get_taxonomies('gd_place');
|
|
| 187 | - $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC'));
|
|
| 188 | - ?> |
|
| 186 | + $category_taxonomy = geodir_get_taxonomies('gd_place');
|
|
| 187 | + $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC'));
|
|
| 188 | + ?> |
|
| 189 | 189 | |
| 190 | 190 | <select class="widefat" id="<?php echo $this->get_field_id('category'); ?>"
|
| 191 | 191 | name="<?php echo $this->get_field_name('category'); ?>">
|
| 192 | 192 | <option <?php if ($category == '0') {
|
| 193 | - echo 'selected="selected"'; |
|
| 194 | - } ?> value="0"><?php _e('All', 'geodirectory'); ?></option>
|
|
| 193 | + echo 'selected="selected"'; |
|
| 194 | + } ?> value="0"><?php _e('All', 'geodirectory'); ?></option>
|
|
| 195 | 195 | <?php foreach ($categories as $category_obj) { ?>
|
| 196 | 196 | |
| 197 | 197 | <option <?php if ($category == $category_obj->term_id) {
|
| 198 | - echo 'selected="selected"'; |
|
| 199 | - } ?> |
|
| 198 | + echo 'selected="selected"'; |
|
| 199 | + } ?> |
|
| 200 | 200 | value="<?php echo $category_obj->term_id; ?>"><?php echo ucfirst($category_obj->name); ?></option> |
| 201 | 201 | |
| 202 | 202 | <?php } ?> |
@@ -249,12 +249,12 @@ discard block |
||
| 249 | 249 | <select class="widefat" id="<?php echo $this->get_field_id('animation'); ?>"
|
| 250 | 250 | name="<?php echo $this->get_field_name('animation'); ?>">
|
| 251 | 251 | <option <?php if ($animation == 'slide') {
|
| 252 | - echo 'selected="selected"'; |
|
| 253 | - } ?> value="slide">Slide |
|
| 252 | + echo 'selected="selected"'; |
|
| 253 | + } ?> value="slide">Slide |
|
| 254 | 254 | </option> |
| 255 | 255 | <option <?php if ($animation == 'fade') {
|
| 256 | - echo 'selected="selected"'; |
|
| 257 | - } ?> value="fade">Fade |
|
| 256 | + echo 'selected="selected"'; |
|
| 257 | + } ?> value="fade">Fade |
|
| 258 | 258 | </option> |
| 259 | 259 | </select> |
| 260 | 260 | </label> |
@@ -285,8 +285,8 @@ discard block |
||
| 285 | 285 | for="<?php echo $this->get_field_id('slideshow'); ?>"><?php _e('SlideShow:', 'geodirectory');?>
|
| 286 | 286 | |
| 287 | 287 | <input type="checkbox" <?php if ($slideshow) {
|
| 288 | - echo 'checked="checked"'; |
|
| 289 | - } ?> id="<?php echo $this->get_field_id('slideshow'); ?>" value="1"
|
|
| 288 | + echo 'checked="checked"'; |
|
| 289 | + } ?> id="<?php echo $this->get_field_id('slideshow'); ?>" value="1"
|
|
| 290 | 290 | name="<?php echo $this->get_field_name('slideshow'); ?>"/>
|
| 291 | 291 | |
| 292 | 292 | </label> |
@@ -297,8 +297,8 @@ discard block |
||
| 297 | 297 | for="<?php echo $this->get_field_id('animationLoop'); ?>"><?php _e('AnimationLoop:', 'geodirectory');?>
|
| 298 | 298 | |
| 299 | 299 | <input type="checkbox" <?php if ($animationLoop) {
|
| 300 | - echo 'checked="checked"'; |
|
| 301 | - } ?> id="<?php echo $this->get_field_id('animationLoop'); ?>" value="1"
|
|
| 300 | + echo 'checked="checked"'; |
|
| 301 | + } ?> id="<?php echo $this->get_field_id('animationLoop'); ?>" value="1"
|
|
| 302 | 302 | name="<?php echo $this->get_field_name('animationLoop'); ?>"/>
|
| 303 | 303 | |
| 304 | 304 | </label> |
@@ -309,8 +309,8 @@ discard block |
||
| 309 | 309 | for="<?php echo $this->get_field_id('directionNav'); ?>"><?php _e('DirectionNav:', 'geodirectory');?>
|
| 310 | 310 | |
| 311 | 311 | <input type="checkbox" <?php if ($directionNav) {
|
| 312 | - echo 'checked="checked"'; |
|
| 313 | - } ?> id="<?php echo $this->get_field_id('directionNav'); ?>" value="1"
|
|
| 312 | + echo 'checked="checked"'; |
|
| 313 | + } ?> id="<?php echo $this->get_field_id('directionNav'); ?>" value="1"
|
|
| 314 | 314 | name="<?php echo $this->get_field_name('directionNav'); ?>"/>
|
| 315 | 315 | |
| 316 | 316 | </label> |
@@ -322,8 +322,8 @@ discard block |
||
| 322 | 322 | for="<?php echo $this->get_field_id('show_title'); ?>"><?php _e('Show Title:', 'geodirectory');?>
|
| 323 | 323 | |
| 324 | 324 | <input type="checkbox" <?php if ($show_title) {
|
| 325 | - echo 'checked="checked"'; |
|
| 326 | - } ?> id="<?php echo $this->get_field_id('show_title'); ?>" value="1"
|
|
| 325 | + echo 'checked="checked"'; |
|
| 326 | + } ?> id="<?php echo $this->get_field_id('show_title'); ?>" value="1"
|
|
| 327 | 327 | name="<?php echo $this->get_field_name('show_title'); ?>"/>
|
| 328 | 328 | |
| 329 | 329 | </label> |
@@ -363,7 +363,7 @@ discard block |
||
| 363 | 363 | |
| 364 | 364 | |
| 365 | 365 | <?php |
| 366 | - } |
|
| 366 | + } |
|
| 367 | 367 | } // class geodir_listing_slider_widget |
| 368 | 368 | |
| 369 | 369 | register_widget('geodir_listing_slider_widget'); |
| 370 | 370 | \ No newline at end of file |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | //save the widget |
| 61 | 61 | $instance = $old_instance; |
| 62 | 62 | $instance['title'] = strip_tags($new_instance['title']); |
| 63 | - $category_limit = (int)$new_instance['category_limit']; |
|
| 63 | + $category_limit = (int) $new_instance['category_limit']; |
|
| 64 | 64 | $instance['category_limit'] = $category_limit > 0 ? $category_limit : 15; |
| 65 | 65 | $instance['default_post_type'] = isset($new_instance['default_post_type']) ? $new_instance['default_post_type'] : ''; |
| 66 | 66 | return $instance; |
@@ -78,10 +78,10 @@ discard block |
||
| 78 | 78 | public function form($instance) |
| 79 | 79 | {
|
| 80 | 80 | //widgetform in backend |
| 81 | - $instance = wp_parse_args((array)$instance, array('title' => '', 'category_limit' => 15, 'default_post_type' => ''));
|
|
| 81 | + $instance = wp_parse_args((array) $instance, array('title' => '', 'category_limit' => 15, 'default_post_type' => ''));
|
|
| 82 | 82 | |
| 83 | 83 | $title = strip_tags($instance['title']); |
| 84 | - $category_limit = (int)$instance['category_limit']; |
|
| 84 | + $category_limit = (int) $instance['category_limit']; |
|
| 85 | 85 | $category_limit = $category_limit > 0 ? $category_limit : 15; |
| 86 | 86 | $default_post_type = isset($instance['default_post_type']) ? $instance['default_post_type'] : ''; |
| 87 | 87 | |
@@ -96,10 +96,10 @@ discard block |
||
| 96 | 96 | </p> |
| 97 | 97 | <p> |
| 98 | 98 | <label for="<?php echo $this->get_field_id('post_type'); ?>">
|
| 99 | - <?php _e('Default post type to use (if not set by page)', 'geodirectory');?>
|
|
| 99 | + <?php _e('Default post type to use (if not set by page)', 'geodirectory'); ?>
|
|
| 100 | 100 | <select class="widefat" id="<?php echo $this->get_field_id('default_post_type'); ?>" name="<?php echo $this->get_field_name('default_post_type'); ?>">
|
| 101 | 101 | <?php foreach ($post_type_options as $name => $title) { ?>
|
| 102 | - <option value="<?php echo $name;?>" <?php selected($name, $default_post_type);?>><?php echo $title; ?></option> |
|
| 102 | + <option value="<?php echo $name; ?>" <?php selected($name, $default_post_type); ?>><?php echo $title; ?></option> |
|
| 103 | 103 | <?php } ?> |
| 104 | 104 | </select> |
| 105 | 105 | </label> |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | for="<?php echo $this->get_field_id('category_limit'); ?>"><?php _e('Customize categories count to appear by default:', 'geodirectory'); ?>
|
| 110 | 110 | <input class="widefat" id="<?php echo $this->get_field_id('category_limit'); ?>"
|
| 111 | 111 | name="<?php echo $this->get_field_name('category_limit'); ?>" type="text"
|
| 112 | - value="<?php echo (int)esc_attr($category_limit); ?>"/> |
|
| 112 | + value="<?php echo (int) esc_attr($category_limit); ?>"/> |
|
| 113 | 113 | |
| 114 | 114 | <p class="description" |
| 115 | 115 | style="padding:0"><?php _e('After categories count reaches this limit option More Categories / Less Categoris will be displayed to show/hide categories. Default: 15', 'geodirectory'); ?></p>
|
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | public function form($instance) |
| 216 | 216 | {
|
| 217 | 217 | //widgetform in backend |
| 218 | - $instance = wp_parse_args((array)$instance, |
|
| 218 | + $instance = wp_parse_args((array) $instance, |
|
| 219 | 219 | array('title' => '',
|
| 220 | 220 | 'post_type' => '', |
| 221 | 221 | 'category' => array(), |
@@ -266,9 +266,9 @@ discard block |
||
| 266 | 266 | ?> |
| 267 | 267 | |
| 268 | 268 | <p> |
| 269 | - <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory');?>
|
|
| 269 | + <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory'); ?>
|
|
| 270 | 270 | <small>(%posttype_singular_label% , |
| 271 | - %posttype_plural_label% <?php _e('can be used', 'geodirectory');?>)
|
|
| 271 | + %posttype_plural_label% <?php _e('can be used', 'geodirectory'); ?>)
|
|
| 272 | 272 | </small> |
| 273 | 273 | |
| 274 | 274 | <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>"
|
@@ -279,7 +279,7 @@ discard block |
||
| 279 | 279 | |
| 280 | 280 | <p> |
| 281 | 281 | <label |
| 282 | - for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Post Type:', 'geodirectory');?>
|
|
| 282 | + for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Post Type:', 'geodirectory'); ?>
|
|
| 283 | 283 | |
| 284 | 284 | <?php $postypes = geodir_get_posttypes(); |
| 285 | 285 | /** |
@@ -311,7 +311,7 @@ discard block |
||
| 311 | 311 | |
| 312 | 312 | <p id="post_type_cats"> |
| 313 | 313 | <label |
| 314 | - for="<?php echo $this->get_field_id('category'); ?>"><?php _e('Post Category:', 'geodirectory');?>
|
|
| 314 | + for="<?php echo $this->get_field_id('category'); ?>"><?php _e('Post Category:', 'geodirectory'); ?>
|
|
| 315 | 315 | |
| 316 | 316 | <?php |
| 317 | 317 | |
@@ -350,14 +350,14 @@ discard block |
||
| 350 | 350 | |
| 351 | 351 | <input type="hidden" name="<?php echo $this->get_field_name('category_title'); ?>"
|
| 352 | 352 | id="<?php echo $this->get_field_id('category_title'); ?>"
|
| 353 | - value="<?php if ($category_title != '') echo $category_title; else echo __('All', 'geodirectory');?>"/>
|
|
| 353 | + value="<?php if ($category_title != '') echo $category_title; else echo __('All', 'geodirectory'); ?>"/>
|
|
| 354 | 354 | |
| 355 | 355 | </label> |
| 356 | 356 | </p> |
| 357 | 357 | |
| 358 | 358 | <p> |
| 359 | 359 | <label |
| 360 | - for="<?php echo $this->get_field_id('list_sort'); ?>"><?php _e('Sort by:', 'geodirectory');?>
|
|
| 360 | + for="<?php echo $this->get_field_id('list_sort'); ?>"><?php _e('Sort by:', 'geodirectory'); ?>
|
|
| 361 | 361 | |
| 362 | 362 | <select class="widefat" id="<?php echo $this->get_field_id('list_sort'); ?>"
|
| 363 | 363 | name="<?php echo $this->get_field_name('list_sort'); ?>">
|
@@ -393,7 +393,7 @@ discard block |
||
| 393 | 393 | <p> |
| 394 | 394 | |
| 395 | 395 | <label |
| 396 | - for="<?php echo $this->get_field_id('post_number'); ?>"><?php _e('Number of posts:', 'geodirectory');?>
|
|
| 396 | + for="<?php echo $this->get_field_id('post_number'); ?>"><?php _e('Number of posts:', 'geodirectory'); ?>
|
|
| 397 | 397 | |
| 398 | 398 | <input class="widefat" id="<?php echo $this->get_field_id('post_number'); ?>"
|
| 399 | 399 | name="<?php echo $this->get_field_name('post_number'); ?>" type="text"
|
@@ -403,7 +403,7 @@ discard block |
||
| 403 | 403 | |
| 404 | 404 | <p> |
| 405 | 405 | <label for="<?php echo $this->get_field_id('layout'); ?>">
|
| 406 | - <?php _e('Layout:', 'geodirectory');?>
|
|
| 406 | + <?php _e('Layout:', 'geodirectory'); ?>
|
|
| 407 | 407 | <select class="widefat" id="<?php echo $this->get_field_id('layout'); ?>"
|
| 408 | 408 | name="<?php echo $this->get_field_name('layout'); ?>">
|
| 409 | 409 | <option <?php if ($layout == 'gridview_onehalf') {
|
@@ -432,7 +432,7 @@ discard block |
||
| 432 | 432 | |
| 433 | 433 | <p> |
| 434 | 434 | <label |
| 435 | - for="<?php echo $this->get_field_id('listing_width'); ?>"><?php _e('Listing width:', 'geodirectory');?>
|
|
| 435 | + for="<?php echo $this->get_field_id('listing_width'); ?>"><?php _e('Listing width:', 'geodirectory'); ?>
|
|
| 436 | 436 | |
| 437 | 437 | <input class="widefat" id="<?php echo $this->get_field_id('listing_width'); ?>"
|
| 438 | 438 | name="<?php echo $this->get_field_name('listing_width'); ?>" type="text"
|
@@ -442,7 +442,7 @@ discard block |
||
| 442 | 442 | |
| 443 | 443 | <p> |
| 444 | 444 | <label |
| 445 | - for="<?php echo $this->get_field_id('character_count'); ?>"><?php _e('Post Content excerpt character count :', 'geodirectory');?>
|
|
| 445 | + for="<?php echo $this->get_field_id('character_count'); ?>"><?php _e('Post Content excerpt character count :', 'geodirectory'); ?>
|
|
| 446 | 446 | <input class="widefat" id="<?php echo $this->get_field_id('character_count'); ?>"
|
| 447 | 447 | name="<?php echo $this->get_field_name('character_count'); ?>" type="text"
|
| 448 | 448 | value="<?php echo esc_attr($character_count); ?>"/> |
@@ -451,41 +451,41 @@ discard block |
||
| 451 | 451 | |
| 452 | 452 | <p> |
| 453 | 453 | <label for="<?php echo $this->get_field_id('add_location_filter'); ?>">
|
| 454 | - <?php _e('Enable Location Filter:', 'geodirectory');?>
|
|
| 454 | + <?php _e('Enable Location Filter:', 'geodirectory'); ?>
|
|
| 455 | 455 | <input type="checkbox" id="<?php echo $this->get_field_id('add_location_filter'); ?>"
|
| 456 | - name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) echo 'checked="checked"';?>
|
|
| 456 | + name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) echo 'checked="checked"'; ?>
|
|
| 457 | 457 | value="1"/> |
| 458 | 458 | </label> |
| 459 | 459 | </p> |
| 460 | 460 | <p> |
| 461 | 461 | <label for="<?php echo $this->get_field_id('show_featured_only'); ?>">
|
| 462 | - <?php _e('Show only featured listings:', 'geodirectory');?> <input type="checkbox"
|
|
| 462 | + <?php _e('Show only featured listings:', 'geodirectory'); ?> <input type="checkbox"
|
|
| 463 | 463 | id="<?php echo $this->get_field_id('show_featured_only'); ?>"
|
| 464 | - name="<?php echo $this->get_field_name('show_featured_only'); ?>" <?php if ($show_featured_only) echo 'checked="checked"';?>
|
|
| 464 | + name="<?php echo $this->get_field_name('show_featured_only'); ?>" <?php if ($show_featured_only) echo 'checked="checked"'; ?>
|
|
| 465 | 465 | value="1"/> |
| 466 | 466 | </label> |
| 467 | 467 | </p> |
| 468 | 468 | <p> |
| 469 | 469 | <label for="<?php echo $this->get_field_id('show_special_only'); ?>">
|
| 470 | - <?php _e('Show only listings with special offers:', 'geodirectory');?> <input type="checkbox"
|
|
| 470 | + <?php _e('Show only listings with special offers:', 'geodirectory'); ?> <input type="checkbox"
|
|
| 471 | 471 | id="<?php echo $this->get_field_id('show_special_only'); ?>"
|
| 472 | - name="<?php echo $this->get_field_name('show_special_only'); ?>" <?php if ($show_special_only) echo 'checked="checked"';?>
|
|
| 472 | + name="<?php echo $this->get_field_name('show_special_only'); ?>" <?php if ($show_special_only) echo 'checked="checked"'; ?>
|
|
| 473 | 473 | value="1"/> |
| 474 | 474 | </label> |
| 475 | 475 | </p> |
| 476 | 476 | <p> |
| 477 | 477 | <label for="<?php echo $this->get_field_id('with_pics_only'); ?>">
|
| 478 | - <?php _e('Show only listings with pics:', 'geodirectory');?> <input type="checkbox"
|
|
| 478 | + <?php _e('Show only listings with pics:', 'geodirectory'); ?> <input type="checkbox"
|
|
| 479 | 479 | id="<?php echo $this->get_field_id('with_pics_only'); ?>"
|
| 480 | - name="<?php echo $this->get_field_name('with_pics_only'); ?>" <?php if ($with_pics_only) echo 'checked="checked"';?>
|
|
| 480 | + name="<?php echo $this->get_field_name('with_pics_only'); ?>" <?php if ($with_pics_only) echo 'checked="checked"'; ?>
|
|
| 481 | 481 | value="1"/> |
| 482 | 482 | </label> |
| 483 | 483 | </p> |
| 484 | 484 | <p> |
| 485 | 485 | <label for="<?php echo $this->get_field_id('with_videos_only'); ?>">
|
| 486 | - <?php _e('Show only listings with videos:', 'geodirectory');?> <input type="checkbox"
|
|
| 486 | + <?php _e('Show only listings with videos:', 'geodirectory'); ?> <input type="checkbox"
|
|
| 487 | 487 | id="<?php echo $this->get_field_id('with_videos_only'); ?>"
|
| 488 | - name="<?php echo $this->get_field_name('with_videos_only'); ?>" <?php if ($with_videos_only) echo 'checked="checked"';?>
|
|
| 488 | + name="<?php echo $this->get_field_name('with_videos_only'); ?>" <?php if ($with_videos_only) echo 'checked="checked"'; ?>
|
|
| 489 | 489 | value="1"/> |
| 490 | 490 | </label> |
| 491 | 491 | </p> |
@@ -531,7 +531,7 @@ discard block |
||
| 531 | 531 | |
| 532 | 532 | } |
| 533 | 533 | |
| 534 | - <?php if(is_active_widget( false, false, $this->id_base, true )){ ?>
|
|
| 534 | + <?php if (is_active_widget(false, false, $this->id_base, true)) { ?>
|
|
| 535 | 535 | var post_type = jQuery('#<?php echo $this->get_field_id('post_type'); ?>').val();
|
| 536 | 536 | |
| 537 | 537 | <?php } ?> |
@@ -14,41 +14,41 @@ discard block |
||
| 14 | 14 | */ |
| 15 | 15 | class geodir_popular_post_category extends WP_Widget |
| 16 | 16 | {
|
| 17 | - /** |
|
| 17 | + /** |
|
| 18 | 18 | * Register the popular post category 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_popular_post_category', 'description' => __('GD > Popular Post Category', 'geodirectory'));
|
|
| 25 | - parent::__construct( |
|
| 26 | - 'popular_post_category', // Base ID |
|
| 27 | - __('GD > Popular Post Category', 'geodirectory'), // Name
|
|
| 28 | - $widget_ops// Args |
|
| 29 | - ); |
|
| 30 | - } |
|
| 23 | + public function __construct() {
|
|
| 24 | + $widget_ops = array('classname' => 'geodir_popular_post_category', 'description' => __('GD > Popular Post Category', 'geodirectory'));
|
|
| 25 | + parent::__construct( |
|
| 26 | + 'popular_post_category', // Base ID |
|
| 27 | + __('GD > Popular Post Category', 'geodirectory'), // Name
|
|
| 28 | + $widget_ops// Args |
|
| 29 | + ); |
|
| 30 | + } |
|
| 31 | 31 | |
| 32 | 32 | /** |
| 33 | 33 | * Front-end display content for popular post category 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 | 41 | public function widget($args, $instance) |
| 42 | - {
|
|
| 43 | - geodir_popular_post_category_output($args, $instance); |
|
| 44 | - } |
|
| 42 | + {
|
|
| 43 | + geodir_popular_post_category_output($args, $instance); |
|
| 44 | + } |
|
| 45 | 45 | |
| 46 | 46 | /** |
| 47 | 47 | * Sanitize popular post category widget form values as they are saved. |
| 48 | 48 | * |
| 49 | 49 | * @since 1.0.0 |
| 50 | - * @since 1.5.1 Declare function public. |
|
| 51 | - * @since 1.5.1 Added default_post_type parameter. |
|
| 50 | + * @since 1.5.1 Declare function public. |
|
| 51 | + * @since 1.5.1 Added default_post_type parameter. |
|
| 52 | 52 | * |
| 53 | 53 | * @param array $new_instance Values just sent to be saved. |
| 54 | 54 | * @param array $old_instance Previously saved values from database. |
@@ -56,37 +56,37 @@ discard block |
||
| 56 | 56 | * @return array Updated safe values to be saved. |
| 57 | 57 | */ |
| 58 | 58 | public function update($new_instance, $old_instance) |
| 59 | - {
|
|
| 60 | - //save the widget |
|
| 61 | - $instance = $old_instance; |
|
| 62 | - $instance['title'] = strip_tags($new_instance['title']); |
|
| 63 | - $category_limit = (int)$new_instance['category_limit']; |
|
| 64 | - $instance['category_limit'] = $category_limit > 0 ? $category_limit : 15; |
|
| 59 | + {
|
|
| 60 | + //save the widget |
|
| 61 | + $instance = $old_instance; |
|
| 62 | + $instance['title'] = strip_tags($new_instance['title']); |
|
| 63 | + $category_limit = (int)$new_instance['category_limit']; |
|
| 64 | + $instance['category_limit'] = $category_limit > 0 ? $category_limit : 15; |
|
| 65 | 65 | $instance['default_post_type'] = isset($new_instance['default_post_type']) ? $new_instance['default_post_type'] : ''; |
| 66 | - return $instance; |
|
| 67 | - } |
|
| 66 | + return $instance; |
|
| 67 | + } |
|
| 68 | 68 | |
| 69 | 69 | /** |
| 70 | 70 | * Back-end popular post category widget settings form. |
| 71 | 71 | * |
| 72 | 72 | * @since 1.0.0 |
| 73 | - * @since 1.5.1 Declare function public. |
|
| 74 | - * @since 1.5.1 Added option to set default post type. |
|
| 73 | + * @since 1.5.1 Declare function public. |
|
| 74 | + * @since 1.5.1 Added option to set default post type. |
|
| 75 | 75 | * |
| 76 | 76 | * @param array $instance Previously saved values from database. |
| 77 | 77 | */ |
| 78 | 78 | public function form($instance) |
| 79 | - {
|
|
| 80 | - //widgetform in backend |
|
| 81 | - $instance = wp_parse_args((array)$instance, array('title' => '', 'category_limit' => 15, 'default_post_type' => ''));
|
|
| 79 | + {
|
|
| 80 | + //widgetform in backend |
|
| 81 | + $instance = wp_parse_args((array)$instance, array('title' => '', 'category_limit' => 15, 'default_post_type' => ''));
|
|
| 82 | 82 | |
| 83 | - $title = strip_tags($instance['title']); |
|
| 84 | - $category_limit = (int)$instance['category_limit']; |
|
| 85 | - $category_limit = $category_limit > 0 ? $category_limit : 15; |
|
| 83 | + $title = strip_tags($instance['title']); |
|
| 84 | + $category_limit = (int)$instance['category_limit']; |
|
| 85 | + $category_limit = $category_limit > 0 ? $category_limit : 15; |
|
| 86 | 86 | $default_post_type = isset($instance['default_post_type']) ? $instance['default_post_type'] : ''; |
| 87 | 87 | |
| 88 | 88 | $post_type_options = geodir_get_posttypes('options');
|
| 89 | - ?> |
|
| 89 | + ?> |
|
| 90 | 90 | <p> |
| 91 | 91 | <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory'); ?>
|
| 92 | 92 | <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>"
|
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | </label> |
| 117 | 117 | </p> |
| 118 | 118 | <?php |
| 119 | - } |
|
| 119 | + } |
|
| 120 | 120 | } // class geodir_popular_post_category |
| 121 | 121 | |
| 122 | 122 | register_widget('geodir_popular_post_category');
|
@@ -130,40 +130,40 @@ discard block |
||
| 130 | 130 | class geodir_popular_postview extends WP_Widget |
| 131 | 131 | {
|
| 132 | 132 | |
| 133 | - /** |
|
| 133 | + /** |
|
| 134 | 134 | * Register the popular posts widget. |
| 135 | 135 | * |
| 136 | 136 | * @since 1.0.0 |
| 137 | - * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
| 137 | + * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. |
|
| 138 | 138 | */ |
| 139 | - public function __construct() {
|
|
| 140 | - $widget_ops = array('classname' => 'geodir_popular_post_view', 'description' => __('GD > Popular Post View', 'geodirectory'));
|
|
| 141 | - parent::__construct( |
|
| 142 | - 'popular_post_view', // Base ID |
|
| 143 | - __('GD > Popular Post View', 'geodirectory'), // Name
|
|
| 144 | - $widget_ops// Args |
|
| 145 | - ); |
|
| 146 | - } |
|
| 139 | + public function __construct() {
|
|
| 140 | + $widget_ops = array('classname' => 'geodir_popular_post_view', 'description' => __('GD > Popular Post View', 'geodirectory'));
|
|
| 141 | + parent::__construct( |
|
| 142 | + 'popular_post_view', // Base ID |
|
| 143 | + __('GD > Popular Post View', 'geodirectory'), // Name
|
|
| 144 | + $widget_ops// Args |
|
| 145 | + ); |
|
| 146 | + } |
|
| 147 | 147 | |
| 148 | 148 | /** |
| 149 | 149 | * Front-end display content for popular posts widget. |
| 150 | 150 | * |
| 151 | 151 | * @since 1.0.0 |
| 152 | - * @since 1.5.1 Declare function public. |
|
| 152 | + * @since 1.5.1 Declare function public. |
|
| 153 | 153 | * |
| 154 | 154 | * @param array $args Widget arguments. |
| 155 | 155 | * @param array $instance Saved values from database. |
| 156 | 156 | */ |
| 157 | 157 | public function widget($args, $instance) |
| 158 | - {
|
|
| 159 | - geodir_popular_postview_output($args, $instance); |
|
| 160 | - } |
|
| 158 | + {
|
|
| 159 | + geodir_popular_postview_output($args, $instance); |
|
| 160 | + } |
|
| 161 | 161 | |
| 162 | 162 | /** |
| 163 | 163 | * Sanitize popular posts widget form values as they are saved. |
| 164 | 164 | * |
| 165 | 165 | * @since 1.0.0 |
| 166 | - * @since 1.5.1 Declare function public. |
|
| 166 | + * @since 1.5.1 Declare function public. |
|
| 167 | 167 | * |
| 168 | 168 | * @param array $new_instance Values just sent to be saved. |
| 169 | 169 | * @param array $old_instance Previously saved values from database. |
@@ -171,99 +171,99 @@ discard block |
||
| 171 | 171 | * @return array Updated safe values to be saved. |
| 172 | 172 | */ |
| 173 | 173 | public function update($new_instance, $old_instance) |
| 174 | - {
|
|
| 175 | - //save the widget |
|
| 176 | - $instance = $old_instance; |
|
| 177 | - |
|
| 178 | - if ($new_instance['title'] == '') {
|
|
| 179 | - $title = geodir_ucwords(strip_tags($new_instance['category_title'])); |
|
| 180 | - //$instance['title'] = $title; |
|
| 181 | - } |
|
| 182 | - $instance['title'] = strip_tags($new_instance['title']); |
|
| 183 | - |
|
| 184 | - $instance['post_type'] = strip_tags($new_instance['post_type']); |
|
| 185 | - //$instance['category'] = strip_tags($new_instance['category']); |
|
| 186 | - $instance['category'] = isset($new_instance['category']) ? $new_instance['category'] : ''; |
|
| 187 | - $instance['category_title'] = strip_tags($new_instance['category_title']); |
|
| 188 | - $instance['post_number'] = strip_tags($new_instance['post_number']); |
|
| 189 | - $instance['layout'] = strip_tags($new_instance['layout']); |
|
| 190 | - $instance['listing_width'] = strip_tags($new_instance['listing_width']); |
|
| 191 | - $instance['list_sort'] = strip_tags($new_instance['list_sort']); |
|
| 192 | - $instance['character_count'] = $new_instance['character_count']; |
|
| 193 | - if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '') |
|
| 194 | - $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']); |
|
| 195 | - else |
|
| 196 | - $instance['add_location_filter'] = '0'; |
|
| 197 | - |
|
| 198 | - $instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0; |
|
| 199 | - $instance['show_special_only'] = isset($new_instance['show_special_only']) && $new_instance['show_special_only'] ? 1 : 0; |
|
| 200 | - $instance['with_pics_only'] = isset($new_instance['with_pics_only']) && $new_instance['with_pics_only'] ? 1 : 0; |
|
| 201 | - $instance['with_videos_only'] = isset($new_instance['with_videos_only']) && $new_instance['with_videos_only'] ? 1 : 0; |
|
| 202 | - $instance['use_viewing_post_type'] = isset($new_instance['use_viewing_post_type']) && $new_instance['use_viewing_post_type'] ? 1 : 0; |
|
| 203 | - |
|
| 204 | - return $instance; |
|
| 205 | - } |
|
| 174 | + {
|
|
| 175 | + //save the widget |
|
| 176 | + $instance = $old_instance; |
|
| 177 | + |
|
| 178 | + if ($new_instance['title'] == '') {
|
|
| 179 | + $title = geodir_ucwords(strip_tags($new_instance['category_title'])); |
|
| 180 | + //$instance['title'] = $title; |
|
| 181 | + } |
|
| 182 | + $instance['title'] = strip_tags($new_instance['title']); |
|
| 183 | + |
|
| 184 | + $instance['post_type'] = strip_tags($new_instance['post_type']); |
|
| 185 | + //$instance['category'] = strip_tags($new_instance['category']); |
|
| 186 | + $instance['category'] = isset($new_instance['category']) ? $new_instance['category'] : ''; |
|
| 187 | + $instance['category_title'] = strip_tags($new_instance['category_title']); |
|
| 188 | + $instance['post_number'] = strip_tags($new_instance['post_number']); |
|
| 189 | + $instance['layout'] = strip_tags($new_instance['layout']); |
|
| 190 | + $instance['listing_width'] = strip_tags($new_instance['listing_width']); |
|
| 191 | + $instance['list_sort'] = strip_tags($new_instance['list_sort']); |
|
| 192 | + $instance['character_count'] = $new_instance['character_count']; |
|
| 193 | + if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '') |
|
| 194 | + $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']); |
|
| 195 | + else |
|
| 196 | + $instance['add_location_filter'] = '0'; |
|
| 197 | + |
|
| 198 | + $instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0; |
|
| 199 | + $instance['show_special_only'] = isset($new_instance['show_special_only']) && $new_instance['show_special_only'] ? 1 : 0; |
|
| 200 | + $instance['with_pics_only'] = isset($new_instance['with_pics_only']) && $new_instance['with_pics_only'] ? 1 : 0; |
|
| 201 | + $instance['with_videos_only'] = isset($new_instance['with_videos_only']) && $new_instance['with_videos_only'] ? 1 : 0; |
|
| 202 | + $instance['use_viewing_post_type'] = isset($new_instance['use_viewing_post_type']) && $new_instance['use_viewing_post_type'] ? 1 : 0; |
|
| 203 | + |
|
| 204 | + return $instance; |
|
| 205 | + } |
|
| 206 | 206 | |
| 207 | 207 | /** |
| 208 | 208 | * Back-end popular posts widget settings form. |
| 209 | 209 | * |
| 210 | 210 | * @since 1.0.0 |
| 211 | - * @since 1.5.1 Declare function public. |
|
| 211 | + * @since 1.5.1 Declare function public. |
|
| 212 | 212 | * |
| 213 | 213 | * @param array $instance Previously saved values from database. |
| 214 | 214 | */ |
| 215 | 215 | public function form($instance) |
| 216 | - {
|
|
| 217 | - //widgetform in backend |
|
| 218 | - $instance = wp_parse_args((array)$instance, |
|
| 219 | - array('title' => '',
|
|
| 220 | - 'post_type' => '', |
|
| 221 | - 'category' => array(), |
|
| 222 | - 'category_title' => '', |
|
| 223 | - 'list_sort' => '', |
|
| 224 | - 'list_order' => '', |
|
| 225 | - 'post_number' => '5', |
|
| 226 | - 'layout' => 'gridview_onehalf', |
|
| 227 | - 'listing_width' => '', |
|
| 228 | - 'add_location_filter' => '1', |
|
| 229 | - 'character_count' => '20', |
|
| 230 | - 'show_featured_only' => '', |
|
| 231 | - 'show_special_only' => '', |
|
| 232 | - 'with_pics_only' => '', |
|
| 233 | - 'with_videos_only' => '', |
|
| 234 | - 'use_viewing_post_type' => '' |
|
| 235 | - ) |
|
| 236 | - ); |
|
| 216 | + {
|
|
| 217 | + //widgetform in backend |
|
| 218 | + $instance = wp_parse_args((array)$instance, |
|
| 219 | + array('title' => '',
|
|
| 220 | + 'post_type' => '', |
|
| 221 | + 'category' => array(), |
|
| 222 | + 'category_title' => '', |
|
| 223 | + 'list_sort' => '', |
|
| 224 | + 'list_order' => '', |
|
| 225 | + 'post_number' => '5', |
|
| 226 | + 'layout' => 'gridview_onehalf', |
|
| 227 | + 'listing_width' => '', |
|
| 228 | + 'add_location_filter' => '1', |
|
| 229 | + 'character_count' => '20', |
|
| 230 | + 'show_featured_only' => '', |
|
| 231 | + 'show_special_only' => '', |
|
| 232 | + 'with_pics_only' => '', |
|
| 233 | + 'with_videos_only' => '', |
|
| 234 | + 'use_viewing_post_type' => '' |
|
| 235 | + ) |
|
| 236 | + ); |
|
| 237 | 237 | |
| 238 | - $title = strip_tags($instance['title']); |
|
| 238 | + $title = strip_tags($instance['title']); |
|
| 239 | 239 | |
| 240 | - $post_type = strip_tags($instance['post_type']); |
|
| 240 | + $post_type = strip_tags($instance['post_type']); |
|
| 241 | 241 | |
| 242 | - $category = $instance['category']; |
|
| 242 | + $category = $instance['category']; |
|
| 243 | 243 | |
| 244 | - $category_title = strip_tags($instance['category_title']); |
|
| 244 | + $category_title = strip_tags($instance['category_title']); |
|
| 245 | 245 | |
| 246 | - $list_sort = strip_tags($instance['list_sort']); |
|
| 246 | + $list_sort = strip_tags($instance['list_sort']); |
|
| 247 | 247 | |
| 248 | - $list_order = strip_tags($instance['list_order']); |
|
| 248 | + $list_order = strip_tags($instance['list_order']); |
|
| 249 | 249 | |
| 250 | - $post_number = strip_tags($instance['post_number']); |
|
| 250 | + $post_number = strip_tags($instance['post_number']); |
|
| 251 | 251 | |
| 252 | - $layout = strip_tags($instance['layout']); |
|
| 252 | + $layout = strip_tags($instance['layout']); |
|
| 253 | 253 | |
| 254 | - $listing_width = strip_tags($instance['listing_width']); |
|
| 254 | + $listing_width = strip_tags($instance['listing_width']); |
|
| 255 | 255 | |
| 256 | - $add_location_filter = strip_tags($instance['add_location_filter']); |
|
| 256 | + $add_location_filter = strip_tags($instance['add_location_filter']); |
|
| 257 | 257 | |
| 258 | - $character_count = $instance['character_count']; |
|
| 258 | + $character_count = $instance['character_count']; |
|
| 259 | 259 | |
| 260 | - $show_featured_only = isset($instance['show_featured_only']) && $instance['show_featured_only'] ? true : false; |
|
| 261 | - $show_special_only = isset($instance['show_special_only']) && $instance['show_special_only'] ? true : false; |
|
| 262 | - $with_pics_only = isset($instance['with_pics_only']) && $instance['with_pics_only'] ? true : false; |
|
| 263 | - $with_videos_only = isset($instance['with_videos_only']) && $instance['with_videos_only'] ? true : false; |
|
| 264 | - $use_viewing_post_type = isset($instance['use_viewing_post_type']) && $instance['use_viewing_post_type'] ? true : false; |
|
| 260 | + $show_featured_only = isset($instance['show_featured_only']) && $instance['show_featured_only'] ? true : false; |
|
| 261 | + $show_special_only = isset($instance['show_special_only']) && $instance['show_special_only'] ? true : false; |
|
| 262 | + $with_pics_only = isset($instance['with_pics_only']) && $instance['with_pics_only'] ? true : false; |
|
| 263 | + $with_videos_only = isset($instance['with_videos_only']) && $instance['with_videos_only'] ? true : false; |
|
| 264 | + $use_viewing_post_type = isset($instance['use_viewing_post_type']) && $instance['use_viewing_post_type'] ? true : false; |
|
| 265 | 265 | |
| 266 | - ?> |
|
| 266 | + ?> |
|
| 267 | 267 | |
| 268 | 268 | <p> |
| 269 | 269 | <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory');?>
|
@@ -298,9 +298,9 @@ discard block |
||
| 298 | 298 | <?php foreach ($postypes as $postypes_obj) { ?>
|
| 299 | 299 | |
| 300 | 300 | <option <?php if ($post_type == $postypes_obj) {
|
| 301 | - echo 'selected="selected"'; |
|
| 302 | - } ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj);
|
|
| 303 | - echo ucfirst($extvalue[1]); ?></option> |
|
| 301 | + echo 'selected="selected"'; |
|
| 302 | + } ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj);
|
|
| 303 | + echo ucfirst($extvalue[1]); ?></option> |
|
| 304 | 304 | |
| 305 | 305 | <?php } ?> |
| 306 | 306 | |
@@ -315,30 +315,30 @@ discard block |
||
| 315 | 315 | |
| 316 | 316 | <?php |
| 317 | 317 | |
| 318 | - $post_type = ($post_type != '') ? $post_type : 'gd_place'; |
|
| 318 | + $post_type = ($post_type != '') ? $post_type : 'gd_place'; |
|
| 319 | 319 | |
| 320 | - $all_postypes = geodir_get_posttypes(); |
|
| 320 | + $all_postypes = geodir_get_posttypes(); |
|
| 321 | 321 | |
| 322 | - if (!in_array($post_type, $all_postypes)) |
|
| 323 | - $post_type = 'gd_place'; |
|
| 322 | + if (!in_array($post_type, $all_postypes)) |
|
| 323 | + $post_type = 'gd_place'; |
|
| 324 | 324 | |
| 325 | - $category_taxonomy = geodir_get_taxonomies($post_type); |
|
| 326 | - $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC'));
|
|
| 325 | + $category_taxonomy = geodir_get_taxonomies($post_type); |
|
| 326 | + $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC'));
|
|
| 327 | 327 | |
| 328 | - ?> |
|
| 328 | + ?> |
|
| 329 | 329 | |
| 330 | 330 | <select multiple="multiple" class="widefat" name="<?php echo $this->get_field_name('category'); ?>[]"
|
| 331 | 331 | onchange="geodir_popular_widget_cat_title(this)"> |
| 332 | 332 | |
| 333 | 333 | <option <?php if (!is_array($category) || (is_array($category) && in_array('0', $category))) {
|
| 334 | - echo 'selected="selected"'; |
|
| 335 | - } ?> value="0"><?php _e('All', 'geodirectory'); ?></option>
|
|
| 334 | + echo 'selected="selected"'; |
|
| 335 | + } ?> value="0"><?php _e('All', 'geodirectory'); ?></option>
|
|
| 336 | 336 | <?php foreach ($categories as $category_obj) {
|
| 337 | - $selected = ''; |
|
| 338 | - if (is_array($category) && in_array($category_obj->term_id, $category)) |
|
| 339 | - echo $selected = 'selected="selected"'; |
|
| 337 | + $selected = ''; |
|
| 338 | + if (is_array($category) && in_array($category_obj->term_id, $category)) |
|
| 339 | + echo $selected = 'selected="selected"'; |
|
| 340 | 340 | |
| 341 | - ?> |
|
| 341 | + ?> |
|
| 342 | 342 | |
| 343 | 343 | <option <?php echo $selected; ?> |
| 344 | 344 | value="<?php echo $category_obj->term_id; ?>"><?php echo ucfirst($category_obj->name); ?></option> |
@@ -363,28 +363,28 @@ discard block |
||
| 363 | 363 | name="<?php echo $this->get_field_name('list_sort'); ?>">
|
| 364 | 364 | |
| 365 | 365 | <option <?php if ($list_sort == 'az') {
|
| 366 | - echo 'selected="selected"'; |
|
| 367 | - } ?> value="az"><?php _e('A-Z', 'geodirectory'); ?></option>
|
|
| 366 | + echo 'selected="selected"'; |
|
| 367 | + } ?> value="az"><?php _e('A-Z', 'geodirectory'); ?></option>
|
|
| 368 | 368 | |
| 369 | 369 | <option <?php if ($list_sort == 'latest') {
|
| 370 | - echo 'selected="selected"'; |
|
| 371 | - } ?> value="latest"><?php _e('Latest', 'geodirectory'); ?></option>
|
|
| 370 | + echo 'selected="selected"'; |
|
| 371 | + } ?> value="latest"><?php _e('Latest', 'geodirectory'); ?></option>
|
|
| 372 | 372 | |
| 373 | 373 | <option <?php if ($list_sort == 'featured') {
|
| 374 | - echo 'selected="selected"'; |
|
| 375 | - } ?> value="featured"><?php _e('Featured', 'geodirectory'); ?></option>
|
|
| 374 | + echo 'selected="selected"'; |
|
| 375 | + } ?> value="featured"><?php _e('Featured', 'geodirectory'); ?></option>
|
|
| 376 | 376 | |
| 377 | 377 | <option <?php if ($list_sort == 'high_review') {
|
| 378 | - echo 'selected="selected"'; |
|
| 379 | - } ?> value="high_review"><?php _e('Review', 'geodirectory'); ?></option>
|
|
| 378 | + echo 'selected="selected"'; |
|
| 379 | + } ?> value="high_review"><?php _e('Review', 'geodirectory'); ?></option>
|
|
| 380 | 380 | |
| 381 | 381 | <option <?php if ($list_sort == 'high_rating') {
|
| 382 | - echo 'selected="selected"'; |
|
| 383 | - } ?> value="high_rating"><?php _e('Rating', 'geodirectory'); ?></option>
|
|
| 382 | + echo 'selected="selected"'; |
|
| 383 | + } ?> value="high_rating"><?php _e('Rating', 'geodirectory'); ?></option>
|
|
| 384 | 384 | |
| 385 | 385 | <option <?php if ($list_sort == 'random') {
|
| 386 | - echo 'selected="selected"'; |
|
| 387 | - } ?> value="random"><?php _e('Random', 'geodirectory'); ?></option>
|
|
| 386 | + echo 'selected="selected"'; |
|
| 387 | + } ?> value="random"><?php _e('Random', 'geodirectory'); ?></option>
|
|
| 388 | 388 | |
| 389 | 389 | </select> |
| 390 | 390 | </label> |
@@ -407,24 +407,24 @@ discard block |
||
| 407 | 407 | <select class="widefat" id="<?php echo $this->get_field_id('layout'); ?>"
|
| 408 | 408 | name="<?php echo $this->get_field_name('layout'); ?>">
|
| 409 | 409 | <option <?php if ($layout == 'gridview_onehalf') {
|
| 410 | - echo 'selected="selected"'; |
|
| 411 | - } ?> |
|
| 410 | + echo 'selected="selected"'; |
|
| 411 | + } ?> |
|
| 412 | 412 | value="gridview_onehalf"><?php _e('Grid View (Two Columns)', 'geodirectory'); ?></option>
|
| 413 | 413 | <option <?php if ($layout == 'gridview_onethird') {
|
| 414 | - echo 'selected="selected"'; |
|
| 415 | - } ?> |
|
| 414 | + echo 'selected="selected"'; |
|
| 415 | + } ?> |
|
| 416 | 416 | value="gridview_onethird"><?php _e('Grid View (Three Columns)', 'geodirectory'); ?></option>
|
| 417 | 417 | <option <?php if ($layout == 'gridview_onefourth') {
|
| 418 | - echo 'selected="selected"'; |
|
| 419 | - } ?> |
|
| 418 | + echo 'selected="selected"'; |
|
| 419 | + } ?> |
|
| 420 | 420 | value="gridview_onefourth"><?php _e('Grid View (Four Columns)', 'geodirectory'); ?></option>
|
| 421 | 421 | <option <?php if ($layout == 'gridview_onefifth') {
|
| 422 | - echo 'selected="selected"'; |
|
| 423 | - } ?> |
|
| 422 | + echo 'selected="selected"'; |
|
| 423 | + } ?> |
|
| 424 | 424 | value="gridview_onefifth"><?php _e('Grid View (Five Columns)', 'geodirectory'); ?></option>
|
| 425 | 425 | <option <?php if ($layout == 'list') {
|
| 426 | - echo 'selected="selected"'; |
|
| 427 | - } ?> value="list"><?php _e('List view', 'geodirectory'); ?></option>
|
|
| 426 | + echo 'selected="selected"'; |
|
| 427 | + } ?> value="list"><?php _e('List view', 'geodirectory'); ?></option>
|
|
| 428 | 428 | |
| 429 | 429 | </select> |
| 430 | 430 | </label> |
@@ -494,8 +494,8 @@ discard block |
||
| 494 | 494 | for="<?php echo $this->get_field_id('use_viewing_post_type'); ?>"><?php _e('Use current viewing post type:', 'geodirectory'); ?>
|
| 495 | 495 | <input type="checkbox" id="<?php echo $this->get_field_id('use_viewing_post_type'); ?>"
|
| 496 | 496 | name="<?php echo $this->get_field_name('use_viewing_post_type'); ?>" <?php if ($use_viewing_post_type) {
|
| 497 | - echo 'checked="checked"'; |
|
| 498 | - } ?> value="1"/> |
|
| 497 | + echo 'checked="checked"'; |
|
| 498 | + } ?> value="1"/> |
|
| 499 | 499 | </label> |
| 500 | 500 | </p> |
| 501 | 501 | |
@@ -539,7 +539,7 @@ discard block |
||
| 539 | 539 | </script> |
| 540 | 540 | |
| 541 | 541 | <?php |
| 542 | - } |
|
| 542 | + } |
|
| 543 | 543 | } // class geodir_popular_postview |
| 544 | 544 | |
| 545 | 545 | register_widget('geodir_popular_postview'); |
| 546 | 546 | \ No newline at end of file |
@@ -190,10 +190,11 @@ discard block |
||
| 190 | 190 | $instance['listing_width'] = strip_tags($new_instance['listing_width']); |
| 191 | 191 | $instance['list_sort'] = strip_tags($new_instance['list_sort']); |
| 192 | 192 | $instance['character_count'] = $new_instance['character_count']; |
| 193 | - if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '') |
|
| 194 | - $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']); |
|
| 195 | - else |
|
| 196 | - $instance['add_location_filter'] = '0'; |
|
| 193 | + if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '') { |
|
| 194 | + $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']); |
|
| 195 | + } else { |
|
| 196 | + $instance['add_location_filter'] = '0'; |
|
| 197 | + } |
|
| 197 | 198 | |
| 198 | 199 | $instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0; |
| 199 | 200 | $instance['show_special_only'] = isset($new_instance['show_special_only']) && $new_instance['show_special_only'] ? 1 : 0; |
@@ -319,8 +320,9 @@ discard block |
||
| 319 | 320 | |
| 320 | 321 | $all_postypes = geodir_get_posttypes(); |
| 321 | 322 | |
| 322 | - if (!in_array($post_type, $all_postypes)) |
|
| 323 | - $post_type = 'gd_place'; |
|
| 323 | + if (!in_array($post_type, $all_postypes)) { |
|
| 324 | + $post_type = 'gd_place'; |
|
| 325 | + } |
|
| 324 | 326 | |
| 325 | 327 | $category_taxonomy = geodir_get_taxonomies($post_type); |
| 326 | 328 | $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC'));
|
@@ -335,8 +337,9 @@ discard block |
||
| 335 | 337 | } ?> value="0"><?php _e('All', 'geodirectory'); ?></option>
|
| 336 | 338 | <?php foreach ($categories as $category_obj) {
|
| 337 | 339 | $selected = ''; |
| 338 | - if (is_array($category) && in_array($category_obj->term_id, $category)) |
|
| 339 | - echo $selected = 'selected="selected"'; |
|
| 340 | + if (is_array($category) && in_array($category_obj->term_id, $category)) { |
|
| 341 | + echo $selected = 'selected="selected"'; |
|
| 342 | + } |
|
| 340 | 343 | |
| 341 | 344 | ?> |
| 342 | 345 | |
@@ -350,7 +353,12 @@ discard block |
||
| 350 | 353 | |
| 351 | 354 | <input type="hidden" name="<?php echo $this->get_field_name('category_title'); ?>"
|
| 352 | 355 | id="<?php echo $this->get_field_id('category_title'); ?>"
|
| 353 | - value="<?php if ($category_title != '') echo $category_title; else echo __('All', 'geodirectory');?>"/>
|
|
| 356 | + value="<?php if ($category_title != '') { |
|
| 357 | + echo $category_title; |
|
| 358 | +} else { |
|
| 359 | + echo __('All', 'geodirectory'); |
|
| 360 | +} |
|
| 361 | +?>"/> |
|
| 354 | 362 | |
| 355 | 363 | </label> |
| 356 | 364 | </p> |
@@ -453,7 +461,10 @@ discard block |
||
| 453 | 461 | <label for="<?php echo $this->get_field_id('add_location_filter'); ?>">
|
| 454 | 462 | <?php _e('Enable Location Filter:', 'geodirectory');?>
|
| 455 | 463 | <input type="checkbox" id="<?php echo $this->get_field_id('add_location_filter'); ?>"
|
| 456 | - name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) echo 'checked="checked"';?>
|
|
| 464 | + name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) { |
|
| 465 | + echo 'checked="checked"'; |
|
| 466 | +} |
|
| 467 | +?> |
|
| 457 | 468 | value="1"/> |
| 458 | 469 | </label> |
| 459 | 470 | </p> |
@@ -461,7 +472,10 @@ discard block |
||
| 461 | 472 | <label for="<?php echo $this->get_field_id('show_featured_only'); ?>">
|
| 462 | 473 | <?php _e('Show only featured listings:', 'geodirectory');?> <input type="checkbox"
|
| 463 | 474 | id="<?php echo $this->get_field_id('show_featured_only'); ?>"
|
| 464 | - name="<?php echo $this->get_field_name('show_featured_only'); ?>" <?php if ($show_featured_only) echo 'checked="checked"';?>
|
|
| 475 | + name="<?php echo $this->get_field_name('show_featured_only'); ?>" <?php if ($show_featured_only) { |
|
| 476 | + echo 'checked="checked"'; |
|
| 477 | +} |
|
| 478 | +?> |
|
| 465 | 479 | value="1"/> |
| 466 | 480 | </label> |
| 467 | 481 | </p> |
@@ -469,7 +483,10 @@ discard block |
||
| 469 | 483 | <label for="<?php echo $this->get_field_id('show_special_only'); ?>">
|
| 470 | 484 | <?php _e('Show only listings with special offers:', 'geodirectory');?> <input type="checkbox"
|
| 471 | 485 | id="<?php echo $this->get_field_id('show_special_only'); ?>"
|
| 472 | - name="<?php echo $this->get_field_name('show_special_only'); ?>" <?php if ($show_special_only) echo 'checked="checked"';?>
|
|
| 486 | + name="<?php echo $this->get_field_name('show_special_only'); ?>" <?php if ($show_special_only) { |
|
| 487 | + echo 'checked="checked"'; |
|
| 488 | +} |
|
| 489 | +?> |
|
| 473 | 490 | value="1"/> |
| 474 | 491 | </label> |
| 475 | 492 | </p> |
@@ -477,7 +494,10 @@ discard block |
||
| 477 | 494 | <label for="<?php echo $this->get_field_id('with_pics_only'); ?>">
|
| 478 | 495 | <?php _e('Show only listings with pics:', 'geodirectory');?> <input type="checkbox"
|
| 479 | 496 | id="<?php echo $this->get_field_id('with_pics_only'); ?>"
|
| 480 | - name="<?php echo $this->get_field_name('with_pics_only'); ?>" <?php if ($with_pics_only) echo 'checked="checked"';?>
|
|
| 497 | + name="<?php echo $this->get_field_name('with_pics_only'); ?>" <?php if ($with_pics_only) { |
|
| 498 | + echo 'checked="checked"'; |
|
| 499 | +} |
|
| 500 | +?> |
|
| 481 | 501 | value="1"/> |
| 482 | 502 | </label> |
| 483 | 503 | </p> |
@@ -485,7 +505,10 @@ discard block |
||
| 485 | 505 | <label for="<?php echo $this->get_field_id('with_videos_only'); ?>">
|
| 486 | 506 | <?php _e('Show only listings with videos:', 'geodirectory');?> <input type="checkbox"
|
| 487 | 507 | id="<?php echo $this->get_field_id('with_videos_only'); ?>"
|
| 488 | - name="<?php echo $this->get_field_name('with_videos_only'); ?>" <?php if ($with_videos_only) echo 'checked="checked"';?>
|
|
| 508 | + name="<?php echo $this->get_field_name('with_videos_only'); ?>" <?php if ($with_videos_only) { |
|
| 509 | + echo 'checked="checked"'; |
|
| 510 | +} |
|
| 511 | +?> |
|
| 489 | 512 | value="1"/> |
| 490 | 513 | </label> |
| 491 | 514 | </p> |
@@ -137,7 +137,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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> |
@@ -14,160 +14,160 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
@@ -118,10 +118,11 @@ discard block |
||
| 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 |
||
| 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> |
@@ -192,8 +192,9 @@ |
||
| 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 | |
@@ -16,126 +16,126 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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');
|
@@ -127,7 +127,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | |
@@ -113,7 +113,7 @@ |
||
| 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 | { |
@@ -17,84 +17,84 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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(' > ', " > ", $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(' > ', " > ", $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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | |
@@ -162,7 +162,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | |
@@ -721,7 +721,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | */ |
@@ -20,468 +20,468 @@ discard block |
||
| 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; |
|
| 144 | - $request_info['pid'] = !empty($post->ID) ? $post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL); |
|
| 145 | - $request_info['post_title'] = $request_info['post_title']; |
|
| 146 | - $request_info['listing_type'] = $post->post_type; |
|
| 147 | - $request_info['post_desc'] = $request_info['content']; |
|
| 148 | - } else if (!$dummy) {
|
|
| 149 | - return false; |
|
| 150 | - } |
|
| 151 | - |
|
| 152 | - /** |
|
| 153 | - * Filter the request_info array. |
|
| 154 | - * |
|
| 155 | - * You can use this filter to modify request_info array. |
|
| 156 | - * |
|
| 157 | - * @since 1.0.0 |
|
| 158 | - * @package GeoDirectory |
|
| 159 | - * @param array $request_info See {@see geodir_save_listing()} for accepted args.
|
|
| 160 | - */ |
|
| 161 | - $request_info = apply_filters('geodir_action_get_request_info', $request_info);
|
|
| 162 | - |
|
| 163 | - // Check if we need to save post location as new location |
|
| 164 | - $location_result = geodir_get_default_location(); |
|
| 165 | - |
|
| 166 | - if ($location_result->location_id > 0) {
|
|
| 167 | - if (isset($request_info['post_city']) && isset($request_info['post_region'])) {
|
|
| 168 | - $request_info['post_location'] = array( |
|
| 169 | - 'city' => $request_info['post_city'], |
|
| 170 | - 'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '', |
|
| 171 | - 'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '', |
|
| 172 | - 'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '', |
|
| 173 | - 'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : '' |
|
| 174 | - ); |
|
| 175 | - |
|
| 176 | - $post_location_info = $request_info['post_location']; |
|
| 177 | - |
|
| 178 | - if ($location_id = geodir_add_new_location($post_location_info)) {
|
|
| 179 | - $post_location_id = $location_id; |
|
| 180 | - } |
|
| 181 | - } else {
|
|
| 182 | - $post_location_id = $location_result->location_id; |
|
| 183 | - } |
|
| 184 | - } else {
|
|
| 185 | - $post_location_id = $location_result->location_id; |
|
| 186 | - } |
|
| 187 | - |
|
| 188 | - if ($dummy) {
|
|
| 189 | - $post_status = 'publish'; |
|
| 190 | - } else {
|
|
| 191 | - $post_status = geodir_new_post_default_status(); |
|
| 192 | - } |
|
| 193 | - |
|
| 194 | - if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
|
| 195 | - $post_status = get_post_status($request_info['pid']); |
|
| 196 | - } |
|
| 197 | - |
|
| 198 | - /* fix change of slug on every title edit */ |
|
| 199 | - if (!isset($request_info['post_name'])) {
|
|
| 200 | - $request_info['post_name'] = $request_info['post_title']; |
|
| 201 | - |
|
| 202 | - if (!empty($request_info['pid'])) {
|
|
| 203 | - $post_info = get_post($request_info['pid']); |
|
| 204 | - |
|
| 205 | - if (!empty($post_info) && isset($post_info->post_name)) {
|
|
| 206 | - $request_info['post_name'] = $post_info->post_name; |
|
| 207 | - } |
|
| 208 | - } |
|
| 209 | - } |
|
| 210 | - |
|
| 211 | - $post = array( |
|
| 212 | - 'post_content' => $request_info['post_desc'], |
|
| 213 | - 'post_status' => $post_status, |
|
| 214 | - 'post_title' => $request_info['post_title'], |
|
| 215 | - 'post_name' => $request_info['post_name'], |
|
| 216 | - 'post_type' => $request_info['listing_type'] |
|
| 217 | - ); |
|
| 218 | - |
|
| 219 | - /** |
|
| 220 | - * Called before a listing is saved to the database. |
|
| 221 | - * |
|
| 222 | - * @since 1.0.0 |
|
| 223 | - * @param object $post The post object. |
|
| 224 | - */ |
|
| 225 | - do_action_ref_array('geodir_before_save_listing', $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 | + $request_info['pid'] = !empty($post->ID) ? $post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL); |
|
| 145 | + $request_info['post_title'] = $request_info['post_title']; |
|
| 146 | + $request_info['listing_type'] = $post->post_type; |
|
| 147 | + $request_info['post_desc'] = $request_info['content']; |
|
| 148 | + } else if (!$dummy) {
|
|
| 149 | + return false; |
|
| 150 | + } |
|
| 151 | + |
|
| 152 | + /** |
|
| 153 | + * Filter the request_info array. |
|
| 154 | + * |
|
| 155 | + * You can use this filter to modify request_info array. |
|
| 156 | + * |
|
| 157 | + * @since 1.0.0 |
|
| 158 | + * @package GeoDirectory |
|
| 159 | + * @param array $request_info See {@see geodir_save_listing()} for accepted args.
|
|
| 160 | + */ |
|
| 161 | + $request_info = apply_filters('geodir_action_get_request_info', $request_info);
|
|
| 162 | + |
|
| 163 | + // Check if we need to save post location as new location |
|
| 164 | + $location_result = geodir_get_default_location(); |
|
| 165 | + |
|
| 166 | + if ($location_result->location_id > 0) {
|
|
| 167 | + if (isset($request_info['post_city']) && isset($request_info['post_region'])) {
|
|
| 168 | + $request_info['post_location'] = array( |
|
| 169 | + 'city' => $request_info['post_city'], |
|
| 170 | + 'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '', |
|
| 171 | + 'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '', |
|
| 172 | + 'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '', |
|
| 173 | + 'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : '' |
|
| 174 | + ); |
|
| 175 | + |
|
| 176 | + $post_location_info = $request_info['post_location']; |
|
| 177 | + |
|
| 178 | + if ($location_id = geodir_add_new_location($post_location_info)) {
|
|
| 179 | + $post_location_id = $location_id; |
|
| 180 | + } |
|
| 181 | + } else {
|
|
| 182 | + $post_location_id = $location_result->location_id; |
|
| 183 | + } |
|
| 184 | + } else {
|
|
| 185 | + $post_location_id = $location_result->location_id; |
|
| 186 | + } |
|
| 187 | + |
|
| 188 | + if ($dummy) {
|
|
| 189 | + $post_status = 'publish'; |
|
| 190 | + } else {
|
|
| 191 | + $post_status = geodir_new_post_default_status(); |
|
| 192 | + } |
|
| 193 | + |
|
| 194 | + if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
|
| 195 | + $post_status = get_post_status($request_info['pid']); |
|
| 196 | + } |
|
| 226 | 197 | |
| 227 | - $send_post_submit_mail = false; |
|
| 198 | + /* fix change of slug on every title edit */ |
|
| 199 | + if (!isset($request_info['post_name'])) {
|
|
| 200 | + $request_info['post_name'] = $request_info['post_title']; |
|
| 201 | + |
|
| 202 | + if (!empty($request_info['pid'])) {
|
|
| 203 | + $post_info = get_post($request_info['pid']); |
|
| 204 | + |
|
| 205 | + if (!empty($post_info) && isset($post_info->post_name)) {
|
|
| 206 | + $request_info['post_name'] = $post_info->post_name; |
|
| 207 | + } |
|
| 208 | + } |
|
| 209 | + } |
|
| 210 | + |
|
| 211 | + $post = array( |
|
| 212 | + 'post_content' => $request_info['post_desc'], |
|
| 213 | + 'post_status' => $post_status, |
|
| 214 | + 'post_title' => $request_info['post_title'], |
|
| 215 | + 'post_name' => $request_info['post_name'], |
|
| 216 | + 'post_type' => $request_info['listing_type'] |
|
| 217 | + ); |
|
| 218 | + |
|
| 219 | + /** |
|
| 220 | + * Called before a listing is saved to the database. |
|
| 221 | + * |
|
| 222 | + * @since 1.0.0 |
|
| 223 | + * @param object $post The post object. |
|
| 224 | + */ |
|
| 225 | + do_action_ref_array('geodir_before_save_listing', $post);
|
|
| 226 | + |
|
| 227 | + $send_post_submit_mail = false; |
|
| 228 | + |
|
| 229 | + // unhook this function so it doesn't loop infinitely |
|
| 230 | + remove_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 231 | + |
|
| 232 | + if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
|
| 233 | + $post['ID'] = $request_info['pid']; |
|
| 234 | + |
|
| 235 | + $last_post_id = wp_update_post($post, $wp_error); |
|
| 236 | + } else {
|
|
| 237 | + $last_post_id = wp_insert_post($post, $wp_error); |
|
| 238 | + |
|
| 239 | + if (!$dummy && $last_post_id) {
|
|
| 240 | + $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) |
|
| 241 | + //geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID);
|
|
| 242 | + } |
|
| 243 | + } |
|
| 228 | 244 | |
| 229 | - // unhook this function so it doesn't loop infinitely |
|
| 230 | - remove_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 245 | + if ($wp_error && is_wp_error($last_post_id)) {
|
|
| 246 | + return $last_post_id; // Return WP_Error on save failure. |
|
| 247 | + } |
|
| 231 | 248 | |
| 232 | - if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
|
| 233 | - $post['ID'] = $request_info['pid']; |
|
| 249 | + if (!$last_post_id) {
|
|
| 250 | + return false; // Save failure. |
|
| 251 | + } |
|
| 234 | 252 | |
| 235 | - $last_post_id = wp_update_post($post, $wp_error); |
|
| 236 | - } else {
|
|
| 237 | - $last_post_id = wp_insert_post($post, $wp_error); |
|
| 253 | + // re-hook this function |
|
| 254 | + add_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 238 | 255 | |
| 239 | - if (!$dummy && $last_post_id) {
|
|
| 240 | - $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) |
|
| 241 | - //geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID);
|
|
| 242 | - } |
|
| 243 | - } |
|
| 256 | + $post_tags = ''; |
|
| 257 | + if (!isset($request_info['post_tags'])) {
|
|
| 244 | 258 | |
| 245 | - if ($wp_error && is_wp_error($last_post_id)) {
|
|
| 246 | - return $last_post_id; // Return WP_Error on save failure. |
|
| 247 | - } |
|
| 259 | + $post_type = $request_info['listing_type']; |
|
| 260 | + $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
|
|
| 248 | 261 | |
| 249 | - if (!$last_post_id) {
|
|
| 250 | - return false; // Save failure. |
|
| 251 | - } |
|
| 262 | + } |
|
| 252 | 263 | |
| 253 | - // re-hook this function |
|
| 254 | - add_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 264 | + $gd_post_info = array( |
|
| 265 | + "post_title" => $request_info['post_title'], |
|
| 266 | + "post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags, |
|
| 267 | + "post_status" => $post_status, |
|
| 268 | + "post_location_id" => $post_location_id, |
|
| 269 | + "claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '', |
|
| 270 | + "businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '', |
|
| 271 | + "submit_time" => time(), |
|
| 272 | + "submit_ip" => $_SERVER['REMOTE_ADDR'], |
|
| 273 | + ); |
|
| 255 | 274 | |
| 256 | - $post_tags = ''; |
|
| 257 | - if (!isset($request_info['post_tags'])) {
|
|
| 275 | + $payment_info = array(); |
|
| 276 | + $package_info = array(); |
|
| 258 | 277 | |
| 259 | - $post_type = $request_info['listing_type']; |
|
| 260 | - $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
|
|
| 278 | + $package_info = (array)geodir_post_package_info($package_info, $post); |
|
| 261 | 279 | |
| 262 | - } |
|
| 280 | + $post_package_id = geodir_get_post_meta($last_post_id, 'package_id'); |
|
| 263 | 281 | |
| 264 | - $gd_post_info = array( |
|
| 265 | - "post_title" => $request_info['post_title'], |
|
| 266 | - "post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags, |
|
| 267 | - "post_status" => $post_status, |
|
| 268 | - "post_location_id" => $post_location_id, |
|
| 269 | - "claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '', |
|
| 270 | - "businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '', |
|
| 271 | - "submit_time" => time(), |
|
| 272 | - "submit_ip" => $_SERVER['REMOTE_ADDR'], |
|
| 273 | - ); |
|
| 282 | + if (!empty($package_info) && !$post_package_id) {
|
|
| 283 | + if (isset($package_info['days']) && $package_info['days'] != 0) {
|
|
| 284 | + $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
|
|
| 285 | + } else {
|
|
| 286 | + $payment_info['expire_date'] = 'Never'; |
|
| 287 | + } |
|
| 274 | 288 | |
| 275 | - $payment_info = array(); |
|
| 276 | - $package_info = array(); |
|
| 289 | + $payment_info['package_id'] = $package_info['pid']; |
|
| 290 | + $payment_info['alive_days'] = $package_info['days']; |
|
| 291 | + $payment_info['is_featured'] = $package_info['is_featured']; |
|
| 277 | 292 | |
| 278 | - $package_info = (array)geodir_post_package_info($package_info, $post); |
|
| 293 | + $gd_post_info = array_merge($gd_post_info, $payment_info); |
|
| 294 | + } |
|
| 279 | 295 | |
| 280 | - $post_package_id = geodir_get_post_meta($last_post_id, 'package_id'); |
|
| 296 | + $custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']);
|
|
| 281 | 297 | |
| 282 | - if (!empty($package_info) && !$post_package_id) {
|
|
| 283 | - if (isset($package_info['days']) && $package_info['days'] != 0) {
|
|
| 284 | - $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
|
|
| 285 | - } else {
|
|
| 286 | - $payment_info['expire_date'] = 'Never'; |
|
| 287 | - } |
|
| 298 | + foreach ($custom_metaboxes as $key => $val): |
|
| 288 | 299 | |
| 289 | - $payment_info['package_id'] = $package_info['pid']; |
|
| 290 | - $payment_info['alive_days'] = $package_info['days']; |
|
| 291 | - $payment_info['is_featured'] = $package_info['is_featured']; |
|
| 300 | + $name = $val['name']; |
|
| 301 | + $type = $val['type']; |
|
| 302 | + $extrafields = $val['extra_fields']; |
|
| 292 | 303 | |
| 293 | - $gd_post_info = array_merge($gd_post_info, $payment_info); |
|
| 294 | - } |
|
| 304 | + if (trim($type) == 'address') {
|
|
| 305 | + $prefix = $name . '_'; |
|
| 306 | + $address = $prefix . 'address'; |
|
| 295 | 307 | |
| 296 | - $custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']);
|
|
| 308 | + if (isset($request_info[$address]) && $request_info[$address] != '') {
|
|
| 309 | + $gd_post_info[$address] = wp_slash($request_info[$address]); |
|
| 310 | + } |
|
| 297 | 311 | |
| 298 | - foreach ($custom_metaboxes as $key => $val): |
|
| 312 | + if ($extrafields != '') {
|
|
| 313 | + $extrafields = unserialize($extrafields); |
|
| 299 | 314 | |
| 300 | - $name = $val['name']; |
|
| 301 | - $type = $val['type']; |
|
| 302 | - $extrafields = $val['extra_fields']; |
|
| 303 | 315 | |
| 304 | - if (trim($type) == 'address') {
|
|
| 305 | - $prefix = $name . '_'; |
|
| 306 | - $address = $prefix . 'address'; |
|
| 316 | + if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
|
|
| 307 | 317 | |
| 308 | - if (isset($request_info[$address]) && $request_info[$address] != '') {
|
|
| 309 | - $gd_post_info[$address] = wp_slash($request_info[$address]); |
|
| 310 | - } |
|
| 318 | + $location_result = geodir_get_default_location(); |
|
| 311 | 319 | |
| 312 | - if ($extrafields != '') {
|
|
| 313 | - $extrafields = unserialize($extrafields); |
|
| 320 | + $gd_post_info[$prefix . 'city'] = $location_result->city; |
|
| 321 | + $gd_post_info[$prefix . 'region'] = $location_result->region; |
|
| 322 | + $gd_post_info[$prefix . 'country'] = $location_result->country; |
|
| 314 | 323 | |
| 324 | + $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
| 315 | 325 | |
| 316 | - if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
|
|
| 326 | + } else {
|
|
| 317 | 327 | |
| 318 | - $location_result = geodir_get_default_location(); |
|
| 328 | + $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city']; |
|
| 329 | + $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region']; |
|
| 330 | + $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country']; |
|
| 319 | 331 | |
| 320 | - $gd_post_info[$prefix . 'city'] = $location_result->city; |
|
| 321 | - $gd_post_info[$prefix . 'region'] = $location_result->region; |
|
| 322 | - $gd_post_info[$prefix . 'country'] = $location_result->country; |
|
| 332 | + //----------set post locations when import dummy data------- |
|
| 333 | + $location_result = geodir_get_default_location(); |
|
| 323 | 334 | |
| 324 | - $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 | + //----------------------------------------------------------------- |
|
| 325 | 337 | |
| 326 | - } else {
|
|
| 338 | + } |
|
| 327 | 339 | |
| 328 | - $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city']; |
|
| 329 | - $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region']; |
|
| 330 | - $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country']; |
|
| 331 | 340 | |
| 332 | - //----------set post locations when import dummy data------- |
|
| 333 | - $location_result = geodir_get_default_location(); |
|
| 341 | + if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
|
|
| 342 | + $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip']; |
|
| 343 | + } |
|
| 334 | 344 | |
| 335 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
| 336 | - //----------------------------------------------------------------- |
|
| 337 | 345 | |
| 338 | - } |
|
| 346 | + if (isset($extrafields['show_map']) && $extrafields['show_map']) {
|
|
| 339 | 347 | |
| 348 | + if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
|
|
| 349 | + $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude']; |
|
| 350 | + } |
|
| 340 | 351 | |
| 341 | - if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
|
|
| 342 | - $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip']; |
|
| 343 | - } |
|
| 352 | + if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
|
|
| 353 | + $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude']; |
|
| 354 | + } |
|
| 344 | 355 | |
| 356 | + if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
|
|
| 357 | + $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview']; |
|
| 358 | + } |
|
| 345 | 359 | |
| 346 | - if (isset($extrafields['show_map']) && $extrafields['show_map']) {
|
|
| 360 | + if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
|
|
| 361 | + $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom']; |
|
| 362 | + } |
|
| 347 | 363 | |
| 348 | - if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
|
|
| 349 | - $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude']; |
|
| 350 | - } |
|
| 364 | + } |
|
| 351 | 365 | |
| 352 | - if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
|
|
| 353 | - $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude']; |
|
| 354 | - } |
|
| 366 | + // show lat lng |
|
| 367 | + if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
|
|
| 368 | + $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng']; |
|
| 369 | + } |
|
| 370 | + } |
|
| 355 | 371 | |
| 356 | - if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
|
|
| 357 | - $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview']; |
|
| 358 | - } |
|
| 372 | + } elseif (trim($type) == 'file') {
|
|
| 373 | + if (isset($request_info[$name])) {
|
|
| 374 | + $request_files = array(); |
|
| 375 | + if ($request_info[$name] != '') |
|
| 376 | + $request_files = explode(",", $request_info[$name]);
|
|
| 359 | 377 | |
| 360 | - if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
|
|
| 361 | - $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom']; |
|
| 362 | - } |
|
| 378 | + $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL; |
|
| 379 | + geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields); |
|
| 363 | 380 | |
| 364 | - } |
|
| 381 | + } |
|
| 382 | + } elseif (trim($type) == 'datepicker') {
|
|
| 383 | + $datetime = ''; |
|
| 384 | + if (isset($request_info[$name]) && $request_info[$name] != '') {
|
|
| 385 | + $date_format = geodir_default_date_format(); |
|
| 386 | + if (isset($val['extra_fields']) && $val['extra_fields'] != '') {
|
|
| 387 | + $extra_fields = unserialize($val['extra_fields']); |
|
| 388 | + $date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format; |
|
| 389 | + } |
|
| 365 | 390 | |
| 366 | - // show lat lng |
|
| 367 | - if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
|
|
| 368 | - $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng']; |
|
| 369 | - } |
|
| 370 | - } |
|
| 391 | + $search = array('dd', 'mm', 'yy');
|
|
| 392 | + $replace = array('d', 'm', 'Y');
|
|
| 371 | 393 | |
| 372 | - } elseif (trim($type) == 'file') {
|
|
| 373 | - if (isset($request_info[$name])) {
|
|
| 374 | - $request_files = array(); |
|
| 375 | - if ($request_info[$name] != '') |
|
| 376 | - $request_files = explode(",", $request_info[$name]);
|
|
| 394 | + $date_format = str_replace($search, $replace, $date_format); |
|
| 377 | 395 | |
| 378 | - $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL; |
|
| 379 | - geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields); |
|
| 396 | + $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name]; // PHP doesn't work well with dd/mm/yyyy format
|
|
| 380 | 397 | |
| 381 | - } |
|
| 382 | - } elseif (trim($type) == 'datepicker') {
|
|
| 383 | - $datetime = ''; |
|
| 384 | - if (isset($request_info[$name]) && $request_info[$name] != '') {
|
|
| 385 | - $date_format = geodir_default_date_format(); |
|
| 386 | - if (isset($val['extra_fields']) && $val['extra_fields'] != '') {
|
|
| 387 | - $extra_fields = unserialize($val['extra_fields']); |
|
| 388 | - $date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format; |
|
| 389 | - } |
|
| 398 | + $datetime = date("Y-m-d", strtotime($post_htmlvar_value));
|
|
| 399 | + } |
|
| 400 | + $gd_post_info[$name] = $datetime; |
|
| 401 | + } else if ($type == 'multiselect') {
|
|
| 402 | + if (isset($request_info[$name])) {
|
|
| 403 | + $gd_post_info[$name] = $request_info[$name]; |
|
| 404 | + } else {
|
|
| 405 | + if (isset($request_info['gd_field_' . $name])) {
|
|
| 406 | + $gd_post_info[$name] = ''; /* fix de-select for multiselect */ |
|
| 407 | + } |
|
| 408 | + } |
|
| 409 | + } else if (isset($request_info[$name])) {
|
|
| 410 | + $gd_post_info[$name] = $request_info[$name]; |
|
| 411 | + } |
|
| 390 | 412 | |
| 391 | - $search = array('dd', 'mm', 'yy');
|
|
| 392 | - $replace = array('d', 'm', 'Y');
|
|
| 413 | + endforeach; |
|
| 393 | 414 | |
| 394 | - $date_format = str_replace($search, $replace, $date_format); |
|
| 415 | + if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') {
|
|
| 416 | + $gd_post_info['post_dummy'] = $request_info['post_dummy']; |
|
| 417 | + } |
|
| 395 | 418 | |
| 396 | - $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name]; // PHP doesn't work well with dd/mm/yyyy format
|
|
| 419 | + // Save post detail info in detail table |
|
| 420 | + if (!empty($gd_post_info)) {
|
|
| 421 | + geodir_save_post_info($last_post_id, $gd_post_info); |
|
| 422 | + } |
|
| 397 | 423 | |
| 398 | - $datetime = date("Y-m-d", strtotime($post_htmlvar_value));
|
|
| 399 | - } |
|
| 400 | - $gd_post_info[$name] = $datetime; |
|
| 401 | - } else if ($type == 'multiselect') {
|
|
| 402 | - if (isset($request_info[$name])) {
|
|
| 403 | - $gd_post_info[$name] = $request_info[$name]; |
|
| 404 | - } else {
|
|
| 405 | - if (isset($request_info['gd_field_' . $name])) {
|
|
| 406 | - $gd_post_info[$name] = ''; /* fix de-select for multiselect */ |
|
| 407 | - } |
|
| 408 | - } |
|
| 409 | - } else if (isset($request_info[$name])) {
|
|
| 410 | - $gd_post_info[$name] = $request_info[$name]; |
|
| 411 | - } |
|
| 412 | 424 | |
| 413 | - endforeach; |
|
| 425 | + // Set categories to the listing |
|
| 426 | + if (isset($request_info['post_category']) && !empty($request_info['post_category'])) {
|
|
| 427 | + $post_category = array(); |
|
| 414 | 428 | |
| 415 | - if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') {
|
|
| 416 | - $gd_post_info['post_dummy'] = $request_info['post_dummy']; |
|
| 417 | - } |
|
| 429 | + foreach ($request_info['post_category'] as $taxonomy => $cat) {
|
|
| 418 | 430 | |
| 419 | - // Save post detail info in detail table |
|
| 420 | - if (!empty($gd_post_info)) {
|
|
| 421 | - geodir_save_post_info($last_post_id, $gd_post_info); |
|
| 422 | - } |
|
| 431 | + if ($dummy) |
|
| 432 | + $post_category = $cat; |
|
| 433 | + else {
|
|
| 423 | 434 | |
| 435 | + if (!is_array($cat) && strstr($cat, ',')) |
|
| 436 | + $cat = explode(',', $cat);
|
|
| 424 | 437 | |
| 425 | - // Set categories to the listing |
|
| 426 | - if (isset($request_info['post_category']) && !empty($request_info['post_category'])) {
|
|
| 427 | - $post_category = array(); |
|
| 438 | + if (!empty($cat) && is_array($cat)) |
|
| 439 | + $post_category = array_map('intval', $cat);
|
|
| 440 | + } |
|
| 428 | 441 | |
| 429 | - foreach ($request_info['post_category'] as $taxonomy => $cat) {
|
|
| 442 | + wp_set_object_terms($last_post_id, $post_category, $taxonomy); |
|
| 443 | + } |
|
| 430 | 444 | |
| 431 | - if ($dummy) |
|
| 432 | - $post_category = $cat; |
|
| 433 | - else {
|
|
| 445 | + $post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : ''; |
|
| 434 | 446 | |
| 435 | - if (!is_array($cat) && strstr($cat, ',')) |
|
| 436 | - $cat = explode(',', $cat);
|
|
| 447 | + $post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : ''; |
|
| 448 | + geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str); |
|
| 437 | 449 | |
| 438 | - if (!empty($cat) && is_array($cat)) |
|
| 439 | - $post_category = array_map('intval', $cat);
|
|
| 440 | - } |
|
| 450 | + } |
|
| 441 | 451 | |
| 442 | - wp_set_object_terms($last_post_id, $post_category, $taxonomy); |
|
| 443 | - } |
|
| 452 | + $post_tags = ''; |
|
| 453 | + // Set tags to the listing |
|
| 454 | + if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
|
|
| 455 | + $post_tags = explode(",", $request_info['post_tags']);
|
|
| 456 | + } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
|
|
| 457 | + if ($dummy) |
|
| 458 | + $post_tags = $request_info['post_tags']; |
|
| 459 | + } else {
|
|
| 460 | + if ($dummy) |
|
| 461 | + $post_tags = array($request_info['post_title']); |
|
| 462 | + } |
|
| 444 | 463 | |
| 445 | - $post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : ''; |
|
| 464 | + if (is_array($post_tags)) {
|
|
| 465 | + $taxonomy = $request_info['listing_type'] . '_tags'; |
|
| 466 | + wp_set_object_terms($last_post_id, $post_tags, $taxonomy); |
|
| 467 | + } |
|
| 446 | 468 | |
| 447 | - $post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : ''; |
|
| 448 | - geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str); |
|
| 449 | - |
|
| 450 | - } |
|
| 451 | 469 | |
| 452 | - $post_tags = ''; |
|
| 453 | - // Set tags to the listing |
|
| 454 | - if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
|
|
| 455 | - $post_tags = explode(",", $request_info['post_tags']);
|
|
| 456 | - } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
|
|
| 457 | - if ($dummy) |
|
| 458 | - $post_tags = $request_info['post_tags']; |
|
| 459 | - } else {
|
|
| 460 | - if ($dummy) |
|
| 461 | - $post_tags = array($request_info['post_title']); |
|
| 462 | - } |
|
| 470 | + // Insert attechment |
|
| 463 | 471 | |
| 464 | - if (is_array($post_tags)) {
|
|
| 465 | - $taxonomy = $request_info['listing_type'] . '_tags'; |
|
| 466 | - wp_set_object_terms($last_post_id, $post_tags, $taxonomy); |
|
| 467 | - } |
|
| 468 | - |
|
| 469 | - |
|
| 470 | - // Insert attechment |
|
| 472 | + if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) {
|
|
| 473 | + if (!$dummy) {
|
|
| 474 | + $tmpimgArr = trim($request_info['post_images'], ","); |
|
| 475 | + $tmpimgArr = explode(",", $tmpimgArr);
|
|
| 476 | + geodir_save_post_images($last_post_id, $tmpimgArr, $dummy); |
|
| 477 | + } else{
|
|
| 478 | + geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy); |
|
| 479 | + } |
|
| 471 | 480 | |
| 472 | - if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) {
|
|
| 473 | - if (!$dummy) {
|
|
| 474 | - $tmpimgArr = trim($request_info['post_images'], ","); |
|
| 475 | - $tmpimgArr = explode(",", $tmpimgArr);
|
|
| 476 | - geodir_save_post_images($last_post_id, $tmpimgArr, $dummy); |
|
| 477 | - } else{
|
|
| 478 | - geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy); |
|
| 479 | - } |
|
| 480 | 481 | |
| 482 | + } elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') {
|
|
| 481 | 483 | |
| 482 | - } elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') {
|
|
| 483 | - |
|
| 484 | - /* Delete Attachments |
|
| 484 | + /* Delete Attachments |
|
| 485 | 485 | $postcurr_images = geodir_get_images($last_post_id); |
| 486 | 486 | |
| 487 | 487 | $wpdb->query( |
@@ -497,34 +497,34 @@ discard block |
||
| 497 | 497 | geodir_save_post_info($last_post_id, $gd_post_featured_img); |
| 498 | 498 | */ |
| 499 | 499 | |
| 500 | - } |
|
| 500 | + } |
|
| 501 | 501 | |
| 502 | - geodir_remove_temp_images(); |
|
| 503 | - geodir_set_wp_featured_image($last_post_id); |
|
| 502 | + geodir_remove_temp_images(); |
|
| 503 | + geodir_set_wp_featured_image($last_post_id); |
|
| 504 | 504 | |
| 505 | - /** |
|
| 506 | - * Called after a listing is saved to the database and before any email have been sent. |
|
| 507 | - * |
|
| 508 | - * @since 1.0.0 |
|
| 509 | - * @param int $last_post_id The saved post ID. |
|
| 510 | - * @param array $request_info The post details in an array. |
|
| 511 | - * @see 'geodir_after_save_listinginfo' |
|
| 512 | - */ |
|
| 513 | - do_action('geodir_after_save_listing', $last_post_id, $request_info);
|
|
| 505 | + /** |
|
| 506 | + * Called after a listing is saved to the database and before any email have been sent. |
|
| 507 | + * |
|
| 508 | + * @since 1.0.0 |
|
| 509 | + * @param int $last_post_id The saved post ID. |
|
| 510 | + * @param array $request_info The post details in an array. |
|
| 511 | + * @see 'geodir_after_save_listinginfo' |
|
| 512 | + */ |
|
| 513 | + do_action('geodir_after_save_listing', $last_post_id, $request_info);
|
|
| 514 | 514 | |
| 515 | - //die; |
|
| 515 | + //die; |
|
| 516 | 516 | |
| 517 | - if ($send_post_submit_mail) { // if new post send out email
|
|
| 518 | - $to_name = geodir_get_client_name($current_user->ID); |
|
| 519 | - geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID);
|
|
| 520 | - } |
|
| 521 | - /* |
|
| 517 | + if ($send_post_submit_mail) { // if new post send out email
|
|
| 518 | + $to_name = geodir_get_client_name($current_user->ID); |
|
| 519 | + geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID);
|
|
| 520 | + } |
|
| 521 | + /* |
|
| 522 | 522 | * Unset the session so we don't loop. |
| 523 | 523 | */ |
| 524 | - $gd_session->un_set('listing');
|
|
| 525 | - return $last_post_id; |
|
| 524 | + $gd_session->un_set('listing');
|
|
| 525 | + return $last_post_id; |
|
| 526 | 526 | |
| 527 | - } |
|
| 527 | + } |
|
| 528 | 528 | |
| 529 | 529 | } |
| 530 | 530 | |
@@ -543,586 +543,586 @@ discard block |
||
| 543 | 543 | function geodir_get_post_info($post_id = '') |
| 544 | 544 | {
|
| 545 | 545 | |
| 546 | - global $wpdb, $plugin_prefix, $post, $post_info; |
|
| 546 | + global $wpdb, $plugin_prefix, $post, $post_info; |
|
| 547 | 547 | |
| 548 | - if ($post_id == '' && !empty($post)) |
|
| 549 | - $post_id = $post->ID; |
|
| 548 | + if ($post_id == '' && !empty($post)) |
|
| 549 | + $post_id = $post->ID; |
|
| 550 | 550 | |
| 551 | - $post_type = get_post_type($post_id); |
|
| 551 | + $post_type = get_post_type($post_id); |
|
| 552 | 552 | |
| 553 | - $all_postypes = geodir_get_posttypes(); |
|
| 553 | + $all_postypes = geodir_get_posttypes(); |
|
| 554 | 554 | |
| 555 | - if (!in_array($post_type, $all_postypes)) |
|
| 556 | - return false; |
|
| 555 | + if (!in_array($post_type, $all_postypes)) |
|
| 556 | + return false; |
|
| 557 | 557 | |
| 558 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 558 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 559 | 559 | |
| 560 | - /** |
|
| 561 | - * Apply Filter to change Post info |
|
| 562 | - * |
|
| 563 | - * You can use this filter to change Post info. |
|
| 564 | - * |
|
| 565 | - * @since 1.0.0 |
|
| 566 | - * @package GeoDirectory |
|
| 567 | - */ |
|
| 568 | - $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
|
|
| 560 | + /** |
|
| 561 | + * Apply Filter to change Post info |
|
| 562 | + * |
|
| 563 | + * You can use this filter to change Post info. |
|
| 564 | + * |
|
| 565 | + * @since 1.0.0 |
|
| 566 | + * @package GeoDirectory |
|
| 567 | + */ |
|
| 568 | + $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
|
|
| 569 | 569 | WHERE p.ID = pd.post_id |
| 570 | 570 | AND post_id = " . $post_id); |
| 571 | 571 | |
| 572 | - $post_detail = $wpdb->get_row($query); |
|
| 572 | + $post_detail = $wpdb->get_row($query); |
|
| 573 | 573 | |
| 574 | - return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false; |
|
| 574 | + return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false; |
|
| 575 | 575 | |
| 576 | 576 | } |
| 577 | 577 | |
| 578 | 578 | |
| 579 | 579 | if (!function_exists('geodir_save_post_info')) {
|
| 580 | - /** |
|
| 581 | - * Saves post detail info in detail table. |
|
| 582 | - * |
|
| 583 | - * @since 1.0.0 |
|
| 584 | - * @package GeoDirectory |
|
| 585 | - * @global object $wpdb WordPress Database object. |
|
| 586 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 587 | - * @param int $post_id The post ID. |
|
| 588 | - * @param array $postinfo_array {
|
|
| 589 | - * Post info that needs to be saved in detail table. |
|
| 590 | - * |
|
| 591 | - * @type string $post_title Listing title. |
|
| 592 | - * @type string $post_tags Listing tags. |
|
| 593 | - * @type string $post_status Listing post status. |
|
| 594 | - * @type string $post_location_id Listing location ID. |
|
| 595 | - * @type string $claimed Todo Desc needed. |
|
| 596 | - * @type string $businesses Todo Desc needed. |
|
| 597 | - * @type int $submit_time Submitted time in unix timestamp. |
|
| 598 | - * @type string $submit_ip Submitted IP. |
|
| 599 | - * @type string $expire_date Listing expiration date. |
|
| 600 | - * @type int $package_id Listing package ID. |
|
| 601 | - * @type int $alive_days Todo Desc needed. |
|
| 602 | - * @type int $is_featured Is this a featured listing?. |
|
| 603 | - * @type string $post_address Listing address. |
|
| 604 | - * @type string $post_city Listing city. |
|
| 605 | - * @type string $post_region Listing region. |
|
| 606 | - * @type string $post_country Listing country. |
|
| 607 | - * @type string $post_locations Listing locations. |
|
| 608 | - * @type string $post_zip Listing zip. |
|
| 609 | - * @type string $post_latitude Listing latitude. |
|
| 610 | - * @type string $post_longitude Listing longitude. |
|
| 611 | - * @type string $post_mapview Listing mapview. Default "ROADMAP". |
|
| 612 | - * @type string $post_mapzoom Listing mapzoom Default "9". |
|
| 613 | - * @type string $geodir_timing Business timing info. |
|
| 614 | - * @type string $geodir_contact Contact number. |
|
| 615 | - * @type string $geodir_email Business contact email. |
|
| 616 | - * @type string $geodir_website Business website. |
|
| 617 | - * @type string $geodir_twitter Twitter link. |
|
| 618 | - * @type string $geodir_facebook Facebook link. |
|
| 619 | - * @type string $geodir_video Video link. |
|
| 620 | - * @type string $geodir_special_offers Speacial offers. |
|
| 621 | - * |
|
| 622 | - * } |
|
| 623 | - * @return bool |
|
| 624 | - */ |
|
| 625 | - function geodir_save_post_info($post_id, $postinfo_array = array()) |
|
| 626 | - {
|
|
| 627 | - global $wpdb, $plugin_prefix; |
|
| 628 | - |
|
| 629 | - $post_type = get_post_type($post_id); |
|
| 630 | - |
|
| 631 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 632 | - |
|
| 633 | - /** |
|
| 634 | - * Filter to change Post info |
|
| 635 | - * |
|
| 636 | - * You can use this filter to change Post info. |
|
| 637 | - * |
|
| 638 | - * @since 1.0.0 |
|
| 639 | - * @package GeoDirectory |
|
| 640 | - * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
|
|
| 641 | - * @param int $post_id The post ID. |
|
| 642 | - */ |
|
| 580 | + /** |
|
| 581 | + * Saves post detail info in detail table. |
|
| 582 | + * |
|
| 583 | + * @since 1.0.0 |
|
| 584 | + * @package GeoDirectory |
|
| 585 | + * @global object $wpdb WordPress Database object. |
|
| 586 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 587 | + * @param int $post_id The post ID. |
|
| 588 | + * @param array $postinfo_array {
|
|
| 589 | + * Post info that needs to be saved in detail table. |
|
| 590 | + * |
|
| 591 | + * @type string $post_title Listing title. |
|
| 592 | + * @type string $post_tags Listing tags. |
|
| 593 | + * @type string $post_status Listing post status. |
|
| 594 | + * @type string $post_location_id Listing location ID. |
|
| 595 | + * @type string $claimed Todo Desc needed. |
|
| 596 | + * @type string $businesses Todo Desc needed. |
|
| 597 | + * @type int $submit_time Submitted time in unix timestamp. |
|
| 598 | + * @type string $submit_ip Submitted IP. |
|
| 599 | + * @type string $expire_date Listing expiration date. |
|
| 600 | + * @type int $package_id Listing package ID. |
|
| 601 | + * @type int $alive_days Todo Desc needed. |
|
| 602 | + * @type int $is_featured Is this a featured listing?. |
|
| 603 | + * @type string $post_address Listing address. |
|
| 604 | + * @type string $post_city Listing city. |
|
| 605 | + * @type string $post_region Listing region. |
|
| 606 | + * @type string $post_country Listing country. |
|
| 607 | + * @type string $post_locations Listing locations. |
|
| 608 | + * @type string $post_zip Listing zip. |
|
| 609 | + * @type string $post_latitude Listing latitude. |
|
| 610 | + * @type string $post_longitude Listing longitude. |
|
| 611 | + * @type string $post_mapview Listing mapview. Default "ROADMAP". |
|
| 612 | + * @type string $post_mapzoom Listing mapzoom Default "9". |
|
| 613 | + * @type string $geodir_timing Business timing info. |
|
| 614 | + * @type string $geodir_contact Contact number. |
|
| 615 | + * @type string $geodir_email Business contact email. |
|
| 616 | + * @type string $geodir_website Business website. |
|
| 617 | + * @type string $geodir_twitter Twitter link. |
|
| 618 | + * @type string $geodir_facebook Facebook link. |
|
| 619 | + * @type string $geodir_video Video link. |
|
| 620 | + * @type string $geodir_special_offers Speacial offers. |
|
| 621 | + * |
|
| 622 | + * } |
|
| 623 | + * @return bool |
|
| 624 | + */ |
|
| 625 | + function geodir_save_post_info($post_id, $postinfo_array = array()) |
|
| 626 | + {
|
|
| 627 | + global $wpdb, $plugin_prefix; |
|
| 628 | + |
|
| 629 | + $post_type = get_post_type($post_id); |
|
| 630 | + |
|
| 631 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 632 | + |
|
| 633 | + /** |
|
| 634 | + * Filter to change Post info |
|
| 635 | + * |
|
| 636 | + * You can use this filter to change Post info. |
|
| 637 | + * |
|
| 638 | + * @since 1.0.0 |
|
| 639 | + * @package GeoDirectory |
|
| 640 | + * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
|
|
| 641 | + * @param int $post_id The post ID. |
|
| 642 | + */ |
|
| 643 | + |
|
| 644 | + $postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id);
|
|
| 645 | + |
|
| 646 | + if (!empty($postmeta) && $post_id) {
|
|
| 647 | + $post_meta_set_query = ''; |
|
| 648 | + |
|
| 649 | + foreach ($postmeta as $mkey => $mval) {
|
|
| 650 | + if (geodir_column_exist($table, $mkey)) {
|
|
| 651 | + if (is_array($mval)) {
|
|
| 652 | + $mval = implode(",", $mval);
|
|
| 653 | + } |
|
| 654 | + |
|
| 655 | + $post_meta_set_query .= $mkey . " = '" . $mval . "', "; |
|
| 656 | + } |
|
| 657 | + } |
|
| 643 | 658 | |
| 644 | - $postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id);
|
|
| 659 | + $post_meta_set_query = trim($post_meta_set_query, ", "); |
|
| 645 | 660 | |
| 646 | - if (!empty($postmeta) && $post_id) {
|
|
| 647 | - $post_meta_set_query = ''; |
|
| 661 | + $post_meta_set_query = str_replace('%', '%%', $post_meta_set_query);// escape %
|
|
| 648 | 662 | |
| 649 | - foreach ($postmeta as $mkey => $mval) {
|
|
| 650 | - if (geodir_column_exist($table, $mkey)) {
|
|
| 651 | - if (is_array($mval)) {
|
|
| 652 | - $mval = implode(",", $mval);
|
|
| 653 | - } |
|
| 663 | + /** |
|
| 664 | + * Called before saving the listing info. |
|
| 665 | + * |
|
| 666 | + * @since 1.0.0 |
|
| 667 | + * @package GeoDirectory |
|
| 668 | + * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
|
|
| 669 | + * @param int $post_id The post ID. |
|
| 670 | + */ |
|
| 671 | + do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
|
|
| 654 | 672 | |
| 655 | - $post_meta_set_query .= $mkey . " = '" . $mval . "', "; |
|
| 656 | - } |
|
| 657 | - } |
|
| 673 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 658 | 674 | |
| 659 | - $post_meta_set_query = trim($post_meta_set_query, ", "); |
|
| 675 | + $wpdb->query( |
|
| 676 | + $wpdb->prepare( |
|
| 677 | + "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id =%d", |
|
| 678 | + array($post_id) |
|
| 679 | + ) |
|
| 680 | + ); |
|
| 660 | 681 | |
| 661 | - $post_meta_set_query = str_replace('%', '%%', $post_meta_set_query);// escape %
|
|
| 662 | 682 | |
| 663 | - /** |
|
| 664 | - * Called before saving the listing info. |
|
| 665 | - * |
|
| 666 | - * @since 1.0.0 |
|
| 667 | - * @package GeoDirectory |
|
| 668 | - * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
|
|
| 669 | - * @param int $post_id The post ID. |
|
| 670 | - */ |
|
| 671 | - do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
|
|
| 683 | + } else {
|
|
| 672 | 684 | |
| 673 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 685 | + $wpdb->query( |
|
| 686 | + $wpdb->prepare( |
|
| 687 | + "INSERT INTO " . $table . " SET post_id = %d," . $post_meta_set_query, |
|
| 688 | + array($post_id) |
|
| 689 | + ) |
|
| 690 | + ); |
|
| 674 | 691 | |
| 675 | - $wpdb->query( |
|
| 676 | - $wpdb->prepare( |
|
| 677 | - "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id =%d", |
|
| 678 | - array($post_id) |
|
| 679 | - ) |
|
| 680 | - ); |
|
| 692 | + } |
|
| 681 | 693 | |
| 694 | + /** |
|
| 695 | + * Called after saving the listing info. |
|
| 696 | + * |
|
| 697 | + * @since 1.0.0 |
|
| 698 | + * @package GeoDirectory |
|
| 699 | + * @param array $postinfo_array Post info that needs to be saved in detail table. |
|
| 700 | + * @param int $post_id The post ID. |
|
| 701 | + * @see 'geodir_after_save_listing' |
|
| 702 | + */ |
|
| 703 | + do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
|
|
| 704 | + |
|
| 705 | + return true; |
|
| 706 | + } else |
|
| 707 | + return false; |
|
| 682 | 708 | |
| 683 | - } else {
|
|
| 709 | + } |
|
| 710 | +} |
|
| 684 | 711 | |
| 685 | - $wpdb->query( |
|
| 686 | - $wpdb->prepare( |
|
| 687 | - "INSERT INTO " . $table . " SET post_id = %d," . $post_meta_set_query, |
|
| 688 | - array($post_id) |
|
| 689 | - ) |
|
| 690 | - ); |
|
| 691 | 712 | |
| 692 | - } |
|
| 713 | +if (!function_exists('geodir_save_post_meta')) {
|
|
| 714 | + /** |
|
| 715 | + * Save or update post custom fields. |
|
| 716 | + * |
|
| 717 | + * @since 1.0.0 |
|
| 718 | + * @package GeoDirectory |
|
| 719 | + * @global object $wpdb WordPress Database object. |
|
| 720 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 721 | + * @param int $post_id The post ID. |
|
| 722 | + * @param string $postmeta Detail table column name. |
|
| 723 | + * @param string $meta_value Detail table column value. |
|
| 724 | + * @return void|bool |
|
| 725 | + */ |
|
| 726 | + function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '') |
|
| 727 | + {
|
|
| 728 | + |
|
| 729 | + global $wpdb, $plugin_prefix; |
|
| 730 | + |
|
| 731 | + $post_type = get_post_type($post_id); |
|
| 732 | + |
|
| 733 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 734 | + |
|
| 735 | + if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
|
|
| 736 | + |
|
| 737 | + if (is_array($meta_value)) {
|
|
| 738 | + $meta_value = implode(",", $meta_value);
|
|
| 739 | + } |
|
| 693 | 740 | |
| 694 | - /** |
|
| 695 | - * Called after saving the listing info. |
|
| 696 | - * |
|
| 697 | - * @since 1.0.0 |
|
| 698 | - * @package GeoDirectory |
|
| 699 | - * @param array $postinfo_array Post info that needs to be saved in detail table. |
|
| 700 | - * @param int $post_id The post ID. |
|
| 701 | - * @see 'geodir_after_save_listing' |
|
| 702 | - */ |
|
| 703 | - do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
|
|
| 741 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 704 | 742 | |
| 705 | - return true; |
|
| 706 | - } else |
|
| 707 | - return false; |
|
| 743 | + $wpdb->query( |
|
| 744 | + $wpdb->prepare( |
|
| 745 | + "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d", |
|
| 746 | + array($post_id) |
|
| 747 | + ) |
|
| 748 | + ); |
|
| 708 | 749 | |
| 709 | - } |
|
| 710 | -} |
|
| 750 | + } else {
|
|
| 711 | 751 | |
| 752 | + $wpdb->query( |
|
| 753 | + $wpdb->prepare( |
|
| 754 | + "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'", |
|
| 755 | + array($post_id) |
|
| 756 | + ) |
|
| 757 | + ); |
|
| 758 | + } |
|
| 712 | 759 | |
| 713 | -if (!function_exists('geodir_save_post_meta')) {
|
|
| 714 | - /** |
|
| 715 | - * Save or update post custom fields. |
|
| 716 | - * |
|
| 717 | - * @since 1.0.0 |
|
| 718 | - * @package GeoDirectory |
|
| 719 | - * @global object $wpdb WordPress Database object. |
|
| 720 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 721 | - * @param int $post_id The post ID. |
|
| 722 | - * @param string $postmeta Detail table column name. |
|
| 723 | - * @param string $meta_value Detail table column value. |
|
| 724 | - * @return void|bool |
|
| 725 | - */ |
|
| 726 | - function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '') |
|
| 727 | - {
|
|
| 728 | - |
|
| 729 | - global $wpdb, $plugin_prefix; |
|
| 730 | - |
|
| 731 | - $post_type = get_post_type($post_id); |
|
| 732 | - |
|
| 733 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 734 | - |
|
| 735 | - if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
|
|
| 736 | - |
|
| 737 | - if (is_array($meta_value)) {
|
|
| 738 | - $meta_value = implode(",", $meta_value);
|
|
| 739 | - } |
|
| 740 | - |
|
| 741 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 742 | - |
|
| 743 | - $wpdb->query( |
|
| 744 | - $wpdb->prepare( |
|
| 745 | - "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d", |
|
| 746 | - array($post_id) |
|
| 747 | - ) |
|
| 748 | - ); |
|
| 749 | - |
|
| 750 | - } else {
|
|
| 751 | - |
|
| 752 | - $wpdb->query( |
|
| 753 | - $wpdb->prepare( |
|
| 754 | - "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'", |
|
| 755 | - array($post_id) |
|
| 756 | - ) |
|
| 757 | - ); |
|
| 758 | - } |
|
| 759 | - |
|
| 760 | - |
|
| 761 | - } else |
|
| 762 | - return false; |
|
| 763 | - } |
|
| 760 | + |
|
| 761 | + } else |
|
| 762 | + return false; |
|
| 763 | + } |
|
| 764 | 764 | } |
| 765 | 765 | |
| 766 | 766 | if (!function_exists('geodir_delete_post_meta')) {
|
| 767 | - /** |
|
| 768 | - * Delete post custom fields. |
|
| 769 | - * |
|
| 770 | - * @since 1.0.0 |
|
| 771 | - * @package GeoDirectory |
|
| 772 | - * @global object $wpdb WordPress Database object. |
|
| 773 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 774 | - * @param int $post_id The post ID. |
|
| 775 | - * @param string $postmeta Detail table column name. |
|
| 776 | - * @todo check if this is depreciated |
|
| 777 | - * @todo Fix unknown variable mval |
|
| 778 | - * @return bool |
|
| 779 | - */ |
|
| 780 | - function geodir_delete_post_meta($post_id, $postmeta) |
|
| 781 | - {
|
|
| 782 | - |
|
| 783 | - global $wpdb, $plugin_prefix; |
|
| 784 | - |
|
| 785 | - $post_type = get_post_type($post_id); |
|
| 786 | - |
|
| 787 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 788 | - |
|
| 789 | - if (is_array($postmeta) && !empty($postmeta) && $post_id) {
|
|
| 790 | - $post_meta_set_query = ''; |
|
| 791 | - |
|
| 792 | - foreach ($postmeta as $mkey) {
|
|
| 793 | - if ($mval != '') |
|
| 794 | - $post_meta_set_query .= $mkey . " = '', "; |
|
| 795 | - } |
|
| 796 | - |
|
| 797 | - $post_meta_set_query = trim($post_meta_set_query, ", "); |
|
| 798 | - |
|
| 799 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 800 | - |
|
| 801 | - $wpdb->query( |
|
| 802 | - $wpdb->prepare( |
|
| 803 | - "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d", |
|
| 804 | - array($post_id) |
|
| 805 | - ) |
|
| 806 | - ); |
|
| 807 | - |
|
| 808 | - return true; |
|
| 809 | - } |
|
| 810 | - |
|
| 811 | - } elseif ($postmeta != '' && $post_id) {
|
|
| 812 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 813 | - |
|
| 814 | - $wpdb->query( |
|
| 815 | - $wpdb->prepare( |
|
| 816 | - "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d", |
|
| 817 | - array($post_id) |
|
| 818 | - ) |
|
| 819 | - ); |
|
| 820 | - |
|
| 821 | - return true; |
|
| 822 | - } |
|
| 823 | - |
|
| 824 | - } else |
|
| 825 | - return false; |
|
| 826 | - } |
|
| 767 | + /** |
|
| 768 | + * Delete post custom fields. |
|
| 769 | + * |
|
| 770 | + * @since 1.0.0 |
|
| 771 | + * @package GeoDirectory |
|
| 772 | + * @global object $wpdb WordPress Database object. |
|
| 773 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 774 | + * @param int $post_id The post ID. |
|
| 775 | + * @param string $postmeta Detail table column name. |
|
| 776 | + * @todo check if this is depreciated |
|
| 777 | + * @todo Fix unknown variable mval |
|
| 778 | + * @return bool |
|
| 779 | + */ |
|
| 780 | + function geodir_delete_post_meta($post_id, $postmeta) |
|
| 781 | + {
|
|
| 782 | + |
|
| 783 | + global $wpdb, $plugin_prefix; |
|
| 784 | + |
|
| 785 | + $post_type = get_post_type($post_id); |
|
| 786 | + |
|
| 787 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 788 | + |
|
| 789 | + if (is_array($postmeta) && !empty($postmeta) && $post_id) {
|
|
| 790 | + $post_meta_set_query = ''; |
|
| 791 | + |
|
| 792 | + foreach ($postmeta as $mkey) {
|
|
| 793 | + if ($mval != '') |
|
| 794 | + $post_meta_set_query .= $mkey . " = '', "; |
|
| 795 | + } |
|
| 796 | + |
|
| 797 | + $post_meta_set_query = trim($post_meta_set_query, ", "); |
|
| 798 | + |
|
| 799 | + if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 800 | + |
|
| 801 | + $wpdb->query( |
|
| 802 | + $wpdb->prepare( |
|
| 803 | + "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d", |
|
| 804 | + array($post_id) |
|
| 805 | + ) |
|
| 806 | + ); |
|
| 807 | + |
|
| 808 | + return true; |
|
| 809 | + } |
|
| 810 | + |
|
| 811 | + } elseif ($postmeta != '' && $post_id) {
|
|
| 812 | + if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 813 | + |
|
| 814 | + $wpdb->query( |
|
| 815 | + $wpdb->prepare( |
|
| 816 | + "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d", |
|
| 817 | + array($post_id) |
|
| 818 | + ) |
|
| 819 | + ); |
|
| 820 | + |
|
| 821 | + return true; |
|
| 822 | + } |
|
| 823 | + |
|
| 824 | + } else |
|
| 825 | + return false; |
|
| 826 | + } |
|
| 827 | 827 | } |
| 828 | 828 | |
| 829 | 829 | |
| 830 | 830 | if (!function_exists('geodir_get_post_meta')) {
|
| 831 | - /** |
|
| 832 | - * Get post custom meta. |
|
| 833 | - * |
|
| 834 | - * @since 1.0.0 |
|
| 835 | - * @package GeoDirectory |
|
| 836 | - * @global object $wpdb WordPress Database object. |
|
| 837 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 838 | - * @param int $post_id The post ID. |
|
| 839 | - * @param string $meta_key The meta key to retrieve. |
|
| 840 | - * @param bool $single Optional. Whether to return a single value. Default false. |
|
| 841 | - * @todo single variable not yet implemented. |
|
| 842 | - * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true. |
|
| 843 | - */ |
|
| 844 | - function geodir_get_post_meta($post_id, $meta_key, $single = false) |
|
| 845 | - {
|
|
| 846 | - if (!$post_id) {
|
|
| 847 | - return false; |
|
| 848 | - } |
|
| 849 | - global $wpdb, $plugin_prefix; |
|
| 850 | - |
|
| 851 | - $all_postypes = geodir_get_posttypes(); |
|
| 852 | - |
|
| 853 | - $post_type = get_post_type($post_id); |
|
| 854 | - |
|
| 855 | - if (!in_array($post_type, $all_postypes)) |
|
| 856 | - return false; |
|
| 857 | - |
|
| 858 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 859 | - |
|
| 860 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
|
|
| 861 | - $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
|
|
| 831 | + /** |
|
| 832 | + * Get post custom meta. |
|
| 833 | + * |
|
| 834 | + * @since 1.0.0 |
|
| 835 | + * @package GeoDirectory |
|
| 836 | + * @global object $wpdb WordPress Database object. |
|
| 837 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 838 | + * @param int $post_id The post ID. |
|
| 839 | + * @param string $meta_key The meta key to retrieve. |
|
| 840 | + * @param bool $single Optional. Whether to return a single value. Default false. |
|
| 841 | + * @todo single variable not yet implemented. |
|
| 842 | + * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true. |
|
| 843 | + */ |
|
| 844 | + function geodir_get_post_meta($post_id, $meta_key, $single = false) |
|
| 845 | + {
|
|
| 846 | + if (!$post_id) {
|
|
| 847 | + return false; |
|
| 848 | + } |
|
| 849 | + global $wpdb, $plugin_prefix; |
|
| 850 | + |
|
| 851 | + $all_postypes = geodir_get_posttypes(); |
|
| 852 | + |
|
| 853 | + $post_type = get_post_type($post_id); |
|
| 854 | + |
|
| 855 | + if (!in_array($post_type, $all_postypes)) |
|
| 856 | + return false; |
|
| 857 | + |
|
| 858 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 859 | + |
|
| 860 | + if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
|
|
| 861 | + $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
|
|
| 862 | 862 | |
| 863 | - if ($meta_value && $meta_value !== '') {
|
|
| 864 | - return maybe_serialize($meta_value); |
|
| 865 | - } else |
|
| 866 | - return $meta_value; |
|
| 867 | - } else {
|
|
| 868 | - return false; |
|
| 869 | - } |
|
| 870 | - } |
|
| 863 | + if ($meta_value && $meta_value !== '') {
|
|
| 864 | + return maybe_serialize($meta_value); |
|
| 865 | + } else |
|
| 866 | + return $meta_value; |
|
| 867 | + } else {
|
|
| 868 | + return false; |
|
| 869 | + } |
|
| 870 | + } |
|
| 871 | 871 | } |
| 872 | 872 | |
| 873 | 873 | |
| 874 | 874 | if (!function_exists('geodir_save_post_images')) {
|
| 875 | - /** |
|
| 876 | - * Save post attachments. |
|
| 877 | - * |
|
| 878 | - * @since 1.0.0 |
|
| 879 | - * @package GeoDirectory |
|
| 880 | - * @global object $wpdb WordPress Database object. |
|
| 881 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 882 | - * @global object $current_user Current user object. |
|
| 883 | - * @param int $post_id The post ID. |
|
| 884 | - * @param array $post_image Post image urls as an array. |
|
| 885 | - * @param bool $dummy Optional. Is this a dummy listing? Default false. |
|
| 886 | - */ |
|
| 887 | - function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false) |
|
| 888 | - {
|
|
| 875 | + /** |
|
| 876 | + * Save post attachments. |
|
| 877 | + * |
|
| 878 | + * @since 1.0.0 |
|
| 879 | + * @package GeoDirectory |
|
| 880 | + * @global object $wpdb WordPress Database object. |
|
| 881 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 882 | + * @global object $current_user Current user object. |
|
| 883 | + * @param int $post_id The post ID. |
|
| 884 | + * @param array $post_image Post image urls as an array. |
|
| 885 | + * @param bool $dummy Optional. Is this a dummy listing? Default false. |
|
| 886 | + */ |
|
| 887 | + function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false) |
|
| 888 | + {
|
|
| 889 | 889 | |
| 890 | 890 | |
| 891 | - global $wpdb, $plugin_prefix, $current_user; |
|
| 891 | + global $wpdb, $plugin_prefix, $current_user; |
|
| 892 | 892 | |
| 893 | - $post_type = get_post_type($post_id); |
|
| 893 | + $post_type = get_post_type($post_id); |
|
| 894 | 894 | |
| 895 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 895 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 896 | 896 | |
| 897 | - $post_images = geodir_get_images($post_id); |
|
| 897 | + $post_images = geodir_get_images($post_id); |
|
| 898 | 898 | |
| 899 | - $wpdb->query( |
|
| 900 | - $wpdb->prepare( |
|
| 901 | - "UPDATE " . $table . " SET featured_image = '' where post_id =%d", |
|
| 902 | - array($post_id) |
|
| 903 | - ) |
|
| 904 | - ); |
|
| 899 | + $wpdb->query( |
|
| 900 | + $wpdb->prepare( |
|
| 901 | + "UPDATE " . $table . " SET featured_image = '' where post_id =%d", |
|
| 902 | + array($post_id) |
|
| 903 | + ) |
|
| 904 | + ); |
|
| 905 | 905 | |
| 906 | - $invalid_files = $post_images; |
|
| 907 | - $valid_file_ids = array(); |
|
| 908 | - $valid_files_condition = ''; |
|
| 909 | - $geodir_uploaddir = ''; |
|
| 906 | + $invalid_files = $post_images; |
|
| 907 | + $valid_file_ids = array(); |
|
| 908 | + $valid_files_condition = ''; |
|
| 909 | + $geodir_uploaddir = ''; |
|
| 910 | 910 | |
| 911 | - $remove_files = array(); |
|
| 911 | + $remove_files = array(); |
|
| 912 | 912 | |
| 913 | - if (!empty($post_image)) {
|
|
| 913 | + if (!empty($post_image)) {
|
|
| 914 | 914 | |
| 915 | - $uploads = wp_upload_dir(); |
|
| 916 | - $uploads_dir = $uploads['path']; |
|
| 915 | + $uploads = wp_upload_dir(); |
|
| 916 | + $uploads_dir = $uploads['path']; |
|
| 917 | 917 | |
| 918 | - $geodir_uploadpath = $uploads['path']; |
|
| 919 | - $geodir_uploadurl = $uploads['url']; |
|
| 920 | - $sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : ''; |
|
| 918 | + $geodir_uploadpath = $uploads['path']; |
|
| 919 | + $geodir_uploadurl = $uploads['url']; |
|
| 920 | + $sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : ''; |
|
| 921 | 921 | |
| 922 | - $invalid_files = array(); |
|
| 923 | - $postcurr_images = array(); |
|
| 922 | + $invalid_files = array(); |
|
| 923 | + $postcurr_images = array(); |
|
| 924 | 924 | |
| 925 | - for ($m = 0; $m < count($post_image); $m++) {
|
|
| 926 | - $menu_order = $m + 1; |
|
| 925 | + for ($m = 0; $m < count($post_image); $m++) {
|
|
| 926 | + $menu_order = $m + 1; |
|
| 927 | 927 | |
| 928 | - $file_path = ''; |
|
| 929 | - /* --------- start ------- */ |
|
| 928 | + $file_path = ''; |
|
| 929 | + /* --------- start ------- */ |
|
| 930 | 930 | |
| 931 | - $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
|
|
| 931 | + $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
|
|
| 932 | 932 | |
| 933 | - $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
|
| 933 | + $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
|
| 934 | 934 | |
| 935 | 935 | |
| 936 | - 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)))) {
|
|
| 936 | + 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)))) {
|
|
| 937 | 937 | |
| 938 | - /* --------- end ------- */ |
|
| 939 | - $curr_img_url = $post_image[$m]; |
|
| 938 | + /* --------- end ------- */ |
|
| 939 | + $curr_img_url = $post_image[$m]; |
|
| 940 | 940 | |
| 941 | - $image_name_arr = explode('/', $curr_img_url);
|
|
| 941 | + $image_name_arr = explode('/', $curr_img_url);
|
|
| 942 | 942 | |
| 943 | - $count_image_name_arr = count($image_name_arr) - 2; |
|
| 943 | + $count_image_name_arr = count($image_name_arr) - 2; |
|
| 944 | 944 | |
| 945 | - $count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0; |
|
| 945 | + $count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0; |
|
| 946 | 946 | |
| 947 | - $curr_img_dir = $image_name_arr[$count_image_name_arr]; |
|
| 947 | + $curr_img_dir = $image_name_arr[$count_image_name_arr]; |
|
| 948 | 948 | |
| 949 | - $filename = end($image_name_arr); |
|
| 950 | - if (strpos($filename, '?') !== false) {
|
|
| 951 | - list($filename) = explode('?', $filename);
|
|
| 952 | - } |
|
| 949 | + $filename = end($image_name_arr); |
|
| 950 | + if (strpos($filename, '?') !== false) {
|
|
| 951 | + list($filename) = explode('?', $filename);
|
|
| 952 | + } |
|
| 953 | 953 | |
| 954 | - $curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url); |
|
| 955 | - $curr_img_dir = str_replace($filename, "", $curr_img_dir); |
|
| 954 | + $curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url); |
|
| 955 | + $curr_img_dir = str_replace($filename, "", $curr_img_dir); |
|
| 956 | 956 | |
| 957 | - $img_name_arr = explode('.', $filename);
|
|
| 957 | + $img_name_arr = explode('.', $filename);
|
|
| 958 | 958 | |
| 959 | - $file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename; |
|
| 960 | - if (!empty($img_name_arr) && count($img_name_arr) > 2) {
|
|
| 961 | - $new_img_name_arr = $img_name_arr; |
|
| 962 | - if (isset($new_img_name_arr[count($img_name_arr) - 1])) {
|
|
| 963 | - unset($new_img_name_arr[count($img_name_arr) - 1]); |
|
| 964 | - $file_title = implode('.', $new_img_name_arr);
|
|
| 965 | - } |
|
| 966 | - } |
|
| 967 | - $file_title = sanitize_file_name($file_title); |
|
| 968 | - $file_name = sanitize_file_name($filename); |
|
| 959 | + $file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename; |
|
| 960 | + if (!empty($img_name_arr) && count($img_name_arr) > 2) {
|
|
| 961 | + $new_img_name_arr = $img_name_arr; |
|
| 962 | + if (isset($new_img_name_arr[count($img_name_arr) - 1])) {
|
|
| 963 | + unset($new_img_name_arr[count($img_name_arr) - 1]); |
|
| 964 | + $file_title = implode('.', $new_img_name_arr);
|
|
| 965 | + } |
|
| 966 | + } |
|
| 967 | + $file_title = sanitize_file_name($file_title); |
|
| 968 | + $file_name = sanitize_file_name($filename); |
|
| 969 | 969 | |
| 970 | - $arr_file_type = wp_check_filetype($filename); |
|
| 970 | + $arr_file_type = wp_check_filetype($filename); |
|
| 971 | 971 | |
| 972 | - $uploaded_file_type = $arr_file_type['type']; |
|
| 972 | + $uploaded_file_type = $arr_file_type['type']; |
|
| 973 | 973 | |
| 974 | - // Set an array containing a list of acceptable formats |
|
| 975 | - $allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png');
|
|
| 974 | + // Set an array containing a list of acceptable formats |
|
| 975 | + $allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png');
|
|
| 976 | 976 | |
| 977 | - // If the uploaded file is the right format |
|
| 978 | - if (in_array($uploaded_file_type, $allowed_file_types)) {
|
|
| 979 | - if (!function_exists('wp_handle_upload')) {
|
|
| 980 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 981 | - } |
|
| 977 | + // If the uploaded file is the right format |
|
| 978 | + if (in_array($uploaded_file_type, $allowed_file_types)) {
|
|
| 979 | + if (!function_exists('wp_handle_upload')) {
|
|
| 980 | + require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 981 | + } |
|
| 982 | 982 | |
| 983 | - if (!is_dir($geodir_uploadpath)) {
|
|
| 984 | - mkdir($geodir_uploadpath); |
|
| 985 | - } |
|
| 983 | + if (!is_dir($geodir_uploadpath)) {
|
|
| 984 | + mkdir($geodir_uploadpath); |
|
| 985 | + } |
|
| 986 | 986 | |
| 987 | - $external_img = false; |
|
| 988 | - if (strpos(str_replace(array('http://','https://'),'',$curr_img_url), str_replace(array('http://','https://'),'',$uploads['baseurl'])) !== false) {
|
|
| 989 | - } else {
|
|
| 990 | - $external_img = true; |
|
| 991 | - } |
|
| 987 | + $external_img = false; |
|
| 988 | + if (strpos(str_replace(array('http://','https://'),'',$curr_img_url), str_replace(array('http://','https://'),'',$uploads['baseurl'])) !== false) {
|
|
| 989 | + } else {
|
|
| 990 | + $external_img = true; |
|
| 991 | + } |
|
| 992 | 992 | |
| 993 | - if ($dummy || $external_img) {
|
|
| 994 | - $uploaded_file = array(); |
|
| 995 | - $uploaded = (array)fetch_remote_file($curr_img_url); |
|
| 993 | + if ($dummy || $external_img) {
|
|
| 994 | + $uploaded_file = array(); |
|
| 995 | + $uploaded = (array)fetch_remote_file($curr_img_url); |
|
| 996 | 996 | |
| 997 | - if (isset($uploaded['error']) && empty($uploaded['error'])) {
|
|
| 998 | - $new_name = basename($uploaded['file']); |
|
| 999 | - $uploaded_file = $uploaded; |
|
| 1000 | - }else{
|
|
| 1001 | - print_r($uploaded);exit; |
|
| 1002 | - } |
|
| 1003 | - $external_img = false; |
|
| 1004 | - } else {
|
|
| 1005 | - $new_name = $post_id . '_' . $file_name; |
|
| 997 | + if (isset($uploaded['error']) && empty($uploaded['error'])) {
|
|
| 998 | + $new_name = basename($uploaded['file']); |
|
| 999 | + $uploaded_file = $uploaded; |
|
| 1000 | + }else{
|
|
| 1001 | + print_r($uploaded);exit; |
|
| 1002 | + } |
|
| 1003 | + $external_img = false; |
|
| 1004 | + } else {
|
|
| 1005 | + $new_name = $post_id . '_' . $file_name; |
|
| 1006 | 1006 | |
| 1007 | - if ($curr_img_dir == $sub_dir) {
|
|
| 1008 | - $img_path = $geodir_uploadpath . '/' . $filename; |
|
| 1009 | - $img_url = $geodir_uploadurl . '/' . $filename; |
|
| 1010 | - } else {
|
|
| 1011 | - $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1012 | - $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1013 | - } |
|
| 1007 | + if ($curr_img_dir == $sub_dir) {
|
|
| 1008 | + $img_path = $geodir_uploadpath . '/' . $filename; |
|
| 1009 | + $img_url = $geodir_uploadurl . '/' . $filename; |
|
| 1010 | + } else {
|
|
| 1011 | + $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1012 | + $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1013 | + } |
|
| 1014 | 1014 | |
| 1015 | - $uploaded_file = ''; |
|
| 1015 | + $uploaded_file = ''; |
|
| 1016 | 1016 | |
| 1017 | - if (file_exists($img_path)) {
|
|
| 1018 | - $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name); |
|
| 1019 | - $file_path = ''; |
|
| 1020 | - } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
|
|
| 1021 | - $uploaded_file = true; |
|
| 1022 | - $file_path = $curr_img_dir . '/' . $filename; |
|
| 1023 | - } |
|
| 1017 | + if (file_exists($img_path)) {
|
|
| 1018 | + $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name); |
|
| 1019 | + $file_path = ''; |
|
| 1020 | + } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
|
|
| 1021 | + $uploaded_file = true; |
|
| 1022 | + $file_path = $curr_img_dir . '/' . $filename; |
|
| 1023 | + } |
|
| 1024 | 1024 | |
| 1025 | - if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) |
|
| 1026 | - unlink($img_path); |
|
| 1027 | - } |
|
| 1025 | + if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) |
|
| 1026 | + unlink($img_path); |
|
| 1027 | + } |
|
| 1028 | 1028 | |
| 1029 | - if (!empty($uploaded_file)) {
|
|
| 1030 | - if (!isset($file_path) || !$file_path) {
|
|
| 1031 | - $file_path = $sub_dir . '/' . $new_name; |
|
| 1032 | - } |
|
| 1029 | + if (!empty($uploaded_file)) {
|
|
| 1030 | + if (!isset($file_path) || !$file_path) {
|
|
| 1031 | + $file_path = $sub_dir . '/' . $new_name; |
|
| 1032 | + } |
|
| 1033 | 1033 | |
| 1034 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
|
|
| 1034 | + $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
|
|
| 1035 | 1035 | |
| 1036 | - if ($menu_order == 1) {
|
|
| 1036 | + if ($menu_order == 1) {
|
|
| 1037 | 1037 | |
| 1038 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
|
|
| 1038 | + $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
|
|
| 1039 | 1039 | |
| 1040 | - } |
|
| 1040 | + } |
|
| 1041 | 1041 | |
| 1042 | - // Set up options array to add this file as an attachment |
|
| 1043 | - $attachment = array(); |
|
| 1044 | - $attachment['post_id'] = $post_id; |
|
| 1045 | - $attachment['title'] = $file_title; |
|
| 1046 | - $attachment['content'] = ''; |
|
| 1047 | - $attachment['file'] = $file_path; |
|
| 1048 | - $attachment['mime_type'] = $uploaded_file_type; |
|
| 1049 | - $attachment['menu_order'] = $menu_order; |
|
| 1050 | - $attachment['is_featured'] = 0; |
|
| 1042 | + // Set up options array to add this file as an attachment |
|
| 1043 | + $attachment = array(); |
|
| 1044 | + $attachment['post_id'] = $post_id; |
|
| 1045 | + $attachment['title'] = $file_title; |
|
| 1046 | + $attachment['content'] = ''; |
|
| 1047 | + $attachment['file'] = $file_path; |
|
| 1048 | + $attachment['mime_type'] = $uploaded_file_type; |
|
| 1049 | + $attachment['menu_order'] = $menu_order; |
|
| 1050 | + $attachment['is_featured'] = 0; |
|
| 1051 | 1051 | |
| 1052 | - $attachment_set = ''; |
|
| 1052 | + $attachment_set = ''; |
|
| 1053 | 1053 | |
| 1054 | - foreach ($attachment as $key => $val) {
|
|
| 1055 | - if ($val != '') |
|
| 1056 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
| 1057 | - } |
|
| 1054 | + foreach ($attachment as $key => $val) {
|
|
| 1055 | + if ($val != '') |
|
| 1056 | + $attachment_set .= $key . " = '" . $val . "', "; |
|
| 1057 | + } |
|
| 1058 | 1058 | |
| 1059 | - $attachment_set = trim($attachment_set, ", "); |
|
| 1059 | + $attachment_set = trim($attachment_set, ", "); |
|
| 1060 | + |
|
| 1061 | + $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
|
|
| 1060 | 1062 | |
| 1061 | - $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
|
|
| 1063 | + $valid_file_ids[] = $wpdb->insert_id; |
|
| 1064 | + } |
|
| 1062 | 1065 | |
| 1063 | - $valid_file_ids[] = $wpdb->insert_id; |
|
| 1064 | - } |
|
| 1066 | + } |
|
| 1065 | 1067 | |
| 1066 | - } |
|
| 1067 | 1068 | |
| 1069 | + } else {
|
|
| 1070 | + $valid_file_ids[] = $find_image; |
|
| 1068 | 1071 | |
| 1069 | - } else {
|
|
| 1070 | - $valid_file_ids[] = $find_image; |
|
| 1071 | - |
|
| 1072 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
|
|
| 1072 | + $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
|
|
| 1073 | 1073 | |
| 1074 | - $wpdb->query( |
|
| 1075 | - $wpdb->prepare( |
|
| 1076 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d", |
|
| 1077 | - array($menu_order, $split_img_path[1], $post_id) |
|
| 1078 | - ) |
|
| 1079 | - ); |
|
| 1074 | + $wpdb->query( |
|
| 1075 | + $wpdb->prepare( |
|
| 1076 | + "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d", |
|
| 1077 | + array($menu_order, $split_img_path[1], $post_id) |
|
| 1078 | + ) |
|
| 1079 | + ); |
|
| 1080 | 1080 | |
| 1081 | - if ($menu_order == 1) |
|
| 1082 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
|
|
| 1081 | + if ($menu_order == 1) |
|
| 1082 | + $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
|
|
| 1083 | 1083 | |
| 1084 | - } |
|
| 1084 | + } |
|
| 1085 | 1085 | |
| 1086 | 1086 | |
| 1087 | - } |
|
| 1087 | + } |
|
| 1088 | 1088 | |
| 1089 | - if (!empty($valid_file_ids)) {
|
|
| 1089 | + if (!empty($valid_file_ids)) {
|
|
| 1090 | 1090 | |
| 1091 | - $remove_files = $valid_file_ids; |
|
| 1091 | + $remove_files = $valid_file_ids; |
|
| 1092 | 1092 | |
| 1093 | - $remove_files_length = count($remove_files); |
|
| 1094 | - $remove_files_format = array_fill(0, $remove_files_length, '%d'); |
|
| 1095 | - $format = implode(',', $remove_files_format);
|
|
| 1096 | - $valid_files_condition = " ID NOT IN ($format) AND "; |
|
| 1093 | + $remove_files_length = count($remove_files); |
|
| 1094 | + $remove_files_format = array_fill(0, $remove_files_length, '%d'); |
|
| 1095 | + $format = implode(',', $remove_files_format);
|
|
| 1096 | + $valid_files_condition = " ID NOT IN ($format) AND "; |
|
| 1097 | 1097 | |
| 1098 | - } |
|
| 1098 | + } |
|
| 1099 | 1099 | |
| 1100 | - //Get and remove all old images of post from database to set by new order |
|
| 1100 | + //Get and remove all old images of post from database to set by new order |
|
| 1101 | 1101 | |
| 1102 | - if (!empty($post_images)) {
|
|
| 1102 | + if (!empty($post_images)) {
|
|
| 1103 | 1103 | |
| 1104 | - foreach ($post_images as $img) {
|
|
| 1104 | + foreach ($post_images as $img) {
|
|
| 1105 | 1105 | |
| 1106 | - if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
|
|
| 1106 | + if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
|
|
| 1107 | 1107 | |
| 1108 | - $invalid_files[] = (object)array('src' => $img->src);
|
|
| 1108 | + $invalid_files[] = (object)array('src' => $img->src);
|
|
| 1109 | 1109 | |
| 1110 | - } |
|
| 1110 | + } |
|
| 1111 | 1111 | |
| 1112 | - } |
|
| 1112 | + } |
|
| 1113 | 1113 | |
| 1114 | - } |
|
| 1114 | + } |
|
| 1115 | 1115 | |
| 1116 | - $invalid_files = (object)$invalid_files; |
|
| 1117 | - } |
|
| 1116 | + $invalid_files = (object)$invalid_files; |
|
| 1117 | + } |
|
| 1118 | 1118 | |
| 1119 | - $remove_files[] = $post_id; |
|
| 1119 | + $remove_files[] = $post_id; |
|
| 1120 | 1120 | |
| 1121 | - $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
|
|
| 1121 | + $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
|
|
| 1122 | 1122 | |
| 1123 | - if (!empty($invalid_files)) |
|
| 1124 | - geodir_remove_attachments($invalid_files); |
|
| 1125 | - } |
|
| 1123 | + if (!empty($invalid_files)) |
|
| 1124 | + geodir_remove_attachments($invalid_files); |
|
| 1125 | + } |
|
| 1126 | 1126 | |
| 1127 | 1127 | } |
| 1128 | 1128 | |
@@ -1136,12 +1136,12 @@ discard block |
||
| 1136 | 1136 | function geodir_remove_temp_images() |
| 1137 | 1137 | {
|
| 1138 | 1138 | |
| 1139 | - global $current_user; |
|
| 1139 | + global $current_user; |
|
| 1140 | 1140 | |
| 1141 | - $uploads = wp_upload_dir(); |
|
| 1142 | - $uploads_dir = $uploads['path']; |
|
| 1141 | + $uploads = wp_upload_dir(); |
|
| 1142 | + $uploads_dir = $uploads['path']; |
|
| 1143 | 1143 | |
| 1144 | - /* if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){
|
|
| 1144 | + /* if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){
|
|
| 1145 | 1145 | |
| 1146 | 1146 | $dirPath = $uploads_dir.'/temp_'.$current_user->data->ID; |
| 1147 | 1147 | if (substr($dirPath, strlen($dirPath) - 1, 1) != '/') {
|
@@ -1158,8 +1158,8 @@ discard block |
||
| 1158 | 1158 | rmdir($dirPath); |
| 1159 | 1159 | } */ |
| 1160 | 1160 | |
| 1161 | - $dirname = $uploads_dir . '/temp_' . $current_user->ID; |
|
| 1162 | - geodir_delete_directory($dirname); |
|
| 1161 | + $dirname = $uploads_dir . '/temp_' . $current_user->ID; |
|
| 1162 | + geodir_delete_directory($dirname); |
|
| 1163 | 1163 | } |
| 1164 | 1164 | |
| 1165 | 1165 | |
@@ -1173,109 +1173,109 @@ discard block |
||
| 1173 | 1173 | */ |
| 1174 | 1174 | function geodir_delete_directory($dirname) |
| 1175 | 1175 | {
|
| 1176 | - $dir_handle = ''; |
|
| 1177 | - if (is_dir($dirname)) |
|
| 1178 | - $dir_handle = opendir($dirname); |
|
| 1179 | - if (!$dir_handle) |
|
| 1180 | - return false; |
|
| 1181 | - while ($file = readdir($dir_handle)) {
|
|
| 1182 | - if ($file != "." && $file != "..") {
|
|
| 1183 | - if (!is_dir($dirname . "/" . $file)) |
|
| 1184 | - unlink($dirname . "/" . $file); |
|
| 1185 | - else |
|
| 1186 | - geodir_delete_directory($dirname . '/' . $file); |
|
| 1187 | - } |
|
| 1188 | - } |
|
| 1189 | - closedir($dir_handle); |
|
| 1190 | - rmdir($dirname); |
|
| 1191 | - return true; |
|
| 1176 | + $dir_handle = ''; |
|
| 1177 | + if (is_dir($dirname)) |
|
| 1178 | + $dir_handle = opendir($dirname); |
|
| 1179 | + if (!$dir_handle) |
|
| 1180 | + return false; |
|
| 1181 | + while ($file = readdir($dir_handle)) {
|
|
| 1182 | + if ($file != "." && $file != "..") {
|
|
| 1183 | + if (!is_dir($dirname . "/" . $file)) |
|
| 1184 | + unlink($dirname . "/" . $file); |
|
| 1185 | + else |
|
| 1186 | + geodir_delete_directory($dirname . '/' . $file); |
|
| 1187 | + } |
|
| 1188 | + } |
|
| 1189 | + closedir($dir_handle); |
|
| 1190 | + rmdir($dirname); |
|
| 1191 | + return true; |
|
| 1192 | 1192 | |
| 1193 | 1193 | } |
| 1194 | 1194 | |
| 1195 | 1195 | |
| 1196 | 1196 | if (!function_exists('geodir_remove_attachments')) {
|
| 1197 | - /** |
|
| 1198 | - * Remove post attachments. |
|
| 1199 | - * |
|
| 1200 | - * @since 1.0.0 |
|
| 1201 | - * @package GeoDirectory |
|
| 1202 | - * @param array $postcurr_images Array of image objects. |
|
| 1203 | - */ |
|
| 1204 | - function geodir_remove_attachments($postcurr_images = array()) |
|
| 1205 | - {
|
|
| 1206 | - // Unlink all past images of post |
|
| 1207 | - if (!empty($postcurr_images)) {
|
|
| 1208 | - |
|
| 1209 | - $uploads = wp_upload_dir(); |
|
| 1210 | - $uploads_dir = $uploads['path']; |
|
| 1211 | - |
|
| 1212 | - foreach ($postcurr_images as $postimg) {
|
|
| 1213 | - $image_name_arr = explode('/', $postimg->src);
|
|
| 1214 | - $filename = end($image_name_arr); |
|
| 1215 | - if (file_exists($uploads_dir . '/' . $filename)) |
|
| 1216 | - unlink($uploads_dir . '/' . $filename); |
|
| 1217 | - } |
|
| 1218 | - |
|
| 1219 | - } // endif |
|
| 1220 | - // Unlink all past images of post end |
|
| 1221 | - } |
|
| 1197 | + /** |
|
| 1198 | + * Remove post attachments. |
|
| 1199 | + * |
|
| 1200 | + * @since 1.0.0 |
|
| 1201 | + * @package GeoDirectory |
|
| 1202 | + * @param array $postcurr_images Array of image objects. |
|
| 1203 | + */ |
|
| 1204 | + function geodir_remove_attachments($postcurr_images = array()) |
|
| 1205 | + {
|
|
| 1206 | + // Unlink all past images of post |
|
| 1207 | + if (!empty($postcurr_images)) {
|
|
| 1208 | + |
|
| 1209 | + $uploads = wp_upload_dir(); |
|
| 1210 | + $uploads_dir = $uploads['path']; |
|
| 1211 | + |
|
| 1212 | + foreach ($postcurr_images as $postimg) {
|
|
| 1213 | + $image_name_arr = explode('/', $postimg->src);
|
|
| 1214 | + $filename = end($image_name_arr); |
|
| 1215 | + if (file_exists($uploads_dir . '/' . $filename)) |
|
| 1216 | + unlink($uploads_dir . '/' . $filename); |
|
| 1217 | + } |
|
| 1218 | + |
|
| 1219 | + } // endif |
|
| 1220 | + // Unlink all past images of post end |
|
| 1221 | + } |
|
| 1222 | 1222 | } |
| 1223 | 1223 | |
| 1224 | 1224 | if (!function_exists('geodir_get_featured_image')) {
|
| 1225 | - /** |
|
| 1226 | - * Gets the post featured image. |
|
| 1227 | - * |
|
| 1228 | - * @since 1.0.0 |
|
| 1229 | - * @package GeoDirectory |
|
| 1230 | - * @global object $wpdb WordPress Database object. |
|
| 1231 | - * @global object $post The current post object. |
|
| 1232 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 1233 | - * @param int|string $post_id The post ID. |
|
| 1234 | - * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1235 | - * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1236 | - * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false. |
|
| 1237 | - * @return bool|object Image details as an object. |
|
| 1238 | - */ |
|
| 1239 | - function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false) |
|
| 1240 | - {
|
|
| 1241 | - global $wpdb, $plugin_prefix, $post; |
|
| 1242 | - |
|
| 1243 | - if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) {
|
|
| 1244 | - $post_type = $post->post_type; |
|
| 1245 | - } else {
|
|
| 1246 | - $post_type = get_post_type($post_id); |
|
| 1247 | - } |
|
| 1248 | - |
|
| 1249 | - if (!in_array($post_type, geodir_get_posttypes())) {
|
|
| 1250 | - return false;// if not a GD CPT return; |
|
| 1251 | - } |
|
| 1252 | - |
|
| 1253 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1254 | - |
|
| 1255 | - if (!$file) {
|
|
| 1256 | - if (isset($post->featured_image)) {
|
|
| 1257 | - $file = $post->featured_image; |
|
| 1258 | - } else {
|
|
| 1259 | - $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
|
|
| 1260 | - } |
|
| 1261 | - } |
|
| 1262 | - |
|
| 1263 | - if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) {
|
|
| 1264 | - $img_arr = array(); |
|
| 1265 | - |
|
| 1266 | - $file_info = pathinfo($file); |
|
| 1267 | - $sub_dir = ''; |
|
| 1268 | - if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1269 | - $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1270 | - |
|
| 1271 | - $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 1272 | - $uploads_baseurl = $uploads['baseurl']; |
|
| 1273 | - $uploads_path = $uploads['path']; |
|
| 1274 | - |
|
| 1275 | - $file_name = $file_info['basename']; |
|
| 1276 | - |
|
| 1277 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1278 | - /* |
|
| 1225 | + /** |
|
| 1226 | + * Gets the post featured image. |
|
| 1227 | + * |
|
| 1228 | + * @since 1.0.0 |
|
| 1229 | + * @package GeoDirectory |
|
| 1230 | + * @global object $wpdb WordPress Database object. |
|
| 1231 | + * @global object $post The current post object. |
|
| 1232 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 1233 | + * @param int|string $post_id The post ID. |
|
| 1234 | + * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1235 | + * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1236 | + * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false. |
|
| 1237 | + * @return bool|object Image details as an object. |
|
| 1238 | + */ |
|
| 1239 | + function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false) |
|
| 1240 | + {
|
|
| 1241 | + global $wpdb, $plugin_prefix, $post; |
|
| 1242 | + |
|
| 1243 | + if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) {
|
|
| 1244 | + $post_type = $post->post_type; |
|
| 1245 | + } else {
|
|
| 1246 | + $post_type = get_post_type($post_id); |
|
| 1247 | + } |
|
| 1248 | + |
|
| 1249 | + if (!in_array($post_type, geodir_get_posttypes())) {
|
|
| 1250 | + return false;// if not a GD CPT return; |
|
| 1251 | + } |
|
| 1252 | + |
|
| 1253 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1254 | + |
|
| 1255 | + if (!$file) {
|
|
| 1256 | + if (isset($post->featured_image)) {
|
|
| 1257 | + $file = $post->featured_image; |
|
| 1258 | + } else {
|
|
| 1259 | + $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
|
|
| 1260 | + } |
|
| 1261 | + } |
|
| 1262 | + |
|
| 1263 | + if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) {
|
|
| 1264 | + $img_arr = array(); |
|
| 1265 | + |
|
| 1266 | + $file_info = pathinfo($file); |
|
| 1267 | + $sub_dir = ''; |
|
| 1268 | + if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1269 | + $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1270 | + |
|
| 1271 | + $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 1272 | + $uploads_baseurl = $uploads['baseurl']; |
|
| 1273 | + $uploads_path = $uploads['path']; |
|
| 1274 | + |
|
| 1275 | + $file_name = $file_info['basename']; |
|
| 1276 | + |
|
| 1277 | + $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1278 | + /* |
|
| 1279 | 1279 | * Allows the filter of image src for such things as CDN change. |
| 1280 | 1280 | * |
| 1281 | 1281 | * @since 1.5.7 |
@@ -1284,158 +1284,158 @@ discard block |
||
| 1284 | 1284 | * @param string $uploads_url The server upload directory url. |
| 1285 | 1285 | * @param string $uploads_baseurl The uploads dir base url. |
| 1286 | 1286 | */ |
| 1287 | - $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1288 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1289 | - $width = 0; |
|
| 1290 | - $height = 0; |
|
| 1291 | - if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1292 | - $imagesize = getimagesize($img_arr['path']); |
|
| 1293 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1294 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1295 | - } |
|
| 1296 | - $img_arr['width'] = $width; |
|
| 1297 | - $img_arr['height'] = $height; |
|
| 1298 | - $img_arr['title'] = ''; |
|
| 1299 | - } elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) {
|
|
| 1300 | - foreach ($post_images as $image) {
|
|
| 1301 | - return $image; |
|
| 1302 | - } |
|
| 1303 | - } else if ($no_image) {
|
|
| 1304 | - $img_arr = array(); |
|
| 1305 | - |
|
| 1306 | - $default_img = ''; |
|
| 1307 | - if (isset($post->default_category) && $post->default_category) {
|
|
| 1308 | - $default_cat = $post->default_category; |
|
| 1309 | - } else {
|
|
| 1310 | - $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1311 | - } |
|
| 1312 | - |
|
| 1313 | - if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1314 | - $default_img = $default_catimg['src']; |
|
| 1315 | - elseif ($no_image) {
|
|
| 1316 | - $default_img = get_option('geodir_listing_no_img');
|
|
| 1317 | - } |
|
| 1318 | - |
|
| 1319 | - if (!empty($default_img)) {
|
|
| 1320 | - $uploads = wp_upload_dir(); // Array of key => value pairs |
|
| 1321 | - $uploads_baseurl = $uploads['baseurl']; |
|
| 1322 | - $uploads_path = $uploads['path']; |
|
| 1323 | - |
|
| 1324 | - $img_arr = array(); |
|
| 1325 | - |
|
| 1326 | - $file_info = pathinfo($default_img); |
|
| 1327 | - |
|
| 1328 | - $file_name = $file_info['basename']; |
|
| 1329 | - |
|
| 1330 | - $img_arr['src'] = $default_img; |
|
| 1331 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1332 | - |
|
| 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 | - |
|
| 1343 | - $img_arr['title'] = ''; // add the title to the array |
|
| 1344 | - } |
|
| 1345 | - } |
|
| 1346 | - |
|
| 1347 | - if (!empty($img_arr)) |
|
| 1348 | - return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1349 | - else |
|
| 1350 | - return false; |
|
| 1351 | - } |
|
| 1287 | + $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1288 | + $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1289 | + $width = 0; |
|
| 1290 | + $height = 0; |
|
| 1291 | + if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1292 | + $imagesize = getimagesize($img_arr['path']); |
|
| 1293 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1294 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1295 | + } |
|
| 1296 | + $img_arr['width'] = $width; |
|
| 1297 | + $img_arr['height'] = $height; |
|
| 1298 | + $img_arr['title'] = ''; |
|
| 1299 | + } elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) {
|
|
| 1300 | + foreach ($post_images as $image) {
|
|
| 1301 | + return $image; |
|
| 1302 | + } |
|
| 1303 | + } else if ($no_image) {
|
|
| 1304 | + $img_arr = array(); |
|
| 1305 | + |
|
| 1306 | + $default_img = ''; |
|
| 1307 | + if (isset($post->default_category) && $post->default_category) {
|
|
| 1308 | + $default_cat = $post->default_category; |
|
| 1309 | + } else {
|
|
| 1310 | + $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1311 | + } |
|
| 1312 | + |
|
| 1313 | + if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1314 | + $default_img = $default_catimg['src']; |
|
| 1315 | + elseif ($no_image) {
|
|
| 1316 | + $default_img = get_option('geodir_listing_no_img');
|
|
| 1317 | + } |
|
| 1318 | + |
|
| 1319 | + if (!empty($default_img)) {
|
|
| 1320 | + $uploads = wp_upload_dir(); // Array of key => value pairs |
|
| 1321 | + $uploads_baseurl = $uploads['baseurl']; |
|
| 1322 | + $uploads_path = $uploads['path']; |
|
| 1323 | + |
|
| 1324 | + $img_arr = array(); |
|
| 1325 | + |
|
| 1326 | + $file_info = pathinfo($default_img); |
|
| 1327 | + |
|
| 1328 | + $file_name = $file_info['basename']; |
|
| 1329 | + |
|
| 1330 | + $img_arr['src'] = $default_img; |
|
| 1331 | + $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1332 | + |
|
| 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 | + |
|
| 1343 | + $img_arr['title'] = ''; // add the title to the array |
|
| 1344 | + } |
|
| 1345 | + } |
|
| 1346 | + |
|
| 1347 | + if (!empty($img_arr)) |
|
| 1348 | + return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1349 | + else |
|
| 1350 | + return false; |
|
| 1351 | + } |
|
| 1352 | 1352 | } |
| 1353 | 1353 | |
| 1354 | 1354 | if (!function_exists('geodir_show_featured_image')) {
|
| 1355 | - /** |
|
| 1356 | - * Gets the post featured image. |
|
| 1357 | - * |
|
| 1358 | - * @since 1.0.0 |
|
| 1359 | - * @package GeoDirectory |
|
| 1360 | - * @param int|string $post_id The post ID. |
|
| 1361 | - * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1362 | - * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1363 | - * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
| 1364 | - * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false. |
|
| 1365 | - * @return bool|string Returns image html. |
|
| 1366 | - */ |
|
| 1367 | - function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false) |
|
| 1368 | - {
|
|
| 1369 | - $image = geodir_get_featured_image($post_id, $size, $no_image, $fimage); |
|
| 1370 | - |
|
| 1371 | - $html = geodir_show_image($image, $size, $no_image, false); |
|
| 1372 | - |
|
| 1373 | - if (!empty($html) && $echo) {
|
|
| 1374 | - echo $html; |
|
| 1375 | - } elseif (!empty($html)) {
|
|
| 1376 | - return $html; |
|
| 1377 | - } else |
|
| 1378 | - return false; |
|
| 1379 | - } |
|
| 1355 | + /** |
|
| 1356 | + * Gets the post featured image. |
|
| 1357 | + * |
|
| 1358 | + * @since 1.0.0 |
|
| 1359 | + * @package GeoDirectory |
|
| 1360 | + * @param int|string $post_id The post ID. |
|
| 1361 | + * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1362 | + * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1363 | + * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
| 1364 | + * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false. |
|
| 1365 | + * @return bool|string Returns image html. |
|
| 1366 | + */ |
|
| 1367 | + function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false) |
|
| 1368 | + {
|
|
| 1369 | + $image = geodir_get_featured_image($post_id, $size, $no_image, $fimage); |
|
| 1370 | + |
|
| 1371 | + $html = geodir_show_image($image, $size, $no_image, false); |
|
| 1372 | + |
|
| 1373 | + if (!empty($html) && $echo) {
|
|
| 1374 | + echo $html; |
|
| 1375 | + } elseif (!empty($html)) {
|
|
| 1376 | + return $html; |
|
| 1377 | + } else |
|
| 1378 | + return false; |
|
| 1379 | + } |
|
| 1380 | 1380 | } |
| 1381 | 1381 | |
| 1382 | 1382 | if (!function_exists('geodir_get_images')) {
|
| 1383 | - /** |
|
| 1384 | - * Gets the post images. |
|
| 1385 | - * |
|
| 1386 | - * @since 1.0.0 |
|
| 1387 | - * @package GeoDirectory |
|
| 1388 | - * @global object $wpdb WordPress Database object. |
|
| 1389 | - * @param int $post_id The post ID. |
|
| 1390 | - * @param string $img_size Optional. Thumbnail size. |
|
| 1391 | - * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1392 | - * @param bool $add_featured Optional. Do you want to include featured images too? Default: true. |
|
| 1393 | - * @param int|string $limit Optional. Number of images. |
|
| 1394 | - * @return array|bool Returns images as an array. Each item is an object. |
|
| 1395 | - */ |
|
| 1396 | - function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '') |
|
| 1397 | - {
|
|
| 1398 | - global $wpdb; |
|
| 1399 | - if ($limit) {
|
|
| 1400 | - $limit_q = " LIMIT $limit "; |
|
| 1401 | - } else {
|
|
| 1402 | - $limit_q = ''; |
|
| 1403 | - } |
|
| 1404 | - $not_featured = ''; |
|
| 1405 | - $sub_dir = ''; |
|
| 1406 | - if (!$add_featured) |
|
| 1407 | - $not_featured = " AND is_featured = 0 "; |
|
| 1408 | - |
|
| 1409 | - $arrImages = $wpdb->get_results( |
|
| 1410 | - $wpdb->prepare( |
|
| 1411 | - "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 ", |
|
| 1412 | - array('%image%', $post_id)
|
|
| 1413 | - ) |
|
| 1414 | - ); |
|
| 1415 | - |
|
| 1416 | - $counter = 0; |
|
| 1417 | - $return_arr = array(); |
|
| 1418 | - |
|
| 1419 | - if (!empty($arrImages)) {
|
|
| 1420 | - foreach ($arrImages as $attechment) {
|
|
| 1421 | - |
|
| 1422 | - $img_arr = array(); |
|
| 1423 | - $img_arr['id'] = $attechment->ID; |
|
| 1424 | - $img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0; |
|
| 1425 | - |
|
| 1426 | - $file_info = pathinfo($attechment->file); |
|
| 1427 | - |
|
| 1428 | - if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1429 | - $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1430 | - |
|
| 1431 | - $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 1432 | - $uploads_baseurl = $uploads['baseurl']; |
|
| 1433 | - $uploads_path = $uploads['path']; |
|
| 1434 | - |
|
| 1435 | - $file_name = $file_info['basename']; |
|
| 1436 | - |
|
| 1437 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1438 | - /* |
|
| 1383 | + /** |
|
| 1384 | + * Gets the post images. |
|
| 1385 | + * |
|
| 1386 | + * @since 1.0.0 |
|
| 1387 | + * @package GeoDirectory |
|
| 1388 | + * @global object $wpdb WordPress Database object. |
|
| 1389 | + * @param int $post_id The post ID. |
|
| 1390 | + * @param string $img_size Optional. Thumbnail size. |
|
| 1391 | + * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1392 | + * @param bool $add_featured Optional. Do you want to include featured images too? Default: true. |
|
| 1393 | + * @param int|string $limit Optional. Number of images. |
|
| 1394 | + * @return array|bool Returns images as an array. Each item is an object. |
|
| 1395 | + */ |
|
| 1396 | + function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '') |
|
| 1397 | + {
|
|
| 1398 | + global $wpdb; |
|
| 1399 | + if ($limit) {
|
|
| 1400 | + $limit_q = " LIMIT $limit "; |
|
| 1401 | + } else {
|
|
| 1402 | + $limit_q = ''; |
|
| 1403 | + } |
|
| 1404 | + $not_featured = ''; |
|
| 1405 | + $sub_dir = ''; |
|
| 1406 | + if (!$add_featured) |
|
| 1407 | + $not_featured = " AND is_featured = 0 "; |
|
| 1408 | + |
|
| 1409 | + $arrImages = $wpdb->get_results( |
|
| 1410 | + $wpdb->prepare( |
|
| 1411 | + "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 ", |
|
| 1412 | + array('%image%', $post_id)
|
|
| 1413 | + ) |
|
| 1414 | + ); |
|
| 1415 | + |
|
| 1416 | + $counter = 0; |
|
| 1417 | + $return_arr = array(); |
|
| 1418 | + |
|
| 1419 | + if (!empty($arrImages)) {
|
|
| 1420 | + foreach ($arrImages as $attechment) {
|
|
| 1421 | + |
|
| 1422 | + $img_arr = array(); |
|
| 1423 | + $img_arr['id'] = $attechment->ID; |
|
| 1424 | + $img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0; |
|
| 1425 | + |
|
| 1426 | + $file_info = pathinfo($attechment->file); |
|
| 1427 | + |
|
| 1428 | + if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1429 | + $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1430 | + |
|
| 1431 | + $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 1432 | + $uploads_baseurl = $uploads['baseurl']; |
|
| 1433 | + $uploads_path = $uploads['path']; |
|
| 1434 | + |
|
| 1435 | + $file_name = $file_info['basename']; |
|
| 1436 | + |
|
| 1437 | + $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1438 | + /* |
|
| 1439 | 1439 | * Allows the filter of image src for such things as CDN change. |
| 1440 | 1440 | * |
| 1441 | 1441 | * @since 1.5.7 |
@@ -1444,515 +1444,515 @@ discard block |
||
| 1444 | 1444 | * @param string $uploads_url The server upload directory url. |
| 1445 | 1445 | * @param string $uploads_baseurl The uploads dir base url. |
| 1446 | 1446 | */ |
| 1447 | - $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1448 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1449 | - $width = 0; |
|
| 1450 | - $height = 0; |
|
| 1451 | - if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1452 | - $imagesize = getimagesize($img_arr['path']); |
|
| 1453 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1454 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1455 | - } |
|
| 1456 | - $img_arr['width'] = $width; |
|
| 1457 | - $img_arr['height'] = $height; |
|
| 1458 | - |
|
| 1459 | - $img_arr['file'] = $file_name; // add the title to the array |
|
| 1460 | - $img_arr['title'] = $attechment->title; // add the title to the array |
|
| 1461 | - $img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array |
|
| 1462 | - $img_arr['content'] = $attechment->content; // add the description to the array |
|
| 1463 | - $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1. |
|
| 1464 | - |
|
| 1465 | - $return_arr[] = (object)$img_arr; |
|
| 1466 | - |
|
| 1467 | - $counter++; |
|
| 1468 | - } |
|
| 1469 | - return (object)$return_arr; |
|
| 1470 | - } else if ($no_images) {
|
|
| 1471 | - $default_img = ''; |
|
| 1472 | - $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1473 | - $post_type = get_post_type($post_id); |
|
| 1474 | - if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1475 | - $default_img = $default_catimg['src']; |
|
| 1476 | - elseif ($no_images) {
|
|
| 1477 | - $default_img = get_option('geodir_listing_no_img');
|
|
| 1478 | - } |
|
| 1479 | - |
|
| 1480 | - if (!empty($default_img)) {
|
|
| 1481 | - $uploads = wp_upload_dir(); // Array of key => value pairs |
|
| 1447 | + $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1448 | + $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1449 | + $width = 0; |
|
| 1450 | + $height = 0; |
|
| 1451 | + if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1452 | + $imagesize = getimagesize($img_arr['path']); |
|
| 1453 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1454 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1455 | + } |
|
| 1456 | + $img_arr['width'] = $width; |
|
| 1457 | + $img_arr['height'] = $height; |
|
| 1458 | + |
|
| 1459 | + $img_arr['file'] = $file_name; // add the title to the array |
|
| 1460 | + $img_arr['title'] = $attechment->title; // add the title to the array |
|
| 1461 | + $img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array |
|
| 1462 | + $img_arr['content'] = $attechment->content; // add the description to the array |
|
| 1463 | + $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1. |
|
| 1464 | + |
|
| 1465 | + $return_arr[] = (object)$img_arr; |
|
| 1466 | + |
|
| 1467 | + $counter++; |
|
| 1468 | + } |
|
| 1469 | + return (object)$return_arr; |
|
| 1470 | + } else if ($no_images) {
|
|
| 1471 | + $default_img = ''; |
|
| 1472 | + $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1473 | + $post_type = get_post_type($post_id); |
|
| 1474 | + if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1475 | + $default_img = $default_catimg['src']; |
|
| 1476 | + elseif ($no_images) {
|
|
| 1477 | + $default_img = get_option('geodir_listing_no_img');
|
|
| 1478 | + } |
|
| 1479 | + |
|
| 1480 | + if (!empty($default_img)) {
|
|
| 1481 | + $uploads = wp_upload_dir(); // Array of key => value pairs |
|
| 1482 | 1482 | |
| 1483 | - $image_path = $default_img; |
|
| 1484 | - if (!path_is_absolute($image_path)) {
|
|
| 1485 | - $image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path); |
|
| 1486 | - } |
|
| 1487 | - |
|
| 1488 | - $file_info = pathinfo($default_img); |
|
| 1489 | - $file_name = $file_info['basename']; |
|
| 1490 | - |
|
| 1491 | - $width = ''; |
|
| 1492 | - $height = ''; |
|
| 1493 | - if (is_file($image_path) && file_exists($image_path)) {
|
|
| 1494 | - $imagesize = getimagesize($image_path); |
|
| 1495 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1496 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1497 | - } |
|
| 1483 | + $image_path = $default_img; |
|
| 1484 | + if (!path_is_absolute($image_path)) {
|
|
| 1485 | + $image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path); |
|
| 1486 | + } |
|
| 1487 | + |
|
| 1488 | + $file_info = pathinfo($default_img); |
|
| 1489 | + $file_name = $file_info['basename']; |
|
| 1490 | + |
|
| 1491 | + $width = ''; |
|
| 1492 | + $height = ''; |
|
| 1493 | + if (is_file($image_path) && file_exists($image_path)) {
|
|
| 1494 | + $imagesize = getimagesize($image_path); |
|
| 1495 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1496 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1497 | + } |
|
| 1498 | 1498 | |
| 1499 | - $img_arr = array(); |
|
| 1500 | - $img_arr['src'] = $default_img; |
|
| 1501 | - $img_arr['path'] = $image_path; |
|
| 1502 | - $img_arr['width'] = $width; |
|
| 1503 | - $img_arr['height'] = $height; |
|
| 1504 | - $img_arr['file'] = $file_name; // add the title to the array |
|
| 1505 | - $img_arr['title'] = $file_info['filename']; // add the title to the array |
|
| 1506 | - $img_arr['content'] = $file_info['filename']; // add the description to the array |
|
| 1507 | - |
|
| 1508 | - $return_arr[] = (object)$img_arr; |
|
| 1509 | - |
|
| 1510 | - return $return_arr; |
|
| 1511 | - } else |
|
| 1512 | - return false; |
|
| 1513 | - } |
|
| 1514 | - } |
|
| 1499 | + $img_arr = array(); |
|
| 1500 | + $img_arr['src'] = $default_img; |
|
| 1501 | + $img_arr['path'] = $image_path; |
|
| 1502 | + $img_arr['width'] = $width; |
|
| 1503 | + $img_arr['height'] = $height; |
|
| 1504 | + $img_arr['file'] = $file_name; // add the title to the array |
|
| 1505 | + $img_arr['title'] = $file_info['filename']; // add the title to the array |
|
| 1506 | + $img_arr['content'] = $file_info['filename']; // add the description to the array |
|
| 1507 | + |
|
| 1508 | + $return_arr[] = (object)$img_arr; |
|
| 1509 | + |
|
| 1510 | + return $return_arr; |
|
| 1511 | + } else |
|
| 1512 | + return false; |
|
| 1513 | + } |
|
| 1514 | + } |
|
| 1515 | 1515 | } |
| 1516 | 1516 | |
| 1517 | 1517 | if (!function_exists('geodir_show_image')) {
|
| 1518 | - /** |
|
| 1519 | - * Show image using image details. |
|
| 1520 | - * |
|
| 1521 | - * @since 1.0.0 |
|
| 1522 | - * @package GeoDirectory |
|
| 1523 | - * @param array|object $request Image info either as an array or object. |
|
| 1524 | - * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1525 | - * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1526 | - * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
| 1527 | - * @return bool|string Returns image html. |
|
| 1528 | - */ |
|
| 1529 | - function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true) |
|
| 1530 | - {
|
|
| 1531 | - $image = new stdClass(); |
|
| 1532 | - |
|
| 1533 | - $html = ''; |
|
| 1534 | - if (!empty($request)) {
|
|
| 1535 | - if (!is_object($request)){
|
|
| 1536 | - $request = (object)$request; |
|
| 1537 | - } |
|
| 1538 | - |
|
| 1539 | - if (isset($request->src) && !isset($request->path)) {
|
|
| 1540 | - $request->path = $request->src; |
|
| 1541 | - } |
|
| 1542 | - |
|
| 1543 | - /* |
|
| 1518 | + /** |
|
| 1519 | + * Show image using image details. |
|
| 1520 | + * |
|
| 1521 | + * @since 1.0.0 |
|
| 1522 | + * @package GeoDirectory |
|
| 1523 | + * @param array|object $request Image info either as an array or object. |
|
| 1524 | + * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1525 | + * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1526 | + * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
| 1527 | + * @return bool|string Returns image html. |
|
| 1528 | + */ |
|
| 1529 | + function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true) |
|
| 1530 | + {
|
|
| 1531 | + $image = new stdClass(); |
|
| 1532 | + |
|
| 1533 | + $html = ''; |
|
| 1534 | + if (!empty($request)) {
|
|
| 1535 | + if (!is_object($request)){
|
|
| 1536 | + $request = (object)$request; |
|
| 1537 | + } |
|
| 1538 | + |
|
| 1539 | + if (isset($request->src) && !isset($request->path)) {
|
|
| 1540 | + $request->path = $request->src; |
|
| 1541 | + } |
|
| 1542 | + |
|
| 1543 | + /* |
|
| 1544 | 1544 | * getimagesize() works faster from path than url so we try and get path if we can. |
| 1545 | 1545 | */ |
| 1546 | - $upload_dir = wp_upload_dir(); |
|
| 1547 | - $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
|
|
| 1548 | - $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
|
|
| 1549 | - if (strpos($img_no_http, $upload_no_http) !== false) {
|
|
| 1550 | - $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path); |
|
| 1551 | - } |
|
| 1546 | + $upload_dir = wp_upload_dir(); |
|
| 1547 | + $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
|
|
| 1548 | + $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
|
|
| 1549 | + if (strpos($img_no_http, $upload_no_http) !== false) {
|
|
| 1550 | + $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path); |
|
| 1551 | + } |
|
| 1552 | 1552 | |
| 1553 | - $width = 0; |
|
| 1554 | - $height = 0; |
|
| 1555 | - if (is_file($request->path) && file_exists($request->path)) {
|
|
| 1556 | - $imagesize = getimagesize($request->path); |
|
| 1557 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1558 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1559 | - } |
|
| 1560 | - |
|
| 1561 | - $image->src = $request->src; |
|
| 1562 | - $image->width = $width; |
|
| 1563 | - $image->height = $height; |
|
| 1564 | - |
|
| 1565 | - $max_size = (object)geodir_get_imagesize($size); |
|
| 1566 | - |
|
| 1567 | - if (!is_wp_error($max_size)) {
|
|
| 1568 | - if ($image->width) {
|
|
| 1569 | - if ($image->height >= $image->width) {
|
|
| 1570 | - $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2); |
|
| 1571 | - } else if ($image->width < ($max_size->h)) {
|
|
| 1572 | - $width_per = round((($image->width / $max_size->w) * 100), 2); |
|
| 1573 | - } else |
|
| 1574 | - $width_per = 100; |
|
| 1575 | - } |
|
| 1576 | - |
|
| 1577 | - if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
|
|
| 1578 | - $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '" /></div>'; |
|
| 1579 | - } else {
|
|
| 1580 | - $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
|
| 1581 | - } |
|
| 1582 | - } |
|
| 1583 | - } |
|
| 1584 | - |
|
| 1585 | - if (!empty($html) && $echo) {
|
|
| 1586 | - echo $html; |
|
| 1587 | - } elseif (!empty($html)) {
|
|
| 1588 | - return $html; |
|
| 1589 | - } else |
|
| 1590 | - return false; |
|
| 1591 | - } |
|
| 1592 | -} |
|
| 1553 | + $width = 0; |
|
| 1554 | + $height = 0; |
|
| 1555 | + if (is_file($request->path) && file_exists($request->path)) {
|
|
| 1556 | + $imagesize = getimagesize($request->path); |
|
| 1557 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1558 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1559 | + } |
|
| 1593 | 1560 | |
| 1594 | -if (!function_exists('geodir_set_post_terms')) {
|
|
| 1595 | - /** |
|
| 1596 | - * Set post Categories. |
|
| 1597 | - * |
|
| 1598 | - * @since 1.0.0 |
|
| 1599 | - * @package GeoDirectory |
|
| 1600 | - * @global object $wpdb WordPress Database object. |
|
| 1601 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 1602 | - * @param int $post_id The post ID. |
|
| 1603 | - * @param array $terms An array of term objects. |
|
| 1604 | - * @param array $tt_ids An array of term taxonomy IDs. |
|
| 1605 | - * @param string $taxonomy Taxonomy slug. |
|
| 1606 | - */ |
|
| 1607 | - function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy) |
|
| 1608 | - {
|
|
| 1609 | - global $wpdb, $plugin_prefix; |
|
| 1561 | + $image->src = $request->src; |
|
| 1562 | + $image->width = $width; |
|
| 1563 | + $image->height = $height; |
|
| 1610 | 1564 | |
| 1611 | - $post_type = get_post_type($post_id); |
|
| 1565 | + $max_size = (object)geodir_get_imagesize($size); |
|
| 1612 | 1566 | |
| 1613 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1567 | + if (!is_wp_error($max_size)) {
|
|
| 1568 | + if ($image->width) {
|
|
| 1569 | + if ($image->height >= $image->width) {
|
|
| 1570 | + $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2); |
|
| 1571 | + } else if ($image->width < ($max_size->h)) {
|
|
| 1572 | + $width_per = round((($image->width / $max_size->w) * 100), 2); |
|
| 1573 | + } else |
|
| 1574 | + $width_per = 100; |
|
| 1575 | + } |
|
| 1614 | 1576 | |
| 1615 | - if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
|
|
| 1577 | + if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
|
|
| 1578 | + $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '" /></div>'; |
|
| 1579 | + } else {
|
|
| 1580 | + $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
|
| 1581 | + } |
|
| 1582 | + } |
|
| 1583 | + } |
|
| 1584 | + |
|
| 1585 | + if (!empty($html) && $echo) {
|
|
| 1586 | + echo $html; |
|
| 1587 | + } elseif (!empty($html)) {
|
|
| 1588 | + return $html; |
|
| 1589 | + } else |
|
| 1590 | + return false; |
|
| 1591 | + } |
|
| 1592 | +} |
|
| 1616 | 1593 | |
| 1617 | - if ($taxonomy == $post_type . '_tags') {
|
|
| 1618 | - if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
|
|
| 1619 | - geodir_save_post_meta($post_id, 'post_tags', $terms); |
|
| 1620 | - } |
|
| 1621 | - } elseif ($taxonomy == $post_type . 'category') {
|
|
| 1622 | - $srcharr = array('"', '\\');
|
|
| 1623 | - $replarr = array(""", '');
|
|
| 1594 | +if (!function_exists('geodir_set_post_terms')) {
|
|
| 1595 | + /** |
|
| 1596 | + * Set post Categories. |
|
| 1597 | + * |
|
| 1598 | + * @since 1.0.0 |
|
| 1599 | + * @package GeoDirectory |
|
| 1600 | + * @global object $wpdb WordPress Database object. |
|
| 1601 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 1602 | + * @param int $post_id The post ID. |
|
| 1603 | + * @param array $terms An array of term objects. |
|
| 1604 | + * @param array $tt_ids An array of term taxonomy IDs. |
|
| 1605 | + * @param string $taxonomy Taxonomy slug. |
|
| 1606 | + */ |
|
| 1607 | + function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy) |
|
| 1608 | + {
|
|
| 1609 | + global $wpdb, $plugin_prefix; |
|
| 1610 | + |
|
| 1611 | + $post_type = get_post_type($post_id); |
|
| 1612 | + |
|
| 1613 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1614 | + |
|
| 1615 | + if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
|
|
| 1616 | + |
|
| 1617 | + if ($taxonomy == $post_type . '_tags') {
|
|
| 1618 | + if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
|
|
| 1619 | + geodir_save_post_meta($post_id, 'post_tags', $terms); |
|
| 1620 | + } |
|
| 1621 | + } elseif ($taxonomy == $post_type . 'category') {
|
|
| 1622 | + $srcharr = array('"', '\\');
|
|
| 1623 | + $replarr = array(""", '');
|
|
| 1624 | 1624 | |
| 1625 | - $post_obj = get_post($post_id); |
|
| 1625 | + $post_obj = get_post($post_id); |
|
| 1626 | 1626 | |
| 1627 | - $cat_ids = array('0');
|
|
| 1628 | - if (is_array($tt_ids)) |
|
| 1629 | - $cat_ids = $tt_ids; |
|
| 1627 | + $cat_ids = array('0');
|
|
| 1628 | + if (is_array($tt_ids)) |
|
| 1629 | + $cat_ids = $tt_ids; |
|
| 1630 | 1630 | |
| 1631 | 1631 | |
| 1632 | - if (!empty($cat_ids)) {
|
|
| 1633 | - $cat_ids_array = $cat_ids; |
|
| 1634 | - $cat_ids_length = count($cat_ids_array); |
|
| 1635 | - $cat_ids_format = array_fill(0, $cat_ids_length, '%d'); |
|
| 1636 | - $format = implode(',', $cat_ids_format);
|
|
| 1632 | + if (!empty($cat_ids)) {
|
|
| 1633 | + $cat_ids_array = $cat_ids; |
|
| 1634 | + $cat_ids_length = count($cat_ids_array); |
|
| 1635 | + $cat_ids_format = array_fill(0, $cat_ids_length, '%d'); |
|
| 1636 | + $format = implode(',', $cat_ids_format);
|
|
| 1637 | 1637 | |
| 1638 | - $cat_ids_array_del = $cat_ids_array; |
|
| 1639 | - $cat_ids_array_del[] = $post_id; |
|
| 1638 | + $cat_ids_array_del = $cat_ids_array; |
|
| 1639 | + $cat_ids_array_del[] = $post_id; |
|
| 1640 | 1640 | |
| 1641 | - $wpdb->get_var( |
|
| 1642 | - $wpdb->prepare( |
|
| 1643 | - "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
| 1644 | - $cat_ids_array_del |
|
| 1645 | - ) |
|
| 1646 | - ); |
|
| 1641 | + $wpdb->get_var( |
|
| 1642 | + $wpdb->prepare( |
|
| 1643 | + "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
| 1644 | + $cat_ids_array_del |
|
| 1645 | + ) |
|
| 1646 | + ); |
|
| 1647 | 1647 | |
| 1648 | 1648 | |
| 1649 | - $post_term = $wpdb->get_col( |
|
| 1650 | - $wpdb->prepare( |
|
| 1651 | - "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
| 1652 | - $cat_ids_array |
|
| 1653 | - ) |
|
| 1654 | - ); |
|
| 1649 | + $post_term = $wpdb->get_col( |
|
| 1650 | + $wpdb->prepare( |
|
| 1651 | + "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
| 1652 | + $cat_ids_array |
|
| 1653 | + ) |
|
| 1654 | + ); |
|
| 1655 | 1655 | |
| 1656 | - } |
|
| 1656 | + } |
|
| 1657 | 1657 | |
| 1658 | - $post_marker_json = ''; |
|
| 1658 | + $post_marker_json = ''; |
|
| 1659 | 1659 | |
| 1660 | - if (!empty($post_term)): |
|
| 1660 | + if (!empty($post_term)): |
|
| 1661 | 1661 | |
| 1662 | - foreach ($post_term as $cat_id): |
|
| 1662 | + foreach ($post_term as $cat_id): |
|
| 1663 | 1663 | |
| 1664 | - $term_icon_url = get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type); |
|
| 1665 | - $term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : ''; |
|
| 1664 | + $term_icon_url = get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type); |
|
| 1665 | + $term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : ''; |
|
| 1666 | 1666 | |
| 1667 | - $post_title = $post_obj->title; |
|
| 1668 | - $title = str_replace($srcharr, $replarr, $post_title); |
|
| 1667 | + $post_title = $post_obj->title; |
|
| 1668 | + $title = str_replace($srcharr, $replarr, $post_title); |
|
| 1669 | 1669 | |
| 1670 | - $lat = geodir_get_post_meta($post_id, 'post_latitude', true); |
|
| 1671 | - $lng = geodir_get_post_meta($post_id, 'post_longitude', true); |
|
| 1670 | + $lat = geodir_get_post_meta($post_id, 'post_latitude', true); |
|
| 1671 | + $lng = geodir_get_post_meta($post_id, 'post_longitude', true); |
|
| 1672 | 1672 | |
| 1673 | - $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
|
|
| 1674 | - $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true); |
|
| 1673 | + $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
|
|
| 1674 | + $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true); |
|
| 1675 | 1675 | |
| 1676 | - $json = '{';
|
|
| 1677 | - $json .= '"id":"' . $post_id . '",'; |
|
| 1678 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
| 1679 | - $json .= '"long_pos": "' . $lng . '",'; |
|
| 1680 | - $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",'; |
|
| 1681 | - $json .= '"icon":"' . $term_icon . '",'; |
|
| 1682 | - $json .= '"group":"catgroup' . $cat_id . '"'; |
|
| 1683 | - $json .= '}'; |
|
| 1676 | + $json = '{';
|
|
| 1677 | + $json .= '"id":"' . $post_id . '",'; |
|
| 1678 | + $json .= '"lat_pos": "' . $lat . '",'; |
|
| 1679 | + $json .= '"long_pos": "' . $lng . '",'; |
|
| 1680 | + $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",'; |
|
| 1681 | + $json .= '"icon":"' . $term_icon . '",'; |
|
| 1682 | + $json .= '"group":"catgroup' . $cat_id . '"'; |
|
| 1683 | + $json .= '}'; |
|
| 1684 | 1684 | |
| 1685 | 1685 | |
| 1686 | - if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true)) |
|
| 1687 | - $post_marker_json = $json; |
|
| 1686 | + if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true)) |
|
| 1687 | + $post_marker_json = $json; |
|
| 1688 | 1688 | |
| 1689 | 1689 | |
| 1690 | - 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)))) {
|
|
| 1690 | + 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)))) {
|
|
| 1691 | 1691 | |
| 1692 | - $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
|
|
| 1692 | + $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
|
|
| 1693 | 1693 | post_title = %s, |
| 1694 | 1694 | json = %s |
| 1695 | 1695 | WHERE post_id = %d AND cat_id = %d ", |
| 1696 | - array($post_title, $json, $post_id, $cat_id)); |
|
| 1696 | + array($post_title, $json, $post_id, $cat_id)); |
|
| 1697 | 1697 | |
| 1698 | - } else {
|
|
| 1698 | + } else {
|
|
| 1699 | 1699 | |
| 1700 | - $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
|
|
| 1700 | + $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
|
|
| 1701 | 1701 | post_id = %d, |
| 1702 | 1702 | post_title = %s, |
| 1703 | 1703 | cat_id = %d, |
| 1704 | 1704 | json = %s", |
| 1705 | - array($post_id, $post_title, $cat_id, $json)); |
|
| 1705 | + array($post_id, $post_title, $cat_id, $json)); |
|
| 1706 | 1706 | |
| 1707 | - } |
|
| 1707 | + } |
|
| 1708 | 1708 | |
| 1709 | - $wpdb->query($json_query); |
|
| 1709 | + $wpdb->query($json_query); |
|
| 1710 | 1710 | |
| 1711 | - endforeach; |
|
| 1711 | + endforeach; |
|
| 1712 | 1712 | |
| 1713 | - endif; |
|
| 1713 | + endif; |
|
| 1714 | 1714 | |
| 1715 | - if (!empty($post_term) && is_array($post_term)) {
|
|
| 1716 | - $categories = implode(',', $post_term);
|
|
| 1715 | + if (!empty($post_term) && is_array($post_term)) {
|
|
| 1716 | + $categories = implode(',', $post_term);
|
|
| 1717 | 1717 | |
| 1718 | - if ($categories != '' && $categories != 0) $categories = ',' . $categories . ','; |
|
| 1718 | + if ($categories != '' && $categories != 0) $categories = ',' . $categories . ','; |
|
| 1719 | 1719 | |
| 1720 | - if (empty($post_marker_json)) |
|
| 1721 | - $post_marker_json = isset($json) ? $json : ''; |
|
| 1720 | + if (empty($post_marker_json)) |
|
| 1721 | + $post_marker_json = isset($json) ? $json : ''; |
|
| 1722 | 1722 | |
| 1723 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 1723 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 1724 | 1724 | |
| 1725 | - $wpdb->query( |
|
| 1726 | - $wpdb->prepare( |
|
| 1727 | - "UPDATE " . $table . " SET |
|
| 1725 | + $wpdb->query( |
|
| 1726 | + $wpdb->prepare( |
|
| 1727 | + "UPDATE " . $table . " SET |
|
| 1728 | 1728 | " . $taxonomy . " = %s, |
| 1729 | 1729 | marker_json = %s |
| 1730 | 1730 | where post_id = %d", |
| 1731 | - array($categories, $post_marker_json, $post_id) |
|
| 1732 | - ) |
|
| 1733 | - ); |
|
| 1731 | + array($categories, $post_marker_json, $post_id) |
|
| 1732 | + ) |
|
| 1733 | + ); |
|
| 1734 | 1734 | |
| 1735 | - if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') {
|
|
| 1735 | + if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') {
|
|
| 1736 | 1736 | |
| 1737 | - $categories = trim($categories, ','); |
|
| 1737 | + $categories = trim($categories, ','); |
|
| 1738 | 1738 | |
| 1739 | - if ($categories) {
|
|
| 1739 | + if ($categories) {
|
|
| 1740 | 1740 | |
| 1741 | - $categories = explode(',', $categories);
|
|
| 1741 | + $categories = explode(',', $categories);
|
|
| 1742 | 1742 | |
| 1743 | - $default_category = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1743 | + $default_category = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1744 | 1744 | |
| 1745 | - if (!in_array($default_category, $categories)) {
|
|
| 1745 | + if (!in_array($default_category, $categories)) {
|
|
| 1746 | 1746 | |
| 1747 | - $wpdb->query( |
|
| 1748 | - $wpdb->prepare( |
|
| 1749 | - "UPDATE " . $table . " SET |
|
| 1747 | + $wpdb->query( |
|
| 1748 | + $wpdb->prepare( |
|
| 1749 | + "UPDATE " . $table . " SET |
|
| 1750 | 1750 | default_category = %s |
| 1751 | 1751 | where post_id = %d", |
| 1752 | - array($categories[0], $post_id) |
|
| 1753 | - ) |
|
| 1754 | - ); |
|
| 1752 | + array($categories[0], $post_id) |
|
| 1753 | + ) |
|
| 1754 | + ); |
|
| 1755 | 1755 | |
| 1756 | - $default_category = $categories[0]; |
|
| 1756 | + $default_category = $categories[0]; |
|
| 1757 | 1757 | |
| 1758 | - } |
|
| 1758 | + } |
|
| 1759 | 1759 | |
| 1760 | - if ($default_category == '') |
|
| 1761 | - $default_category = $categories[0]; |
|
| 1760 | + if ($default_category == '') |
|
| 1761 | + $default_category = $categories[0]; |
|
| 1762 | 1762 | |
| 1763 | - geodir_set_postcat_structure($post_id, $taxonomy, $default_category, ''); |
|
| 1763 | + geodir_set_postcat_structure($post_id, $taxonomy, $default_category, ''); |
|
| 1764 | 1764 | |
| 1765 | - } |
|
| 1765 | + } |
|
| 1766 | 1766 | |
| 1767 | - } |
|
| 1767 | + } |
|
| 1768 | 1768 | |
| 1769 | 1769 | |
| 1770 | - } else {
|
|
| 1770 | + } else {
|
|
| 1771 | 1771 | |
| 1772 | - $wpdb->query( |
|
| 1773 | - $wpdb->prepare( |
|
| 1774 | - "INSERT INTO " . $table . " SET |
|
| 1772 | + $wpdb->query( |
|
| 1773 | + $wpdb->prepare( |
|
| 1774 | + "INSERT INTO " . $table . " SET |
|
| 1775 | 1775 | post_id = %d, |
| 1776 | 1776 | " . $taxonomy . " = %s, |
| 1777 | 1777 | marker_json = %s ", |
| 1778 | 1778 | |
| 1779 | - array($post_id, $categories, $post_marker_json) |
|
| 1780 | - ) |
|
| 1781 | - ); |
|
| 1782 | - } |
|
| 1783 | - } |
|
| 1784 | - } |
|
| 1785 | - } |
|
| 1786 | - } |
|
| 1779 | + array($post_id, $categories, $post_marker_json) |
|
| 1780 | + ) |
|
| 1781 | + ); |
|
| 1782 | + } |
|
| 1783 | + } |
|
| 1784 | + } |
|
| 1785 | + } |
|
| 1786 | + } |
|
| 1787 | 1787 | } |
| 1788 | 1788 | |
| 1789 | 1789 | if (!function_exists('geodir_get_infowindow_html')) {
|
| 1790 | - /** |
|
| 1791 | - * Set post Map Marker info html. |
|
| 1792 | - * |
|
| 1793 | - * @since 1.0.0 |
|
| 1794 | - * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before". |
|
| 1795 | - * @package GeoDirectory |
|
| 1796 | - * @global array $geodir_addon_list List of active GeoDirectory extensions. |
|
| 1797 | - * @global object $gd_session GeoDirectory Session object. |
|
| 1798 | - * @param object $postinfo_obj The post details object. |
|
| 1799 | - * @param string $post_preview Is this a post preview?. |
|
| 1800 | - * @return mixed|string|void |
|
| 1801 | - */ |
|
| 1802 | - function geodir_get_infowindow_html($postinfo_obj, $post_preview = '') |
|
| 1803 | - {
|
|
| 1804 | - global $preview, $gd_session; |
|
| 1805 | - $srcharr = array("'", "/", "-", '"', '\\');
|
|
| 1806 | - $replarr = array("′", "⁄", "–", "“", '');
|
|
| 1807 | - |
|
| 1808 | - if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
|
|
| 1809 | - $ID = ''; |
|
| 1810 | - $plink = ''; |
|
| 1811 | - |
|
| 1812 | - if (isset($postinfo_obj->pid)) {
|
|
| 1813 | - $ID = $postinfo_obj->pid; |
|
| 1814 | - $plink = get_permalink($ID); |
|
| 1815 | - } |
|
| 1816 | - |
|
| 1817 | - $title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title)); |
|
| 1818 | - $lat = $postinfo_obj->post_latitude; |
|
| 1819 | - $lng = $postinfo_obj->post_longitude; |
|
| 1820 | - $address = str_replace($srcharr, $replarr, ($postinfo_obj->post_address)); |
|
| 1821 | - $contact = str_replace($srcharr, $replarr, ($postinfo_obj->geodir_contact)); |
|
| 1822 | - $timing = str_replace($srcharr, $replarr, ($postinfo_obj->geodir_timing)); |
|
| 1823 | - } else {
|
|
| 1824 | - $ID = $postinfo_obj->post_id; |
|
| 1825 | - $title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan |
|
| 1826 | - $plink = get_permalink($ID); |
|
| 1827 | - $lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true)); |
|
| 1828 | - $lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true)); |
|
| 1829 | - $address = str_replace($srcharr, $replarr, htmlentities(geodir_get_post_meta($ID, 'post_address', true), ENT_COMPAT, 'UTF-8')); // fix by Stiofan |
|
| 1830 | - $contact = str_replace($srcharr, $replarr, htmlentities(geodir_get_post_meta($ID, 'geodir_contact', true), ENT_COMPAT, 'UTF-8')); |
|
| 1831 | - $timing = str_replace($srcharr, $replarr, (geodir_get_post_meta($ID, 'geodir_timing', true))); |
|
| 1832 | - } |
|
| 1833 | - |
|
| 1834 | - // filter field as per price package |
|
| 1835 | - global $geodir_addon_list; |
|
| 1836 | - if (isset($geodir_addon_list['geodir_payment_manager']) && $geodir_addon_list['geodir_payment_manager'] == 'yes') {
|
|
| 1837 | - $post_type = get_post_type($ID); |
|
| 1838 | - $package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL; |
|
| 1839 | - $field_name = 'geodir_contact'; |
|
| 1840 | - if (!check_field_visibility($package_id, $field_name, $post_type)) {
|
|
| 1841 | - $contact = ''; |
|
| 1842 | - } |
|
| 1843 | - |
|
| 1844 | - $field_name = 'geodir_timing'; |
|
| 1845 | - if (!check_field_visibility($package_id, $field_name, $post_type)) {
|
|
| 1846 | - $timing = ''; |
|
| 1847 | - } |
|
| 1848 | - } |
|
| 1849 | - |
|
| 1850 | - if ($lat && $lng) {
|
|
| 1851 | - ob_start(); ?> |
|
| 1790 | + /** |
|
| 1791 | + * Set post Map Marker info html. |
|
| 1792 | + * |
|
| 1793 | + * @since 1.0.0 |
|
| 1794 | + * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before". |
|
| 1795 | + * @package GeoDirectory |
|
| 1796 | + * @global array $geodir_addon_list List of active GeoDirectory extensions. |
|
| 1797 | + * @global object $gd_session GeoDirectory Session object. |
|
| 1798 | + * @param object $postinfo_obj The post details object. |
|
| 1799 | + * @param string $post_preview Is this a post preview?. |
|
| 1800 | + * @return mixed|string|void |
|
| 1801 | + */ |
|
| 1802 | + function geodir_get_infowindow_html($postinfo_obj, $post_preview = '') |
|
| 1803 | + {
|
|
| 1804 | + global $preview, $gd_session; |
|
| 1805 | + $srcharr = array("'", "/", "-", '"', '\\');
|
|
| 1806 | + $replarr = array("′", "⁄", "–", "“", '');
|
|
| 1807 | + |
|
| 1808 | + if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
|
|
| 1809 | + $ID = ''; |
|
| 1810 | + $plink = ''; |
|
| 1811 | + |
|
| 1812 | + if (isset($postinfo_obj->pid)) {
|
|
| 1813 | + $ID = $postinfo_obj->pid; |
|
| 1814 | + $plink = get_permalink($ID); |
|
| 1815 | + } |
|
| 1816 | + |
|
| 1817 | + $title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title)); |
|
| 1818 | + $lat = $postinfo_obj->post_latitude; |
|
| 1819 | + $lng = $postinfo_obj->post_longitude; |
|
| 1820 | + $address = str_replace($srcharr, $replarr, ($postinfo_obj->post_address)); |
|
| 1821 | + $contact = str_replace($srcharr, $replarr, ($postinfo_obj->geodir_contact)); |
|
| 1822 | + $timing = str_replace($srcharr, $replarr, ($postinfo_obj->geodir_timing)); |
|
| 1823 | + } else {
|
|
| 1824 | + $ID = $postinfo_obj->post_id; |
|
| 1825 | + $title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan |
|
| 1826 | + $plink = get_permalink($ID); |
|
| 1827 | + $lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true)); |
|
| 1828 | + $lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true)); |
|
| 1829 | + $address = str_replace($srcharr, $replarr, htmlentities(geodir_get_post_meta($ID, 'post_address', true), ENT_COMPAT, 'UTF-8')); // fix by Stiofan |
|
| 1830 | + $contact = str_replace($srcharr, $replarr, htmlentities(geodir_get_post_meta($ID, 'geodir_contact', true), ENT_COMPAT, 'UTF-8')); |
|
| 1831 | + $timing = str_replace($srcharr, $replarr, (geodir_get_post_meta($ID, 'geodir_timing', true))); |
|
| 1832 | + } |
|
| 1833 | + |
|
| 1834 | + // filter field as per price package |
|
| 1835 | + global $geodir_addon_list; |
|
| 1836 | + if (isset($geodir_addon_list['geodir_payment_manager']) && $geodir_addon_list['geodir_payment_manager'] == 'yes') {
|
|
| 1837 | + $post_type = get_post_type($ID); |
|
| 1838 | + $package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL; |
|
| 1839 | + $field_name = 'geodir_contact'; |
|
| 1840 | + if (!check_field_visibility($package_id, $field_name, $post_type)) {
|
|
| 1841 | + $contact = ''; |
|
| 1842 | + } |
|
| 1843 | + |
|
| 1844 | + $field_name = 'geodir_timing'; |
|
| 1845 | + if (!check_field_visibility($package_id, $field_name, $post_type)) {
|
|
| 1846 | + $timing = ''; |
|
| 1847 | + } |
|
| 1848 | + } |
|
| 1849 | + |
|
| 1850 | + if ($lat && $lng) {
|
|
| 1851 | + ob_start(); ?> |
|
| 1852 | 1852 | <div class="gd-bubble" style=""> |
| 1853 | 1853 | <div class="gd-bubble-inside"> |
| 1854 | 1854 | <?php |
| 1855 | - $comment_count = ''; |
|
| 1856 | - $rating_star = ''; |
|
| 1857 | - if ($ID != '') {
|
|
| 1858 | - $rating_star = ''; |
|
| 1859 | - $comment_count = geodir_get_review_count_total($ID); |
|
| 1860 | - |
|
| 1861 | - if (!$preview) {
|
|
| 1862 | - $post_avgratings = geodir_get_post_rating($ID); |
|
| 1863 | - |
|
| 1864 | - $rating_star = geodir_get_rating_stars($post_avgratings, $ID, false); |
|
| 1865 | - |
|
| 1866 | - /** |
|
| 1867 | - * Filter to change rating stars |
|
| 1868 | - * |
|
| 1869 | - * You can use this filter to change Rating stars. |
|
| 1870 | - * |
|
| 1871 | - * @since 1.0.0 |
|
| 1872 | - * @package GeoDirectory |
|
| 1873 | - * @param string $rating_star Rating stars. |
|
| 1874 | - * @param float $post_avgratings Average ratings of the post. |
|
| 1875 | - * @param int $ID The post ID. |
|
| 1876 | - */ |
|
| 1877 | - $rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID);
|
|
| 1878 | - } |
|
| 1879 | - } |
|
| 1880 | - ?> |
|
| 1855 | + $comment_count = ''; |
|
| 1856 | + $rating_star = ''; |
|
| 1857 | + if ($ID != '') {
|
|
| 1858 | + $rating_star = ''; |
|
| 1859 | + $comment_count = geodir_get_review_count_total($ID); |
|
| 1860 | + |
|
| 1861 | + if (!$preview) {
|
|
| 1862 | + $post_avgratings = geodir_get_post_rating($ID); |
|
| 1863 | + |
|
| 1864 | + $rating_star = geodir_get_rating_stars($post_avgratings, $ID, false); |
|
| 1865 | + |
|
| 1866 | + /** |
|
| 1867 | + * Filter to change rating stars |
|
| 1868 | + * |
|
| 1869 | + * You can use this filter to change Rating stars. |
|
| 1870 | + * |
|
| 1871 | + * @since 1.0.0 |
|
| 1872 | + * @package GeoDirectory |
|
| 1873 | + * @param string $rating_star Rating stars. |
|
| 1874 | + * @param float $post_avgratings Average ratings of the post. |
|
| 1875 | + * @param int $ID The post ID. |
|
| 1876 | + */ |
|
| 1877 | + $rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID);
|
|
| 1878 | + } |
|
| 1879 | + } |
|
| 1880 | + ?> |
|
| 1881 | 1881 | <div class="geodir-bubble_desc"> |
| 1882 | 1882 | <h4> |
| 1883 | 1883 | <a href="<?php if ($plink != '') {
|
| 1884 | - echo $plink; |
|
| 1885 | - } else {
|
|
| 1886 | - echo 'javascript:void(0);'; |
|
| 1887 | - } ?>"><?php echo $title; ?></a> |
|
| 1884 | + echo $plink; |
|
| 1885 | + } else {
|
|
| 1886 | + echo 'javascript:void(0);'; |
|
| 1887 | + } ?>"><?php echo $title; ?></a> |
|
| 1888 | 1888 | </h4> |
| 1889 | 1889 | <?php |
| 1890 | - if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
|
|
| 1891 | - $post_images = array(); |
|
| 1892 | - if (!empty($postinfo_obj->post_images)) {
|
|
| 1893 | - $post_images = explode(",", $postinfo_obj->post_images);
|
|
| 1894 | - } |
|
| 1895 | - |
|
| 1896 | - if (!empty($post_images)) {
|
|
| 1897 | - ?> |
|
| 1890 | + if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
|
|
| 1891 | + $post_images = array(); |
|
| 1892 | + if (!empty($postinfo_obj->post_images)) {
|
|
| 1893 | + $post_images = explode(",", $postinfo_obj->post_images);
|
|
| 1894 | + } |
|
| 1895 | + |
|
| 1896 | + if (!empty($post_images)) {
|
|
| 1897 | + ?> |
|
| 1898 | 1898 | <div class="geodir-bubble_image"><a href="<?php if ($plink != '') {
|
| 1899 | - echo $plink; |
|
| 1900 | - } else {
|
|
| 1901 | - echo 'javascript:void(0);'; |
|
| 1902 | - } ?>"><img alt="bubble image" style="max-height:50px;" |
|
| 1899 | + echo $plink; |
|
| 1900 | + } else {
|
|
| 1901 | + echo 'javascript:void(0);'; |
|
| 1902 | + } ?>"><img alt="bubble image" style="max-height:50px;" |
|
| 1903 | 1903 | src="<?php echo $post_images[0]; ?>"/></a></div> |
| 1904 | 1904 | <?php |
| 1905 | - }else{
|
|
| 1906 | - echo '<div class="geodir-bubble_image"></div>'; |
|
| 1907 | - } |
|
| 1908 | - } else {
|
|
| 1909 | - if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) {
|
|
| 1910 | - ?> |
|
| 1905 | + }else{
|
|
| 1906 | + echo '<div class="geodir-bubble_image"></div>'; |
|
| 1907 | + } |
|
| 1908 | + } else {
|
|
| 1909 | + if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) {
|
|
| 1910 | + ?> |
|
| 1911 | 1911 | <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div> |
| 1912 | 1912 | <?php |
| 1913 | - }else{
|
|
| 1914 | - echo '<div class="geodir-bubble_image"></div>'; |
|
| 1915 | - } |
|
| 1916 | - } |
|
| 1917 | - ?> |
|
| 1913 | + }else{
|
|
| 1914 | + echo '<div class="geodir-bubble_image"></div>'; |
|
| 1915 | + } |
|
| 1916 | + } |
|
| 1917 | + ?> |
|
| 1918 | 1918 | <div class="geodir-bubble-meta-side"> |
| 1919 | 1919 | <?php |
| 1920 | - /** |
|
| 1921 | - * Fires before the meta info in the map info window. |
|
| 1922 | - * |
|
| 1923 | - * This can be used to add more info to the map info window before the normal meta info. |
|
| 1924 | - * |
|
| 1925 | - * @since 1.5.4 |
|
| 1926 | - * @param int $ID The post id. |
|
| 1927 | - * @param object $postinfo_obj The posts info as an object. |
|
| 1928 | - * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
| 1929 | - */ |
|
| 1930 | - do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview);
|
|
| 1931 | - ?> |
|
| 1920 | + /** |
|
| 1921 | + * Fires before the meta info in the map info window. |
|
| 1922 | + * |
|
| 1923 | + * This can be used to add more info to the map info window before the normal meta info. |
|
| 1924 | + * |
|
| 1925 | + * @since 1.5.4 |
|
| 1926 | + * @param int $ID The post id. |
|
| 1927 | + * @param object $postinfo_obj The posts info as an object. |
|
| 1928 | + * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
| 1929 | + */ |
|
| 1930 | + do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview);
|
|
| 1931 | + ?> |
|
| 1932 | 1932 | <span class="geodir_address"><i class="fa fa-home"></i> <?php echo $address; ?></span> |
| 1933 | 1933 | <?php if ($contact) { ?><span class="geodir_contact"><i
|
| 1934 | 1934 | class="fa fa-phone"></i> <?php echo $contact; ?></span><?php } ?> |
| 1935 | 1935 | <?php if ($timing) { ?><span class="geodir_timing"><i
|
| 1936 | 1936 | class="fa fa-clock-o"></i> <?php echo $timing; ?></span><?php } |
| 1937 | 1937 | |
| 1938 | - /** |
|
| 1939 | - * Fires after the meta info in the map info window. |
|
| 1940 | - * |
|
| 1941 | - * This can be used to add more info to the map info window after the normal meta info. |
|
| 1942 | - * |
|
| 1943 | - * @since 1.4.2 |
|
| 1944 | - * @param object $postinfo_obj The posts info as an object. |
|
| 1945 | - * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
| 1946 | - */ |
|
| 1947 | - do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
|
|
| 1948 | - ?> |
|
| 1938 | + /** |
|
| 1939 | + * Fires after the meta info in the map info window. |
|
| 1940 | + * |
|
| 1941 | + * This can be used to add more info to the map info window after the normal meta info. |
|
| 1942 | + * |
|
| 1943 | + * @since 1.4.2 |
|
| 1944 | + * @param object $postinfo_obj The posts info as an object. |
|
| 1945 | + * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
| 1946 | + */ |
|
| 1947 | + do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
|
|
| 1948 | + ?> |
|
| 1949 | 1949 | </div> |
| 1950 | 1950 | <?php |
| 1951 | 1951 | |
| 1952 | - if ($ID) {
|
|
| 1952 | + if ($ID) {
|
|
| 1953 | 1953 | |
| 1954 | - $post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID);
|
|
| 1955 | - ?> |
|
| 1954 | + $post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID);
|
|
| 1955 | + ?> |
|
| 1956 | 1956 | <div class="geodir-bubble-meta-fade"></div> |
| 1957 | 1957 | |
| 1958 | 1958 | <div class="geodir-bubble-meta-bottom"> |
@@ -1972,69 +1972,69 @@ discard block |
||
| 1972 | 1972 | </div> |
| 1973 | 1973 | </div> |
| 1974 | 1974 | <?php |
| 1975 | - $html = ob_get_clean(); |
|
| 1976 | - /** |
|
| 1977 | - * Filter to change infowindow html |
|
| 1978 | - * |
|
| 1979 | - * You can use this filter to change infowindow html. |
|
| 1980 | - * |
|
| 1981 | - * @since 1.0.0 |
|
| 1982 | - * @package GeoDirectory |
|
| 1983 | - * @param string $html Infowindow html. |
|
| 1984 | - * @param object $postinfo_obj The Post object. |
|
| 1985 | - * @param bool|string $post_preview Is this a post preview? |
|
| 1986 | - */ |
|
| 1987 | - $html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview);
|
|
| 1988 | - return $html; |
|
| 1989 | - } |
|
| 1990 | - } |
|
| 1975 | + $html = ob_get_clean(); |
|
| 1976 | + /** |
|
| 1977 | + * Filter to change infowindow html |
|
| 1978 | + * |
|
| 1979 | + * You can use this filter to change infowindow html. |
|
| 1980 | + * |
|
| 1981 | + * @since 1.0.0 |
|
| 1982 | + * @package GeoDirectory |
|
| 1983 | + * @param string $html Infowindow html. |
|
| 1984 | + * @param object $postinfo_obj The Post object. |
|
| 1985 | + * @param bool|string $post_preview Is this a post preview? |
|
| 1986 | + */ |
|
| 1987 | + $html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview);
|
|
| 1988 | + return $html; |
|
| 1989 | + } |
|
| 1990 | + } |
|
| 1991 | 1991 | } |
| 1992 | 1992 | |
| 1993 | 1993 | |
| 1994 | 1994 | if (!function_exists('geodir_new_post_default_status')) {
|
| 1995 | - /** |
|
| 1996 | - * Default post status for new posts. |
|
| 1997 | - * |
|
| 1998 | - * @since 1.0.0 |
|
| 1999 | - * @package GeoDirectory |
|
| 2000 | - * @return string Returns the default post status for new posts. Ex: draft, publish etc. |
|
| 2001 | - */ |
|
| 2002 | - function geodir_new_post_default_status() |
|
| 2003 | - {
|
|
| 2004 | - if (get_option('geodir_new_post_default_status'))
|
|
| 2005 | - return get_option('geodir_new_post_default_status');
|
|
| 2006 | - else |
|
| 2007 | - return 'publish'; |
|
| 2008 | - |
|
| 2009 | - } |
|
| 1995 | + /** |
|
| 1996 | + * Default post status for new posts. |
|
| 1997 | + * |
|
| 1998 | + * @since 1.0.0 |
|
| 1999 | + * @package GeoDirectory |
|
| 2000 | + * @return string Returns the default post status for new posts. Ex: draft, publish etc. |
|
| 2001 | + */ |
|
| 2002 | + function geodir_new_post_default_status() |
|
| 2003 | + {
|
|
| 2004 | + if (get_option('geodir_new_post_default_status'))
|
|
| 2005 | + return get_option('geodir_new_post_default_status');
|
|
| 2006 | + else |
|
| 2007 | + return 'publish'; |
|
| 2008 | + |
|
| 2009 | + } |
|
| 2010 | 2010 | } |
| 2011 | 2011 | |
| 2012 | 2012 | if (!function_exists('geodir_change_post_status')) {
|
| 2013 | - /** |
|
| 2014 | - * Change post status of a post. |
|
| 2015 | - * |
|
| 2016 | - * @global object $wpdb WordPress Database object. |
|
| 2017 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2018 | - * @param int|string $post_id The post ID. |
|
| 2019 | - * @param string $status New post status. Ex: draft, publish etc. |
|
| 2020 | - */ |
|
| 2021 | - function geodir_change_post_status($post_id = '', $status = '') |
|
| 2022 | - {
|
|
| 2023 | - global $wpdb, $plugin_prefix; |
|
| 2024 | - |
|
| 2025 | - $post_type = get_post_type($post_id); |
|
| 2026 | - |
|
| 2027 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2028 | - |
|
| 2029 | - $wpdb->query( |
|
| 2030 | - $wpdb->prepare( |
|
| 2031 | - "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d", |
|
| 2032 | - array($status, $post_id) |
|
| 2033 | - ) |
|
| 2034 | - ); |
|
| 2035 | - |
|
| 2036 | - |
|
| 2037 | - } |
|
| 2013 | + /** |
|
| 2014 | + * Change post status of a post. |
|
| 2015 | + * |
|
| 2016 | + * @global object $wpdb WordPress Database object. |
|
| 2017 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2018 | + * @param int|string $post_id The post ID. |
|
| 2019 | + * @param string $status New post status. Ex: draft, publish etc. |
|
| 2020 | + */ |
|
| 2021 | + function geodir_change_post_status($post_id = '', $status = '') |
|
| 2022 | + {
|
|
| 2023 | + global $wpdb, $plugin_prefix; |
|
| 2024 | + |
|
| 2025 | + $post_type = get_post_type($post_id); |
|
| 2026 | + |
|
| 2027 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2028 | + |
|
| 2029 | + $wpdb->query( |
|
| 2030 | + $wpdb->prepare( |
|
| 2031 | + "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d", |
|
| 2032 | + array($status, $post_id) |
|
| 2033 | + ) |
|
| 2034 | + ); |
|
| 2035 | + |
|
| 2036 | + |
|
| 2037 | + } |
|
| 2038 | 2038 | } |
| 2039 | 2039 | |
| 2040 | 2040 | /** |
@@ -2048,13 +2048,13 @@ discard block |
||
| 2048 | 2048 | */ |
| 2049 | 2049 | function geodir_set_post_status($pid, $status) |
| 2050 | 2050 | {
|
| 2051 | - if ($pid) {
|
|
| 2052 | - global $wpdb; |
|
| 2053 | - $my_post = array(); |
|
| 2054 | - $my_post['post_status'] = $status; |
|
| 2055 | - $my_post['ID'] = $pid; |
|
| 2056 | - $last_postid = wp_update_post($my_post); |
|
| 2057 | - } |
|
| 2051 | + if ($pid) {
|
|
| 2052 | + global $wpdb; |
|
| 2053 | + $my_post = array(); |
|
| 2054 | + $my_post['post_status'] = $status; |
|
| 2055 | + $my_post['ID'] = $pid; |
|
| 2056 | + $last_postid = wp_update_post($my_post); |
|
| 2057 | + } |
|
| 2058 | 2058 | } |
| 2059 | 2059 | |
| 2060 | 2060 | |
@@ -2070,384 +2070,384 @@ discard block |
||
| 2070 | 2070 | */ |
| 2071 | 2071 | function geodir_update_poststatus($new_status, $old_status, $post) |
| 2072 | 2072 | {
|
| 2073 | - global $wpdb; |
|
| 2073 | + global $wpdb; |
|
| 2074 | 2074 | |
| 2075 | - $geodir_posttypes = geodir_get_posttypes(); |
|
| 2075 | + $geodir_posttypes = geodir_get_posttypes(); |
|
| 2076 | 2076 | |
| 2077 | - if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) {
|
|
| 2077 | + if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) {
|
|
| 2078 | 2078 | |
| 2079 | - geodir_change_post_status($post->ID, $new_status); |
|
| 2080 | - } |
|
| 2079 | + geodir_change_post_status($post->ID, $new_status); |
|
| 2080 | + } |
|
| 2081 | 2081 | } |
| 2082 | 2082 | |
| 2083 | 2083 | |
| 2084 | 2084 | if (!function_exists('geodir_update_listing_info')) {
|
| 2085 | - /** |
|
| 2086 | - * Update post info. |
|
| 2087 | - * |
|
| 2088 | - * @since 1.0.0 |
|
| 2089 | - * @package GeoDirectory |
|
| 2090 | - * @global object $wpdb WordPress Database object. |
|
| 2091 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2092 | - * @param int $updatingpost The updating post ID. |
|
| 2093 | - * @param int $temppost The temporary post ID. |
|
| 2094 | - * @todo fix post_id variable |
|
| 2095 | - */ |
|
| 2096 | - function geodir_update_listing_info($updatingpost, $temppost) |
|
| 2097 | - {
|
|
| 2098 | - |
|
| 2099 | - global $wpdb, $plugin_prefix; |
|
| 2100 | - |
|
| 2101 | - $post_type = get_post_type($post_id); |
|
| 2102 | - |
|
| 2103 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2104 | - |
|
| 2105 | - $wpdb->query( |
|
| 2106 | - $wpdb->prepare( |
|
| 2107 | - "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2108 | - array($updatingpost, $temppost) |
|
| 2109 | - ) |
|
| 2110 | - ); |
|
| 2111 | - |
|
| 2112 | - $wpdb->query( |
|
| 2113 | - $wpdb->prepare( |
|
| 2114 | - "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2115 | - array($updatingpost, $temppost) |
|
| 2116 | - ) |
|
| 2117 | - ); |
|
| 2118 | - |
|
| 2119 | - /* Update Attachments*/ |
|
| 2120 | - |
|
| 2121 | - $wpdb->query( |
|
| 2122 | - $wpdb->prepare( |
|
| 2123 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2124 | - array($updatingpost, $temppost) |
|
| 2125 | - ) |
|
| 2126 | - ); |
|
| 2127 | - |
|
| 2128 | - } |
|
| 2085 | + /** |
|
| 2086 | + * Update post info. |
|
| 2087 | + * |
|
| 2088 | + * @since 1.0.0 |
|
| 2089 | + * @package GeoDirectory |
|
| 2090 | + * @global object $wpdb WordPress Database object. |
|
| 2091 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2092 | + * @param int $updatingpost The updating post ID. |
|
| 2093 | + * @param int $temppost The temporary post ID. |
|
| 2094 | + * @todo fix post_id variable |
|
| 2095 | + */ |
|
| 2096 | + function geodir_update_listing_info($updatingpost, $temppost) |
|
| 2097 | + {
|
|
| 2098 | + |
|
| 2099 | + global $wpdb, $plugin_prefix; |
|
| 2100 | + |
|
| 2101 | + $post_type = get_post_type($post_id); |
|
| 2102 | + |
|
| 2103 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2104 | + |
|
| 2105 | + $wpdb->query( |
|
| 2106 | + $wpdb->prepare( |
|
| 2107 | + "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2108 | + array($updatingpost, $temppost) |
|
| 2109 | + ) |
|
| 2110 | + ); |
|
| 2111 | + |
|
| 2112 | + $wpdb->query( |
|
| 2113 | + $wpdb->prepare( |
|
| 2114 | + "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2115 | + array($updatingpost, $temppost) |
|
| 2116 | + ) |
|
| 2117 | + ); |
|
| 2118 | + |
|
| 2119 | + /* Update Attachments*/ |
|
| 2120 | + |
|
| 2121 | + $wpdb->query( |
|
| 2122 | + $wpdb->prepare( |
|
| 2123 | + "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2124 | + array($updatingpost, $temppost) |
|
| 2125 | + ) |
|
| 2126 | + ); |
|
| 2127 | + |
|
| 2128 | + } |
|
| 2129 | 2129 | } |
| 2130 | 2130 | |
| 2131 | 2131 | |
| 2132 | 2132 | if (!function_exists('geodir_delete_listing_info')) {
|
| 2133 | - /** |
|
| 2134 | - * Delete Listing info from details table for the given post id. |
|
| 2135 | - * |
|
| 2136 | - * @since 1.0.0 |
|
| 2137 | - * @package GeoDirectory |
|
| 2138 | - * @global object $wpdb WordPress Database object. |
|
| 2139 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2140 | - * @param int $deleted_postid The post ID. |
|
| 2141 | - * @param bool $force Optional. Do you want to force delete it? Default: false. |
|
| 2142 | - * @return bool|void |
|
| 2143 | - */ |
|
| 2144 | - function geodir_delete_listing_info($deleted_postid, $force = false) |
|
| 2145 | - {
|
|
| 2146 | - global $wpdb, $plugin_prefix; |
|
| 2147 | - |
|
| 2148 | - // check for multisite deletions |
|
| 2149 | - if (strpos($plugin_prefix, $wpdb->prefix) !== false) {
|
|
| 2150 | - } else {
|
|
| 2151 | - return; |
|
| 2152 | - } |
|
| 2153 | - |
|
| 2154 | - $post_type = get_post_type($deleted_postid); |
|
| 2155 | - |
|
| 2156 | - $all_postypes = geodir_get_posttypes(); |
|
| 2157 | - |
|
| 2158 | - if (!in_array($post_type, $all_postypes)) |
|
| 2159 | - return false; |
|
| 2160 | - |
|
| 2161 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2162 | - |
|
| 2163 | - /* Delete custom post meta*/ |
|
| 2164 | - $wpdb->query( |
|
| 2165 | - $wpdb->prepare( |
|
| 2166 | - "DELETE FROM " . $table . " WHERE `post_id` = %d", |
|
| 2167 | - array($deleted_postid) |
|
| 2168 | - ) |
|
| 2169 | - ); |
|
| 2170 | - |
|
| 2171 | - /* Delete post map icons*/ |
|
| 2172 | - |
|
| 2173 | - $wpdb->query( |
|
| 2174 | - $wpdb->prepare( |
|
| 2175 | - "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d", |
|
| 2176 | - array($deleted_postid) |
|
| 2177 | - ) |
|
| 2178 | - ); |
|
| 2179 | - |
|
| 2180 | - /* Delete Attachments*/ |
|
| 2181 | - $postcurr_images = geodir_get_images($deleted_postid); |
|
| 2182 | - |
|
| 2183 | - $wpdb->query( |
|
| 2184 | - $wpdb->prepare( |
|
| 2185 | - "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d", |
|
| 2186 | - array($deleted_postid) |
|
| 2187 | - ) |
|
| 2188 | - ); |
|
| 2189 | - geodir_remove_attachments($postcurr_images); |
|
| 2190 | - |
|
| 2191 | - } |
|
| 2133 | + /** |
|
| 2134 | + * Delete Listing info from details table for the given post id. |
|
| 2135 | + * |
|
| 2136 | + * @since 1.0.0 |
|
| 2137 | + * @package GeoDirectory |
|
| 2138 | + * @global object $wpdb WordPress Database object. |
|
| 2139 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2140 | + * @param int $deleted_postid The post ID. |
|
| 2141 | + * @param bool $force Optional. Do you want to force delete it? Default: false. |
|
| 2142 | + * @return bool|void |
|
| 2143 | + */ |
|
| 2144 | + function geodir_delete_listing_info($deleted_postid, $force = false) |
|
| 2145 | + {
|
|
| 2146 | + global $wpdb, $plugin_prefix; |
|
| 2147 | + |
|
| 2148 | + // check for multisite deletions |
|
| 2149 | + if (strpos($plugin_prefix, $wpdb->prefix) !== false) {
|
|
| 2150 | + } else {
|
|
| 2151 | + return; |
|
| 2152 | + } |
|
| 2153 | + |
|
| 2154 | + $post_type = get_post_type($deleted_postid); |
|
| 2155 | + |
|
| 2156 | + $all_postypes = geodir_get_posttypes(); |
|
| 2157 | + |
|
| 2158 | + if (!in_array($post_type, $all_postypes)) |
|
| 2159 | + return false; |
|
| 2160 | + |
|
| 2161 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2162 | + |
|
| 2163 | + /* Delete custom post meta*/ |
|
| 2164 | + $wpdb->query( |
|
| 2165 | + $wpdb->prepare( |
|
| 2166 | + "DELETE FROM " . $table . " WHERE `post_id` = %d", |
|
| 2167 | + array($deleted_postid) |
|
| 2168 | + ) |
|
| 2169 | + ); |
|
| 2170 | + |
|
| 2171 | + /* Delete post map icons*/ |
|
| 2172 | + |
|
| 2173 | + $wpdb->query( |
|
| 2174 | + $wpdb->prepare( |
|
| 2175 | + "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d", |
|
| 2176 | + array($deleted_postid) |
|
| 2177 | + ) |
|
| 2178 | + ); |
|
| 2179 | + |
|
| 2180 | + /* Delete Attachments*/ |
|
| 2181 | + $postcurr_images = geodir_get_images($deleted_postid); |
|
| 2182 | + |
|
| 2183 | + $wpdb->query( |
|
| 2184 | + $wpdb->prepare( |
|
| 2185 | + "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d", |
|
| 2186 | + array($deleted_postid) |
|
| 2187 | + ) |
|
| 2188 | + ); |
|
| 2189 | + geodir_remove_attachments($postcurr_images); |
|
| 2190 | + |
|
| 2191 | + } |
|
| 2192 | 2192 | } |
| 2193 | 2193 | |
| 2194 | 2194 | |
| 2195 | 2195 | if (!function_exists('geodir_add_to_favorite')) {
|
| 2196 | - /** |
|
| 2197 | - * This function would add listing to favorite listing. |
|
| 2198 | - * |
|
| 2199 | - * @since 1.0.0 |
|
| 2200 | - * @package GeoDirectory |
|
| 2201 | - * @global object $current_user Current user object. |
|
| 2202 | - * @param int $post_id The post ID. |
|
| 2203 | - */ |
|
| 2204 | - function geodir_add_to_favorite($post_id) |
|
| 2205 | - {
|
|
| 2206 | - |
|
| 2207 | - global $current_user; |
|
| 2208 | - |
|
| 2209 | - /** |
|
| 2210 | - * Filter to modify "Unfavorite" text |
|
| 2211 | - * |
|
| 2212 | - * You can use this filter to rename "Unfavorite" text to something else. |
|
| 2213 | - * |
|
| 2214 | - * @since 1.0.0 |
|
| 2215 | - * @package GeoDirectory |
|
| 2216 | - */ |
|
| 2217 | - $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
|
|
| 2218 | - |
|
| 2219 | - /** |
|
| 2220 | - * Filter to modify "Remove from Favorites" text |
|
| 2221 | - * |
|
| 2222 | - * You can use this filter to rename "Remove from Favorites" text to something else. |
|
| 2223 | - * |
|
| 2224 | - * @since 1.0.0 |
|
| 2225 | - * @package GeoDirectory |
|
| 2226 | - */ |
|
| 2227 | - $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
|
|
| 2228 | - |
|
| 2229 | - /** |
|
| 2230 | - * Filter to modify "fa fa-heart" icon |
|
| 2231 | - * |
|
| 2232 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2233 | - * |
|
| 2234 | - * @since 1.0.0 |
|
| 2235 | - * @package GeoDirectory |
|
| 2236 | - */ |
|
| 2237 | - $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2238 | - |
|
| 2239 | - $user_meta_data = array(); |
|
| 2240 | - $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2241 | - |
|
| 2242 | - if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) {
|
|
| 2243 | - $user_meta_data[] = $post_id; |
|
| 2244 | - } |
|
| 2245 | - |
|
| 2246 | - update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data); |
|
| 2247 | - |
|
| 2248 | - /** |
|
| 2249 | - * Called before adding the post from favourites. |
|
| 2250 | - * |
|
| 2251 | - * @since 1.0.0 |
|
| 2252 | - * @package GeoDirectory |
|
| 2253 | - * @param int $post_id The post ID. |
|
| 2254 | - */ |
|
| 2255 | - do_action('geodir_before_add_from_favorite', $post_id);
|
|
| 2256 | - |
|
| 2257 | - echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-addtofav geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>'; |
|
| 2196 | + /** |
|
| 2197 | + * This function would add listing to favorite listing. |
|
| 2198 | + * |
|
| 2199 | + * @since 1.0.0 |
|
| 2200 | + * @package GeoDirectory |
|
| 2201 | + * @global object $current_user Current user object. |
|
| 2202 | + * @param int $post_id The post ID. |
|
| 2203 | + */ |
|
| 2204 | + function geodir_add_to_favorite($post_id) |
|
| 2205 | + {
|
|
| 2206 | + |
|
| 2207 | + global $current_user; |
|
| 2208 | + |
|
| 2209 | + /** |
|
| 2210 | + * Filter to modify "Unfavorite" text |
|
| 2211 | + * |
|
| 2212 | + * You can use this filter to rename "Unfavorite" text to something else. |
|
| 2213 | + * |
|
| 2214 | + * @since 1.0.0 |
|
| 2215 | + * @package GeoDirectory |
|
| 2216 | + */ |
|
| 2217 | + $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
|
|
| 2218 | + |
|
| 2219 | + /** |
|
| 2220 | + * Filter to modify "Remove from Favorites" text |
|
| 2221 | + * |
|
| 2222 | + * You can use this filter to rename "Remove from Favorites" text to something else. |
|
| 2223 | + * |
|
| 2224 | + * @since 1.0.0 |
|
| 2225 | + * @package GeoDirectory |
|
| 2226 | + */ |
|
| 2227 | + $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
|
|
| 2228 | + |
|
| 2229 | + /** |
|
| 2230 | + * Filter to modify "fa fa-heart" icon |
|
| 2231 | + * |
|
| 2232 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2233 | + * |
|
| 2234 | + * @since 1.0.0 |
|
| 2235 | + * @package GeoDirectory |
|
| 2236 | + */ |
|
| 2237 | + $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2238 | + |
|
| 2239 | + $user_meta_data = array(); |
|
| 2240 | + $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2241 | + |
|
| 2242 | + if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) {
|
|
| 2243 | + $user_meta_data[] = $post_id; |
|
| 2244 | + } |
|
| 2245 | + |
|
| 2246 | + update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data); |
|
| 2247 | + |
|
| 2248 | + /** |
|
| 2249 | + * Called before adding the post from favourites. |
|
| 2250 | + * |
|
| 2251 | + * @since 1.0.0 |
|
| 2252 | + * @package GeoDirectory |
|
| 2253 | + * @param int $post_id The post ID. |
|
| 2254 | + */ |
|
| 2255 | + do_action('geodir_before_add_from_favorite', $post_id);
|
|
| 2256 | + |
|
| 2257 | + echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-addtofav geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>'; |
|
| 2258 | + |
|
| 2259 | + /** |
|
| 2260 | + * Called after adding the post from favourites. |
|
| 2261 | + * |
|
| 2262 | + * @since 1.0.0 |
|
| 2263 | + * @package GeoDirectory |
|
| 2264 | + * @param int $post_id The post ID. |
|
| 2265 | + */ |
|
| 2266 | + do_action('geodir_after_add_from_favorite', $post_id);
|
|
| 2258 | 2267 | |
| 2259 | - /** |
|
| 2260 | - * Called after adding the post from favourites. |
|
| 2261 | - * |
|
| 2262 | - * @since 1.0.0 |
|
| 2263 | - * @package GeoDirectory |
|
| 2264 | - * @param int $post_id The post ID. |
|
| 2265 | - */ |
|
| 2266 | - do_action('geodir_after_add_from_favorite', $post_id);
|
|
| 2267 | - |
|
| 2268 | - } |
|
| 2268 | + } |
|
| 2269 | 2269 | } |
| 2270 | 2270 | |
| 2271 | 2271 | if (!function_exists('geodir_remove_from_favorite')) {
|
| 2272 | - /** |
|
| 2273 | - * This function would remove the favourited property earlier. |
|
| 2274 | - * |
|
| 2275 | - * @since 1.0.0 |
|
| 2276 | - * @package GeoDirectory |
|
| 2277 | - * @global object $current_user Current user object. |
|
| 2278 | - * @param int $post_id The post ID. |
|
| 2279 | - */ |
|
| 2280 | - function geodir_remove_from_favorite($post_id) |
|
| 2281 | - {
|
|
| 2282 | - global $current_user; |
|
| 2283 | - |
|
| 2284 | - /** |
|
| 2285 | - * Filter to modify "Add to Favorites" text |
|
| 2286 | - * |
|
| 2287 | - * You can use this filter to rename "Add to Favorites" text to something else. |
|
| 2288 | - * |
|
| 2289 | - * @since 1.0.0 |
|
| 2290 | - * @package GeoDirectory |
|
| 2291 | - */ |
|
| 2292 | - $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
|
|
| 2293 | - |
|
| 2294 | - /** |
|
| 2295 | - * Filter to modify "Favourite" text |
|
| 2296 | - * |
|
| 2297 | - * You can use this filter to rename "Favourite" text to something else. |
|
| 2298 | - * |
|
| 2299 | - * @since 1.0.0 |
|
| 2300 | - * @package GeoDirectory |
|
| 2301 | - */ |
|
| 2302 | - $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
|
|
| 2303 | - |
|
| 2304 | - /** |
|
| 2305 | - * Filter to modify "fa fa-heart" icon |
|
| 2306 | - * |
|
| 2307 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2308 | - * |
|
| 2309 | - * @since 1.0.0 |
|
| 2310 | - * @package GeoDirectory |
|
| 2311 | - */ |
|
| 2312 | - $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2313 | - |
|
| 2314 | - $user_meta_data = array(); |
|
| 2315 | - $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2316 | - |
|
| 2317 | - if (!empty($user_meta_data)) {
|
|
| 2272 | + /** |
|
| 2273 | + * This function would remove the favourited property earlier. |
|
| 2274 | + * |
|
| 2275 | + * @since 1.0.0 |
|
| 2276 | + * @package GeoDirectory |
|
| 2277 | + * @global object $current_user Current user object. |
|
| 2278 | + * @param int $post_id The post ID. |
|
| 2279 | + */ |
|
| 2280 | + function geodir_remove_from_favorite($post_id) |
|
| 2281 | + {
|
|
| 2282 | + global $current_user; |
|
| 2283 | + |
|
| 2284 | + /** |
|
| 2285 | + * Filter to modify "Add to Favorites" text |
|
| 2286 | + * |
|
| 2287 | + * You can use this filter to rename "Add to Favorites" text to something else. |
|
| 2288 | + * |
|
| 2289 | + * @since 1.0.0 |
|
| 2290 | + * @package GeoDirectory |
|
| 2291 | + */ |
|
| 2292 | + $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
|
|
| 2293 | + |
|
| 2294 | + /** |
|
| 2295 | + * Filter to modify "Favourite" text |
|
| 2296 | + * |
|
| 2297 | + * You can use this filter to rename "Favourite" text to something else. |
|
| 2298 | + * |
|
| 2299 | + * @since 1.0.0 |
|
| 2300 | + * @package GeoDirectory |
|
| 2301 | + */ |
|
| 2302 | + $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
|
|
| 2303 | + |
|
| 2304 | + /** |
|
| 2305 | + * Filter to modify "fa fa-heart" icon |
|
| 2306 | + * |
|
| 2307 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2308 | + * |
|
| 2309 | + * @since 1.0.0 |
|
| 2310 | + * @package GeoDirectory |
|
| 2311 | + */ |
|
| 2312 | + $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2313 | + |
|
| 2314 | + $user_meta_data = array(); |
|
| 2315 | + $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2316 | + |
|
| 2317 | + if (!empty($user_meta_data)) {
|
|
| 2318 | + |
|
| 2319 | + if (($key = array_search($post_id, $user_meta_data)) !== false) {
|
|
| 2320 | + unset($user_meta_data[$key]); |
|
| 2321 | + } |
|
| 2318 | 2322 | |
| 2319 | - if (($key = array_search($post_id, $user_meta_data)) !== false) {
|
|
| 2320 | - unset($user_meta_data[$key]); |
|
| 2321 | - } |
|
| 2323 | + } |
|
| 2322 | 2324 | |
| 2323 | - } |
|
| 2325 | + update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data); |
|
| 2324 | 2326 | |
| 2325 | - update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data); |
|
| 2327 | + /** |
|
| 2328 | + * Called before removing the post from favourites. |
|
| 2329 | + * |
|
| 2330 | + * @since 1.0.0 |
|
| 2331 | + * @package GeoDirectory |
|
| 2332 | + * @param int $post_id The post ID. |
|
| 2333 | + */ |
|
| 2334 | + do_action('geodir_before_remove_from_favorite', $post_id);
|
|
| 2326 | 2335 | |
| 2327 | - /** |
|
| 2328 | - * Called before removing the post from favourites. |
|
| 2329 | - * |
|
| 2330 | - * @since 1.0.0 |
|
| 2331 | - * @package GeoDirectory |
|
| 2332 | - * @param int $post_id The post ID. |
|
| 2333 | - */ |
|
| 2334 | - do_action('geodir_before_remove_from_favorite', $post_id);
|
|
| 2336 | + echo '<a href="javascript:void(0);" title="' . $add_favourite_text . '" class="geodir-addtofav geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>'; |
|
| 2335 | 2337 | |
| 2336 | - echo '<a href="javascript:void(0);" title="' . $add_favourite_text . '" class="geodir-addtofav geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>'; |
|
| 2338 | + /** |
|
| 2339 | + * Called after removing the post from favourites. |
|
| 2340 | + * |
|
| 2341 | + * @since 1.0.0 |
|
| 2342 | + * @package GeoDirectory |
|
| 2343 | + * @param int $post_id The post ID. |
|
| 2344 | + */ |
|
| 2345 | + do_action('geodir_after_remove_from_favorite', $post_id);
|
|
| 2337 | 2346 | |
| 2338 | - /** |
|
| 2339 | - * Called after removing the post from favourites. |
|
| 2340 | - * |
|
| 2341 | - * @since 1.0.0 |
|
| 2342 | - * @package GeoDirectory |
|
| 2343 | - * @param int $post_id The post ID. |
|
| 2344 | - */ |
|
| 2345 | - do_action('geodir_after_remove_from_favorite', $post_id);
|
|
| 2346 | - |
|
| 2347 | - } |
|
| 2347 | + } |
|
| 2348 | 2348 | } |
| 2349 | 2349 | |
| 2350 | 2350 | if (!function_exists('geodir_favourite_html')) {
|
| 2351 | - /** |
|
| 2352 | - * This function would display the html content for add to favorite or remove from favorite. |
|
| 2353 | - * |
|
| 2354 | - * @since 1.0.0 |
|
| 2355 | - * @package GeoDirectory |
|
| 2356 | - * @global object $current_user Current user object. |
|
| 2357 | - * @global object $post The current post object. |
|
| 2358 | - * @param int $user_id The user ID. |
|
| 2359 | - * @param int $post_id The post ID. |
|
| 2360 | - */ |
|
| 2361 | - function geodir_favourite_html($user_id, $post_id) |
|
| 2362 | - {
|
|
| 2363 | - |
|
| 2364 | - global $current_user, $post; |
|
| 2365 | - |
|
| 2366 | - /** |
|
| 2367 | - * Filter to modify "Add to Favorites" text |
|
| 2368 | - * |
|
| 2369 | - * You can use this filter to rename "Add to Favorites" text to something else. |
|
| 2370 | - * |
|
| 2371 | - * @since 1.0.0 |
|
| 2372 | - * @package GeoDirectory |
|
| 2373 | - */ |
|
| 2374 | - $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
|
|
| 2375 | - |
|
| 2376 | - /** |
|
| 2377 | - * Filter to modify "Favourite" text |
|
| 2378 | - * |
|
| 2379 | - * You can use this filter to rename "Favourite" text to something else. |
|
| 2380 | - * |
|
| 2381 | - * @since 1.0.0 |
|
| 2382 | - * @package GeoDirectory |
|
| 2383 | - */ |
|
| 2384 | - $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
|
|
| 2385 | - |
|
| 2386 | - /** |
|
| 2387 | - * Filter to modify "Unfavorite" text |
|
| 2388 | - * |
|
| 2389 | - * You can use this filter to rename "Unfavorite" text to something else. |
|
| 2390 | - * |
|
| 2391 | - * @since 1.0.0 |
|
| 2392 | - * @package GeoDirectory |
|
| 2393 | - */ |
|
| 2394 | - $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
|
|
| 2395 | - |
|
| 2396 | - /** |
|
| 2397 | - * Filter to modify "Remove from Favorites" text |
|
| 2398 | - * |
|
| 2399 | - * You can use this filter to rename "Remove from Favorites" text to something else. |
|
| 2400 | - * |
|
| 2401 | - * @since 1.0.0 |
|
| 2402 | - * @package GeoDirectory |
|
| 2403 | - */ |
|
| 2404 | - $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
|
|
| 2405 | - |
|
| 2406 | - /** |
|
| 2407 | - * Filter to modify "fa fa-heart" icon |
|
| 2408 | - * |
|
| 2409 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2410 | - * |
|
| 2411 | - * @since 1.0.0 |
|
| 2412 | - * @package GeoDirectory |
|
| 2413 | - */ |
|
| 2414 | - $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2415 | - |
|
| 2416 | - /** |
|
| 2417 | - * Filter to modify "fa fa-heart" icon for "remove from favorites" link |
|
| 2418 | - * |
|
| 2419 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2420 | - * |
|
| 2421 | - * @since 1.0.0 |
|
| 2422 | - * @package GeoDirectory |
|
| 2423 | - */ |
|
| 2424 | - $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
|
|
| 2425 | - |
|
| 2426 | - $user_meta_data = ''; |
|
| 2427 | - if (isset($current_user->data->ID)) |
|
| 2428 | - $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2429 | - |
|
| 2430 | - if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
|
|
| 2431 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
|
| 2351 | + /** |
|
| 2352 | + * This function would display the html content for add to favorite or remove from favorite. |
|
| 2353 | + * |
|
| 2354 | + * @since 1.0.0 |
|
| 2355 | + * @package GeoDirectory |
|
| 2356 | + * @global object $current_user Current user object. |
|
| 2357 | + * @global object $post The current post object. |
|
| 2358 | + * @param int $user_id The user ID. |
|
| 2359 | + * @param int $post_id The post ID. |
|
| 2360 | + */ |
|
| 2361 | + function geodir_favourite_html($user_id, $post_id) |
|
| 2362 | + {
|
|
| 2363 | + |
|
| 2364 | + global $current_user, $post; |
|
| 2365 | + |
|
| 2366 | + /** |
|
| 2367 | + * Filter to modify "Add to Favorites" text |
|
| 2368 | + * |
|
| 2369 | + * You can use this filter to rename "Add to Favorites" text to something else. |
|
| 2370 | + * |
|
| 2371 | + * @since 1.0.0 |
|
| 2372 | + * @package GeoDirectory |
|
| 2373 | + */ |
|
| 2374 | + $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
|
|
| 2375 | + |
|
| 2376 | + /** |
|
| 2377 | + * Filter to modify "Favourite" text |
|
| 2378 | + * |
|
| 2379 | + * You can use this filter to rename "Favourite" text to something else. |
|
| 2380 | + * |
|
| 2381 | + * @since 1.0.0 |
|
| 2382 | + * @package GeoDirectory |
|
| 2383 | + */ |
|
| 2384 | + $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
|
|
| 2385 | + |
|
| 2386 | + /** |
|
| 2387 | + * Filter to modify "Unfavorite" text |
|
| 2388 | + * |
|
| 2389 | + * You can use this filter to rename "Unfavorite" text to something else. |
|
| 2390 | + * |
|
| 2391 | + * @since 1.0.0 |
|
| 2392 | + * @package GeoDirectory |
|
| 2393 | + */ |
|
| 2394 | + $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
|
|
| 2395 | + |
|
| 2396 | + /** |
|
| 2397 | + * Filter to modify "Remove from Favorites" text |
|
| 2398 | + * |
|
| 2399 | + * You can use this filter to rename "Remove from Favorites" text to something else. |
|
| 2400 | + * |
|
| 2401 | + * @since 1.0.0 |
|
| 2402 | + * @package GeoDirectory |
|
| 2403 | + */ |
|
| 2404 | + $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
|
|
| 2405 | + |
|
| 2406 | + /** |
|
| 2407 | + * Filter to modify "fa fa-heart" icon |
|
| 2408 | + * |
|
| 2409 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2410 | + * |
|
| 2411 | + * @since 1.0.0 |
|
| 2412 | + * @package GeoDirectory |
|
| 2413 | + */ |
|
| 2414 | + $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2415 | + |
|
| 2416 | + /** |
|
| 2417 | + * Filter to modify "fa fa-heart" icon for "remove from favorites" link |
|
| 2418 | + * |
|
| 2419 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2420 | + * |
|
| 2421 | + * @since 1.0.0 |
|
| 2422 | + * @package GeoDirectory |
|
| 2423 | + */ |
|
| 2424 | + $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
|
|
| 2425 | + |
|
| 2426 | + $user_meta_data = ''; |
|
| 2427 | + if (isset($current_user->data->ID)) |
|
| 2428 | + $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2429 | + |
|
| 2430 | + if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
|
|
| 2431 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
|
| 2432 | 2432 | class="geodir-removetofav-icon" href="javascript:void(0);" |
| 2433 | 2433 | onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');" |
| 2434 | 2434 | title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?> |
| 2435 | 2435 | </a> </span><?php |
| 2436 | 2436 | |
| 2437 | - } else {
|
|
| 2437 | + } else {
|
|
| 2438 | 2438 | |
| 2439 | - if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
|
|
| 2440 | - $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\''; |
|
| 2441 | - } else |
|
| 2442 | - $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
|
|
| 2439 | + if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
|
|
| 2440 | + $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\''; |
|
| 2441 | + } else |
|
| 2442 | + $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
|
|
| 2443 | 2443 | |
| 2444 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
|
| 2444 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
|
| 2445 | 2445 | href="javascript:void(0);" |
| 2446 | 2446 | onclick="<?php echo $script_text;?>" |
| 2447 | 2447 | title="<?php echo $add_favourite_text;?>"><i |
| 2448 | 2448 | class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span> |
| 2449 | 2449 | <?php } |
| 2450 | - } |
|
| 2450 | + } |
|
| 2451 | 2451 | } |
| 2452 | 2452 | |
| 2453 | 2453 | |
@@ -2464,54 +2464,54 @@ discard block |
||
| 2464 | 2464 | function geodir_get_cat_postcount($term = array()) |
| 2465 | 2465 | {
|
| 2466 | 2466 | |
| 2467 | - if (!empty($term)) {
|
|
| 2467 | + if (!empty($term)) {
|
|
| 2468 | 2468 | |
| 2469 | - global $wpdb, $plugin_prefix; |
|
| 2469 | + global $wpdb, $plugin_prefix; |
|
| 2470 | 2470 | |
| 2471 | - $where = ''; |
|
| 2472 | - $join = ''; |
|
| 2473 | - if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') {
|
|
| 2474 | - $taxonomy_obj = get_taxonomy($term->taxonomy); |
|
| 2471 | + $where = ''; |
|
| 2472 | + $join = ''; |
|
| 2473 | + if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') {
|
|
| 2474 | + $taxonomy_obj = get_taxonomy($term->taxonomy); |
|
| 2475 | 2475 | |
| 2476 | - $post_type = $taxonomy_obj->object_type[0]; |
|
| 2476 | + $post_type = $taxonomy_obj->object_type[0]; |
|
| 2477 | 2477 | |
| 2478 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2478 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2479 | 2479 | |
| 2480 | - /** |
|
| 2481 | - * Filter to modify the 'join' query |
|
| 2482 | - * |
|
| 2483 | - * @since 1.0.0 |
|
| 2484 | - * @package GeoDirectory |
|
| 2485 | - * @param object|array $term category / term object that need to be processed. |
|
| 2486 | - * @param string $join The join query. |
|
| 2487 | - */ |
|
| 2488 | - $join = apply_filters('geodir_cat_post_count_join', $join, $term);
|
|
| 2480 | + /** |
|
| 2481 | + * Filter to modify the 'join' query |
|
| 2482 | + * |
|
| 2483 | + * @since 1.0.0 |
|
| 2484 | + * @package GeoDirectory |
|
| 2485 | + * @param object|array $term category / term object that need to be processed. |
|
| 2486 | + * @param string $join The join query. |
|
| 2487 | + */ |
|
| 2488 | + $join = apply_filters('geodir_cat_post_count_join', $join, $term);
|
|
| 2489 | 2489 | |
| 2490 | - /** |
|
| 2491 | - * Filter to modify the 'where' query |
|
| 2492 | - * |
|
| 2493 | - * @since 1.0.0 |
|
| 2494 | - * @package GeoDirectory |
|
| 2495 | - * @param object|array $term category / term object that need to be processed. |
|
| 2496 | - * @param string $where The where query. |
|
| 2497 | - */ |
|
| 2498 | - $where = apply_filters('geodir_cat_post_count_where', $where, $term);
|
|
| 2490 | + /** |
|
| 2491 | + * Filter to modify the 'where' query |
|
| 2492 | + * |
|
| 2493 | + * @since 1.0.0 |
|
| 2494 | + * @package GeoDirectory |
|
| 2495 | + * @param object|array $term category / term object that need to be processed. |
|
| 2496 | + * @param string $where The where query. |
|
| 2497 | + */ |
|
| 2498 | + $where = apply_filters('geodir_cat_post_count_where', $where, $term);
|
|
| 2499 | 2499 | |
| 2500 | - $count_query = "SELECT count(post_id) FROM |
|
| 2500 | + $count_query = "SELECT count(post_id) FROM |
|
| 2501 | 2501 | " . $table . " as pd " . $join . " |
| 2502 | 2502 | WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
|
| 2503 | 2503 | |
| 2504 | - $cat_post_count = $wpdb->get_var($count_query); |
|
| 2505 | - if (empty($cat_post_count) || is_wp_error($cat_post_count)) |
|
| 2506 | - $cat_post_count = 0; |
|
| 2504 | + $cat_post_count = $wpdb->get_var($count_query); |
|
| 2505 | + if (empty($cat_post_count) || is_wp_error($cat_post_count)) |
|
| 2506 | + $cat_post_count = 0; |
|
| 2507 | 2507 | |
| 2508 | - return $cat_post_count; |
|
| 2508 | + return $cat_post_count; |
|
| 2509 | 2509 | |
| 2510 | - } else |
|
| 2510 | + } else |
|
| 2511 | 2511 | |
| 2512 | - return $term->count; |
|
| 2513 | - } |
|
| 2514 | - return false; |
|
| 2512 | + return $term->count; |
|
| 2513 | + } |
|
| 2514 | + return false; |
|
| 2515 | 2515 | |
| 2516 | 2516 | } |
| 2517 | 2517 | |
@@ -2524,17 +2524,17 @@ discard block |
||
| 2524 | 2524 | */ |
| 2525 | 2525 | function geodir_allow_post_type_frontend() |
| 2526 | 2526 | {
|
| 2527 | - $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
|
|
| 2527 | + $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
|
|
| 2528 | 2528 | |
| 2529 | - if (!is_admin() && isset($_REQUEST['listing_type']) |
|
| 2530 | - && !empty($geodir_allow_posttype_frontend) |
|
| 2531 | - && !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend) |
|
| 2532 | - ) {
|
|
| 2529 | + if (!is_admin() && isset($_REQUEST['listing_type']) |
|
| 2530 | + && !empty($geodir_allow_posttype_frontend) |
|
| 2531 | + && !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend) |
|
| 2532 | + ) {
|
|
| 2533 | 2533 | |
| 2534 | - wp_redirect(home_url()); |
|
| 2535 | - exit; |
|
| 2534 | + wp_redirect(home_url()); |
|
| 2535 | + exit; |
|
| 2536 | 2536 | |
| 2537 | - } |
|
| 2537 | + } |
|
| 2538 | 2538 | |
| 2539 | 2539 | } |
| 2540 | 2540 | |
@@ -2551,20 +2551,20 @@ discard block |
||
| 2551 | 2551 | */ |
| 2552 | 2552 | function geodir_excerpt_length($length) |
| 2553 | 2553 | {
|
| 2554 | - global $wp_query, $geodir_is_widget_listing; |
|
| 2554 | + global $wp_query, $geodir_is_widget_listing; |
|
| 2555 | 2555 | if ($geodir_is_widget_listing) {
|
| 2556 | 2556 | return $length; |
| 2557 | 2557 | } |
| 2558 | 2558 | |
| 2559 | - if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
|
|
| 2560 | - $length = get_option('geodir_desc_word_limit');
|
|
| 2561 | - elseif (get_query_var('excerpt_length'))
|
|
| 2562 | - $length = get_query_var('excerpt_length');
|
|
| 2559 | + if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
|
|
| 2560 | + $length = get_option('geodir_desc_word_limit');
|
|
| 2561 | + elseif (get_query_var('excerpt_length'))
|
|
| 2562 | + $length = get_query_var('excerpt_length');
|
|
| 2563 | 2563 | |
| 2564 | - if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
|
|
| 2565 | - $length = get_option('geodir_author_desc_word_limit');
|
|
| 2564 | + if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
|
|
| 2565 | + $length = get_option('geodir_author_desc_word_limit');
|
|
| 2566 | 2566 | |
| 2567 | - return $length; |
|
| 2567 | + return $length; |
|
| 2568 | 2568 | } |
| 2569 | 2569 | |
| 2570 | 2570 | /** |
@@ -2579,13 +2579,13 @@ discard block |
||
| 2579 | 2579 | */ |
| 2580 | 2580 | function geodir_excerpt_more($more) |
| 2581 | 2581 | {
|
| 2582 | - global $post; |
|
| 2583 | - $all_postypes = geodir_get_posttypes(); |
|
| 2584 | - if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
|
|
| 2585 | - return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>'; |
|
| 2586 | - } |
|
| 2582 | + global $post; |
|
| 2583 | + $all_postypes = geodir_get_posttypes(); |
|
| 2584 | + if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
|
|
| 2585 | + return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>'; |
|
| 2586 | + } |
|
| 2587 | 2587 | |
| 2588 | - return $more; |
|
| 2588 | + return $more; |
|
| 2589 | 2589 | } |
| 2590 | 2590 | |
| 2591 | 2591 | |
@@ -2602,63 +2602,63 @@ discard block |
||
| 2602 | 2602 | */ |
| 2603 | 2603 | function geodir_update_markers_oncatedit($term_id, $tt_id, $taxonomy) |
| 2604 | 2604 | {
|
| 2605 | - global $plugin_prefix, $wpdb; |
|
| 2605 | + global $plugin_prefix, $wpdb; |
|
| 2606 | 2606 | |
| 2607 | - $gd_taxonomies = geodir_get_taxonomies(); |
|
| 2607 | + $gd_taxonomies = geodir_get_taxonomies(); |
|
| 2608 | 2608 | |
| 2609 | - if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
|
|
| 2609 | + if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
|
|
| 2610 | 2610 | |
| 2611 | - $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy); |
|
| 2612 | - $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
| 2611 | + $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy); |
|
| 2612 | + $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
| 2613 | 2613 | |
| 2614 | - $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']); |
|
| 2615 | - $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png'; |
|
| 2614 | + $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']); |
|
| 2615 | + $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png'; |
|
| 2616 | 2616 | |
| 2617 | - $posts = $wpdb->get_results( |
|
| 2618 | - $wpdb->prepare( |
|
| 2619 | - "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
| 2620 | - array($term_id, $taxonomy) |
|
| 2621 | - ) |
|
| 2622 | - ); |
|
| 2617 | + $posts = $wpdb->get_results( |
|
| 2618 | + $wpdb->prepare( |
|
| 2619 | + "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
| 2620 | + array($term_id, $taxonomy) |
|
| 2621 | + ) |
|
| 2622 | + ); |
|
| 2623 | 2623 | |
| 2624 | - if (!empty($posts)): |
|
| 2625 | - foreach ($posts as $post_obj) {
|
|
| 2624 | + if (!empty($posts)): |
|
| 2625 | + foreach ($posts as $post_obj) {
|
|
| 2626 | 2626 | |
| 2627 | - $lat = $post_obj->post_latitude; |
|
| 2628 | - $lng = $post_obj->post_longitude; |
|
| 2627 | + $lat = $post_obj->post_latitude; |
|
| 2628 | + $lng = $post_obj->post_longitude; |
|
| 2629 | 2629 | |
| 2630 | - $json = '{';
|
|
| 2631 | - $json .= '"id":"' . $post_obj->post_id . '",'; |
|
| 2632 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
| 2633 | - $json .= '"long_pos": "' . $lng . '",'; |
|
| 2634 | - $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",'; |
|
| 2635 | - $json .= '"icon":"' . $term_icon . '",'; |
|
| 2636 | - $json .= '"group":"catgroup' . $term_id . '"'; |
|
| 2637 | - $json .= '}'; |
|
| 2630 | + $json = '{';
|
|
| 2631 | + $json .= '"id":"' . $post_obj->post_id . '",'; |
|
| 2632 | + $json .= '"lat_pos": "' . $lat . '",'; |
|
| 2633 | + $json .= '"long_pos": "' . $lng . '",'; |
|
| 2634 | + $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",'; |
|
| 2635 | + $json .= '"icon":"' . $term_icon . '",'; |
|
| 2636 | + $json .= '"group":"catgroup' . $term_id . '"'; |
|
| 2637 | + $json .= '}'; |
|
| 2638 | 2638 | |
| 2639 | - if ($post_obj->default_category == $term_id) {
|
|
| 2639 | + if ($post_obj->default_category == $term_id) {
|
|
| 2640 | 2640 | |
| 2641 | - $wpdb->query( |
|
| 2642 | - $wpdb->prepare( |
|
| 2643 | - "UPDATE " . $table . " SET marker_json = %s where post_id = %d", |
|
| 2644 | - array($json, $post_obj->post_id) |
|
| 2645 | - ) |
|
| 2646 | - ); |
|
| 2647 | - } |
|
| 2641 | + $wpdb->query( |
|
| 2642 | + $wpdb->prepare( |
|
| 2643 | + "UPDATE " . $table . " SET marker_json = %s where post_id = %d", |
|
| 2644 | + array($json, $post_obj->post_id) |
|
| 2645 | + ) |
|
| 2646 | + ); |
|
| 2647 | + } |
|
| 2648 | 2648 | |
| 2649 | - $wpdb->query( |
|
| 2650 | - $wpdb->prepare( |
|
| 2651 | - "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
| 2652 | - array($json, $post_obj->post_id, $term_id) |
|
| 2653 | - ) |
|
| 2654 | - ); |
|
| 2649 | + $wpdb->query( |
|
| 2650 | + $wpdb->prepare( |
|
| 2651 | + "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
| 2652 | + array($json, $post_obj->post_id, $term_id) |
|
| 2653 | + ) |
|
| 2654 | + ); |
|
| 2655 | 2655 | |
| 2656 | - } |
|
| 2656 | + } |
|
| 2657 | 2657 | |
| 2658 | 2658 | |
| 2659 | - endif; |
|
| 2659 | + endif; |
|
| 2660 | 2660 | |
| 2661 | - } |
|
| 2661 | + } |
|
| 2662 | 2662 | |
| 2663 | 2663 | } |
| 2664 | 2664 | |
@@ -2672,14 +2672,14 @@ discard block |
||
| 2672 | 2672 | */ |
| 2673 | 2673 | function geodir_get_listing_author($listing_id = '') |
| 2674 | 2674 | {
|
| 2675 | - if ($listing_id == '') {
|
|
| 2676 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 2677 | - $listing_id = $_REQUEST['pid']; |
|
| 2678 | - } |
|
| 2679 | - } |
|
| 2680 | - $listing = get_post(strip_tags($listing_id)); |
|
| 2681 | - $listing_author_id = $listing->post_author; |
|
| 2682 | - return $listing_author_id; |
|
| 2675 | + if ($listing_id == '') {
|
|
| 2676 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 2677 | + $listing_id = $_REQUEST['pid']; |
|
| 2678 | + } |
|
| 2679 | + } |
|
| 2680 | + $listing = get_post(strip_tags($listing_id)); |
|
| 2681 | + $listing_author_id = $listing->post_author; |
|
| 2682 | + return $listing_author_id; |
|
| 2683 | 2683 | } |
| 2684 | 2684 | |
| 2685 | 2685 | |
@@ -2694,11 +2694,11 @@ discard block |
||
| 2694 | 2694 | */ |
| 2695 | 2695 | function geodir_lisiting_belong_to_user($listing_id, $user_id) |
| 2696 | 2696 | {
|
| 2697 | - $listing_author_id = geodir_get_listing_author($listing_id); |
|
| 2698 | - if ($listing_author_id == $user_id) |
|
| 2699 | - return true; |
|
| 2700 | - else |
|
| 2701 | - return false; |
|
| 2697 | + $listing_author_id = geodir_get_listing_author($listing_id); |
|
| 2698 | + if ($listing_author_id == $user_id) |
|
| 2699 | + return true; |
|
| 2700 | + else |
|
| 2701 | + return false; |
|
| 2702 | 2702 | |
| 2703 | 2703 | } |
| 2704 | 2704 | |
@@ -2714,17 +2714,17 @@ discard block |
||
| 2714 | 2714 | */ |
| 2715 | 2715 | function geodir_listing_belong_to_current_user($listing_id = '', $exclude_admin = true) |
| 2716 | 2716 | {
|
| 2717 | - global $current_user; |
|
| 2718 | - if ($exclude_admin) {
|
|
| 2719 | - foreach ($current_user->caps as $key => $caps) {
|
|
| 2720 | - if (geodir_strtolower($key) == 'administrator') {
|
|
| 2721 | - return true; |
|
| 2722 | - break; |
|
| 2723 | - } |
|
| 2724 | - } |
|
| 2725 | - } |
|
| 2726 | - |
|
| 2727 | - return geodir_lisiting_belong_to_user($listing_id, $current_user->ID); |
|
| 2717 | + global $current_user; |
|
| 2718 | + if ($exclude_admin) {
|
|
| 2719 | + foreach ($current_user->caps as $key => $caps) {
|
|
| 2720 | + if (geodir_strtolower($key) == 'administrator') {
|
|
| 2721 | + return true; |
|
| 2722 | + break; |
|
| 2723 | + } |
|
| 2724 | + } |
|
| 2725 | + } |
|
| 2726 | + |
|
| 2727 | + return geodir_lisiting_belong_to_user($listing_id, $current_user->ID); |
|
| 2728 | 2728 | } |
| 2729 | 2729 | |
| 2730 | 2730 | |
@@ -2740,17 +2740,17 @@ discard block |
||
| 2740 | 2740 | function geodir_only_supportable_attachments_remove($file) |
| 2741 | 2741 | {
|
| 2742 | 2742 | |
| 2743 | - global $wpdb; |
|
| 2743 | + global $wpdb; |
|
| 2744 | 2744 | |
| 2745 | - $matches = array(); |
|
| 2745 | + $matches = array(); |
|
| 2746 | 2746 | |
| 2747 | - $pattern = '/-\d+x\d+\./'; |
|
| 2748 | - preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE); |
|
| 2747 | + $pattern = '/-\d+x\d+\./'; |
|
| 2748 | + preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE); |
|
| 2749 | 2749 | |
| 2750 | - if (empty($matches)) |
|
| 2751 | - return ''; |
|
| 2752 | - else |
|
| 2753 | - return $file; |
|
| 2750 | + if (empty($matches)) |
|
| 2751 | + return ''; |
|
| 2752 | + else |
|
| 2753 | + return $file; |
|
| 2754 | 2754 | |
| 2755 | 2755 | } |
| 2756 | 2756 | |
@@ -2767,78 +2767,78 @@ discard block |
||
| 2767 | 2767 | function geodir_set_wp_featured_image($post_id) |
| 2768 | 2768 | {
|
| 2769 | 2769 | |
| 2770 | - global $wpdb, $plugin_prefix; |
|
| 2771 | - $uploads = wp_upload_dir(); |
|
| 2770 | + global $wpdb, $plugin_prefix; |
|
| 2771 | + $uploads = wp_upload_dir(); |
|
| 2772 | 2772 | // print_r($uploads ) ; |
| 2773 | - $post_first_image = $wpdb->get_results( |
|
| 2774 | - $wpdb->prepare( |
|
| 2775 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
| 2776 | - ) |
|
| 2777 | - ); |
|
| 2778 | - |
|
| 2779 | - $old_attachment_name = ''; |
|
| 2780 | - $post_thumbnail_id = ''; |
|
| 2781 | - if (has_post_thumbnail($post_id)) {
|
|
| 2773 | + $post_first_image = $wpdb->get_results( |
|
| 2774 | + $wpdb->prepare( |
|
| 2775 | + "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
| 2776 | + ) |
|
| 2777 | + ); |
|
| 2782 | 2778 | |
| 2783 | - if (has_post_thumbnail($post_id)) {
|
|
| 2779 | + $old_attachment_name = ''; |
|
| 2780 | + $post_thumbnail_id = ''; |
|
| 2781 | + if (has_post_thumbnail($post_id)) {
|
|
| 2784 | 2782 | |
| 2785 | - $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
| 2783 | + if (has_post_thumbnail($post_id)) {
|
|
| 2786 | 2784 | |
| 2787 | - $old_attachment_name = basename(get_attached_file($post_thumbnail_id)); |
|
| 2785 | + $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
| 2788 | 2786 | |
| 2789 | - } |
|
| 2790 | - } |
|
| 2787 | + $old_attachment_name = basename(get_attached_file($post_thumbnail_id)); |
|
| 2791 | 2788 | |
| 2792 | - if (!empty($post_first_image)) {
|
|
| 2789 | + } |
|
| 2790 | + } |
|
| 2793 | 2791 | |
| 2794 | - $post_type = get_post_type($post_id); |
|
| 2792 | + if (!empty($post_first_image)) {
|
|
| 2795 | 2793 | |
| 2796 | - $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2794 | + $post_type = get_post_type($post_id); |
|
| 2797 | 2795 | |
| 2798 | - $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
|
|
| 2796 | + $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2799 | 2797 | |
| 2800 | - $new_attachment_name = basename($post_first_image[0]->file); |
|
| 2798 | + $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
|
|
| 2801 | 2799 | |
| 2802 | - if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) {
|
|
| 2800 | + $new_attachment_name = basename($post_first_image[0]->file); |
|
| 2803 | 2801 | |
| 2804 | - if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
|
|
| 2802 | + if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) {
|
|
| 2805 | 2803 | |
| 2806 | - add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove');
|
|
| 2804 | + if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
|
|
| 2807 | 2805 | |
| 2808 | - wp_delete_attachment($post_thumbnail_id); |
|
| 2806 | + add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove');
|
|
| 2809 | 2807 | |
| 2810 | - } |
|
| 2811 | - $filename = $uploads['basedir'] . $post_first_image[0]->file; |
|
| 2808 | + wp_delete_attachment($post_thumbnail_id); |
|
| 2812 | 2809 | |
| 2813 | - $attachment = array( |
|
| 2814 | - 'post_mime_type' => $post_first_image[0]->mime_type, |
|
| 2815 | - 'guid' => $uploads['baseurl'] . $post_first_image[0]->file, |
|
| 2816 | - 'post_parent' => $post_id, |
|
| 2817 | - 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
|
|
| 2818 | - 'post_content' => '' |
|
| 2819 | - ); |
|
| 2810 | + } |
|
| 2811 | + $filename = $uploads['basedir'] . $post_first_image[0]->file; |
|
| 2812 | + |
|
| 2813 | + $attachment = array( |
|
| 2814 | + 'post_mime_type' => $post_first_image[0]->mime_type, |
|
| 2815 | + 'guid' => $uploads['baseurl'] . $post_first_image[0]->file, |
|
| 2816 | + 'post_parent' => $post_id, |
|
| 2817 | + 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
|
|
| 2818 | + 'post_content' => '' |
|
| 2819 | + ); |
|
| 2820 | 2820 | |
| 2821 | 2821 | |
| 2822 | - $id = wp_insert_attachment($attachment, $filename, $post_id); |
|
| 2822 | + $id = wp_insert_attachment($attachment, $filename, $post_id); |
|
| 2823 | 2823 | |
| 2824 | - if (!is_wp_error($id)) {
|
|
| 2824 | + if (!is_wp_error($id)) {
|
|
| 2825 | 2825 | |
| 2826 | - set_post_thumbnail($post_id, $id); |
|
| 2826 | + set_post_thumbnail($post_id, $id); |
|
| 2827 | 2827 | |
| 2828 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 2829 | - wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename)); |
|
| 2828 | + require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 2829 | + wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename)); |
|
| 2830 | 2830 | |
| 2831 | - } |
|
| 2831 | + } |
|
| 2832 | 2832 | |
| 2833 | - } |
|
| 2833 | + } |
|
| 2834 | 2834 | |
| 2835 | - } else {
|
|
| 2836 | - //set_post_thumbnail($post_id,-1); |
|
| 2835 | + } else {
|
|
| 2836 | + //set_post_thumbnail($post_id,-1); |
|
| 2837 | 2837 | |
| 2838 | - if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) |
|
| 2839 | - wp_delete_attachment($post_thumbnail_id); |
|
| 2838 | + if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) |
|
| 2839 | + wp_delete_attachment($post_thumbnail_id); |
|
| 2840 | 2840 | |
| 2841 | - } |
|
| 2841 | + } |
|
| 2842 | 2842 | } |
| 2843 | 2843 | |
| 2844 | 2844 | |
@@ -2853,53 +2853,53 @@ discard block |
||
| 2853 | 2853 | */ |
| 2854 | 2854 | function gd_copy_original_translation() |
| 2855 | 2855 | {
|
| 2856 | - if (function_exists('icl_object_id')) {
|
|
| 2857 | - global $wpdb, $table_prefix, $plugin_prefix; |
|
| 2858 | - $post_id = absint($_POST['post_id']); |
|
| 2859 | - $upload_dir = wp_upload_dir(); |
|
| 2860 | - $post_type = get_post_type($_POST['post_id']); |
|
| 2861 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2862 | - |
|
| 2863 | - $post_arr = $wpdb->get_results($wpdb->prepare( |
|
| 2864 | - "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
| 2865 | - array($post_id) |
|
| 2866 | - ) |
|
| 2867 | - , ARRAY_A); |
|
| 2868 | - |
|
| 2869 | - $arrImages = $wpdb->get_results( |
|
| 2870 | - $wpdb->prepare( |
|
| 2871 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
| 2872 | - array('%image%', $post_id)
|
|
| 2873 | - ) |
|
| 2874 | - ); |
|
| 2875 | - if ($arrImages) {
|
|
| 2876 | - $image_arr = array(); |
|
| 2877 | - foreach ($arrImages as $img) {
|
|
| 2878 | - $image_arr[] = $upload_dir['baseurl'] . $img->file; |
|
| 2879 | - } |
|
| 2880 | - $comma_separated = implode(",", $image_arr);
|
|
| 2881 | - $post_arr[0]['post_images'] = $comma_separated; |
|
| 2882 | - } |
|
| 2883 | - |
|
| 2884 | - |
|
| 2885 | - $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category']; |
|
| 2886 | - $cat_arr = array_filter(explode(",", $cats));
|
|
| 2887 | - $trans_cat = array(); |
|
| 2888 | - foreach ($cat_arr as $cat) {
|
|
| 2889 | - $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false); |
|
| 2890 | - } |
|
| 2891 | - |
|
| 2892 | - |
|
| 2893 | - $post_arr[0]['categories'] = array_filter($trans_cat); |
|
| 2856 | + if (function_exists('icl_object_id')) {
|
|
| 2857 | + global $wpdb, $table_prefix, $plugin_prefix; |
|
| 2858 | + $post_id = absint($_POST['post_id']); |
|
| 2859 | + $upload_dir = wp_upload_dir(); |
|
| 2860 | + $post_type = get_post_type($_POST['post_id']); |
|
| 2861 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2862 | + |
|
| 2863 | + $post_arr = $wpdb->get_results($wpdb->prepare( |
|
| 2864 | + "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
| 2865 | + array($post_id) |
|
| 2866 | + ) |
|
| 2867 | + , ARRAY_A); |
|
| 2868 | + |
|
| 2869 | + $arrImages = $wpdb->get_results( |
|
| 2870 | + $wpdb->prepare( |
|
| 2871 | + "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
| 2872 | + array('%image%', $post_id)
|
|
| 2873 | + ) |
|
| 2874 | + ); |
|
| 2875 | + if ($arrImages) {
|
|
| 2876 | + $image_arr = array(); |
|
| 2877 | + foreach ($arrImages as $img) {
|
|
| 2878 | + $image_arr[] = $upload_dir['baseurl'] . $img->file; |
|
| 2879 | + } |
|
| 2880 | + $comma_separated = implode(",", $image_arr);
|
|
| 2881 | + $post_arr[0]['post_images'] = $comma_separated; |
|
| 2882 | + } |
|
| 2883 | + |
|
| 2884 | + |
|
| 2885 | + $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category']; |
|
| 2886 | + $cat_arr = array_filter(explode(",", $cats));
|
|
| 2887 | + $trans_cat = array(); |
|
| 2888 | + foreach ($cat_arr as $cat) {
|
|
| 2889 | + $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false); |
|
| 2890 | + } |
|
| 2891 | + |
|
| 2892 | + |
|
| 2893 | + $post_arr[0]['categories'] = array_filter($trans_cat); |
|
| 2894 | 2894 | //print_r($image_arr); |
| 2895 | - //print_r($arrImages); |
|
| 2896 | - //echo $_REQUEST['lang']; |
|
| 2895 | + //print_r($arrImages); |
|
| 2896 | + //echo $_REQUEST['lang']; |
|
| 2897 | 2897 | //print_r($post_arr); |
| 2898 | 2898 | //print_r($trans_cat); |
| 2899 | - echo json_encode($post_arr[0]); |
|
| 2899 | + echo json_encode($post_arr[0]); |
|
| 2900 | 2900 | |
| 2901 | - } |
|
| 2902 | - die(); |
|
| 2901 | + } |
|
| 2902 | + die(); |
|
| 2903 | 2903 | } |
| 2904 | 2904 | |
| 2905 | 2905 | |
@@ -2919,54 +2919,54 @@ discard block |
||
| 2919 | 2919 | function geodir_get_custom_fields_type($listing_type = '') |
| 2920 | 2920 | {
|
| 2921 | 2921 | |
| 2922 | - global $wpdb; |
|
| 2922 | + global $wpdb; |
|
| 2923 | 2923 | |
| 2924 | - if ($listing_type == '') |
|
| 2925 | - $listing_type = 'gd_place'; |
|
| 2924 | + if ($listing_type == '') |
|
| 2925 | + $listing_type = 'gd_place'; |
|
| 2926 | 2926 | |
| 2927 | - $fields_info = array(); |
|
| 2927 | + $fields_info = array(); |
|
| 2928 | 2928 | |
| 2929 | - $get_data = $wpdb->get_results( |
|
| 2930 | - $wpdb->prepare( |
|
| 2931 | - "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'", |
|
| 2932 | - array($listing_type) |
|
| 2933 | - ) |
|
| 2934 | - ); |
|
| 2929 | + $get_data = $wpdb->get_results( |
|
| 2930 | + $wpdb->prepare( |
|
| 2931 | + "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'", |
|
| 2932 | + array($listing_type) |
|
| 2933 | + ) |
|
| 2934 | + ); |
|
| 2935 | 2935 | |
| 2936 | - if (!empty($get_data)) {
|
|
| 2936 | + if (!empty($get_data)) {
|
|
| 2937 | 2937 | |
| 2938 | - foreach ($get_data as $data) {
|
|
| 2938 | + foreach ($get_data as $data) {
|
|
| 2939 | 2939 | |
| 2940 | - if ($data->field_type == 'address') {
|
|
| 2940 | + if ($data->field_type == 'address') {
|
|
| 2941 | 2941 | |
| 2942 | - $extra_fields = unserialize($data->extra_fields); |
|
| 2942 | + $extra_fields = unserialize($data->extra_fields); |
|
| 2943 | 2943 | |
| 2944 | - $prefix = $data->htmlvar_name . '_'; |
|
| 2944 | + $prefix = $data->htmlvar_name . '_'; |
|
| 2945 | 2945 | |
| 2946 | - $fields_info[$prefix . 'address'] = $data->field_type; |
|
| 2946 | + $fields_info[$prefix . 'address'] = $data->field_type; |
|
| 2947 | 2947 | |
| 2948 | - if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) |
|
| 2949 | - $fields_info[$prefix . 'zip'] = $data->field_type; |
|
| 2948 | + if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) |
|
| 2949 | + $fields_info[$prefix . 'zip'] = $data->field_type; |
|
| 2950 | 2950 | |
| 2951 | - } else {
|
|
| 2951 | + } else {
|
|
| 2952 | 2952 | |
| 2953 | - $fields_info[$data->htmlvar_name] = $data->field_type; |
|
| 2953 | + $fields_info[$data->htmlvar_name] = $data->field_type; |
|
| 2954 | 2954 | |
| 2955 | - } |
|
| 2955 | + } |
|
| 2956 | 2956 | |
| 2957 | - } |
|
| 2957 | + } |
|
| 2958 | 2958 | |
| 2959 | - } |
|
| 2959 | + } |
|
| 2960 | 2960 | |
| 2961 | - /** |
|
| 2962 | - * Filter to modify custom fields info using listing post type. |
|
| 2963 | - * |
|
| 2964 | - * @since 1.0.0 |
|
| 2965 | - * @package GeoDirectory |
|
| 2966 | - * @return array $fields_info Custom fields info. |
|
| 2967 | - * @param string $listing_type The listing post type. |
|
| 2968 | - */ |
|
| 2969 | - return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type);
|
|
| 2961 | + /** |
|
| 2962 | + * Filter to modify custom fields info using listing post type. |
|
| 2963 | + * |
|
| 2964 | + * @since 1.0.0 |
|
| 2965 | + * @package GeoDirectory |
|
| 2966 | + * @return array $fields_info Custom fields info. |
|
| 2967 | + * @param string $listing_type The listing post type. |
|
| 2968 | + */ |
|
| 2969 | + return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type);
|
|
| 2970 | 2970 | } |
| 2971 | 2971 | |
| 2972 | 2972 | |
@@ -2981,58 +2981,58 @@ discard block |
||
| 2981 | 2981 | */ |
| 2982 | 2982 | function geodir_function_post_updated($post_ID, $post_after, $post_before) |
| 2983 | 2983 | {
|
| 2984 | - $post_type = get_post_type($post_ID); |
|
| 2984 | + $post_type = get_post_type($post_ID); |
|
| 2985 | 2985 | |
| 2986 | - if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) {
|
|
| 2987 | - // send notification to client when post moves from draft to publish |
|
| 2988 | - 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')) {
|
|
| 2989 | - $post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL; |
|
| 2990 | - $post_author_data = get_userdata($post_author_id); |
|
| 2986 | + if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) {
|
|
| 2987 | + // send notification to client when post moves from draft to publish |
|
| 2988 | + 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')) {
|
|
| 2989 | + $post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL; |
|
| 2990 | + $post_author_data = get_userdata($post_author_id); |
|
| 2991 | 2991 | |
| 2992 | - $to_name = geodir_get_client_name($post_author_id); |
|
| 2992 | + $to_name = geodir_get_client_name($post_author_id); |
|
| 2993 | 2993 | |
| 2994 | - $from_email = geodir_get_site_email_id(); |
|
| 2995 | - $from_name = get_site_emailName(); |
|
| 2996 | - $to_email = $post_author_data->user_email; |
|
| 2994 | + $from_email = geodir_get_site_email_id(); |
|
| 2995 | + $from_name = get_site_emailName(); |
|
| 2996 | + $to_email = $post_author_data->user_email; |
|
| 2997 | 2997 | |
| 2998 | - if (!is_email($to_email) && !empty($post_author_data->user_email)) {
|
|
| 2999 | - $to_email = $post_author_data->user_email; |
|
| 3000 | - } |
|
| 2998 | + if (!is_email($to_email) && !empty($post_author_data->user_email)) {
|
|
| 2999 | + $to_email = $post_author_data->user_email; |
|
| 3000 | + } |
|
| 3001 | 3001 | |
| 3002 | - $message_type = 'listing_published'; |
|
| 3002 | + $message_type = 'listing_published'; |
|
| 3003 | 3003 | |
| 3004 | - if (get_option('geodir_post_published_email_subject') == '') {
|
|
| 3005 | - update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory'));
|
|
| 3006 | - } |
|
| 3004 | + if (get_option('geodir_post_published_email_subject') == '') {
|
|
| 3005 | + update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory'));
|
|
| 3006 | + } |
|
| 3007 | 3007 | |
| 3008 | - if (get_option('geodir_post_published_email_content') == '') {
|
|
| 3009 | - 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'));
|
|
| 3010 | - } |
|
| 3008 | + if (get_option('geodir_post_published_email_content') == '') {
|
|
| 3009 | + 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'));
|
|
| 3010 | + } |
|
| 3011 | 3011 | |
| 3012 | - /** |
|
| 3013 | - * Called before sending the email when listing gets published. |
|
| 3014 | - * |
|
| 3015 | - * @since 1.0.0 |
|
| 3016 | - * @package GeoDirectory |
|
| 3017 | - * @param object $post_after The post object after update. |
|
| 3018 | - * @param object $post_before The post object before update. |
|
| 3019 | - */ |
|
| 3020 | - do_action('geodir_before_listing_published_email', $post_after, $post_before);
|
|
| 3021 | - if (is_email($to_email)) {
|
|
| 3022 | - geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID); |
|
| 3023 | - } |
|
| 3012 | + /** |
|
| 3013 | + * Called before sending the email when listing gets published. |
|
| 3014 | + * |
|
| 3015 | + * @since 1.0.0 |
|
| 3016 | + * @package GeoDirectory |
|
| 3017 | + * @param object $post_after The post object after update. |
|
| 3018 | + * @param object $post_before The post object before update. |
|
| 3019 | + */ |
|
| 3020 | + do_action('geodir_before_listing_published_email', $post_after, $post_before);
|
|
| 3021 | + if (is_email($to_email)) {
|
|
| 3022 | + geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID); |
|
| 3023 | + } |
|
| 3024 | 3024 | |
| 3025 | - /** |
|
| 3026 | - * Called after sending the email when listing gets published. |
|
| 3027 | - * |
|
| 3028 | - * @since 1.0.0 |
|
| 3029 | - * @package GeoDirectory |
|
| 3030 | - * @param object $post_after The post object after update. |
|
| 3031 | - * @param object $post_before The post object before update. |
|
| 3032 | - */ |
|
| 3033 | - do_action('geodir_after_listing_published_email', $post_after, $post_before);
|
|
| 3034 | - } |
|
| 3035 | - } |
|
| 3025 | + /** |
|
| 3026 | + * Called after sending the email when listing gets published. |
|
| 3027 | + * |
|
| 3028 | + * @since 1.0.0 |
|
| 3029 | + * @package GeoDirectory |
|
| 3030 | + * @param object $post_after The post object after update. |
|
| 3031 | + * @param object $post_before The post object before update. |
|
| 3032 | + */ |
|
| 3033 | + do_action('geodir_after_listing_published_email', $post_after, $post_before);
|
|
| 3034 | + } |
|
| 3035 | + } |
|
| 3036 | 3036 | } |
| 3037 | 3037 | |
| 3038 | 3038 | add_action('wp_head', 'geodir_fb_like_thumbnail');
|
@@ -3046,14 +3046,14 @@ discard block |
||
| 3046 | 3046 | */ |
| 3047 | 3047 | function geodir_fb_like_thumbnail(){
|
| 3048 | 3048 | |
| 3049 | - // return if not a single post |
|
| 3050 | - if(!is_single()){return;}
|
|
| 3049 | + // return if not a single post |
|
| 3050 | + if(!is_single()){return;}
|
|
| 3051 | 3051 | |
| 3052 | - global $post; |
|
| 3053 | - if(isset($post->featured_image) && $post->featured_image){
|
|
| 3054 | - $upload_dir = wp_upload_dir(); |
|
| 3055 | - $thumb = $upload_dir['baseurl'].$post->featured_image; |
|
| 3056 | - echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n"; |
|
| 3052 | + global $post; |
|
| 3053 | + if(isset($post->featured_image) && $post->featured_image){
|
|
| 3054 | + $upload_dir = wp_upload_dir(); |
|
| 3055 | + $thumb = $upload_dir['baseurl'].$post->featured_image; |
|
| 3056 | + echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n"; |
|
| 3057 | 3057 | |
| 3058 | - } |
|
| 3058 | + } |
|
| 3059 | 3059 | } |
| 3060 | 3060 | \ No newline at end of file |
@@ -26,11 +26,11 @@ discard block |
||
| 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 |
||
| 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 | |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | $send_post_submit_mail = false; |
| 228 | 228 | |
| 229 | 229 | // unhook this function so it doesn't loop infinitely |
| 230 | - remove_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 230 | + remove_action('save_post', 'geodir_post_information_save', 10, 2);
|
|
| 231 | 231 | |
| 232 | 232 | if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
| 233 | 233 | $post['ID'] = $request_info['pid']; |
@@ -251,13 +251,13 @@ discard block |
||
| 251 | 251 | } |
| 252 | 252 | |
| 253 | 253 | // re-hook this function |
| 254 | - add_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 254 | + add_action('save_post', 'geodir_post_information_save', 10, 2);
|
|
| 255 | 255 | |
| 256 | 256 | $post_tags = ''; |
| 257 | 257 | if (!isset($request_info['post_tags'])) {
|
| 258 | 258 | |
| 259 | 259 | $post_type = $request_info['listing_type']; |
| 260 | - $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
|
|
| 260 | + $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type.'_tags', array('fields' => 'names')));
|
|
| 261 | 261 | |
| 262 | 262 | } |
| 263 | 263 | |
@@ -275,13 +275,13 @@ discard block |
||
| 275 | 275 | $payment_info = array(); |
| 276 | 276 | $package_info = array(); |
| 277 | 277 | |
| 278 | - $package_info = (array)geodir_post_package_info($package_info, $post); |
|
| 278 | + $package_info = (array) geodir_post_package_info($package_info, $post); |
|
| 279 | 279 | |
| 280 | 280 | $post_package_id = geodir_get_post_meta($last_post_id, 'package_id'); |
| 281 | 281 | |
| 282 | 282 | if (!empty($package_info) && !$post_package_id) {
|
| 283 | 283 | if (isset($package_info['days']) && $package_info['days'] != 0) {
|
| 284 | - $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
|
|
| 284 | + $payment_info['expire_date'] = date('Y-m-d', strtotime("+".$package_info['days']." days"));
|
|
| 285 | 285 | } else {
|
| 286 | 286 | $payment_info['expire_date'] = 'Never'; |
| 287 | 287 | } |
@@ -302,8 +302,8 @@ discard block |
||
| 302 | 302 | $extrafields = $val['extra_fields']; |
| 303 | 303 | |
| 304 | 304 | if (trim($type) == 'address') {
|
| 305 | - $prefix = $name . '_'; |
|
| 306 | - $address = $prefix . 'address'; |
|
| 305 | + $prefix = $name.'_'; |
|
| 306 | + $address = $prefix.'address'; |
|
| 307 | 307 | |
| 308 | 308 | if (isset($request_info[$address]) && $request_info[$address] != '') {
|
| 309 | 309 | $gd_post_info[$address] = wp_slash($request_info[$address]); |
@@ -313,59 +313,59 @@ discard block |
||
| 313 | 313 | $extrafields = unserialize($extrafields); |
| 314 | 314 | |
| 315 | 315 | |
| 316 | - if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
|
|
| 316 | + if (!isset($request_info[$prefix.'city']) || $request_info[$prefix.'city'] == '') {
|
|
| 317 | 317 | |
| 318 | 318 | $location_result = geodir_get_default_location(); |
| 319 | 319 | |
| 320 | - $gd_post_info[$prefix . 'city'] = $location_result->city; |
|
| 321 | - $gd_post_info[$prefix . 'region'] = $location_result->region; |
|
| 322 | - $gd_post_info[$prefix . 'country'] = $location_result->country; |
|
| 320 | + $gd_post_info[$prefix.'city'] = $location_result->city; |
|
| 321 | + $gd_post_info[$prefix.'region'] = $location_result->region; |
|
| 322 | + $gd_post_info[$prefix.'country'] = $location_result->country; |
|
| 323 | 323 | |
| 324 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
| 324 | + $gd_post_info['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // set all overall post location |
|
| 325 | 325 | |
| 326 | 326 | } else {
|
| 327 | 327 | |
| 328 | - $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city']; |
|
| 329 | - $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region']; |
|
| 330 | - $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country']; |
|
| 328 | + $gd_post_info[$prefix.'city'] = $request_info[$prefix.'city']; |
|
| 329 | + $gd_post_info[$prefix.'region'] = $request_info[$prefix.'region']; |
|
| 330 | + $gd_post_info[$prefix.'country'] = $request_info[$prefix.'country']; |
|
| 331 | 331 | |
| 332 | 332 | //----------set post locations when import dummy data------- |
| 333 | 333 | $location_result = geodir_get_default_location(); |
| 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 | |
| 338 | 338 | } |
| 339 | 339 | |
| 340 | 340 | |
| 341 | - if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
|
|
| 342 | - $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip']; |
|
| 341 | + if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix.'zip'])) {
|
|
| 342 | + $gd_post_info[$prefix.'zip'] = $request_info[$prefix.'zip']; |
|
| 343 | 343 | } |
| 344 | 344 | |
| 345 | 345 | |
| 346 | 346 | if (isset($extrafields['show_map']) && $extrafields['show_map']) {
|
| 347 | 347 | |
| 348 | - if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
|
|
| 349 | - $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude']; |
|
| 348 | + if (isset($request_info[$prefix.'latitude']) && $request_info[$prefix.'latitude'] != '') {
|
|
| 349 | + $gd_post_info[$prefix.'latitude'] = $request_info[$prefix.'latitude']; |
|
| 350 | 350 | } |
| 351 | 351 | |
| 352 | - if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
|
|
| 353 | - $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude']; |
|
| 352 | + if (isset($request_info[$prefix.'longitude']) && $request_info[$prefix.'longitude'] != '') {
|
|
| 353 | + $gd_post_info[$prefix.'longitude'] = $request_info[$prefix.'longitude']; |
|
| 354 | 354 | } |
| 355 | 355 | |
| 356 | - if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
|
|
| 357 | - $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview']; |
|
| 356 | + if (isset($request_info[$prefix.'mapview']) && $request_info[$prefix.'mapview'] != '') {
|
|
| 357 | + $gd_post_info[$prefix.'mapview'] = $request_info[$prefix.'mapview']; |
|
| 358 | 358 | } |
| 359 | 359 | |
| 360 | - if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
|
|
| 361 | - $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom']; |
|
| 360 | + if (isset($request_info[$prefix.'mapzoom']) && $request_info[$prefix.'mapzoom'] != '') {
|
|
| 361 | + $gd_post_info[$prefix.'mapzoom'] = $request_info[$prefix.'mapzoom']; |
|
| 362 | 362 | } |
| 363 | 363 | |
| 364 | 364 | } |
| 365 | 365 | |
| 366 | 366 | // show lat lng |
| 367 | - if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
|
|
| 368 | - $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng']; |
|
| 367 | + if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix.'latlng'])) {
|
|
| 368 | + $gd_post_info[$prefix.'latlng'] = $request_info[$prefix.'latlng']; |
|
| 369 | 369 | } |
| 370 | 370 | } |
| 371 | 371 | |
@@ -402,7 +402,7 @@ discard block |
||
| 402 | 402 | if (isset($request_info[$name])) {
|
| 403 | 403 | $gd_post_info[$name] = $request_info[$name]; |
| 404 | 404 | } else {
|
| 405 | - if (isset($request_info['gd_field_' . $name])) {
|
|
| 405 | + if (isset($request_info['gd_field_'.$name])) {
|
|
| 406 | 406 | $gd_post_info[$name] = ''; /* fix de-select for multiselect */ |
| 407 | 407 | } |
| 408 | 408 | } |
@@ -462,7 +462,7 @@ discard block |
||
| 462 | 462 | } |
| 463 | 463 | |
| 464 | 464 | if (is_array($post_tags)) {
|
| 465 | - $taxonomy = $request_info['listing_type'] . '_tags'; |
|
| 465 | + $taxonomy = $request_info['listing_type'].'_tags'; |
|
| 466 | 466 | wp_set_object_terms($last_post_id, $post_tags, $taxonomy); |
| 467 | 467 | } |
| 468 | 468 | |
@@ -474,7 +474,7 @@ discard block |
||
| 474 | 474 | $tmpimgArr = trim($request_info['post_images'], ","); |
| 475 | 475 | $tmpimgArr = explode(",", $tmpimgArr);
|
| 476 | 476 | geodir_save_post_images($last_post_id, $tmpimgArr, $dummy); |
| 477 | - } else{
|
|
| 477 | + } else {
|
|
| 478 | 478 | geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy); |
| 479 | 479 | } |
| 480 | 480 | |
@@ -555,7 +555,7 @@ discard block |
||
| 555 | 555 | if (!in_array($post_type, $all_postypes)) |
| 556 | 556 | return false; |
| 557 | 557 | |
| 558 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 558 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 559 | 559 | |
| 560 | 560 | /** |
| 561 | 561 | * Apply Filter to change Post info |
@@ -565,7 +565,7 @@ discard block |
||
| 565 | 565 | * @since 1.0.0 |
| 566 | 566 | * @package GeoDirectory |
| 567 | 567 | */ |
| 568 | - $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
|
|
| 568 | + $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM ".$wpdb->posts." p,".$table." pd
|
|
| 569 | 569 | WHERE p.ID = pd.post_id |
| 570 | 570 | AND post_id = " . $post_id); |
| 571 | 571 | |
@@ -628,7 +628,7 @@ discard block |
||
| 628 | 628 | |
| 629 | 629 | $post_type = get_post_type($post_id); |
| 630 | 630 | |
| 631 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 631 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 632 | 632 | |
| 633 | 633 | /** |
| 634 | 634 | * Filter to change Post info |
@@ -652,13 +652,13 @@ discard block |
||
| 652 | 652 | $mval = implode(",", $mval);
|
| 653 | 653 | } |
| 654 | 654 | |
| 655 | - $post_meta_set_query .= $mkey . " = '" . $mval . "', "; |
|
| 655 | + $post_meta_set_query .= $mkey." = '".$mval."', "; |
|
| 656 | 656 | } |
| 657 | 657 | } |
| 658 | 658 | |
| 659 | 659 | $post_meta_set_query = trim($post_meta_set_query, ", "); |
| 660 | 660 | |
| 661 | - $post_meta_set_query = str_replace('%', '%%', $post_meta_set_query);// escape %
|
|
| 661 | + $post_meta_set_query = str_replace('%', '%%', $post_meta_set_query); // escape %
|
|
| 662 | 662 | |
| 663 | 663 | /** |
| 664 | 664 | * Called before saving the listing info. |
@@ -670,11 +670,11 @@ discard block |
||
| 670 | 670 | */ |
| 671 | 671 | do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
|
| 672 | 672 | |
| 673 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 673 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) {
|
|
| 674 | 674 | |
| 675 | 675 | $wpdb->query( |
| 676 | 676 | $wpdb->prepare( |
| 677 | - "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id =%d", |
|
| 677 | + "UPDATE ".$table." SET ".$post_meta_set_query." where post_id =%d", |
|
| 678 | 678 | array($post_id) |
| 679 | 679 | ) |
| 680 | 680 | ); |
@@ -684,7 +684,7 @@ discard block |
||
| 684 | 684 | |
| 685 | 685 | $wpdb->query( |
| 686 | 686 | $wpdb->prepare( |
| 687 | - "INSERT INTO " . $table . " SET post_id = %d," . $post_meta_set_query, |
|
| 687 | + "INSERT INTO ".$table." SET post_id = %d,".$post_meta_set_query, |
|
| 688 | 688 | array($post_id) |
| 689 | 689 | ) |
| 690 | 690 | ); |
@@ -730,7 +730,7 @@ discard block |
||
| 730 | 730 | |
| 731 | 731 | $post_type = get_post_type($post_id); |
| 732 | 732 | |
| 733 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 733 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 734 | 734 | |
| 735 | 735 | if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
|
| 736 | 736 | |
@@ -738,11 +738,11 @@ discard block |
||
| 738 | 738 | $meta_value = implode(",", $meta_value);
|
| 739 | 739 | } |
| 740 | 740 | |
| 741 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 741 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) {
|
|
| 742 | 742 | |
| 743 | 743 | $wpdb->query( |
| 744 | 744 | $wpdb->prepare( |
| 745 | - "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d", |
|
| 745 | + "UPDATE ".$table." SET ".$postmeta." = '".$meta_value."' where post_id =%d", |
|
| 746 | 746 | array($post_id) |
| 747 | 747 | ) |
| 748 | 748 | ); |
@@ -751,7 +751,7 @@ discard block |
||
| 751 | 751 | |
| 752 | 752 | $wpdb->query( |
| 753 | 753 | $wpdb->prepare( |
| 754 | - "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'", |
|
| 754 | + "INSERT INTO ".$table." SET post_id = %d, ".$postmeta." = '".$meta_value."'", |
|
| 755 | 755 | array($post_id) |
| 756 | 756 | ) |
| 757 | 757 | ); |
@@ -784,23 +784,23 @@ discard block |
||
| 784 | 784 | |
| 785 | 785 | $post_type = get_post_type($post_id); |
| 786 | 786 | |
| 787 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 787 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 788 | 788 | |
| 789 | 789 | if (is_array($postmeta) && !empty($postmeta) && $post_id) {
|
| 790 | 790 | $post_meta_set_query = ''; |
| 791 | 791 | |
| 792 | 792 | foreach ($postmeta as $mkey) {
|
| 793 | 793 | if ($mval != '') |
| 794 | - $post_meta_set_query .= $mkey . " = '', "; |
|
| 794 | + $post_meta_set_query .= $mkey." = '', "; |
|
| 795 | 795 | } |
| 796 | 796 | |
| 797 | 797 | $post_meta_set_query = trim($post_meta_set_query, ", "); |
| 798 | 798 | |
| 799 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 799 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$postmeta."'") != '') {
|
|
| 800 | 800 | |
| 801 | 801 | $wpdb->query( |
| 802 | 802 | $wpdb->prepare( |
| 803 | - "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d", |
|
| 803 | + "UPDATE ".$table." SET ".$post_meta_set_query." where post_id = %d", |
|
| 804 | 804 | array($post_id) |
| 805 | 805 | ) |
| 806 | 806 | ); |
@@ -809,11 +809,11 @@ discard block |
||
| 809 | 809 | } |
| 810 | 810 | |
| 811 | 811 | } elseif ($postmeta != '' && $post_id) {
|
| 812 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 812 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$postmeta."'") != '') {
|
|
| 813 | 813 | |
| 814 | 814 | $wpdb->query( |
| 815 | 815 | $wpdb->prepare( |
| 816 | - "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d", |
|
| 816 | + "UPDATE ".$table." SET ".$postmeta."= '' where post_id = %d", |
|
| 817 | 817 | array($post_id) |
| 818 | 818 | ) |
| 819 | 819 | ); |
@@ -855,10 +855,10 @@ discard block |
||
| 855 | 855 | if (!in_array($post_type, $all_postypes)) |
| 856 | 856 | return false; |
| 857 | 857 | |
| 858 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 858 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 859 | 859 | |
| 860 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
|
|
| 861 | - $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
|
|
| 860 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$meta_key."'") != '') {
|
|
| 861 | + $meta_value = $wpdb->get_var($wpdb->prepare("SELECT ".$meta_key." from ".$table." where post_id = %d", array($post_id)));
|
|
| 862 | 862 | |
| 863 | 863 | if ($meta_value && $meta_value !== '') {
|
| 864 | 864 | return maybe_serialize($meta_value); |
@@ -892,13 +892,13 @@ discard block |
||
| 892 | 892 | |
| 893 | 893 | $post_type = get_post_type($post_id); |
| 894 | 894 | |
| 895 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 895 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 896 | 896 | |
| 897 | 897 | $post_images = geodir_get_images($post_id); |
| 898 | 898 | |
| 899 | 899 | $wpdb->query( |
| 900 | 900 | $wpdb->prepare( |
| 901 | - "UPDATE " . $table . " SET featured_image = '' where post_id =%d", |
|
| 901 | + "UPDATE ".$table." SET featured_image = '' where post_id =%d", |
|
| 902 | 902 | array($post_id) |
| 903 | 903 | ) |
| 904 | 904 | ); |
@@ -928,12 +928,12 @@ discard block |
||
| 928 | 928 | $file_path = ''; |
| 929 | 929 | /* --------- start ------- */ |
| 930 | 930 | |
| 931 | - $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
|
|
| 931 | + $split_img_path = explode(str_replace(array('http://', 'https://'), '', $uploads['baseurl']), str_replace(array('http://', 'https://'), '', $post_image[$m]));
|
|
| 932 | 932 | |
| 933 | 933 | $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
| 934 | 934 | |
| 935 | 935 | |
| 936 | - 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)))) {
|
|
| 936 | + 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)))) {
|
|
| 937 | 937 | |
| 938 | 938 | /* --------- end ------- */ |
| 939 | 939 | $curr_img_url = $post_image[$m]; |
@@ -977,7 +977,7 @@ discard block |
||
| 977 | 977 | // If the uploaded file is the right format |
| 978 | 978 | if (in_array($uploaded_file_type, $allowed_file_types)) {
|
| 979 | 979 | if (!function_exists('wp_handle_upload')) {
|
| 980 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 980 | + require_once(ABSPATH.'wp-admin/includes/file.php'); |
|
| 981 | 981 | } |
| 982 | 982 | |
| 983 | 983 | if (!is_dir($geodir_uploadpath)) {
|
@@ -985,41 +985,41 @@ discard block |
||
| 985 | 985 | } |
| 986 | 986 | |
| 987 | 987 | $external_img = false; |
| 988 | - if (strpos(str_replace(array('http://','https://'),'',$curr_img_url), str_replace(array('http://','https://'),'',$uploads['baseurl'])) !== false) {
|
|
| 988 | + if (strpos(str_replace(array('http://', 'https://'), '', $curr_img_url), str_replace(array('http://', 'https://'), '', $uploads['baseurl'])) !== false) {
|
|
| 989 | 989 | } else {
|
| 990 | 990 | $external_img = true; |
| 991 | 991 | } |
| 992 | 992 | |
| 993 | 993 | if ($dummy || $external_img) {
|
| 994 | 994 | $uploaded_file = array(); |
| 995 | - $uploaded = (array)fetch_remote_file($curr_img_url); |
|
| 995 | + $uploaded = (array) fetch_remote_file($curr_img_url); |
|
| 996 | 996 | |
| 997 | 997 | if (isset($uploaded['error']) && empty($uploaded['error'])) {
|
| 998 | 998 | $new_name = basename($uploaded['file']); |
| 999 | 999 | $uploaded_file = $uploaded; |
| 1000 | - }else{
|
|
| 1001 | - print_r($uploaded);exit; |
|
| 1000 | + } else {
|
|
| 1001 | + print_r($uploaded); exit; |
|
| 1002 | 1002 | } |
| 1003 | 1003 | $external_img = false; |
| 1004 | 1004 | } else {
|
| 1005 | - $new_name = $post_id . '_' . $file_name; |
|
| 1005 | + $new_name = $post_id.'_'.$file_name; |
|
| 1006 | 1006 | |
| 1007 | 1007 | if ($curr_img_dir == $sub_dir) {
|
| 1008 | - $img_path = $geodir_uploadpath . '/' . $filename; |
|
| 1009 | - $img_url = $geodir_uploadurl . '/' . $filename; |
|
| 1008 | + $img_path = $geodir_uploadpath.'/'.$filename; |
|
| 1009 | + $img_url = $geodir_uploadurl.'/'.$filename; |
|
| 1010 | 1010 | } else {
|
| 1011 | - $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1012 | - $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1011 | + $img_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$filename; |
|
| 1012 | + $img_url = $uploads['url'].'/temp_'.$current_user->data->ID.'/'.$filename; |
|
| 1013 | 1013 | } |
| 1014 | 1014 | |
| 1015 | 1015 | $uploaded_file = ''; |
| 1016 | 1016 | |
| 1017 | 1017 | if (file_exists($img_path)) {
|
| 1018 | - $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name); |
|
| 1018 | + $uploaded_file = copy($img_path, $geodir_uploadpath.'/'.$new_name); |
|
| 1019 | 1019 | $file_path = ''; |
| 1020 | - } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
|
|
| 1020 | + } else if (file_exists($uploads['basedir'].$curr_img_dir.$filename)) {
|
|
| 1021 | 1021 | $uploaded_file = true; |
| 1022 | - $file_path = $curr_img_dir . '/' . $filename; |
|
| 1022 | + $file_path = $curr_img_dir.'/'.$filename; |
|
| 1023 | 1023 | } |
| 1024 | 1024 | |
| 1025 | 1025 | if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) |
@@ -1028,14 +1028,14 @@ discard block |
||
| 1028 | 1028 | |
| 1029 | 1029 | if (!empty($uploaded_file)) {
|
| 1030 | 1030 | if (!isset($file_path) || !$file_path) {
|
| 1031 | - $file_path = $sub_dir . '/' . $new_name; |
|
| 1031 | + $file_path = $sub_dir.'/'.$new_name; |
|
| 1032 | 1032 | } |
| 1033 | 1033 | |
| 1034 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
|
|
| 1034 | + $postcurr_images[] = str_replace(array('http://', 'https://'), '', $uploads['baseurl'].$file_path);
|
|
| 1035 | 1035 | |
| 1036 | 1036 | if ($menu_order == 1) {
|
| 1037 | 1037 | |
| 1038 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
|
|
| 1038 | + $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
|
|
| 1039 | 1039 | |
| 1040 | 1040 | } |
| 1041 | 1041 | |
@@ -1053,12 +1053,12 @@ discard block |
||
| 1053 | 1053 | |
| 1054 | 1054 | foreach ($attachment as $key => $val) {
|
| 1055 | 1055 | if ($val != '') |
| 1056 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
| 1056 | + $attachment_set .= $key." = '".$val."', "; |
|
| 1057 | 1057 | } |
| 1058 | 1058 | |
| 1059 | 1059 | $attachment_set = trim($attachment_set, ", "); |
| 1060 | 1060 | |
| 1061 | - $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
|
|
| 1061 | + $wpdb->query("INSERT INTO ".GEODIR_ATTACHMENT_TABLE." SET ".$attachment_set);
|
|
| 1062 | 1062 | |
| 1063 | 1063 | $valid_file_ids[] = $wpdb->insert_id; |
| 1064 | 1064 | } |
@@ -1069,17 +1069,17 @@ discard block |
||
| 1069 | 1069 | } else {
|
| 1070 | 1070 | $valid_file_ids[] = $find_image; |
| 1071 | 1071 | |
| 1072 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
|
|
| 1072 | + $postcurr_images[] = str_replace(array('http://', 'https://'), '', $post_image[$m]);
|
|
| 1073 | 1073 | |
| 1074 | 1074 | $wpdb->query( |
| 1075 | 1075 | $wpdb->prepare( |
| 1076 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d", |
|
| 1076 | + "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order = %d where file =%s AND post_id =%d", |
|
| 1077 | 1077 | array($menu_order, $split_img_path[1], $post_id) |
| 1078 | 1078 | ) |
| 1079 | 1079 | ); |
| 1080 | 1080 | |
| 1081 | 1081 | if ($menu_order == 1) |
| 1082 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
|
|
| 1082 | + $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
|
|
| 1083 | 1083 | |
| 1084 | 1084 | } |
| 1085 | 1085 | |
@@ -1103,9 +1103,9 @@ discard block |
||
| 1103 | 1103 | |
| 1104 | 1104 | foreach ($post_images as $img) {
|
| 1105 | 1105 | |
| 1106 | - if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
|
|
| 1106 | + if (!in_array(str_replace(array('http://', 'https://'), '', $img->src), $postcurr_images)) {
|
|
| 1107 | 1107 | |
| 1108 | - $invalid_files[] = (object)array('src' => $img->src);
|
|
| 1108 | + $invalid_files[] = (object) array('src' => $img->src);
|
|
| 1109 | 1109 | |
| 1110 | 1110 | } |
| 1111 | 1111 | |
@@ -1113,12 +1113,12 @@ discard block |
||
| 1113 | 1113 | |
| 1114 | 1114 | } |
| 1115 | 1115 | |
| 1116 | - $invalid_files = (object)$invalid_files; |
|
| 1116 | + $invalid_files = (object) $invalid_files; |
|
| 1117 | 1117 | } |
| 1118 | 1118 | |
| 1119 | 1119 | $remove_files[] = $post_id; |
| 1120 | 1120 | |
| 1121 | - $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
|
|
| 1121 | + $wpdb->query($wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE ".$valid_files_condition." post_id = %d", $remove_files));
|
|
| 1122 | 1122 | |
| 1123 | 1123 | if (!empty($invalid_files)) |
| 1124 | 1124 | geodir_remove_attachments($invalid_files); |
@@ -1158,7 +1158,7 @@ discard block |
||
| 1158 | 1158 | rmdir($dirPath); |
| 1159 | 1159 | } */ |
| 1160 | 1160 | |
| 1161 | - $dirname = $uploads_dir . '/temp_' . $current_user->ID; |
|
| 1161 | + $dirname = $uploads_dir.'/temp_'.$current_user->ID; |
|
| 1162 | 1162 | geodir_delete_directory($dirname); |
| 1163 | 1163 | } |
| 1164 | 1164 | |
@@ -1180,10 +1180,10 @@ discard block |
||
| 1180 | 1180 | return false; |
| 1181 | 1181 | while ($file = readdir($dir_handle)) {
|
| 1182 | 1182 | if ($file != "." && $file != "..") {
|
| 1183 | - if (!is_dir($dirname . "/" . $file)) |
|
| 1184 | - unlink($dirname . "/" . $file); |
|
| 1183 | + if (!is_dir($dirname."/".$file)) |
|
| 1184 | + unlink($dirname."/".$file); |
|
| 1185 | 1185 | else |
| 1186 | - geodir_delete_directory($dirname . '/' . $file); |
|
| 1186 | + geodir_delete_directory($dirname.'/'.$file); |
|
| 1187 | 1187 | } |
| 1188 | 1188 | } |
| 1189 | 1189 | closedir($dir_handle); |
@@ -1212,8 +1212,8 @@ discard block |
||
| 1212 | 1212 | foreach ($postcurr_images as $postimg) {
|
| 1213 | 1213 | $image_name_arr = explode('/', $postimg->src);
|
| 1214 | 1214 | $filename = end($image_name_arr); |
| 1215 | - if (file_exists($uploads_dir . '/' . $filename)) |
|
| 1216 | - unlink($uploads_dir . '/' . $filename); |
|
| 1215 | + if (file_exists($uploads_dir.'/'.$filename)) |
|
| 1216 | + unlink($uploads_dir.'/'.$filename); |
|
| 1217 | 1217 | } |
| 1218 | 1218 | |
| 1219 | 1219 | } // endif |
@@ -1247,16 +1247,16 @@ discard block |
||
| 1247 | 1247 | } |
| 1248 | 1248 | |
| 1249 | 1249 | if (!in_array($post_type, geodir_get_posttypes())) {
|
| 1250 | - return false;// if not a GD CPT return; |
|
| 1250 | + return false; // if not a GD CPT return; |
|
| 1251 | 1251 | } |
| 1252 | 1252 | |
| 1253 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1253 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 1254 | 1254 | |
| 1255 | 1255 | if (!$file) {
|
| 1256 | 1256 | if (isset($post->featured_image)) {
|
| 1257 | 1257 | $file = $post->featured_image; |
| 1258 | 1258 | } else {
|
| 1259 | - $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
|
|
| 1259 | + $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM ".$table." WHERE post_id = %d", array($post_id)));
|
|
| 1260 | 1260 | } |
| 1261 | 1261 | } |
| 1262 | 1262 | |
@@ -1274,7 +1274,7 @@ discard block |
||
| 1274 | 1274 | |
| 1275 | 1275 | $file_name = $file_info['basename']; |
| 1276 | 1276 | |
| 1277 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1277 | + $uploads_url = $uploads_baseurl.$sub_dir; |
|
| 1278 | 1278 | /* |
| 1279 | 1279 | * Allows the filter of image src for such things as CDN change. |
| 1280 | 1280 | * |
@@ -1284,8 +1284,8 @@ discard block |
||
| 1284 | 1284 | * @param string $uploads_url The server upload directory url. |
| 1285 | 1285 | * @param string $uploads_baseurl The uploads dir base url. |
| 1286 | 1286 | */ |
| 1287 | - $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1288 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1287 | + $img_arr['src'] = apply_filters('geodir_get_featured_image_src', $uploads_url.'/'.$file_name, $file_name, $uploads_url, $uploads_baseurl);
|
|
| 1288 | + $img_arr['path'] = $uploads_path.'/'.$file_name; |
|
| 1289 | 1289 | $width = 0; |
| 1290 | 1290 | $height = 0; |
| 1291 | 1291 | if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
@@ -1328,7 +1328,7 @@ discard block |
||
| 1328 | 1328 | $file_name = $file_info['basename']; |
| 1329 | 1329 | |
| 1330 | 1330 | $img_arr['src'] = $default_img; |
| 1331 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1331 | + $img_arr['path'] = $uploads_path.'/'.$file_name; |
|
| 1332 | 1332 | |
| 1333 | 1333 | $width = 0; |
| 1334 | 1334 | $height = 0; |
@@ -1345,7 +1345,7 @@ discard block |
||
| 1345 | 1345 | } |
| 1346 | 1346 | |
| 1347 | 1347 | if (!empty($img_arr)) |
| 1348 | - return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1348 | + return (object) $img_arr; //return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1349 | 1349 | else |
| 1350 | 1350 | return false; |
| 1351 | 1351 | } |
@@ -1408,7 +1408,7 @@ discard block |
||
| 1408 | 1408 | |
| 1409 | 1409 | $arrImages = $wpdb->get_results( |
| 1410 | 1410 | $wpdb->prepare( |
| 1411 | - "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 ", |
|
| 1411 | + "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 ", |
|
| 1412 | 1412 | array('%image%', $post_id)
|
| 1413 | 1413 | ) |
| 1414 | 1414 | ); |
@@ -1434,7 +1434,7 @@ discard block |
||
| 1434 | 1434 | |
| 1435 | 1435 | $file_name = $file_info['basename']; |
| 1436 | 1436 | |
| 1437 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1437 | + $uploads_url = $uploads_baseurl.$sub_dir; |
|
| 1438 | 1438 | /* |
| 1439 | 1439 | * Allows the filter of image src for such things as CDN change. |
| 1440 | 1440 | * |
@@ -1444,8 +1444,8 @@ discard block |
||
| 1444 | 1444 | * @param string $uploads_url The server upload directory url. |
| 1445 | 1445 | * @param string $uploads_baseurl The uploads dir base url. |
| 1446 | 1446 | */ |
| 1447 | - $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1448 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1447 | + $img_arr['src'] = apply_filters('geodir_get_images_src', $uploads_url.'/'.$file_name, $file_name, $uploads_url, $uploads_baseurl);
|
|
| 1448 | + $img_arr['path'] = $uploads_path.'/'.$file_name; |
|
| 1449 | 1449 | $width = 0; |
| 1450 | 1450 | $height = 0; |
| 1451 | 1451 | if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
@@ -1462,11 +1462,11 @@ discard block |
||
| 1462 | 1462 | $img_arr['content'] = $attechment->content; // add the description to the array |
| 1463 | 1463 | $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1. |
| 1464 | 1464 | |
| 1465 | - $return_arr[] = (object)$img_arr; |
|
| 1465 | + $return_arr[] = (object) $img_arr; |
|
| 1466 | 1466 | |
| 1467 | 1467 | $counter++; |
| 1468 | 1468 | } |
| 1469 | - return (object)$return_arr; |
|
| 1469 | + return (object) $return_arr; |
|
| 1470 | 1470 | } else if ($no_images) {
|
| 1471 | 1471 | $default_img = ''; |
| 1472 | 1472 | $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
@@ -1505,7 +1505,7 @@ discard block |
||
| 1505 | 1505 | $img_arr['title'] = $file_info['filename']; // add the title to the array |
| 1506 | 1506 | $img_arr['content'] = $file_info['filename']; // add the description to the array |
| 1507 | 1507 | |
| 1508 | - $return_arr[] = (object)$img_arr; |
|
| 1508 | + $return_arr[] = (object) $img_arr; |
|
| 1509 | 1509 | |
| 1510 | 1510 | return $return_arr; |
| 1511 | 1511 | } else |
@@ -1532,8 +1532,8 @@ discard block |
||
| 1532 | 1532 | |
| 1533 | 1533 | $html = ''; |
| 1534 | 1534 | if (!empty($request)) {
|
| 1535 | - if (!is_object($request)){
|
|
| 1536 | - $request = (object)$request; |
|
| 1535 | + if (!is_object($request)) {
|
|
| 1536 | + $request = (object) $request; |
|
| 1537 | 1537 | } |
| 1538 | 1538 | |
| 1539 | 1539 | if (isset($request->src) && !isset($request->path)) {
|
@@ -1547,7 +1547,7 @@ discard block |
||
| 1547 | 1547 | $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
|
| 1548 | 1548 | $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
|
| 1549 | 1549 | if (strpos($img_no_http, $upload_no_http) !== false) {
|
| 1550 | - $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path); |
|
| 1550 | + $request->path = str_replace($img_no_http, $upload_dir['basedir'], $request->path); |
|
| 1551 | 1551 | } |
| 1552 | 1552 | |
| 1553 | 1553 | $width = 0; |
@@ -1562,7 +1562,7 @@ discard block |
||
| 1562 | 1562 | $image->width = $width; |
| 1563 | 1563 | $image->height = $height; |
| 1564 | 1564 | |
| 1565 | - $max_size = (object)geodir_get_imagesize($size); |
|
| 1565 | + $max_size = (object) geodir_get_imagesize($size); |
|
| 1566 | 1566 | |
| 1567 | 1567 | if (!is_wp_error($max_size)) {
|
| 1568 | 1568 | if ($image->width) {
|
@@ -1574,10 +1574,10 @@ discard block |
||
| 1574 | 1574 | $width_per = 100; |
| 1575 | 1575 | } |
| 1576 | 1576 | |
| 1577 | - if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
|
|
| 1578 | - $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '" /></div>'; |
|
| 1577 | + if (is_admin() && !isset($_REQUEST['geodir_ajax'])) {
|
|
| 1578 | + $html = '<div class="geodir_thumbnail"><img style="max-height:'.$max_size->h.'px;" alt="place image" src="'.$image->src.'" /></div>'; |
|
| 1579 | 1579 | } else {
|
| 1580 | - $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
|
| 1580 | + $html = '<div class="geodir_thumbnail" style="background-image:url(\''.$image->src.'\');"></div>'; |
|
| 1581 | 1581 | } |
| 1582 | 1582 | } |
| 1583 | 1583 | } |
@@ -1610,15 +1610,15 @@ discard block |
||
| 1610 | 1610 | |
| 1611 | 1611 | $post_type = get_post_type($post_id); |
| 1612 | 1612 | |
| 1613 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1613 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 1614 | 1614 | |
| 1615 | 1615 | if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
|
| 1616 | 1616 | |
| 1617 | - if ($taxonomy == $post_type . '_tags') {
|
|
| 1617 | + if ($taxonomy == $post_type.'_tags') {
|
|
| 1618 | 1618 | if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
|
| 1619 | 1619 | geodir_save_post_meta($post_id, 'post_tags', $terms); |
| 1620 | 1620 | } |
| 1621 | - } elseif ($taxonomy == $post_type . 'category') {
|
|
| 1621 | + } elseif ($taxonomy == $post_type.'category') {
|
|
| 1622 | 1622 | $srcharr = array('"', '\\');
|
| 1623 | 1623 | $replarr = array(""", '');
|
| 1624 | 1624 | |
@@ -1640,7 +1640,7 @@ discard block |
||
| 1640 | 1640 | |
| 1641 | 1641 | $wpdb->get_var( |
| 1642 | 1642 | $wpdb->prepare( |
| 1643 | - "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
| 1643 | + "DELETE from ".GEODIR_ICON_TABLE." WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
| 1644 | 1644 | $cat_ids_array_del |
| 1645 | 1645 | ) |
| 1646 | 1646 | ); |
@@ -1648,7 +1648,7 @@ discard block |
||
| 1648 | 1648 | |
| 1649 | 1649 | $post_term = $wpdb->get_col( |
| 1650 | 1650 | $wpdb->prepare( |
| 1651 | - "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
| 1651 | + "SELECT term_id FROM ".$wpdb->term_taxonomy." WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
| 1652 | 1652 | $cat_ids_array |
| 1653 | 1653 | ) |
| 1654 | 1654 | ); |
@@ -1670,16 +1670,16 @@ discard block |
||
| 1670 | 1670 | $lat = geodir_get_post_meta($post_id, 'post_latitude', true); |
| 1671 | 1671 | $lng = geodir_get_post_meta($post_id, 'post_longitude', true); |
| 1672 | 1672 | |
| 1673 | - $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
|
|
| 1674 | - $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true); |
|
| 1673 | + $timing = ' - '.date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
|
|
| 1674 | + $timing .= ' - '.geodir_get_post_meta($post_id, 'st_time', true); |
|
| 1675 | 1675 | |
| 1676 | 1676 | $json = '{';
|
| 1677 | - $json .= '"id":"' . $post_id . '",'; |
|
| 1678 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
| 1679 | - $json .= '"long_pos": "' . $lng . '",'; |
|
| 1680 | - $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",'; |
|
| 1681 | - $json .= '"icon":"' . $term_icon . '",'; |
|
| 1682 | - $json .= '"group":"catgroup' . $cat_id . '"'; |
|
| 1677 | + $json .= '"id":"'.$post_id.'",'; |
|
| 1678 | + $json .= '"lat_pos": "'.$lat.'",'; |
|
| 1679 | + $json .= '"long_pos": "'.$lng.'",'; |
|
| 1680 | + $json .= '"marker_id":"'.$post_id.'_'.$cat_id.'",'; |
|
| 1681 | + $json .= '"icon":"'.$term_icon.'",'; |
|
| 1682 | + $json .= '"group":"catgroup'.$cat_id.'"'; |
|
| 1683 | 1683 | $json .= '}'; |
| 1684 | 1684 | |
| 1685 | 1685 | |
@@ -1687,9 +1687,9 @@ discard block |
||
| 1687 | 1687 | $post_marker_json = $json; |
| 1688 | 1688 | |
| 1689 | 1689 | |
| 1690 | - 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)))) {
|
|
| 1690 | + 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)))) {
|
|
| 1691 | 1691 | |
| 1692 | - $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
|
|
| 1692 | + $json_query = $wpdb->prepare("UPDATE ".GEODIR_ICON_TABLE." SET
|
|
| 1693 | 1693 | post_title = %s, |
| 1694 | 1694 | json = %s |
| 1695 | 1695 | WHERE post_id = %d AND cat_id = %d ", |
@@ -1697,7 +1697,7 @@ discard block |
||
| 1697 | 1697 | |
| 1698 | 1698 | } else {
|
| 1699 | 1699 | |
| 1700 | - $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
|
|
| 1700 | + $json_query = $wpdb->prepare("INSERT INTO ".GEODIR_ICON_TABLE." SET
|
|
| 1701 | 1701 | post_id = %d, |
| 1702 | 1702 | post_title = %s, |
| 1703 | 1703 | cat_id = %d, |
@@ -1715,17 +1715,17 @@ discard block |
||
| 1715 | 1715 | if (!empty($post_term) && is_array($post_term)) {
|
| 1716 | 1716 | $categories = implode(',', $post_term);
|
| 1717 | 1717 | |
| 1718 | - if ($categories != '' && $categories != 0) $categories = ',' . $categories . ','; |
|
| 1718 | + if ($categories != '' && $categories != 0) $categories = ','.$categories.','; |
|
| 1719 | 1719 | |
| 1720 | 1720 | if (empty($post_marker_json)) |
| 1721 | 1721 | $post_marker_json = isset($json) ? $json : ''; |
| 1722 | 1722 | |
| 1723 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 1723 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) {
|
|
| 1724 | 1724 | |
| 1725 | 1725 | $wpdb->query( |
| 1726 | 1726 | $wpdb->prepare( |
| 1727 | - "UPDATE " . $table . " SET |
|
| 1728 | - " . $taxonomy . " = %s, |
|
| 1727 | + "UPDATE ".$table." SET |
|
| 1728 | + " . $taxonomy." = %s, |
|
| 1729 | 1729 | marker_json = %s |
| 1730 | 1730 | where post_id = %d", |
| 1731 | 1731 | array($categories, $post_marker_json, $post_id) |
@@ -1746,7 +1746,7 @@ discard block |
||
| 1746 | 1746 | |
| 1747 | 1747 | $wpdb->query( |
| 1748 | 1748 | $wpdb->prepare( |
| 1749 | - "UPDATE " . $table . " SET |
|
| 1749 | + "UPDATE ".$table." SET |
|
| 1750 | 1750 | default_category = %s |
| 1751 | 1751 | where post_id = %d", |
| 1752 | 1752 | array($categories[0], $post_id) |
@@ -1771,9 +1771,9 @@ discard block |
||
| 1771 | 1771 | |
| 1772 | 1772 | $wpdb->query( |
| 1773 | 1773 | $wpdb->prepare( |
| 1774 | - "INSERT INTO " . $table . " SET |
|
| 1774 | + "INSERT INTO ".$table." SET |
|
| 1775 | 1775 | post_id = %d, |
| 1776 | - " . $taxonomy . " = %s, |
|
| 1776 | + " . $taxonomy." = %s, |
|
| 1777 | 1777 | marker_json = %s ", |
| 1778 | 1778 | |
| 1779 | 1779 | array($post_id, $categories, $post_marker_json) |
@@ -1902,7 +1902,7 @@ discard block |
||
| 1902 | 1902 | } ?>"><img alt="bubble image" style="max-height:50px;" |
| 1903 | 1903 | src="<?php echo $post_images[0]; ?>"/></a></div> |
| 1904 | 1904 | <?php |
| 1905 | - }else{
|
|
| 1905 | + } else {
|
|
| 1906 | 1906 | echo '<div class="geodir-bubble_image"></div>'; |
| 1907 | 1907 | } |
| 1908 | 1908 | } else {
|
@@ -1910,7 +1910,7 @@ discard block |
||
| 1910 | 1910 | ?> |
| 1911 | 1911 | <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div> |
| 1912 | 1912 | <?php |
| 1913 | - }else{
|
|
| 1913 | + } else {
|
|
| 1914 | 1914 | echo '<div class="geodir-bubble_image"></div>'; |
| 1915 | 1915 | } |
| 1916 | 1916 | } |
@@ -1944,7 +1944,7 @@ discard block |
||
| 1944 | 1944 | * @param object $postinfo_obj The posts info as an object. |
| 1945 | 1945 | * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
| 1946 | 1946 | */ |
| 1947 | - do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
|
|
| 1947 | + do_action('geodir_infowindow_meta_after', $postinfo_obj, $post_preview);
|
|
| 1948 | 1948 | ?> |
| 1949 | 1949 | </div> |
| 1950 | 1950 | <?php |
@@ -1956,10 +1956,10 @@ discard block |
||
| 1956 | 1956 | <div class="geodir-bubble-meta-fade"></div> |
| 1957 | 1957 | |
| 1958 | 1958 | <div class="geodir-bubble-meta-bottom"> |
| 1959 | - <span class="geodir-bubble-rating"><?php echo $rating_star;?></span> |
|
| 1959 | + <span class="geodir-bubble-rating"><?php echo $rating_star; ?></span> |
|
| 1960 | 1960 | |
| 1961 | 1961 | <span |
| 1962 | - class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID);?></span> |
|
| 1962 | + class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID); ?></span> |
|
| 1963 | 1963 | <span class="geodir-bubble-reviews"><a href="<?php echo get_comments_link($ID); ?>" |
| 1964 | 1964 | class="geodir-pcomments"><i class="fa fa-comments"></i> |
| 1965 | 1965 | <?php echo get_comments_number($ID); ?> |
@@ -2024,11 +2024,11 @@ discard block |
||
| 2024 | 2024 | |
| 2025 | 2025 | $post_type = get_post_type($post_id); |
| 2026 | 2026 | |
| 2027 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2027 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2028 | 2028 | |
| 2029 | 2029 | $wpdb->query( |
| 2030 | 2030 | $wpdb->prepare( |
| 2031 | - "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d", |
|
| 2031 | + "UPDATE ".$table." SET post_status=%s WHERE post_id=%d", |
|
| 2032 | 2032 | array($status, $post_id) |
| 2033 | 2033 | ) |
| 2034 | 2034 | ); |
@@ -2100,18 +2100,18 @@ discard block |
||
| 2100 | 2100 | |
| 2101 | 2101 | $post_type = get_post_type($post_id); |
| 2102 | 2102 | |
| 2103 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2103 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2104 | 2104 | |
| 2105 | 2105 | $wpdb->query( |
| 2106 | 2106 | $wpdb->prepare( |
| 2107 | - "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2107 | + "UPDATE ".$table." SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2108 | 2108 | array($updatingpost, $temppost) |
| 2109 | 2109 | ) |
| 2110 | 2110 | ); |
| 2111 | 2111 | |
| 2112 | 2112 | $wpdb->query( |
| 2113 | 2113 | $wpdb->prepare( |
| 2114 | - "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2114 | + "UPDATE ".GEODIR_ICON_TABLE." SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2115 | 2115 | array($updatingpost, $temppost) |
| 2116 | 2116 | ) |
| 2117 | 2117 | ); |
@@ -2120,7 +2120,7 @@ discard block |
||
| 2120 | 2120 | |
| 2121 | 2121 | $wpdb->query( |
| 2122 | 2122 | $wpdb->prepare( |
| 2123 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2123 | + "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2124 | 2124 | array($updatingpost, $temppost) |
| 2125 | 2125 | ) |
| 2126 | 2126 | ); |
@@ -2158,12 +2158,12 @@ discard block |
||
| 2158 | 2158 | if (!in_array($post_type, $all_postypes)) |
| 2159 | 2159 | return false; |
| 2160 | 2160 | |
| 2161 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2161 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2162 | 2162 | |
| 2163 | 2163 | /* Delete custom post meta*/ |
| 2164 | 2164 | $wpdb->query( |
| 2165 | 2165 | $wpdb->prepare( |
| 2166 | - "DELETE FROM " . $table . " WHERE `post_id` = %d", |
|
| 2166 | + "DELETE FROM ".$table." WHERE `post_id` = %d", |
|
| 2167 | 2167 | array($deleted_postid) |
| 2168 | 2168 | ) |
| 2169 | 2169 | ); |
@@ -2172,7 +2172,7 @@ discard block |
||
| 2172 | 2172 | |
| 2173 | 2173 | $wpdb->query( |
| 2174 | 2174 | $wpdb->prepare( |
| 2175 | - "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d", |
|
| 2175 | + "DELETE FROM ".GEODIR_ICON_TABLE." WHERE `post_id` = %d", |
|
| 2176 | 2176 | array($deleted_postid) |
| 2177 | 2177 | ) |
| 2178 | 2178 | ); |
@@ -2182,7 +2182,7 @@ discard block |
||
| 2182 | 2182 | |
| 2183 | 2183 | $wpdb->query( |
| 2184 | 2184 | $wpdb->prepare( |
| 2185 | - "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d", |
|
| 2185 | + "DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE `post_id` = %d", |
|
| 2186 | 2186 | array($deleted_postid) |
| 2187 | 2187 | ) |
| 2188 | 2188 | ); |
@@ -2254,7 +2254,7 @@ discard block |
||
| 2254 | 2254 | */ |
| 2255 | 2255 | do_action('geodir_before_add_from_favorite', $post_id);
|
| 2256 | 2256 | |
| 2257 | - echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-addtofav geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>'; |
|
| 2257 | + echo '<a href="javascript:void(0);" title="'.$remove_favourite_text.'" class="geodir-addtofav geodir-removetofav-icon" onclick="javascript:addToFavourite(\''.$post_id.'\',\'remove\');"><i class="'.$favourite_icon.'"></i> '.$unfavourite_text.'</a>'; |
|
| 2258 | 2258 | |
| 2259 | 2259 | /** |
| 2260 | 2260 | * Called after adding the post from favourites. |
@@ -2333,7 +2333,7 @@ discard block |
||
| 2333 | 2333 | */ |
| 2334 | 2334 | do_action('geodir_before_remove_from_favorite', $post_id);
|
| 2335 | 2335 | |
| 2336 | - echo '<a href="javascript:void(0);" title="' . $add_favourite_text . '" class="geodir-addtofav geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>'; |
|
| 2336 | + echo '<a href="javascript:void(0);" title="'.$add_favourite_text.'" class="geodir-addtofav geodir-addtofav-icon" onclick="javascript:addToFavourite(\''.$post_id.'\',\'add\');"><i class="'.$favourite_icon.'"></i> '.$favourite_text.'</a>'; |
|
| 2337 | 2337 | |
| 2338 | 2338 | /** |
| 2339 | 2339 | * Called after removing the post from favourites. |
@@ -2428,24 +2428,24 @@ discard block |
||
| 2428 | 2428 | $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
| 2429 | 2429 | |
| 2430 | 2430 | if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
|
| 2431 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
|
| 2431 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>" ><a |
|
| 2432 | 2432 | class="geodir-removetofav-icon" href="javascript:void(0);" |
| 2433 | - onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');" |
|
| 2434 | - title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?> |
|
| 2433 | + onclick="javascript:addToFavourite(<?php echo $post_id; ?>,'remove');" |
|
| 2434 | + title="<?php echo $remove_favourite_text; ?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text; ?> |
|
| 2435 | 2435 | </a> </span><?php |
| 2436 | 2436 | |
| 2437 | 2437 | } else {
|
| 2438 | 2438 | |
| 2439 | 2439 | if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
|
| 2440 | - $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\''; |
|
| 2440 | + $script_text = 'javascript:window.location.href=\''.geodir_login_url().'\''; |
|
| 2441 | 2441 | } else |
| 2442 | - $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
|
|
| 2442 | + $script_text = 'javascript:addToFavourite('.$post_id.',\'add\')';
|
|
| 2443 | 2443 | |
| 2444 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
|
| 2444 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>"><a class="geodir-addtofav-icon" |
|
| 2445 | 2445 | href="javascript:void(0);" |
| 2446 | - onclick="<?php echo $script_text;?>" |
|
| 2447 | - title="<?php echo $add_favourite_text;?>"><i |
|
| 2448 | - class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span> |
|
| 2446 | + onclick="<?php echo $script_text; ?>" |
|
| 2447 | + title="<?php echo $add_favourite_text; ?>"><i |
|
| 2448 | + class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text; ?></a></span> |
|
| 2449 | 2449 | <?php } |
| 2450 | 2450 | } |
| 2451 | 2451 | } |
@@ -2475,7 +2475,7 @@ discard block |
||
| 2475 | 2475 | |
| 2476 | 2476 | $post_type = $taxonomy_obj->object_type[0]; |
| 2477 | 2477 | |
| 2478 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2478 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2479 | 2479 | |
| 2480 | 2480 | /** |
| 2481 | 2481 | * Filter to modify the 'join' query |
@@ -2498,8 +2498,8 @@ discard block |
||
| 2498 | 2498 | $where = apply_filters('geodir_cat_post_count_where', $where, $term);
|
| 2499 | 2499 | |
| 2500 | 2500 | $count_query = "SELECT count(post_id) FROM |
| 2501 | - " . $table . " as pd " . $join . " |
|
| 2502 | - WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
|
|
| 2501 | + " . $table." as pd ".$join." |
|
| 2502 | + WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id."',".$term->taxonomy.") ".$where;
|
|
| 2503 | 2503 | |
| 2504 | 2504 | $cat_post_count = $wpdb->get_var($count_query); |
| 2505 | 2505 | if (empty($cat_post_count) || is_wp_error($cat_post_count)) |
@@ -2582,7 +2582,7 @@ discard block |
||
| 2582 | 2582 | global $post; |
| 2583 | 2583 | $all_postypes = geodir_get_posttypes(); |
| 2584 | 2584 | if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
|
| 2585 | - return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>'; |
|
| 2585 | + return ' <a href="'.get_permalink($post->ID).'">'.READ_MORE_TXT.'</a>'; |
|
| 2586 | 2586 | } |
| 2587 | 2587 | |
| 2588 | 2588 | return $more; |
@@ -2609,14 +2609,14 @@ discard block |
||
| 2609 | 2609 | if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
|
| 2610 | 2610 | |
| 2611 | 2611 | $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy); |
| 2612 | - $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
| 2612 | + $table = $plugin_prefix.$geodir_post_type.'_detail'; |
|
| 2613 | 2613 | |
| 2614 | 2614 | $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']); |
| 2615 | - $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png'; |
|
| 2615 | + $term_icon = $path_parts['dirname'].'/cat_icon_'.$term_id.'.png'; |
|
| 2616 | 2616 | |
| 2617 | 2617 | $posts = $wpdb->get_results( |
| 2618 | 2618 | $wpdb->prepare( |
| 2619 | - "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
| 2619 | + "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM ".$table." WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
| 2620 | 2620 | array($term_id, $taxonomy) |
| 2621 | 2621 | ) |
| 2622 | 2622 | ); |
@@ -2628,19 +2628,19 @@ discard block |
||
| 2628 | 2628 | $lng = $post_obj->post_longitude; |
| 2629 | 2629 | |
| 2630 | 2630 | $json = '{';
|
| 2631 | - $json .= '"id":"' . $post_obj->post_id . '",'; |
|
| 2632 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
| 2633 | - $json .= '"long_pos": "' . $lng . '",'; |
|
| 2634 | - $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",'; |
|
| 2635 | - $json .= '"icon":"' . $term_icon . '",'; |
|
| 2636 | - $json .= '"group":"catgroup' . $term_id . '"'; |
|
| 2631 | + $json .= '"id":"'.$post_obj->post_id.'",'; |
|
| 2632 | + $json .= '"lat_pos": "'.$lat.'",'; |
|
| 2633 | + $json .= '"long_pos": "'.$lng.'",'; |
|
| 2634 | + $json .= '"marker_id":"'.$post_obj->post_id.'_'.$term_id.'",'; |
|
| 2635 | + $json .= '"icon":"'.$term_icon.'",'; |
|
| 2636 | + $json .= '"group":"catgroup'.$term_id.'"'; |
|
| 2637 | 2637 | $json .= '}'; |
| 2638 | 2638 | |
| 2639 | 2639 | if ($post_obj->default_category == $term_id) {
|
| 2640 | 2640 | |
| 2641 | 2641 | $wpdb->query( |
| 2642 | 2642 | $wpdb->prepare( |
| 2643 | - "UPDATE " . $table . " SET marker_json = %s where post_id = %d", |
|
| 2643 | + "UPDATE ".$table." SET marker_json = %s where post_id = %d", |
|
| 2644 | 2644 | array($json, $post_obj->post_id) |
| 2645 | 2645 | ) |
| 2646 | 2646 | ); |
@@ -2648,7 +2648,7 @@ discard block |
||
| 2648 | 2648 | |
| 2649 | 2649 | $wpdb->query( |
| 2650 | 2650 | $wpdb->prepare( |
| 2651 | - "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
| 2651 | + "UPDATE ".GEODIR_ICON_TABLE." SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
| 2652 | 2652 | array($json, $post_obj->post_id, $term_id) |
| 2653 | 2653 | ) |
| 2654 | 2654 | ); |
@@ -2772,7 +2772,7 @@ discard block |
||
| 2772 | 2772 | // print_r($uploads ) ; |
| 2773 | 2773 | $post_first_image = $wpdb->get_results( |
| 2774 | 2774 | $wpdb->prepare( |
| 2775 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
| 2775 | + "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
| 2776 | 2776 | ) |
| 2777 | 2777 | ); |
| 2778 | 2778 | |
@@ -2793,9 +2793,9 @@ discard block |
||
| 2793 | 2793 | |
| 2794 | 2794 | $post_type = get_post_type($post_id); |
| 2795 | 2795 | |
| 2796 | - $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2796 | + $table_name = $plugin_prefix.$post_type.'_detail'; |
|
| 2797 | 2797 | |
| 2798 | - $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
|
|
| 2798 | + $wpdb->query("UPDATE ".$table_name." SET featured_image='".$post_first_image[0]->file."' WHERE post_id =".$post_id);
|
|
| 2799 | 2799 | |
| 2800 | 2800 | $new_attachment_name = basename($post_first_image[0]->file); |
| 2801 | 2801 | |
@@ -2808,11 +2808,11 @@ discard block |
||
| 2808 | 2808 | wp_delete_attachment($post_thumbnail_id); |
| 2809 | 2809 | |
| 2810 | 2810 | } |
| 2811 | - $filename = $uploads['basedir'] . $post_first_image[0]->file; |
|
| 2811 | + $filename = $uploads['basedir'].$post_first_image[0]->file; |
|
| 2812 | 2812 | |
| 2813 | 2813 | $attachment = array( |
| 2814 | 2814 | 'post_mime_type' => $post_first_image[0]->mime_type, |
| 2815 | - 'guid' => $uploads['baseurl'] . $post_first_image[0]->file, |
|
| 2815 | + 'guid' => $uploads['baseurl'].$post_first_image[0]->file, |
|
| 2816 | 2816 | 'post_parent' => $post_id, |
| 2817 | 2817 | 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
|
| 2818 | 2818 | 'post_content' => '' |
@@ -2825,7 +2825,7 @@ discard block |
||
| 2825 | 2825 | |
| 2826 | 2826 | set_post_thumbnail($post_id, $id); |
| 2827 | 2827 | |
| 2828 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 2828 | + require_once(ABSPATH.'wp-admin/includes/image.php'); |
|
| 2829 | 2829 | wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename)); |
| 2830 | 2830 | |
| 2831 | 2831 | } |
@@ -2858,35 +2858,35 @@ discard block |
||
| 2858 | 2858 | $post_id = absint($_POST['post_id']); |
| 2859 | 2859 | $upload_dir = wp_upload_dir(); |
| 2860 | 2860 | $post_type = get_post_type($_POST['post_id']); |
| 2861 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2861 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2862 | 2862 | |
| 2863 | 2863 | $post_arr = $wpdb->get_results($wpdb->prepare( |
| 2864 | - "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
| 2864 | + "SELECT * FROM $wpdb->posts p JOIN ".$table." gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
| 2865 | 2865 | array($post_id) |
| 2866 | 2866 | ) |
| 2867 | 2867 | , ARRAY_A); |
| 2868 | 2868 | |
| 2869 | 2869 | $arrImages = $wpdb->get_results( |
| 2870 | 2870 | $wpdb->prepare( |
| 2871 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
| 2871 | + "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
| 2872 | 2872 | array('%image%', $post_id)
|
| 2873 | 2873 | ) |
| 2874 | 2874 | ); |
| 2875 | 2875 | if ($arrImages) {
|
| 2876 | 2876 | $image_arr = array(); |
| 2877 | 2877 | foreach ($arrImages as $img) {
|
| 2878 | - $image_arr[] = $upload_dir['baseurl'] . $img->file; |
|
| 2878 | + $image_arr[] = $upload_dir['baseurl'].$img->file; |
|
| 2879 | 2879 | } |
| 2880 | 2880 | $comma_separated = implode(",", $image_arr);
|
| 2881 | 2881 | $post_arr[0]['post_images'] = $comma_separated; |
| 2882 | 2882 | } |
| 2883 | 2883 | |
| 2884 | 2884 | |
| 2885 | - $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category']; |
|
| 2885 | + $cats = $post_arr[0][$post_arr[0]['post_type'].'category']; |
|
| 2886 | 2886 | $cat_arr = array_filter(explode(",", $cats));
|
| 2887 | 2887 | $trans_cat = array(); |
| 2888 | 2888 | foreach ($cat_arr as $cat) {
|
| 2889 | - $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false); |
|
| 2889 | + $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'].'category', false); |
|
| 2890 | 2890 | } |
| 2891 | 2891 | |
| 2892 | 2892 | |
@@ -2928,7 +2928,7 @@ discard block |
||
| 2928 | 2928 | |
| 2929 | 2929 | $get_data = $wpdb->get_results( |
| 2930 | 2930 | $wpdb->prepare( |
| 2931 | - "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'", |
|
| 2931 | + "SELECT htmlvar_name, field_type, extra_fields FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type=%s AND is_active='1'", |
|
| 2932 | 2932 | array($listing_type) |
| 2933 | 2933 | ) |
| 2934 | 2934 | ); |
@@ -2941,12 +2941,12 @@ discard block |
||
| 2941 | 2941 | |
| 2942 | 2942 | $extra_fields = unserialize($data->extra_fields); |
| 2943 | 2943 | |
| 2944 | - $prefix = $data->htmlvar_name . '_'; |
|
| 2944 | + $prefix = $data->htmlvar_name.'_'; |
|
| 2945 | 2945 | |
| 2946 | - $fields_info[$prefix . 'address'] = $data->field_type; |
|
| 2946 | + $fields_info[$prefix.'address'] = $data->field_type; |
|
| 2947 | 2947 | |
| 2948 | 2948 | if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) |
| 2949 | - $fields_info[$prefix . 'zip'] = $data->field_type; |
|
| 2949 | + $fields_info[$prefix.'zip'] = $data->field_type; |
|
| 2950 | 2950 | |
| 2951 | 2951 | } else {
|
| 2952 | 2952 | |
@@ -3044,13 +3044,13 @@ discard block |
||
| 3044 | 3044 | * @since 1.4.9 |
| 3045 | 3045 | * @package GeoDirectory |
| 3046 | 3046 | */ |
| 3047 | -function geodir_fb_like_thumbnail(){
|
|
| 3047 | +function geodir_fb_like_thumbnail() {
|
|
| 3048 | 3048 | |
| 3049 | 3049 | // return if not a single post |
| 3050 | - if(!is_single()){return;}
|
|
| 3050 | + if (!is_single()) {return; }
|
|
| 3051 | 3051 | |
| 3052 | 3052 | global $post; |
| 3053 | - if(isset($post->featured_image) && $post->featured_image){
|
|
| 3053 | + if (isset($post->featured_image) && $post->featured_image) {
|
|
| 3054 | 3054 | $upload_dir = wp_upload_dir(); |
| 3055 | 3055 | $thumb = $upload_dir['baseurl'].$post->featured_image; |
| 3056 | 3056 | echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n"; |
@@ -21,12 +21,13 @@ discard block |
||
| 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 |
||
| 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); |
@@ -428,15 +430,17 @@ discard block |
||
| 428 | 430 | |
| 429 | 431 | foreach ($request_info['post_category'] as $taxonomy => $cat) {
|
| 430 | 432 | |
| 431 | - if ($dummy) |
|
| 432 | - $post_category = $cat; |
|
| 433 | - else {
|
|
| 433 | + if ($dummy) { |
|
| 434 | + $post_category = $cat; |
|
| 435 | + } else {
|
|
| 434 | 436 | |
| 435 | - if (!is_array($cat) && strstr($cat, ',')) |
|
| 436 | - $cat = explode(',', $cat);
|
|
| 437 | + if (!is_array($cat) && strstr($cat, ',')) { |
|
| 438 | + $cat = explode(',', $cat); |
|
| 439 | + } |
|
| 437 | 440 | |
| 438 | - if (!empty($cat) && is_array($cat)) |
|
| 439 | - $post_category = array_map('intval', $cat);
|
|
| 441 | + if (!empty($cat) && is_array($cat)) { |
|
| 442 | + $post_category = array_map('intval', $cat); |
|
| 443 | + } |
|
| 440 | 444 | } |
| 441 | 445 | |
| 442 | 446 | wp_set_object_terms($last_post_id, $post_category, $taxonomy); |
@@ -454,11 +458,13 @@ discard block |
||
| 454 | 458 | if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
|
| 455 | 459 | $post_tags = explode(",", $request_info['post_tags']);
|
| 456 | 460 | } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
|
| 457 | - if ($dummy) |
|
| 458 | - $post_tags = $request_info['post_tags']; |
|
| 461 | + if ($dummy) { |
|
| 462 | + $post_tags = $request_info['post_tags']; |
|
| 463 | + } |
|
| 459 | 464 | } else {
|
| 460 | - if ($dummy) |
|
| 461 | - $post_tags = array($request_info['post_title']); |
|
| 465 | + if ($dummy) { |
|
| 466 | + $post_tags = array($request_info['post_title']); |
|
| 467 | + } |
|
| 462 | 468 | } |
| 463 | 469 | |
| 464 | 470 | if (is_array($post_tags)) {
|
@@ -545,15 +551,17 @@ discard block |
||
| 545 | 551 | |
| 546 | 552 | global $wpdb, $plugin_prefix, $post, $post_info; |
| 547 | 553 | |
| 548 | - if ($post_id == '' && !empty($post)) |
|
| 549 | - $post_id = $post->ID; |
|
| 554 | + if ($post_id == '' && !empty($post)) { |
|
| 555 | + $post_id = $post->ID; |
|
| 556 | + } |
|
| 550 | 557 | |
| 551 | 558 | $post_type = get_post_type($post_id); |
| 552 | 559 | |
| 553 | 560 | $all_postypes = geodir_get_posttypes(); |
| 554 | 561 | |
| 555 | - if (!in_array($post_type, $all_postypes)) |
|
| 556 | - return false; |
|
| 562 | + if (!in_array($post_type, $all_postypes)) { |
|
| 563 | + return false; |
|
| 564 | + } |
|
| 557 | 565 | |
| 558 | 566 | $table = $plugin_prefix . $post_type . '_detail'; |
| 559 | 567 | |
@@ -703,8 +711,9 @@ discard block |
||
| 703 | 711 | do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
|
| 704 | 712 | |
| 705 | 713 | return true; |
| 706 | - } else |
|
| 707 | - return false; |
|
| 714 | + } else { |
|
| 715 | + return false; |
|
| 716 | + } |
|
| 708 | 717 | |
| 709 | 718 | } |
| 710 | 719 | } |
@@ -758,8 +767,9 @@ discard block |
||
| 758 | 767 | } |
| 759 | 768 | |
| 760 | 769 | |
| 761 | - } else |
|
| 762 | - return false; |
|
| 770 | + } else { |
|
| 771 | + return false; |
|
| 772 | + } |
|
| 763 | 773 | } |
| 764 | 774 | } |
| 765 | 775 | |
@@ -790,8 +800,9 @@ discard block |
||
| 790 | 800 | $post_meta_set_query = ''; |
| 791 | 801 | |
| 792 | 802 | foreach ($postmeta as $mkey) {
|
| 793 | - if ($mval != '') |
|
| 794 | - $post_meta_set_query .= $mkey . " = '', "; |
|
| 803 | + if ($mval != '') { |
|
| 804 | + $post_meta_set_query .= $mkey . " = '', "; |
|
| 805 | + } |
|
| 795 | 806 | } |
| 796 | 807 | |
| 797 | 808 | $post_meta_set_query = trim($post_meta_set_query, ", "); |
@@ -821,8 +832,9 @@ discard block |
||
| 821 | 832 | return true; |
| 822 | 833 | } |
| 823 | 834 | |
| 824 | - } else |
|
| 825 | - return false; |
|
| 835 | + } else { |
|
| 836 | + return false; |
|
| 837 | + } |
|
| 826 | 838 | } |
| 827 | 839 | } |
| 828 | 840 | |
@@ -852,8 +864,9 @@ discard block |
||
| 852 | 864 | |
| 853 | 865 | $post_type = get_post_type($post_id); |
| 854 | 866 | |
| 855 | - if (!in_array($post_type, $all_postypes)) |
|
| 856 | - return false; |
|
| 867 | + if (!in_array($post_type, $all_postypes)) { |
|
| 868 | + return false; |
|
| 869 | + } |
|
| 857 | 870 | |
| 858 | 871 | $table = $plugin_prefix . $post_type . '_detail'; |
| 859 | 872 | |
@@ -862,8 +875,9 @@ discard block |
||
| 862 | 875 | |
| 863 | 876 | if ($meta_value && $meta_value !== '') {
|
| 864 | 877 | return maybe_serialize($meta_value); |
| 865 | - } else |
|
| 866 | - return $meta_value; |
|
| 878 | + } else { |
|
| 879 | + return $meta_value; |
|
| 880 | + } |
|
| 867 | 881 | } else {
|
| 868 | 882 | return false; |
| 869 | 883 | } |
@@ -997,7 +1011,7 @@ discard block |
||
| 997 | 1011 | if (isset($uploaded['error']) && empty($uploaded['error'])) {
|
| 998 | 1012 | $new_name = basename($uploaded['file']); |
| 999 | 1013 | $uploaded_file = $uploaded; |
| 1000 | - }else{
|
|
| 1014 | + } else{
|
|
| 1001 | 1015 | print_r($uploaded);exit; |
| 1002 | 1016 | } |
| 1003 | 1017 | $external_img = false; |
@@ -1022,8 +1036,9 @@ discard block |
||
| 1022 | 1036 | $file_path = $curr_img_dir . '/' . $filename; |
| 1023 | 1037 | } |
| 1024 | 1038 | |
| 1025 | - if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) |
|
| 1026 | - unlink($img_path); |
|
| 1039 | + if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) { |
|
| 1040 | + unlink($img_path); |
|
| 1041 | + } |
|
| 1027 | 1042 | } |
| 1028 | 1043 | |
| 1029 | 1044 | if (!empty($uploaded_file)) {
|
@@ -1052,8 +1067,9 @@ discard block |
||
| 1052 | 1067 | $attachment_set = ''; |
| 1053 | 1068 | |
| 1054 | 1069 | foreach ($attachment as $key => $val) {
|
| 1055 | - if ($val != '') |
|
| 1056 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
| 1070 | + if ($val != '') { |
|
| 1071 | + $attachment_set .= $key . " = '" . $val . "', "; |
|
| 1072 | + } |
|
| 1057 | 1073 | } |
| 1058 | 1074 | |
| 1059 | 1075 | $attachment_set = trim($attachment_set, ", "); |
@@ -1078,8 +1094,9 @@ discard block |
||
| 1078 | 1094 | ) |
| 1079 | 1095 | ); |
| 1080 | 1096 | |
| 1081 | - if ($menu_order == 1) |
|
| 1082 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
|
|
| 1097 | + if ($menu_order == 1) { |
|
| 1098 | + $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id))); |
|
| 1099 | + } |
|
| 1083 | 1100 | |
| 1084 | 1101 | } |
| 1085 | 1102 | |
@@ -1120,8 +1137,9 @@ discard block |
||
| 1120 | 1137 | |
| 1121 | 1138 | $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
|
| 1122 | 1139 | |
| 1123 | - if (!empty($invalid_files)) |
|
| 1124 | - geodir_remove_attachments($invalid_files); |
|
| 1140 | + if (!empty($invalid_files)) { |
|
| 1141 | + geodir_remove_attachments($invalid_files); |
|
| 1142 | + } |
|
| 1125 | 1143 | } |
| 1126 | 1144 | |
| 1127 | 1145 | } |
@@ -1174,16 +1192,19 @@ discard block |
||
| 1174 | 1192 | function geodir_delete_directory($dirname) |
| 1175 | 1193 | {
|
| 1176 | 1194 | $dir_handle = ''; |
| 1177 | - if (is_dir($dirname)) |
|
| 1178 | - $dir_handle = opendir($dirname); |
|
| 1179 | - if (!$dir_handle) |
|
| 1180 | - return false; |
|
| 1195 | + if (is_dir($dirname)) { |
|
| 1196 | + $dir_handle = opendir($dirname); |
|
| 1197 | + } |
|
| 1198 | + if (!$dir_handle) { |
|
| 1199 | + return false; |
|
| 1200 | + } |
|
| 1181 | 1201 | while ($file = readdir($dir_handle)) {
|
| 1182 | 1202 | if ($file != "." && $file != "..") {
|
| 1183 | - if (!is_dir($dirname . "/" . $file)) |
|
| 1184 | - unlink($dirname . "/" . $file); |
|
| 1185 | - else |
|
| 1186 | - geodir_delete_directory($dirname . '/' . $file); |
|
| 1203 | + if (!is_dir($dirname . "/" . $file)) { |
|
| 1204 | + unlink($dirname . "/" . $file); |
|
| 1205 | + } else { |
|
| 1206 | + geodir_delete_directory($dirname . '/' . $file); |
|
| 1207 | + } |
|
| 1187 | 1208 | } |
| 1188 | 1209 | } |
| 1189 | 1210 | closedir($dir_handle); |
@@ -1212,8 +1233,9 @@ discard block |
||
| 1212 | 1233 | foreach ($postcurr_images as $postimg) {
|
| 1213 | 1234 | $image_name_arr = explode('/', $postimg->src);
|
| 1214 | 1235 | $filename = end($image_name_arr); |
| 1215 | - if (file_exists($uploads_dir . '/' . $filename)) |
|
| 1216 | - unlink($uploads_dir . '/' . $filename); |
|
| 1236 | + if (file_exists($uploads_dir . '/' . $filename)) { |
|
| 1237 | + unlink($uploads_dir . '/' . $filename); |
|
| 1238 | + } |
|
| 1217 | 1239 | } |
| 1218 | 1240 | |
| 1219 | 1241 | } // endif |
@@ -1265,8 +1287,9 @@ discard block |
||
| 1265 | 1287 | |
| 1266 | 1288 | $file_info = pathinfo($file); |
| 1267 | 1289 | $sub_dir = ''; |
| 1268 | - if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1269 | - $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1290 | + if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') { |
|
| 1291 | + $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1292 | + } |
|
| 1270 | 1293 | |
| 1271 | 1294 | $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
| 1272 | 1295 | $uploads_baseurl = $uploads['baseurl']; |
@@ -1310,9 +1333,9 @@ discard block |
||
| 1310 | 1333 | $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
| 1311 | 1334 | } |
| 1312 | 1335 | |
| 1313 | - if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1314 | - $default_img = $default_catimg['src']; |
|
| 1315 | - elseif ($no_image) {
|
|
| 1336 | + if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) { |
|
| 1337 | + $default_img = $default_catimg['src']; |
|
| 1338 | + } elseif ($no_image) {
|
|
| 1316 | 1339 | $default_img = get_option('geodir_listing_no_img');
|
| 1317 | 1340 | } |
| 1318 | 1341 | |
@@ -1344,10 +1367,13 @@ discard block |
||
| 1344 | 1367 | } |
| 1345 | 1368 | } |
| 1346 | 1369 | |
| 1347 | - if (!empty($img_arr)) |
|
| 1348 | - return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1349 | - else |
|
| 1350 | - return false; |
|
| 1370 | + if (!empty($img_arr)) { |
|
| 1371 | + return (object)$img_arr; |
|
| 1372 | + } |
|
| 1373 | + //return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1374 | + else { |
|
| 1375 | + return false; |
|
| 1376 | + } |
|
| 1351 | 1377 | } |
| 1352 | 1378 | } |
| 1353 | 1379 | |
@@ -1374,8 +1400,9 @@ discard block |
||
| 1374 | 1400 | echo $html; |
| 1375 | 1401 | } elseif (!empty($html)) {
|
| 1376 | 1402 | return $html; |
| 1377 | - } else |
|
| 1378 | - return false; |
|
| 1403 | + } else { |
|
| 1404 | + return false; |
|
| 1405 | + } |
|
| 1379 | 1406 | } |
| 1380 | 1407 | } |
| 1381 | 1408 | |
@@ -1403,8 +1430,9 @@ discard block |
||
| 1403 | 1430 | } |
| 1404 | 1431 | $not_featured = ''; |
| 1405 | 1432 | $sub_dir = ''; |
| 1406 | - if (!$add_featured) |
|
| 1407 | - $not_featured = " AND is_featured = 0 "; |
|
| 1433 | + if (!$add_featured) { |
|
| 1434 | + $not_featured = " AND is_featured = 0 "; |
|
| 1435 | + } |
|
| 1408 | 1436 | |
| 1409 | 1437 | $arrImages = $wpdb->get_results( |
| 1410 | 1438 | $wpdb->prepare( |
@@ -1425,8 +1453,9 @@ discard block |
||
| 1425 | 1453 | |
| 1426 | 1454 | $file_info = pathinfo($attechment->file); |
| 1427 | 1455 | |
| 1428 | - if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1429 | - $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1456 | + if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') { |
|
| 1457 | + $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1458 | + } |
|
| 1430 | 1459 | |
| 1431 | 1460 | $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
| 1432 | 1461 | $uploads_baseurl = $uploads['baseurl']; |
@@ -1471,9 +1500,9 @@ discard block |
||
| 1471 | 1500 | $default_img = ''; |
| 1472 | 1501 | $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
| 1473 | 1502 | $post_type = get_post_type($post_id); |
| 1474 | - if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1475 | - $default_img = $default_catimg['src']; |
|
| 1476 | - elseif ($no_images) {
|
|
| 1503 | + if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) { |
|
| 1504 | + $default_img = $default_catimg['src']; |
|
| 1505 | + } elseif ($no_images) {
|
|
| 1477 | 1506 | $default_img = get_option('geodir_listing_no_img');
|
| 1478 | 1507 | } |
| 1479 | 1508 | |
@@ -1508,8 +1537,9 @@ discard block |
||
| 1508 | 1537 | $return_arr[] = (object)$img_arr; |
| 1509 | 1538 | |
| 1510 | 1539 | return $return_arr; |
| 1511 | - } else |
|
| 1512 | - return false; |
|
| 1540 | + } else { |
|
| 1541 | + return false; |
|
| 1542 | + } |
|
| 1513 | 1543 | } |
| 1514 | 1544 | } |
| 1515 | 1545 | } |
@@ -1570,8 +1600,9 @@ discard block |
||
| 1570 | 1600 | $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2); |
| 1571 | 1601 | } else if ($image->width < ($max_size->h)) {
|
| 1572 | 1602 | $width_per = round((($image->width / $max_size->w) * 100), 2); |
| 1573 | - } else |
|
| 1574 | - $width_per = 100; |
|
| 1603 | + } else { |
|
| 1604 | + $width_per = 100; |
|
| 1605 | + } |
|
| 1575 | 1606 | } |
| 1576 | 1607 | |
| 1577 | 1608 | if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
|
@@ -1586,8 +1617,9 @@ discard block |
||
| 1586 | 1617 | echo $html; |
| 1587 | 1618 | } elseif (!empty($html)) {
|
| 1588 | 1619 | return $html; |
| 1589 | - } else |
|
| 1590 | - return false; |
|
| 1620 | + } else { |
|
| 1621 | + return false; |
|
| 1622 | + } |
|
| 1591 | 1623 | } |
| 1592 | 1624 | } |
| 1593 | 1625 | |
@@ -1625,8 +1657,9 @@ discard block |
||
| 1625 | 1657 | $post_obj = get_post($post_id); |
| 1626 | 1658 | |
| 1627 | 1659 | $cat_ids = array('0');
|
| 1628 | - if (is_array($tt_ids)) |
|
| 1629 | - $cat_ids = $tt_ids; |
|
| 1660 | + if (is_array($tt_ids)) { |
|
| 1661 | + $cat_ids = $tt_ids; |
|
| 1662 | + } |
|
| 1630 | 1663 | |
| 1631 | 1664 | |
| 1632 | 1665 | if (!empty($cat_ids)) {
|
@@ -1683,8 +1716,9 @@ discard block |
||
| 1683 | 1716 | $json .= '}'; |
| 1684 | 1717 | |
| 1685 | 1718 | |
| 1686 | - if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true)) |
|
| 1687 | - $post_marker_json = $json; |
|
| 1719 | + if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true)) { |
|
| 1720 | + $post_marker_json = $json; |
|
| 1721 | + } |
|
| 1688 | 1722 | |
| 1689 | 1723 | |
| 1690 | 1724 | 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)))) {
|
@@ -1715,10 +1749,13 @@ discard block |
||
| 1715 | 1749 | if (!empty($post_term) && is_array($post_term)) {
|
| 1716 | 1750 | $categories = implode(',', $post_term);
|
| 1717 | 1751 | |
| 1718 | - if ($categories != '' && $categories != 0) $categories = ',' . $categories . ','; |
|
| 1752 | + if ($categories != '' && $categories != 0) { |
|
| 1753 | + $categories = ',' . $categories . ','; |
|
| 1754 | + } |
|
| 1719 | 1755 | |
| 1720 | - if (empty($post_marker_json)) |
|
| 1721 | - $post_marker_json = isset($json) ? $json : ''; |
|
| 1756 | + if (empty($post_marker_json)) { |
|
| 1757 | + $post_marker_json = isset($json) ? $json : ''; |
|
| 1758 | + } |
|
| 1722 | 1759 | |
| 1723 | 1760 | if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
| 1724 | 1761 | |
@@ -1757,8 +1794,9 @@ discard block |
||
| 1757 | 1794 | |
| 1758 | 1795 | } |
| 1759 | 1796 | |
| 1760 | - if ($default_category == '') |
|
| 1761 | - $default_category = $categories[0]; |
|
| 1797 | + if ($default_category == '') { |
|
| 1798 | + $default_category = $categories[0]; |
|
| 1799 | + } |
|
| 1762 | 1800 | |
| 1763 | 1801 | geodir_set_postcat_structure($post_id, $taxonomy, $default_category, ''); |
| 1764 | 1802 | |
@@ -1902,7 +1940,7 @@ discard block |
||
| 1902 | 1940 | } ?>"><img alt="bubble image" style="max-height:50px;" |
| 1903 | 1941 | src="<?php echo $post_images[0]; ?>"/></a></div> |
| 1904 | 1942 | <?php |
| 1905 | - }else{
|
|
| 1943 | + } else{
|
|
| 1906 | 1944 | echo '<div class="geodir-bubble_image"></div>'; |
| 1907 | 1945 | } |
| 1908 | 1946 | } else {
|
@@ -1910,7 +1948,7 @@ discard block |
||
| 1910 | 1948 | ?> |
| 1911 | 1949 | <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div> |
| 1912 | 1950 | <?php |
| 1913 | - }else{
|
|
| 1951 | + } else{
|
|
| 1914 | 1952 | echo '<div class="geodir-bubble_image"></div>'; |
| 1915 | 1953 | } |
| 1916 | 1954 | } |
@@ -2001,10 +2039,11 @@ discard block |
||
| 2001 | 2039 | */ |
| 2002 | 2040 | function geodir_new_post_default_status() |
| 2003 | 2041 | {
|
| 2004 | - if (get_option('geodir_new_post_default_status'))
|
|
| 2005 | - return get_option('geodir_new_post_default_status');
|
|
| 2006 | - else |
|
| 2007 | - return 'publish'; |
|
| 2042 | + if (get_option('geodir_new_post_default_status')) { |
|
| 2043 | + return get_option('geodir_new_post_default_status'); |
|
| 2044 | + } else { |
|
| 2045 | + return 'publish'; |
|
| 2046 | + } |
|
| 2008 | 2047 | |
| 2009 | 2048 | } |
| 2010 | 2049 | } |
@@ -2155,8 +2194,9 @@ discard block |
||
| 2155 | 2194 | |
| 2156 | 2195 | $all_postypes = geodir_get_posttypes(); |
| 2157 | 2196 | |
| 2158 | - if (!in_array($post_type, $all_postypes)) |
|
| 2159 | - return false; |
|
| 2197 | + if (!in_array($post_type, $all_postypes)) { |
|
| 2198 | + return false; |
|
| 2199 | + } |
|
| 2160 | 2200 | |
| 2161 | 2201 | $table = $plugin_prefix . $post_type . '_detail'; |
| 2162 | 2202 | |
@@ -2424,8 +2464,9 @@ discard block |
||
| 2424 | 2464 | $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
|
| 2425 | 2465 | |
| 2426 | 2466 | $user_meta_data = ''; |
| 2427 | - if (isset($current_user->data->ID)) |
|
| 2428 | - $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2467 | + if (isset($current_user->data->ID)) { |
|
| 2468 | + $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2469 | + } |
|
| 2429 | 2470 | |
| 2430 | 2471 | if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
|
| 2431 | 2472 | ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
@@ -2438,8 +2479,9 @@ discard block |
||
| 2438 | 2479 | |
| 2439 | 2480 | if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
|
| 2440 | 2481 | $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\''; |
| 2441 | - } else |
|
| 2442 | - $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
|
|
| 2482 | + } else { |
|
| 2483 | + $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')'; |
|
| 2484 | + } |
|
| 2443 | 2485 | |
| 2444 | 2486 | ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
| 2445 | 2487 | href="javascript:void(0);" |
@@ -2502,14 +2544,16 @@ discard block |
||
| 2502 | 2544 | WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
|
| 2503 | 2545 | |
| 2504 | 2546 | $cat_post_count = $wpdb->get_var($count_query); |
| 2505 | - if (empty($cat_post_count) || is_wp_error($cat_post_count)) |
|
| 2506 | - $cat_post_count = 0; |
|
| 2547 | + if (empty($cat_post_count) || is_wp_error($cat_post_count)) { |
|
| 2548 | + $cat_post_count = 0; |
|
| 2549 | + } |
|
| 2507 | 2550 | |
| 2508 | 2551 | return $cat_post_count; |
| 2509 | 2552 | |
| 2510 | - } else |
|
| 2511 | - |
|
| 2512 | - return $term->count; |
|
| 2553 | + } else { |
|
| 2554 | + |
|
| 2555 | + return $term->count; |
|
| 2556 | + } |
|
| 2513 | 2557 | } |
| 2514 | 2558 | return false; |
| 2515 | 2559 | |
@@ -2556,13 +2600,15 @@ discard block |
||
| 2556 | 2600 | return $length; |
| 2557 | 2601 | } |
| 2558 | 2602 | |
| 2559 | - if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
|
|
| 2560 | - $length = get_option('geodir_desc_word_limit');
|
|
| 2561 | - elseif (get_query_var('excerpt_length'))
|
|
| 2562 | - $length = get_query_var('excerpt_length');
|
|
| 2603 | + if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit')) { |
|
| 2604 | + $length = get_option('geodir_desc_word_limit'); |
|
| 2605 | + } elseif (get_query_var('excerpt_length')) { |
|
| 2606 | + $length = get_query_var('excerpt_length'); |
|
| 2607 | + } |
|
| 2563 | 2608 | |
| 2564 | - if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
|
|
| 2565 | - $length = get_option('geodir_author_desc_word_limit');
|
|
| 2609 | + if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit')) { |
|
| 2610 | + $length = get_option('geodir_author_desc_word_limit'); |
|
| 2611 | + } |
|
| 2566 | 2612 | |
| 2567 | 2613 | return $length; |
| 2568 | 2614 | } |
@@ -2695,10 +2741,11 @@ discard block |
||
| 2695 | 2741 | function geodir_lisiting_belong_to_user($listing_id, $user_id) |
| 2696 | 2742 | {
|
| 2697 | 2743 | $listing_author_id = geodir_get_listing_author($listing_id); |
| 2698 | - if ($listing_author_id == $user_id) |
|
| 2699 | - return true; |
|
| 2700 | - else |
|
| 2701 | - return false; |
|
| 2744 | + if ($listing_author_id == $user_id) { |
|
| 2745 | + return true; |
|
| 2746 | + } else { |
|
| 2747 | + return false; |
|
| 2748 | + } |
|
| 2702 | 2749 | |
| 2703 | 2750 | } |
| 2704 | 2751 | |
@@ -2747,10 +2794,11 @@ discard block |
||
| 2747 | 2794 | $pattern = '/-\d+x\d+\./'; |
| 2748 | 2795 | preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE); |
| 2749 | 2796 | |
| 2750 | - if (empty($matches)) |
|
| 2751 | - return ''; |
|
| 2752 | - else |
|
| 2753 | - return $file; |
|
| 2797 | + if (empty($matches)) { |
|
| 2798 | + return ''; |
|
| 2799 | + } else { |
|
| 2800 | + return $file; |
|
| 2801 | + } |
|
| 2754 | 2802 | |
| 2755 | 2803 | } |
| 2756 | 2804 | |
@@ -2835,8 +2883,9 @@ discard block |
||
| 2835 | 2883 | } else {
|
| 2836 | 2884 | //set_post_thumbnail($post_id,-1); |
| 2837 | 2885 | |
| 2838 | - if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) |
|
| 2839 | - wp_delete_attachment($post_thumbnail_id); |
|
| 2886 | + if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) { |
|
| 2887 | + wp_delete_attachment($post_thumbnail_id); |
|
| 2888 | + } |
|
| 2840 | 2889 | |
| 2841 | 2890 | } |
| 2842 | 2891 | } |
@@ -2921,8 +2970,9 @@ discard block |
||
| 2921 | 2970 | |
| 2922 | 2971 | global $wpdb; |
| 2923 | 2972 | |
| 2924 | - if ($listing_type == '') |
|
| 2925 | - $listing_type = 'gd_place'; |
|
| 2973 | + if ($listing_type == '') { |
|
| 2974 | + $listing_type = 'gd_place'; |
|
| 2975 | + } |
|
| 2926 | 2976 | |
| 2927 | 2977 | $fields_info = array(); |
| 2928 | 2978 | |
@@ -2945,8 +2995,9 @@ discard block |
||
| 2945 | 2995 | |
| 2946 | 2996 | $fields_info[$prefix . 'address'] = $data->field_type; |
| 2947 | 2997 | |
| 2948 | - if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) |
|
| 2949 | - $fields_info[$prefix . 'zip'] = $data->field_type; |
|
| 2998 | + if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { |
|
| 2999 | + $fields_info[$prefix . 'zip'] = $data->field_type; |
|
| 3000 | + } |
|
| 2950 | 3001 | |
| 2951 | 3002 | } else {
|
| 2952 | 3003 | |