Test Failed
Pull Request — master (#269)
by Viruthagiri
07:34
created
geodirectory_template_actions.php 1 patch
Spacing   +163 added lines, -163 removed lines patch added patch discarded remove patch
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
 
283 283
     //php
284 284
     if (!empty($tc['geodir_theme_compat_code'])) {
285
-        include_once('geodirectory-functions/compatibility/' . $tc['geodir_theme_compat_code'] . '.php');
285
+        include_once('geodirectory-functions/compatibility/'.$tc['geodir_theme_compat_code'].'.php');
286 286
     }
287 287
 
288 288
     //geodir_full_page_class
@@ -452,13 +452,13 @@  discard block
 block discarded – undo
452 452
 function geodir_action_wrapper_content_open($type = '', $id = '', $class = '')
453 453
 {
454 454
     if ($type == 'home-page' && $width = get_option('geodir_width_home_contant_section')) {
455
-        $width_css = 'style="width:' . $width . '%;"';
455
+        $width_css = 'style="width:'.$width.'%;"';
456 456
     } elseif ($type == 'listings-page' && $width = get_option('geodir_width_listing_contant_section')) {
457
-        $width_css = 'style="width:' . $width . '%;"';
457
+        $width_css = 'style="width:'.$width.'%;"';
458 458
     } elseif ($type == 'search-page' && $width = get_option('geodir_width_search_contant_section')) {
459
-        $width_css = 'style="width:' . $width . '%;"';
459
+        $width_css = 'style="width:'.$width.'%;"';
460 460
     } elseif ($type == 'author-page' && $width = get_option('geodir_width_author_contant_section')) {
461
-        $width_css = 'style="width:' . $width . '%;"';
461
+        $width_css = 'style="width:'.$width.'%;"';
462 462
     } else {
463 463
         $width_css = '';
464 464
     }
@@ -572,13 +572,13 @@  discard block
 block discarded – undo
572 572
 function geodir_action_sidebar_right_open($type = '', $id = '', $class = '', $itemtype = '')
573 573
 {
574 574
     if ($type == 'home-page' && $width = get_option('geodir_width_home_right_section')) {
575
-        $width_css = 'style="width:' . $width . '%;"';
575
+        $width_css = 'style="width:'.$width.'%;"';
576 576
     } elseif ($type == 'listings-page' && $width = get_option('geodir_width_listing_right_section')) {
577
-        $width_css = 'style="width:' . $width . '%;"';
577
+        $width_css = 'style="width:'.$width.'%;"';
578 578
     } elseif ($type == 'search-page' && $width = get_option('geodir_width_search_right_section')) {
579
-        $width_css = 'style="width:' . $width . '%;"';
579
+        $width_css = 'style="width:'.$width.'%;"';
580 580
     } elseif ($type == 'author-page' && $width = get_option('geodir_width_author_right_section')) {
581
-        $width_css = 'style="width:' . $width . '%;"';
581
+        $width_css = 'style="width:'.$width.'%;"';
582 582
     } else {
583 583
         $width_css = '';
584 584
     }
@@ -676,7 +676,7 @@  discard block
 block discarded – undo
676 676
         }
677 677
     }
678 678
 
679
-    $post = (object)$_REQUEST;
679
+    $post = (object) $_REQUEST;
680 680
 
681 681
 
682 682
     if (isset($post->video)) {
@@ -735,10 +735,10 @@  discard block
 block discarded – undo
735 735
 
736 736
     $json = '{';
737 737
     $json .= '"post_preview": "1",';
738
-    $json .= '"t": "' . $json_title . '",';
739
-    $json .= '"lt": "' . $post_latitude . '",';
740
-    $json .= '"ln": "' . $post_longitude . '",';
741
-    $json .= '"i":"' . $term_icon . '"';
738
+    $json .= '"t": "'.$json_title.'",';
739
+    $json .= '"lt": "'.$post_latitude.'",';
740
+    $json .= '"ln": "'.$post_longitude.'",';
741
+    $json .= '"i":"'.$term_icon.'"';
742 742
     $json .= '}';
743 743
 
744 744
     $post->marker_json = $json;
@@ -965,7 +965,7 @@  discard block
 block discarded – undo
965 965
      * @param string $class The class to use. Default is 'entry-header'.
966 966
      */
967 967
     $class_header = apply_filters('geodir_page_title_header_class', 'entry-header');
968
-    echo '<header class="' . $class_header . '"><h1 class="' . $class . '">' . stripslashes(get_the_title()) . '</h1></header>';
968
+    echo '<header class="'.$class_header.'"><h1 class="'.$class.'">'.stripslashes(get_the_title()).'</h1></header>';
969 969
 }
970 970
 
971 971
 
@@ -1019,7 +1019,7 @@  discard block
 block discarded – undo
1019 1019
                     $height = !empty($sizes) && isset($sizes[1]) ? $sizes[1] : 0;
1020 1020
 
1021 1021
                     if ($image && $width && $height) {
1022
-                        $image = (object)array('src' => $image, 'width' => $width, 'height' => $height);
1022
+                        $image = (object) array('src' => $image, 'width' => $width, 'height' => $height);
1023 1023
                     }
1024 1024
 
1025 1025
                     if (isset($image->src)) {
@@ -1031,9 +1031,9 @@  discard block
 block discarded – undo
1031 1031
 
1032 1032
                         $image_title = isset($image->title) ? $image->title : '';
1033 1033
 
1034
-                        $main_slides .= '<li><img src="' . geodir_plugin_url() . "/geodirectory-assets/images/spacer.gif" . '" alt="' . $image_title . '" title="' . $image_title . '" style="max-height:' . $spacer_height . 'px;margin:0 auto;" />';
1035
-                        $main_slides .= '<img src="' . $image->src . '" alt="' . $image_title . '" title="' . $image_title . '" style="max-height:400px;margin:0 auto;" /></li>';
1036
-                        $nav_slides .= '<li><img src="' . $image->src . '" alt="' . $image_title . '" title="' . $image_title . '" style="max-height:48px;margin:0 auto;" /></li>';
1034
+                        $main_slides .= '<li><img src="'.geodir_plugin_url()."/geodirectory-assets/images/spacer.gif".'" alt="'.$image_title.'" title="'.$image_title.'" style="max-height:'.$spacer_height.'px;margin:0 auto;" />';
1035
+                        $main_slides .= '<img src="'.$image->src.'" alt="'.$image_title.'" title="'.$image_title.'" style="max-height:400px;margin:0 auto;" /></li>';
1036
+                        $nav_slides .= '<li><img src="'.$image->src.'" alt="'.$image_title.'" title="'.$image_title.'" style="max-height:48px;margin:0 auto;" /></li>';
1037 1037
                         $slides++;
1038 1038
                     }
1039 1039
                 }
@@ -1052,10 +1052,10 @@  discard block
 block discarded – undo
1052 1052
                 } else {
1053 1053
                     $spacer_height = ((400 - $image->height) / 2);
1054 1054
                 }
1055
-                $caption = '';//(!empty($image->caption)) ? '<p class="flex-caption">'.$image->caption.'</p>' : '';
1056
-                $main_slides .= '<li><img src="' . geodir_plugin_url() . "/geodirectory-assets/images/spacer.gif" . '" alt="' . $image->title . '" title="' . $image->title . '" style="max-height:' . $spacer_height . 'px;margin:0 auto;" />';
1057
-                $main_slides .= '<img src="' . $image->src . '" alt="' . $image->title . '" title="' . $image->title . '" style="max-height:400px;margin:0 auto;" />'.$caption.'</li>';
1058
-                $nav_slides .= '<li><img src="' . $image->src . '" alt="' . $image->title . '" title="' . $image->title . '" style="max-height:48px;margin:0 auto;" /></li>';
1055
+                $caption = ''; //(!empty($image->caption)) ? '<p class="flex-caption">'.$image->caption.'</p>' : '';
1056
+                $main_slides .= '<li><img src="'.geodir_plugin_url()."/geodirectory-assets/images/spacer.gif".'" alt="'.$image->title.'" title="'.$image->title.'" style="max-height:'.$spacer_height.'px;margin:0 auto;" />';
1057
+                $main_slides .= '<img src="'.$image->src.'" alt="'.$image->title.'" title="'.$image->title.'" style="max-height:400px;margin:0 auto;" />'.$caption.'</li>';
1058
+                $nav_slides .= '<li><img src="'.$image->src.'" alt="'.$image->title.'" title="'.$image->title.'" style="max-height:48px;margin:0 auto;" /></li>';
1059 1059
                 $slides++;
1060 1060
             }
1061 1061
         }// endfore
@@ -1090,7 +1090,7 @@  discard block
 block discarded – undo
1090 1090
  */
1091 1091
 function geodir_action_details_taxonomies()
1092 1092
 {
1093
-    global $preview, $post;?>
1093
+    global $preview, $post; ?>
1094 1094
     <p class="geodir_post_taxomomies clearfix">
1095 1095
     <?php
1096 1096
     $taxonomies = array();
@@ -1099,11 +1099,11 @@  discard block
 block discarded – undo
1099 1099
 
1100 1100
     if ($preview && !$is_backend_preview) {
1101 1101
         $post_type = $post->listing_type;
1102
-        $post_taxonomy = $post_type . 'category';
1102
+        $post_taxonomy = $post_type.'category';
1103 1103
         $post->{$post_taxonomy} = $post->post_category[$post_taxonomy];
1104 1104
     } else {
1105 1105
         $post_type = $post->post_type;
1106
-        $post_taxonomy = $post_type . 'category';
1106
+        $post_taxonomy = $post_type.'category';
1107 1107
     }
1108 1108
 //{	
1109 1109
     $post_type_info = get_post_type_object($post_type);
@@ -1111,7 +1111,7 @@  discard block
 block discarded – undo
1111 1111
 
1112 1112
     if (!empty($post->post_tags)) {
1113 1113
 
1114
-        if (taxonomy_exists($post_type . '_tags')):
1114
+        if (taxonomy_exists($post_type.'_tags')):
1115 1115
             $links = array();
1116 1116
             $terms = array();
1117 1117
             // to limit post tags
@@ -1138,8 +1138,8 @@  discard block
 block discarded – undo
1138 1138
                 $post_term = trim($post_term);
1139 1139
 
1140 1140
                 $priority_location = false;
1141
-                if ($insert_term = term_exists($post_term, $post_type . '_tags')) {
1142
-                    $term = get_term_by('id', $insert_term['term_id'], $post_type . '_tags');
1141
+                if ($insert_term = term_exists($post_term, $post_type.'_tags')) {
1142
+                    $term = get_term_by('id', $insert_term['term_id'], $post_type.'_tags');
1143 1143
                 } else {
1144 1144
                     $post_country = isset($_REQUEST['post_country']) && $_REQUEST['post_country'] != '' ? sanitize_text_field($_REQUEST['post_country']) : NULL;
1145 1145
                     $post_region = isset($_REQUEST['post_region']) && $_REQUEST['post_region'] != '' ? sanitize_text_field($_REQUEST['post_region']) : NULL;
@@ -1149,10 +1149,10 @@  discard block
 block discarded – undo
1149 1149
                     $match_city = $post_city && sanitize_title($post_term) == sanitize_title($post_city) ? true : false;
1150 1150
                     if ($match_country || $match_region || $match_city) {
1151 1151
                         $priority_location = true;
1152
-                        $term = get_term_by('name', $post_term, $post_type . '_tags');
1152
+                        $term = get_term_by('name', $post_term, $post_type.'_tags');
1153 1153
                     } else {
1154
-                        $insert_term = wp_insert_term($post_term, $post_type . '_tags');
1155
-                        $term = get_term_by('name', $post_term, $post_type . '_tags');
1154
+                        $insert_term = wp_insert_term($post_term, $post_type.'_tags');
1155
+                        $term = get_term_by('name', $post_term, $post_type.'_tags');
1156 1156
                     }
1157 1157
                 }
1158 1158
 
@@ -1169,12 +1169,12 @@  discard block
 block discarded – undo
1169 1169
                          * @param string $tag_link The tag link html.
1170 1170
                          * @param object $term The tag term object.
1171 1171
                          */
1172
-                        $tag_link = apply_filters('geodir_details_taxonomies_tag_link',$tag_link,$term);
1172
+                        $tag_link = apply_filters('geodir_details_taxonomies_tag_link', $tag_link, $term);
1173 1173
                         $links[] = $tag_link;
1174 1174
                     } else {
1175
-                        $tag_link = "<a href='" . esc_attr(get_term_link($term->term_id, $term->taxonomy)) . "'>$term->name</a>";
1175
+                        $tag_link = "<a href='".esc_attr(get_term_link($term->term_id, $term->taxonomy))."'>$term->name</a>";
1176 1176
                         /** This action is documented in geodirectory-template_actions.php */
1177
-                        $tag_link = apply_filters('geodir_details_taxonomies_tag_link',$tag_link,$term);
1177
+                        $tag_link = apply_filters('geodir_details_taxonomies_tag_link', $tag_link, $term);
1178 1178
                         $links[] = $tag_link;
1179 1179
                     }
1180 1180
                     $terms[] = $term;
@@ -1184,7 +1184,7 @@  discard block
 block discarded – undo
1184 1184
             if (!isset($listing_label)) {
1185 1185
                 $listing_label = '';
1186 1186
             }
1187
-            $taxonomies[$post_type . '_tags'] = wp_sprintf(__('%s Tags: %l', 'geodirectory'), geodir_ucwords($listing_label), $links, (object)$terms);
1187
+            $taxonomies[$post_type.'_tags'] = wp_sprintf(__('%s Tags: %l', 'geodirectory'), geodir_ucwords($listing_label), $links, (object) $terms);
1188 1188
         endif;
1189 1189
 
1190 1190
     }
@@ -1212,7 +1212,7 @@  discard block
 block discarded – undo
1212 1212
                     $term = get_term_by('id', $post_term, $post_taxonomy);
1213 1213
 
1214 1214
                     if (is_object($term)) {
1215
-                        $term_link = "<a href='" . esc_attr(get_term_link($term, $post_taxonomy)) . "'>$term->name</a>";
1215
+                        $term_link = "<a href='".esc_attr(get_term_link($term, $post_taxonomy))."'>$term->name</a>";
1216 1216
                         /**
1217 1217
                          * Filter the category name on the details page.
1218 1218
                          *
@@ -1220,7 +1220,7 @@  discard block
 block discarded – undo
1220 1220
                          * @param string $term_link The link html to the category.
1221 1221
                          * @param object $term The category term object.
1222 1222
                          */
1223
-                        $term_link = apply_filters('geodir_details_taxonomies_cat_link',$term_link,$term);
1223
+                        $term_link = apply_filters('geodir_details_taxonomies_cat_link', $term_link, $term);
1224 1224
                         $links[] = $term_link;
1225 1225
                         $terms[] = $term;
1226 1226
                     }
@@ -1238,7 +1238,7 @@  discard block
 block discarded – undo
1238 1238
         if (!isset($listing_label)) {
1239 1239
             $listing_label = '';
1240 1240
         }
1241
-        $taxonomies[$post_taxonomy] = wp_sprintf(__('%s Category: %l', 'geodirectory'), geodir_ucwords($listing_label), $links, (object)$terms);
1241
+        $taxonomies[$post_taxonomy] = wp_sprintf(__('%s Category: %l', 'geodirectory'), geodir_ucwords($listing_label), $links, (object) $terms);
1242 1242
 
1243 1243
     }
1244 1244
 
@@ -1251,14 +1251,14 @@  discard block
 block discarded – undo
1251 1251
      * @param string $listing_label The post type label.
1252 1252
      * @param string $listing_label The post type label with ucwords function.
1253 1253
      */
1254
-    $taxonomies = apply_filters('geodir_details_taxonomies_output',$taxonomies,$post_type,$listing_label,geodir_ucwords($listing_label));
1254
+    $taxonomies = apply_filters('geodir_details_taxonomies_output', $taxonomies, $post_type, $listing_label, geodir_ucwords($listing_label));
1255 1255
 
1256 1256
     if (isset($taxonomies[$post_taxonomy])) {
1257
-        echo '<span class="geodir-category">' . $taxonomies[$post_taxonomy] . '</span>';
1257
+        echo '<span class="geodir-category">'.$taxonomies[$post_taxonomy].'</span>';
1258 1258
     }
1259 1259
 
1260
-    if (isset($taxonomies[$post_type . '_tags']))
1261
-        echo '<span class="geodir-tags">' . $taxonomies[$post_type . '_tags'] . '</span>';
1260
+    if (isset($taxonomies[$post_type.'_tags']))
1261
+        echo '<span class="geodir-tags">'.$taxonomies[$post_type.'_tags'].'</span>';
1262 1262
 
1263 1263
     ?>
1264 1264
     </p><?php
@@ -1279,11 +1279,11 @@  discard block
 block discarded – undo
1279 1279
  * @param object $post Optional. The post object or blank.
1280 1280
  * @package GeoDirectory
1281 1281
  */
1282
-function geodir_action_details_micordata($post='')
1282
+function geodir_action_details_micordata($post = '')
1283 1283
 {
1284 1284
 
1285 1285
     global $preview;
1286
-    if(empty($post)){global $post;}
1286
+    if (empty($post)) {global $post; }
1287 1287
     if ($preview || !geodir_is_page('detail')) {
1288 1288
         return;
1289 1289
     }
@@ -1304,7 +1304,7 @@  discard block
 block discarded – undo
1304 1304
                 "description" => $review->comment_content,
1305 1305
                 "reviewRating" => array(
1306 1306
                     "@type" => "Rating",
1307
-                    "bestRating" => "5",// @todo this will need to be filtered for review manager if user changes the score.
1307
+                    "bestRating" => "5", // @todo this will need to be filtered for review manager if user changes the score.
1308 1308
                     "ratingValue" => geodir_get_commentoverall($review->comment_ID),
1309 1309
                     "worstRating" => "1"
1310 1310
                 )
@@ -1332,13 +1332,13 @@  discard block
 block discarded – undo
1332 1332
     }
1333 1333
     //print_r($post);
1334 1334
     // external links
1335
-    $external_links =  array();
1335
+    $external_links = array();
1336 1336
     $external_links[] = $post->geodir_website;
1337 1337
     $external_links[] = $post->geodir_twitter;
1338 1338
     $external_links[] = $post->geodir_facebook;
1339 1339
     $external_links = array_filter($external_links);
1340 1340
 
1341
-    if(!empty($external_links)){
1341
+    if (!empty($external_links)) {
1342 1342
         $external_links = array_values($external_links);
1343 1343
     }
1344 1344
 
@@ -1348,17 +1348,17 @@  discard block
 block discarded – undo
1348 1348
 
1349 1349
     // schema type
1350 1350
     $schema_type = 'LocalBusiness';
1351
-    if(isset($post->default_category) && $post->default_category){
1351
+    if (isset($post->default_category) && $post->default_category) {
1352 1352
         $cat_schema = get_tax_meta($post->default_category, 'ct_cat_schema', false, $post->post_type);
1353
-        if($cat_schema){$schema_type = $cat_schema;}
1354
-        if(!$schema_type && $post->post_type=='gd_event'){$schema_type = 'Event';}
1353
+        if ($cat_schema) {$schema_type = $cat_schema; }
1354
+        if (!$schema_type && $post->post_type == 'gd_event') {$schema_type = 'Event'; }
1355 1355
     }
1356 1356
 
1357 1357
     $schema = array();
1358 1358
     $schema['@context'] = "http://schema.org";
1359 1359
     $schema['@type'] = $schema_type;
1360 1360
     $schema['name'] = $post->post_name;
1361
-    $schema['description'] = wp_strip_all_tags( $post->post_content, true );
1361
+    $schema['description'] = wp_strip_all_tags($post->post_content, true);
1362 1362
     $schema['telephone'] = $post->geodir_contact;
1363 1363
     $schema['url'] = $c_url;
1364 1364
     $schema['sameAs'] = $external_links;
@@ -1372,7 +1372,7 @@  discard block
 block discarded – undo
1372 1372
         "postalCode" => $post->post_zip
1373 1373
     );
1374 1374
 
1375
-    if($post->post_latitude && $post->post_longitude) {
1375
+    if ($post->post_latitude && $post->post_longitude) {
1376 1376
         $schema['geo'] = array(
1377 1377
             "@type" => "GeoCoordinates",
1378 1378
             "latitude" => $post->post_latitude,
@@ -1380,7 +1380,7 @@  discard block
 block discarded – undo
1380 1380
         );
1381 1381
     }
1382 1382
 
1383
-    if($post_avgratings) {
1383
+    if ($post_avgratings) {
1384 1384
         $schema['aggregateRating'] = array(
1385 1385
             "@type" => "AggregateRating",
1386 1386
             "ratingValue" => $post_avgratings,
@@ -1399,10 +1399,10 @@  discard block
 block discarded – undo
1399 1399
      * @param array $schema The array of schema data to be filtered.
1400 1400
      * @param object $post The post object.
1401 1401
      */
1402
-    $schema = apply_filters('geodir_details_schema', $schema,$post);
1402
+    $schema = apply_filters('geodir_details_schema', $schema, $post);
1403 1403
 
1404 1404
 
1405
-    echo '<script type="application/ld+json">' . json_encode($schema) . '</script>';
1405
+    echo '<script type="application/ld+json">'.json_encode($schema).'</script>';
1406 1406
 
1407 1407
 }
1408 1408
 
@@ -1423,9 +1423,9 @@  discard block
 block discarded – undo
1423 1423
     ?>
1424 1424
     <div class="geodir-pos_navigation clearfix">
1425 1425
     <div
1426
-        class="geodir-post_left"><?php previous_post_link('%link', '' . __('Previous', 'geodirectory'), false) ?></div>
1426
+        class="geodir-post_left"><?php previous_post_link('%link', ''.__('Previous', 'geodirectory'), false) ?></div>
1427 1427
     <div
1428
-        class="geodir-post_right"><?php next_post_link('%link', __('Next', 'geodirectory') . '', false) ?></div>
1428
+        class="geodir-post_right"><?php next_post_link('%link', __('Next', 'geodirectory').'', false) ?></div>
1429 1429
     </div><?php
1430 1430
 }
1431 1431
 
@@ -1494,12 +1494,12 @@  discard block
 block discarded – undo
1494 1494
     $gd_post_type = geodir_get_current_posttype();
1495 1495
     $post_type_info = get_post_type_object($gd_post_type);
1496 1496
 
1497
-    $add_string_in_title = __('All', 'geodirectory') . ' ';
1497
+    $add_string_in_title = __('All', 'geodirectory').' ';
1498 1498
     if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
1499
-        $add_string_in_title = __('My Favorite', 'geodirectory') . ' ';
1499
+        $add_string_in_title = __('My Favorite', 'geodirectory').' ';
1500 1500
     }
1501 1501
 
1502
-    $list_title = $add_string_in_title . __(ucfirst($post_type_info->labels->name), 'geodirectory');
1502
+    $list_title = $add_string_in_title.__(ucfirst($post_type_info->labels->name), 'geodirectory');
1503 1503
     $single_name = $post_type_info->labels->singular_name;
1504 1504
 
1505 1505
     $taxonomy = geodir_get_taxonomies($gd_post_type, true);
@@ -1527,12 +1527,12 @@  discard block
 block discarded – undo
1527 1527
         $current_term = get_term_by('slug', $term, $taxonomy[0]);
1528 1528
         if (!empty($current_term)) {
1529 1529
             $current_term_name = __(ucfirst($current_term->name), 'geodirectory');
1530
-            if ($current_term_name != '' && $location_name != '' && isset($current_term->taxonomy) && $current_term->taxonomy == $gd_post_type . 'category') {
1530
+            if ($current_term_name != '' && $location_name != '' && isset($current_term->taxonomy) && $current_term->taxonomy == $gd_post_type.'category') {
1531 1531
                 $location_last_char = substr($location_name, -1);
1532 1532
                 $location_name_attach = geodir_strtolower($location_last_char) == 's' ? __("'", 'geodirectory') : __("'s", 'geodirectory');
1533
-                $list_title .= __(' in', 'geodirectory') . ' ' . $location_name . $location_name_attach . ' ' . $current_term_name;
1533
+                $list_title .= __(' in', 'geodirectory').' '.$location_name.$location_name_attach.' '.$current_term_name;
1534 1534
             } else {
1535
-                $list_title .= __(' in', 'geodirectory') . " '" . $current_term_name . "'";
1535
+                $list_title .= __(' in', 'geodirectory')." '".$current_term_name."'";
1536 1536
             }
1537 1537
         } else {
1538 1538
             if (count($taxonomy) > 1) {
@@ -1540,12 +1540,12 @@  discard block
 block discarded – undo
1540 1540
 
1541 1541
                 if (!empty($current_term)) {
1542 1542
                     $current_term_name = __(ucfirst($current_term->name), 'geodirectory');
1543
-                    if ($current_term_name != '' && $location_name != '' && isset($current_term->taxonomy) && $current_term->taxonomy == $gd_post_type . 'category') {
1543
+                    if ($current_term_name != '' && $location_name != '' && isset($current_term->taxonomy) && $current_term->taxonomy == $gd_post_type.'category') {
1544 1544
                         $location_last_char = substr($location_name, -1);
1545 1545
                         $location_name_attach = geodir_strtolower($location_last_char) == 's' ? __("'", 'geodirectory') : __("'s", 'geodirectory');
1546
-                        $list_title .= __(' in', 'geodirectory') . ' ' . $location_name . $location_name_attach . ' ' . $current_term_name;
1546
+                        $list_title .= __(' in', 'geodirectory').' '.$location_name.$location_name_attach.' '.$current_term_name;
1547 1547
                     } else {
1548
-                        $list_title .= __(' in', 'geodirectory') . " '" . $current_term_name . "'";
1548
+                        $list_title .= __(' in', 'geodirectory')." '".$current_term_name."'";
1549 1549
                     }
1550 1550
                 }
1551 1551
             }
@@ -1573,7 +1573,7 @@  discard block
 block discarded – undo
1573 1573
                 $gd_city = __(geodir_ucwords($gd_city), 'geodirectory');
1574 1574
             }
1575 1575
 
1576
-            $list_title .= __(' in', 'geodirectory') . " '" . $gd_city . "'";
1576
+            $list_title .= __(' in', 'geodirectory')." '".$gd_city."'";
1577 1577
         } else if ($gd_region != '') {
1578 1578
             if ($gd_region_actual != '') {
1579 1579
                 $gd_region = $gd_region_actual;
@@ -1583,7 +1583,7 @@  discard block
 block discarded – undo
1583 1583
                 $gd_region = __(geodir_ucwords($gd_region), 'geodirectory');
1584 1584
             }
1585 1585
 
1586
-            $list_title .= __(' in', 'geodirectory') . " '" . $gd_region . "'";
1586
+            $list_title .= __(' in', 'geodirectory')." '".$gd_region."'";
1587 1587
         } else if ($gd_country != '') {
1588 1588
             if ($gd_country_actual != '') {
1589 1589
                 $gd_country = $gd_country_actual;
@@ -1593,12 +1593,12 @@  discard block
 block discarded – undo
1593 1593
                 $gd_country = __(geodir_ucwords($gd_country), 'geodirectory');
1594 1594
             }
1595 1595
 
1596
-            $list_title .= __(' in', 'geodirectory') . " '" . $gd_country . "'";
1596
+            $list_title .= __(' in', 'geodirectory')." '".$gd_country."'";
1597 1597
         }
1598 1598
     }
1599 1599
 
1600 1600
     if (is_search()) {
1601
-        $list_title = __('Search', 'geodirectory') . ' ' . __(ucfirst($post_type_info->labels->name), 'geodirectory') . __(' For :', 'geodirectory') . " '" . get_search_query() . "'";
1601
+        $list_title = __('Search', 'geodirectory').' '.__(ucfirst($post_type_info->labels->name), 'geodirectory').__(' For :', 'geodirectory')." '".get_search_query()."'";
1602 1602
     }
1603 1603
     /** This action is documented in geodirectory_template_actions.php */
1604 1604
     $class = apply_filters('geodir_page_title_class', 'entry-title fn');
@@ -1607,26 +1607,26 @@  discard block
 block discarded – undo
1607 1607
 
1608 1608
 
1609 1609
     $title = $list_title;
1610
-    if(geodir_is_page('pt')){
1610
+    if (geodir_is_page('pt')) {
1611 1611
         $gd_page = 'pt';
1612
-        $title  = (get_option('geodir_page_title_pt')) ? get_option('geodir_page_title_pt') : $title;
1612
+        $title = (get_option('geodir_page_title_pt')) ? get_option('geodir_page_title_pt') : $title;
1613 1613
     }
1614
-    elseif(geodir_is_page('listing')){
1614
+    elseif (geodir_is_page('listing')) {
1615 1615
         $gd_page = 'listing';
1616 1616
         global $wp_query;
1617 1617
         $current_term = $wp_query->get_queried_object();
1618
-        if (strpos($current_term->taxonomy,'_tags') !== false) {
1618
+        if (strpos($current_term->taxonomy, '_tags') !== false) {
1619 1619
             $title = (get_option('geodir_page_title_tag-listing')) ? get_option('geodir_page_title_tag-listing') : $title;
1620
-        }else{
1620
+        } else {
1621 1621
             $title = (get_option('geodir_page_title_cat-listing')) ? get_option('geodir_page_title_cat-listing') : $title;
1622 1622
         }
1623 1623
 
1624 1624
     }
1625
-    elseif(geodir_is_page('author')){
1625
+    elseif (geodir_is_page('author')) {
1626 1626
         $gd_page = 'author';
1627
-        if(isset($_REQUEST['list']) && $_REQUEST['list']=='favourite'){
1627
+        if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
1628 1628
             $title = (get_option('geodir_page_title_favorite')) ? get_option('geodir_page_title_favorite') : $title;
1629
-        }else{
1629
+        } else {
1630 1630
             $title = (get_option('geodir_page_title_author')) ? get_option('geodir_page_title_author') : $title;
1631 1631
         }
1632 1632
 
@@ -1640,16 +1640,16 @@  discard block
 block discarded – undo
1640 1640
      * @param string $title The page title including variables.
1641 1641
      * @param string $gd_page The GeoDirectory page type if any.
1642 1642
      */
1643
-    $title =  apply_filters('geodir_seo_page_title', __($title, 'geodirectory'), $gd_page);
1643
+    $title = apply_filters('geodir_seo_page_title', __($title, 'geodirectory'), $gd_page);
1644 1644
 
1645
-    echo '<header class="' . $class_header . '"><h1 class="' . $class . '">' .
1645
+    echo '<header class="'.$class_header.'"><h1 class="'.$class.'">'.
1646 1646
         /**
1647 1647
          * Filter the listing page title.
1648 1648
          *
1649 1649
          * @since 1.0.0
1650 1650
          * @param string $list_title The title for the category page.
1651 1651
          */
1652
-        apply_filters('geodir_listing_page_title', $title) . '</h1></header>';
1652
+        apply_filters('geodir_listing_page_title', $title).'</h1></header>';
1653 1653
 }
1654 1654
 
1655 1655
 add_action('geodir_listings_page_description', 'geodir_action_listings_description', 10);
@@ -1668,16 +1668,16 @@  discard block
 block discarded – undo
1668 1668
     $gd_post_type = geodir_get_current_posttype();
1669 1669
     if (isset($current_term->term_id) && $current_term->term_id != '') {
1670 1670
 
1671
-        $term_desc = term_description($current_term->term_id, $gd_post_type . '_tags');
1671
+        $term_desc = term_description($current_term->term_id, $gd_post_type.'_tags');
1672 1672
         $saved_data = stripslashes(get_tax_meta($current_term->term_id, 'ct_cat_top_desc', false, $gd_post_type));
1673 1673
         if ($term_desc && !$saved_data) {
1674 1674
             $saved_data = $term_desc;
1675 1675
         }
1676 1676
 
1677 1677
         // stop payment manager filtering content length
1678
-        $filter_priority = has_filter( 'the_content', 'geodir_payments_the_content' );
1679
-        if ( false !== $filter_priority ) {
1680
-            remove_filter( 'the_content', 'geodir_payments_the_content', $filter_priority );
1678
+        $filter_priority = has_filter('the_content', 'geodir_payments_the_content');
1679
+        if (false !== $filter_priority) {
1680
+            remove_filter('the_content', 'geodir_payments_the_content', $filter_priority);
1681 1681
         }
1682 1682
 
1683 1683
         /**
@@ -1691,14 +1691,14 @@  discard block
 block discarded – undo
1691 1691
         $cat_description = apply_filters('the_content', $saved_data);
1692 1692
 
1693 1693
 
1694
-        if ( false !== $filter_priority ) {
1695
-            add_filter( 'the_content', 'geodir_payments_the_content', $filter_priority );
1694
+        if (false !== $filter_priority) {
1695
+            add_filter('the_content', 'geodir_payments_the_content', $filter_priority);
1696 1696
         }
1697 1697
 
1698 1698
         if ($cat_description) {
1699 1699
             ?>
1700 1700
 
1701
-            <div class="term_description"><?php echo $cat_description;?></div> <?php
1701
+            <div class="term_description"><?php echo $cat_description; ?></div> <?php
1702 1702
         }
1703 1703
 
1704 1704
     }
@@ -1748,13 +1748,13 @@  discard block
 block discarded – undo
1748 1748
 function geodir_action_sidebar_left_open($type = '', $id = '', $class = '', $itemtype = '')
1749 1749
 {
1750 1750
     if ($type == 'home-page' && $width = get_option('geodir_width_home_left_section')) {
1751
-        $width_css = 'style="width:' . $width . '%;"';
1751
+        $width_css = 'style="width:'.$width.'%;"';
1752 1752
     } elseif ($type == 'listings-page' && $width = get_option('geodir_width_listing_left_section')) {
1753
-        $width_css = 'style="width:' . $width . '%;"';
1753
+        $width_css = 'style="width:'.$width.'%;"';
1754 1754
     } elseif ($type == 'search-page' && $width = get_option('geodir_width_search_left_section')) {
1755
-        $width_css = 'style="width:' . $width . '%;"';
1755
+        $width_css = 'style="width:'.$width.'%;"';
1756 1756
     } elseif ($type == 'author-page' && $width = get_option('geodir_width_author_left_section')) {
1757
-        $width_css = 'style="width:' . $width . '%;"';
1757
+        $width_css = 'style="width:'.$width.'%;"';
1758 1758
     } else {
1759 1759
         $width_css = '';
1760 1760
     }
@@ -2059,11 +2059,11 @@  discard block
 block discarded – undo
2059 2059
 
2060 2060
     $title = apply_filters('geodir_add_listing_page_title_text', get_the_title());
2061 2061
 
2062
-    if(geodir_is_page('add-listing')){
2062
+    if (geodir_is_page('add-listing')) {
2063 2063
         $gd_page = 'add-listing';
2064
-        if(isset($_REQUEST['pid']) && $_REQUEST['pid'] != ''){
2064
+        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
2065 2065
             $title = (get_option('geodir_page_title_edit-listing')) ? get_option('geodir_page_title_edit-listing') : $title;
2066
-        }elseif(isset($listing_type)){
2066
+        }elseif (isset($listing_type)) {
2067 2067
             $title = (get_option('geodir_page_title_add-listing')) ? get_option('geodir_page_title_add-listing') : $title;
2068 2068
         }
2069 2069
 
@@ -2077,9 +2077,9 @@  discard block
 block discarded – undo
2077 2077
      * @param string $title The page title including variables.
2078 2078
      * @param string $gd_page The GeoDirectory page type if any.
2079 2079
      */
2080
-    $title =  apply_filters('geodir_seo_page_title', __($title, 'geodirectory'), $gd_page);
2080
+    $title = apply_filters('geodir_seo_page_title', __($title, 'geodirectory'), $gd_page);
2081 2081
 
2082
-    echo '<header class="' . $class_header . '"><h1 class="' . $class . '">';
2082
+    echo '<header class="'.$class_header.'"><h1 class="'.$class.'">';
2083 2083
     echo $title;
2084 2084
     echo '</h1></header>';
2085 2085
 }
@@ -2093,7 +2093,7 @@  discard block
 block discarded – undo
2093 2093
  */
2094 2094
 function geodir_action_add_listing_page_mandatory()
2095 2095
 {?>
2096
-    <p class="geodir-note "><span class="geodir-required">*</span>&nbsp;<?php echo INDICATES_MANDATORY_FIELDS_TEXT;?></p>
2096
+    <p class="geodir-note "><span class="geodir-required">*</span>&nbsp;<?php echo INDICATES_MANDATORY_FIELDS_TEXT; ?></p>
2097 2097
 <?php
2098 2098
 }
2099 2099
 
@@ -2128,7 +2128,7 @@  discard block
 block discarded – undo
2128 2128
 
2129 2129
     if (isset($_REQUEST['backandedit'])) {
2130 2130
         global $post;
2131
-        $post = (object)$gd_session->get('listing');
2131
+        $post = (object) $gd_session->get('listing');
2132 2132
         $listing_type = $post->listing_type;
2133 2133
         $title = $post->post_title;
2134 2134
         $desc = $post->post_desc;
@@ -2143,7 +2143,7 @@  discard block
 block discarded – undo
2143 2143
         $thumb_img_arr = geodir_get_images($post->ID);
2144 2144
         if ($thumb_img_arr) {
2145 2145
             foreach ($thumb_img_arr as $post_img) {
2146
-                $curImages .= $post_img->src . ',';
2146
+                $curImages .= $post_img->src.',';
2147 2147
             }
2148 2148
         }
2149 2149
 
@@ -2151,7 +2151,7 @@  discard block
 block discarded – undo
2151 2151
         $title = $post->post_title;
2152 2152
         $desc = $post->post_content;
2153 2153
         $kw_tags = $post->post_tags;
2154
-        $kw_tags = implode(",", wp_get_object_terms($post->ID, $listing_type . '_tags', array('fields' => 'names')));
2154
+        $kw_tags = implode(",", wp_get_object_terms($post->ID, $listing_type.'_tags', array('fields' => 'names')));
2155 2155
     } else {
2156 2156
         $listing_type = sanitize_text_field($_REQUEST['listing_type']);
2157 2157
     }
@@ -2162,18 +2162,18 @@  discard block
 block discarded – undo
2162 2162
 
2163 2163
     $post_type_info = geodir_get_posttype_info($listing_type);
2164 2164
 
2165
-    $cpt_singular_name = (isset($post_type_info['labels']['singular_name']) && $post_type_info['labels']['singular_name']) ? $post_type_info['labels']['singular_name'] : __('Listing','geodirectory');
2165
+    $cpt_singular_name = (isset($post_type_info['labels']['singular_name']) && $post_type_info['labels']['singular_name']) ? $post_type_info['labels']['singular_name'] : __('Listing', 'geodirectory');
2166 2166
 
2167 2167
     ?>
2168
-    <form name="propertyform" id="propertyform" action="<?php echo get_page_link(geodir_preview_page_id());?>" method="post" enctype="multipart/form-data">
2169
-        <input type="hidden" name="preview" value="<?php echo sanitize_text_field($listing_type);?>"/>
2170
-        <input type="hidden" name="listing_type" value="<?php echo sanitize_text_field($listing_type);?>"/>
2168
+    <form name="propertyform" id="propertyform" action="<?php echo get_page_link(geodir_preview_page_id()); ?>" method="post" enctype="multipart/form-data">
2169
+        <input type="hidden" name="preview" value="<?php echo sanitize_text_field($listing_type); ?>"/>
2170
+        <input type="hidden" name="listing_type" value="<?php echo sanitize_text_field($listing_type); ?>"/>
2171 2171
         <?php if ($page_id) { ?>
2172
-        <input type="hidden" name="add_listing_page_id" value="<?php echo $page_id;?>"/>
2172
+        <input type="hidden" name="add_listing_page_id" value="<?php echo $page_id; ?>"/>
2173 2173
         <?php } if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { ?>
2174
-            <input type="hidden" name="pid" value="<?php echo sanitize_text_field($_REQUEST['pid']);?>"/>
2174
+            <input type="hidden" name="pid" value="<?php echo sanitize_text_field($_REQUEST['pid']); ?>"/>
2175 2175
         <?php } if (isset($_REQUEST['backandedit'])) { ?>
2176
-            <input type="hidden" name="backandedit" value="<?php echo sanitize_text_field($_REQUEST['backandedit']);?>"/>
2176
+            <input type="hidden" name="backandedit" value="<?php echo sanitize_text_field($_REQUEST['backandedit']); ?>"/>
2177 2177
         <?php
2178 2178
         } 
2179 2179
         /**
@@ -2185,7 +2185,7 @@  discard block
 block discarded – undo
2185 2185
          */
2186 2186
         do_action('geodir_before_detail_fields');
2187 2187
         ?>
2188
-        <h5 id="geodir_fieldset_details" class="geodir-fieldset-row" gd-fieldset="details"><?php echo LISTING_DETAILS_TEXT;?></h5>
2188
+        <h5 id="geodir_fieldset_details" class="geodir-fieldset-row" gd-fieldset="details"><?php echo LISTING_DETAILS_TEXT; ?></h5>
2189 2189
         <?php
2190 2190
         /**
2191 2191
          * Called at the top of the add listing page form for frontend.
@@ -2197,10 +2197,10 @@  discard block
 block discarded – undo
2197 2197
         do_action('geodir_before_main_form_fields');
2198 2198
         ?>
2199 2199
         <div id="geodir_post_title_row" class="required_field geodir_form_row clearfix gd-fieldset-details">
2200
-            <label><?php echo sprintf( __('%s Title', 'geodirectory'), $cpt_singular_name ); ?><span>*</span> </label>
2200
+            <label><?php echo sprintf(__('%s Title', 'geodirectory'), $cpt_singular_name); ?><span>*</span> </label>
2201 2201
             <input type="text" field_type="text" name="post_title" id="post_title" class="geodir_textfield"
2202 2202
                    value="<?php echo esc_attr(stripslashes($title)); ?>"/>
2203
-            <span class="geodir_message_error"><?php _e($required_msg, 'geodirectory');?></span>
2203
+            <span class="geodir_message_error"><?php _e($required_msg, 'geodirectory'); ?></span>
2204 2204
         </div>
2205 2205
         <?php
2206 2206
         $show_editor = get_option('geodir_tiny_editor_on_add_listing');
@@ -2235,7 +2235,7 @@  discard block
 block discarded – undo
2235 2235
         $desc_limit_msg = apply_filters('geodir_description_field_desc_limit_msg', $desc_limit_msg, $desc_limit);
2236 2236
         
2237 2237
         $desc_class = '';
2238
-        if ($desc_limit === '' || (int)$desc_limit > 0) {
2238
+        if ($desc_limit === '' || (int) $desc_limit > 0) {
2239 2239
             /**
2240 2240
              * Called on the add listing page form for frontend just before the description field.
2241 2241
              *
@@ -2248,8 +2248,8 @@  discard block
 block discarded – undo
2248 2248
             $desc_class = ' hidden';
2249 2249
         }
2250 2250
         ?>
2251
-        <div id="geodir_post_desc_row" class="geodir_form_row clearfix gd-fieldset-details<?php echo $desc_class;?>">
2252
-            <label><?php echo sprintf( __('%s Description', 'geodirectory'), $cpt_singular_name ); ?><span><?php if ($desc_limit != '0') { echo '*'; } ?></span> </label>
2251
+        <div id="geodir_post_desc_row" class="geodir_form_row clearfix gd-fieldset-details<?php echo $desc_class; ?>">
2252
+            <label><?php echo sprintf(__('%s Description', 'geodirectory'), $cpt_singular_name); ?><span><?php if ($desc_limit != '0') { echo '*'; } ?></span> </label>
2253 2253
             <?php
2254 2254
             if (!empty($show_editor) && in_array($listing_type, $show_editor)) {
2255 2255
                 $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
@@ -2258,16 +2258,16 @@  discard block
 block discarded – undo
2258 2258
                     <?php wp_editor($desc, "post_desc", $editor_settings); ?>
2259 2259
                 </div>
2260 2260
             <?php if ($desc_limit != '') { ?>
2261
-                <script type="text/javascript">jQuery('textarea#post_desc').attr('maxlength', "<?php echo $desc_limit;?>");</script>
2261
+                <script type="text/javascript">jQuery('textarea#post_desc').attr('maxlength', "<?php echo $desc_limit; ?>");</script>
2262 2262
             <?php } } else { ?>
2263 2263
                 <textarea field_type="textarea" name="post_desc" id="post_desc" class="geodir_textarea" maxlength="<?php echo $desc_limit; ?>"><?php echo $desc; ?></textarea>
2264 2264
             <?php } if ($desc_limit_msg != '') { ?>
2265 2265
                 <span class="geodir_message_note"><?php echo $desc_limit_msg; ?></span>
2266 2266
             <?php } ?>
2267
-            <span class="geodir_message_error"><?php echo _e($required_msg, 'geodirectory');?></span>
2267
+            <span class="geodir_message_error"><?php echo _e($required_msg, 'geodirectory'); ?></span>
2268 2268
         </div>
2269 2269
         <?php
2270
-        if ($desc_limit === '' || (int)$desc_limit > 0) {
2270
+        if ($desc_limit === '' || (int) $desc_limit > 0) {
2271 2271
             /**
2272 2272
              * Called on the add listing page form for frontend just after the description field.
2273 2273
              *
@@ -2306,7 +2306,7 @@  discard block
 block discarded – undo
2306 2306
         $kw_tags_msg = apply_filters('geodir_listing_tags_field_tags_msg', $kw_tags_msg, $kw_tags_count);
2307 2307
         
2308 2308
         $tags_class = '';
2309
-        if ($kw_tags_count === '' || (int)$kw_tags_count > 0) {
2309
+        if ($kw_tags_count === '' || (int) $kw_tags_count > 0) {
2310 2310
             /**
2311 2311
              * Called on the add listing page form for frontend just before the tags field.
2312 2312
              *
@@ -2317,14 +2317,14 @@  discard block
 block discarded – undo
2317 2317
             $tags_class = ' hidden';
2318 2318
         }
2319 2319
         ?>
2320
-        <div id="geodir_post_tags_row" class="geodir_form_row clearfix gd-fieldset-details<?php echo $tags_class;?>">
2320
+        <div id="geodir_post_tags_row" class="geodir_form_row clearfix gd-fieldset-details<?php echo $tags_class; ?>">
2321 2321
             <label><?php echo TAGKW_TEXT; ?></label>
2322 2322
             <input name="post_tags" id="post_tags" value="<?php echo $kw_tags; ?>" type="text" class="geodir_textfield"
2323
-                   maxlength="<?php echo $kw_tags_count;?>"/>
2324
-            <span class="geodir_message_note"><?php echo $kw_tags_msg;?></span>
2323
+                   maxlength="<?php echo $kw_tags_count; ?>"/>
2324
+            <span class="geodir_message_note"><?php echo $kw_tags_msg; ?></span>
2325 2325
         </div>
2326 2326
         <?php
2327
-        if ($kw_tags_count === '' || (int)$kw_tags_count > 0) {
2327
+        if ($kw_tags_count === '' || (int) $kw_tags_count > 0) {
2328 2328
             /**
2329 2329
              * Called on the add listing page form for frontend just after the tags field.
2330 2330
              *
@@ -2350,7 +2350,7 @@  discard block
 block discarded – undo
2350 2350
         $thumb_img_arr = array();
2351 2351
         $totImg = 0;
2352 2352
         if (isset($_REQUEST['backandedit']) && empty($_REQUEST['pid'])) {
2353
-            $post = (object)$gd_session->get('listing');
2353
+            $post = (object) $gd_session->get('listing');
2354 2354
             if (isset($post->post_images))
2355 2355
                 $curImages = trim($post->post_images, ",");
2356 2356
 
@@ -2363,7 +2363,7 @@  discard block
 block discarded – undo
2363 2363
             $listing_type = $post->listing_type;
2364 2364
 
2365 2365
         } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
2366
-            $post = geodir_get_post_info((int)$_REQUEST['pid']);
2366
+            $post = geodir_get_post_info((int) $_REQUEST['pid']);
2367 2367
             $listing_type = $post->post_type;
2368 2368
             $thumb_img_arr = geodir_get_images($_REQUEST['pid']);
2369 2369
 
@@ -2377,7 +2377,7 @@  discard block
 block discarded – undo
2377 2377
                 //$curImages = $img->src.",";
2378 2378
             }
2379 2379
 
2380
-            $totImg = count((array)$thumb_img_arr);
2380
+            $totImg = count((array) $thumb_img_arr);
2381 2381
         }
2382 2382
 
2383 2383
         if ($curImages != '')
@@ -2398,15 +2398,15 @@  discard block
 block discarded – undo
2398 2398
         if ($show_image_input_box) {
2399 2399
             ?>
2400 2400
 
2401
-            <h5 id="geodir_form_title_row" class="geodir-form_title"> <?php echo PRO_PHOTO_TEXT;?>
2401
+            <h5 id="geodir_form_title_row" class="geodir-form_title"> <?php echo PRO_PHOTO_TEXT; ?>
2402 2402
                 <?php if ($image_limit == 1) {
2403
-                    echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
2403
+                    echo '<br /><small>('.__('You can upload', 'geodirectory').' '.$image_limit.' '.__('image with this package', 'geodirectory').')</small>';
2404 2404
                 } ?>
2405 2405
                 <?php if ($image_limit > 1) {
2406
-                    echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
2406
+                    echo '<br /><small>('.__('You can upload', 'geodirectory').' '.$image_limit.' '.__('images with this package', 'geodirectory').')</small>';
2407 2407
                 } ?>
2408 2408
                 <?php if ($image_limit == '') {
2409
-                    echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
2409
+                    echo '<br /><small>('.__('You can upload unlimited images with this package', 'geodirectory').')</small>';
2410 2410
                 } ?>
2411 2411
             </h5>
2412 2412
 
@@ -2421,11 +2421,11 @@  discard block
 block discarded – undo
2421 2421
                 <div
2422 2422
                     class="plupload-upload-uic hide-if-no-js <?php if ($multiple): ?>plupload-upload-uic-multiple<?php endif; ?>"
2423 2423
                     id="<?php echo $id; ?>plupload-upload-ui">
2424
-                    <h4><?php _e('Drop files to upload', 'geodirectory');?></h4><br/>
2424
+                    <h4><?php _e('Drop files to upload', 'geodirectory'); ?></h4><br/>
2425 2425
                     <input id="<?php echo $id; ?>plupload-browse-button" type="button"
2426 2426
                            value="<?php esc_attr_e('Select Files', 'geodirectory'); ?>" class="geodir_button"/>
2427 2427
                     <span class="ajaxnonceplu"
2428
-                          id="ajaxnonceplu<?php echo wp_create_nonce($id . 'pluploadan'); ?>"></span>
2428
+                          id="ajaxnonceplu<?php echo wp_create_nonce($id.'pluploadan'); ?>"></span>
2429 2429
                     <?php if ($width && $height): ?>
2430 2430
                         <span class="plupload-resize"></span>
2431 2431
                         <span class="plupload-width" id="plupload-width<?php echo $width; ?>"></span>
@@ -2438,7 +2438,7 @@  discard block
 block discarded – undo
2438 2438
                      id="<?php echo $id; ?>plupload-thumbs" style="border-top:1px solid #ccc; padding-top:10px;">
2439 2439
                 </div>
2440 2440
                 <span
2441
-                    id="upload-msg"><?php _e('Please drag &amp; drop the images to rearrange the order', 'geodirectory');?></span>
2441
+                    id="upload-msg"><?php _e('Please drag &amp; drop the images to rearrange the order', 'geodirectory'); ?></span>
2442 2442
                 <span id="<?php echo $id; ?>upload-error" style="display:none"></span>
2443 2443
             </div>
2444 2444
 
@@ -2450,7 +2450,7 @@  discard block
 block discarded – undo
2450 2450
          *
2451 2451
          * @since 1.0.0
2452 2452
          */
2453
-        do_action('geodir_after_main_form_fields');?>
2453
+        do_action('geodir_after_main_form_fields'); ?>
2454 2454
 
2455 2455
 
2456 2456
         <!-- add captcha code -->
@@ -2461,7 +2461,7 @@  discard block
 block discarded – undo
2461 2461
         </script>
2462 2462
         <noscript>
2463 2463
             <div>
2464
-                <label><?php _e('Type 64 into this box', 'geodirectory');?></label>
2464
+                <label><?php _e('Type 64 into this box', 'geodirectory'); ?></label>
2465 2465
                 <input type="text" id="geodir_spamblocker_top_form" name="geodir_spamblocker" value="" maxlength="10"/>
2466 2466
             </div>
2467 2467
         </noscript>
@@ -2471,10 +2471,10 @@  discard block
 block discarded – undo
2471 2471
         <!-- end captcha code -->
2472 2472
 
2473 2473
         <div id="geodir-add-listing-submit" class="geodir_form_row clear_both" style="padding:2px;text-align:center;">
2474
-            <input type="submit" value="<?php echo PRO_PREVIEW_BUTTON;?>"
2475
-                   class="geodir_button" <?php echo $submit_button;?>/>
2474
+            <input type="submit" value="<?php echo PRO_PREVIEW_BUTTON; ?>"
2475
+                   class="geodir_button" <?php echo $submit_button; ?>/>
2476 2476
             <span class="geodir_message_note"
2477
-                  style="padding-left:0px;"> <?php _e('Note: You will be able to see a preview in the next page', 'geodirectory');?></span>
2477
+                  style="padding-left:0px;"> <?php _e('Note: You will be able to see a preview in the next page', 'geodirectory'); ?></span>
2478 2478
         </div>
2479 2479
 
2480 2480
     </form>
@@ -2536,7 +2536,7 @@  discard block
 block discarded – undo
2536 2536
         class="<?php
2537 2537
         /** This action is documented in geodirectory_template_actions.php */
2538 2538
         echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'Reg/Login Top Section'); ?>">
2539
-        <?php dynamic_sidebar('Reg/Login Top Section');?>
2539
+        <?php dynamic_sidebar('Reg/Login Top Section'); ?>
2540 2540
     </div><!-- clearfix ends here-->
2541 2541
 <?php
2542 2542
 }
@@ -2558,7 +2558,7 @@  discard block
 block discarded – undo
2558 2558
 
2559 2559
     ?>
2560 2560
     <script type="text/javascript">
2561
-        <?php if ( $user_login ) { ?>
2561
+        <?php if ($user_login) { ?>
2562 2562
         setTimeout(function () {
2563 2563
             try {
2564 2564
                 d = document.getElementById('user_pass');
@@ -2575,7 +2575,7 @@  discard block
 block discarded – undo
2575 2575
         <?php } ?>
2576 2576
     </script>
2577 2577
     <script type="text/javascript">
2578
-        <?php if ( $user_login ) { ?>
2578
+        <?php if ($user_login) { ?>
2579 2579
         setTimeout(function () {
2580 2580
             try {
2581 2581
                 d = document.getElementById('user_pass');
@@ -2600,7 +2600,7 @@  discard block
 block discarded – undo
2600 2600
         foreach ($errors as $errorsObj) {
2601 2601
             foreach ($errorsObj as $key => $val) {
2602 2602
                 for ($i = 0; $i < count($val); $i++) {
2603
-                    echo "<div class=error_msg_fix>" . $val[$i] . '</div>';
2603
+                    echo "<div class=error_msg_fix>".$val[$i].'</div>';
2604 2604
                     $registration_error_msg = 1;
2605 2605
                 }
2606 2606
             }
@@ -2617,7 +2617,7 @@  discard block
 block discarded – undo
2617 2617
              *
2618 2618
              * @since 1.0.0
2619 2619
              */
2620
-            include(geodir_plugin_path() . "/geodirectory-templates/login_frm.php"); ?>
2620
+            include(geodir_plugin_path()."/geodirectory-templates/login_frm.php"); ?>
2621 2621
         </div>
2622 2622
 
2623 2623
     <?php } elseif (isset($_REQUEST['page']) && $_REQUEST['page'] == 'login' && isset($_REQUEST['page1']) && $_REQUEST['page1'] == 'sign_up') { ?>
@@ -2629,7 +2629,7 @@  discard block
 block discarded – undo
2629 2629
              *
2630 2630
              * @since 1.0.0
2631 2631
              */
2632
-            include(geodir_plugin_path() . "/geodirectory-templates/reg_frm.php"); ?>
2632
+            include(geodir_plugin_path()."/geodirectory-templates/reg_frm.php"); ?>
2633 2633
         </div>
2634 2634
 
2635 2635
     <?php } else { ?>
@@ -2641,7 +2641,7 @@  discard block
 block discarded – undo
2641 2641
              *
2642 2642
              * @since 1.0.0
2643 2643
              */
2644
-            include(geodir_plugin_path() . "/geodirectory-templates/login_frm.php"); ?>
2644
+            include(geodir_plugin_path()."/geodirectory-templates/login_frm.php"); ?>
2645 2645
         </div>
2646 2646
         <div class="registration_form_r">
2647 2647
             <?php
@@ -2650,7 +2650,7 @@  discard block
 block discarded – undo
2650 2650
              *
2651 2651
              * @since 1.0.0
2652 2652
              */
2653
-            include(geodir_plugin_path() . "/geodirectory-templates/reg_frm.php"); ?>
2653
+            include(geodir_plugin_path()."/geodirectory-templates/reg_frm.php"); ?>
2654 2654
         </div>
2655 2655
 
2656 2656
     <?php }?>
@@ -2686,12 +2686,12 @@  discard block
 block discarded – undo
2686 2686
     $gd_post_type = geodir_get_current_posttype();
2687 2687
     $post_type_info = get_post_type_object($gd_post_type);
2688 2688
 
2689
-    $add_string_in_title = __('All', 'geodirectory') . ' ';
2689
+    $add_string_in_title = __('All', 'geodirectory').' ';
2690 2690
     if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
2691
-        $add_string_in_title = __('My Favorite', 'geodirectory') . ' ';
2691
+        $add_string_in_title = __('My Favorite', 'geodirectory').' ';
2692 2692
     }
2693 2693
 
2694
-    $list_title = $add_string_in_title . $post_type_info->labels->name;
2694
+    $list_title = $add_string_in_title.$post_type_info->labels->name;
2695 2695
     $single_name = $post_type_info->labels->singular_name;
2696 2696
 
2697 2697
     $taxonomy = geodir_get_taxonomies($gd_post_type);
@@ -2699,12 +2699,12 @@  discard block
 block discarded – undo
2699 2699
     if (!empty($term)) {
2700 2700
         $current_term = get_term_by('slug', $term, $taxonomy[0]);
2701 2701
         if (!empty($current_term))
2702
-            $list_title .= __(' in', 'geodirectory') . " '" . geodir_ucwords($current_term->name) . "'";
2702
+            $list_title .= __(' in', 'geodirectory')." '".geodir_ucwords($current_term->name)."'";
2703 2703
     }
2704 2704
 
2705 2705
 
2706 2706
     if (is_search()) {
2707
-        $list_title = __('Search', 'geodirectory') . ' ' . __($post_type_info->labels->name, 'geodirectory') . __(' For :', 'geodirectory') . " '" . get_search_query() . "'";
2707
+        $list_title = __('Search', 'geodirectory').' '.__($post_type_info->labels->name, 'geodirectory').__(' For :', 'geodirectory')." '".get_search_query()."'";
2708 2708
 
2709 2709
     }
2710 2710
     /** This action is documented in geodirectory_template_actions.php */
@@ -2713,11 +2713,11 @@  discard block
 block discarded – undo
2713 2713
     $class_header = apply_filters('geodir_page_title_header_class', 'entry-header');
2714 2714
 
2715 2715
     $title = $list_title;
2716
-    if(geodir_is_page('author')){
2716
+    if (geodir_is_page('author')) {
2717 2717
         $gd_page = 'author';
2718
-        if(isset($_REQUEST['list']) && $_REQUEST['list']=='favourite'){
2718
+        if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
2719 2719
             $title = (get_option('geodir_page_title_favorite')) ? get_option('geodir_page_title_favorite') : $title;
2720
-        }else{
2720
+        } else {
2721 2721
             $title = (get_option('geodir_page_title_author')) ? get_option('geodir_page_title_author') : $title;
2722 2722
         }
2723 2723
 
@@ -2731,16 +2731,16 @@  discard block
 block discarded – undo
2731 2731
      * @param string $title The page title including variables.
2732 2732
      * @param string $gd_page The GeoDirectory page type if any.
2733 2733
      */
2734
-    $title =  apply_filters('geodir_seo_page_title', __($title, 'geodirectory'), $gd_page);
2734
+    $title = apply_filters('geodir_seo_page_title', __($title, 'geodirectory'), $gd_page);
2735 2735
 
2736
-    echo '<header class="' . $class_header . '"><h1 class="' . $class . '">' .
2736
+    echo '<header class="'.$class_header.'"><h1 class="'.$class.'">'.
2737 2737
         /**
2738 2738
          * Filter the author page title text.
2739 2739
          *
2740 2740
          * @since 1.0.0
2741 2741
          * @param string $list_title The title for the page.
2742 2742
          */
2743
-        apply_filters('geodir_author_page_title_text', $title) . '</h1></header>';
2743
+        apply_filters('geodir_author_page_title_text', $title).'</h1></header>';
2744 2744
 }
2745 2745
 
2746 2746
 
@@ -2945,19 +2945,19 @@  discard block
 block discarded – undo
2945 2945
     $post_type_info = get_post_type_object($gd_post_type);
2946 2946
 
2947 2947
     $pt_name = '';
2948
-    if(isset($post_type_info->labels->name)){$pt_name=$post_type_info->labels->name;}
2948
+    if (isset($post_type_info->labels->name)) {$pt_name = $post_type_info->labels->name; }
2949 2949
 
2950 2950
     if (is_search()) {
2951
-        $list_title = __('Search', 'geodirectory') . ' ' . __($pt_name, 'geodirectory') . __(' For :', 'geodirectory') . " '" . get_search_query() . "'";
2951
+        $list_title = __('Search', 'geodirectory').' '.__($pt_name, 'geodirectory').__(' For :', 'geodirectory')." '".get_search_query()."'";
2952 2952
 
2953 2953
     }
2954 2954
     /** This action is documented in geodirectory_template_actions.php */
2955 2955
     $class = apply_filters('geodir_page_title_class', 'entry-title fn');
2956 2956
     /** This action is documented in geodirectory_template_actions.php */
2957 2957
     $class_header = apply_filters('geodir_page_title_header_class', 'entry-header');
2958
-    echo '<header class="' . $class_header . '"><h1 class="' . $class . '">' .
2958
+    echo '<header class="'.$class_header.'"><h1 class="'.$class.'">'.
2959 2959
         /** This action is documented in geodirectory_template_actions.php */
2960
-        apply_filters('geodir_listing_page_title', wptexturize($list_title)) . '</h1></header>';
2960
+        apply_filters('geodir_listing_page_title', wptexturize($list_title)).'</h1></header>';
2961 2961
 }
2962 2962
 
2963 2963
 // action for adding the listings page top widget area
@@ -3361,7 +3361,7 @@  discard block
 block discarded – undo
3361 3361
         $gd_post_type = geodir_get_current_posttype();
3362 3362
         $post_type_info = get_post_type_object($gd_post_type);
3363 3363
 
3364
-        $list_title = __('Search', 'geodirectory') . ' ' . __(ucfirst($post_type_info->labels->name), 'geodirectory') . __(' :', 'geodirectory');
3364
+        $list_title = __('Search', 'geodirectory').' '.__(ucfirst($post_type_info->labels->name), 'geodirectory').__(' :', 'geodirectory');
3365 3365
     }
3366 3366
     return $list_title;
3367 3367
 }
@@ -3377,7 +3377,7 @@  discard block
 block discarded – undo
3377 3377
  * @param string $position Position to add the post content. 'before' or 'after'. Default 'before'.
3378 3378
  * @param string $gd_page The geodirectory page type. Default null.
3379 3379
  */
3380
-function geodir_add_page_content( $position = 'before', $gd_page = '' ) {
3380
+function geodir_add_page_content($position = 'before', $gd_page = '') {
3381 3381
     global $post;
3382 3382
         
3383 3383
     $gd_page_id = NULL;
Please login to merge, or discard this patch.