Test Failed
Pull Request — master (#308)
by Kiran
23:47
created
tests/test-Search_With_Keyword.php 2 patches
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -1,38 +1,38 @@
 block discarded – undo
1 1
 <?php
2 2
 class SearchWithKeyword extends WP_UnitTestCase
3 3
 {
4
-    public function setUp()
5
-    {
6
-        parent::setUp();
7
-    }
4
+	public function setUp()
5
+	{
6
+		parent::setUp();
7
+	}
8 8
 
9
-    public function testSearchWithKeyword()
10
-    {
11
-        $_REQUEST['geodir_search'] = 1;
12
-        $query_args = array(
13
-            'post_status' => 'publish',
14
-            'post_type' => 'gd_place',
15
-            'posts_per_page' => 1,
16
-            's' => 'Longwood Gardens'
17
-        );
9
+	public function testSearchWithKeyword()
10
+	{
11
+		$_REQUEST['geodir_search'] = 1;
12
+		$query_args = array(
13
+			'post_status' => 'publish',
14
+			'post_type' => 'gd_place',
15
+			'posts_per_page' => 1,
16
+			's' => 'Longwood Gardens'
17
+		);
18 18
 
19
-        $all_posts = new WP_Query( $query_args );
19
+		$all_posts = new WP_Query( $query_args );
20 20
 
21
-        $total_posts = $all_posts->found_posts;
21
+		$total_posts = $all_posts->found_posts;
22 22
 
23
-        $this->assertTrue(is_int((int) $total_posts));
23
+		$this->assertTrue(is_int((int) $total_posts));
24 24
 
25
-        $title = null;
26
-        while ( $all_posts->have_posts() ) : $all_posts->the_post();
27
-            $title = get_the_title();
28
-        endwhile;
25
+		$title = null;
26
+		while ( $all_posts->have_posts() ) : $all_posts->the_post();
27
+			$title = get_the_title();
28
+		endwhile;
29 29
 
30
-        $this->assertEquals($title, 'Longwood Gardens');
31
-    }
30
+		$this->assertEquals($title, 'Longwood Gardens');
31
+	}
32 32
 
33
-    public function tearDown()
34
-    {
35
-        parent::tearDown();
36
-    }
33
+	public function tearDown()
34
+	{
35
+		parent::tearDown();
36
+	}
37 37
 }
38 38
 ?>
39 39
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,9 +15,9 @@
 block discarded – undo
15 15
             'posts_per_page' => 1,
16 16
         );
17 17
 
18
-        $all_posts = new WP_Query( $query_args );
18
+        $all_posts = new WP_Query($query_args);
19 19
         $post_id = null;
20
-        while ( $all_posts->have_posts() ) : $all_posts->the_post();
20
+        while ($all_posts->have_posts()) : $all_posts->the_post();
21 21
             $post_id = get_the_ID();
22 22
         endwhile;
23 23
 
Please login to merge, or discard this patch.
tests/test-Add_Listing.php 1 patch
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -1,39 +1,39 @@
 block discarded – undo
1 1
 <?php
2 2
 class AddListing extends WP_UnitTestCase
3 3
 {
4
-    public function setUp()
5
-    {
6
-        parent::setUp();
7
-        wp_set_current_user(1);
8
-    }
4
+	public function setUp()
5
+	{
6
+		parent::setUp();
7
+		wp_set_current_user(1);
8
+	}
9 9
 
10
-    public function testAddListing()
11
-    {
12
-        $args = array(
13
-            'listing_type' => 'gd_place',
14
-            'post_title' => 'Test Listing Title',
15
-            'post_desc' => 'Test Desc',
16
-            'post_tags' => 'test1,test2',
17
-            'post_address' => 'New York City Hall',
18
-            'post_zip' => '10007',
19
-            'post_mapview' => 'ROADMAP',
20
-            'post_mapzoom' => '10',
21
-            'geodir_timing' => '10.00 am to 6 pm every day',
22
-            'geodir_contact' => '1234567890',
23
-            'geodir_email' => '[email protected]',
24
-            'geodir_website' => 'http://test.com',
25
-            'geodir_twitter' => 'http://twitter.com/test',
26
-            'geodir_facebook' => 'http://facebook.com/test',
27
-            'geodir_special_offers' => 'Test offer'
28
-        );
29
-        $post_id = geodir_save_listing($args, true);
10
+	public function testAddListing()
11
+	{
12
+		$args = array(
13
+			'listing_type' => 'gd_place',
14
+			'post_title' => 'Test Listing Title',
15
+			'post_desc' => 'Test Desc',
16
+			'post_tags' => 'test1,test2',
17
+			'post_address' => 'New York City Hall',
18
+			'post_zip' => '10007',
19
+			'post_mapview' => 'ROADMAP',
20
+			'post_mapzoom' => '10',
21
+			'geodir_timing' => '10.00 am to 6 pm every day',
22
+			'geodir_contact' => '1234567890',
23
+			'geodir_email' => '[email protected]',
24
+			'geodir_website' => 'http://test.com',
25
+			'geodir_twitter' => 'http://twitter.com/test',
26
+			'geodir_facebook' => 'http://facebook.com/test',
27
+			'geodir_special_offers' => 'Test offer'
28
+		);
29
+		$post_id = geodir_save_listing($args, true);
30 30
 
31
-        $this->assertTrue(is_int($post_id));
32
-    }
31
+		$this->assertTrue(is_int($post_id));
32
+	}
33 33
 
34
-    public function tearDown()
35
-    {
36
-        parent::tearDown();
37
-    }
34
+	public function tearDown()
35
+	{
36
+		parent::tearDown();
37
+	}
38 38
 }
39 39
 ?>
40 40
\ No newline at end of file
Please login to merge, or discard this patch.
tests/test-Check_Login_Box.php 2 patches
Indentation   +48 added lines, -48 removed lines patch added patch discarded remove patch
@@ -1,57 +1,57 @@
 block discarded – undo
1 1
 <?php
2 2
 class CheckLoginBox extends WP_UnitTestCase
3 3
 {
4
-    public function setUp()
5
-    {
6
-        parent::setUp();
7
-    }
4
+	public function setUp()
5
+	{
6
+		parent::setUp();
7
+	}
8 8
 
9
-    public function testLoginBoxEmptyPassword()
10
-    {
11
-        global $errors;
12
-        $_POST['testcookie'] = 1;
13
-        $_POST['log'] = 'admin';
14
-        add_filter('wp_redirect', '__return_false');
15
-        geodir_user_signup();
16
-        remove_filter('wp_redirect', '__return_false');
17
-        $errors = (array) $errors;
18
-        $this->assertArrayHasKey( 'empty_password', $errors["errors"] );
19
-        $this->assertContains( 'The password field is empty', $errors["errors"]["empty_password"][0] );
20
-    }
9
+	public function testLoginBoxEmptyPassword()
10
+	{
11
+		global $errors;
12
+		$_POST['testcookie'] = 1;
13
+		$_POST['log'] = 'admin';
14
+		add_filter('wp_redirect', '__return_false');
15
+		geodir_user_signup();
16
+		remove_filter('wp_redirect', '__return_false');
17
+		$errors = (array) $errors;
18
+		$this->assertArrayHasKey( 'empty_password', $errors["errors"] );
19
+		$this->assertContains( 'The password field is empty', $errors["errors"]["empty_password"][0] );
20
+	}
21 21
 
22
-    public function testLoginBoxIncorrectPassword()
23
-    {
24
-        global $errors;
25
-        $_POST['testcookie'] = 1;
26
-        $_REQUEST['action'] = 'login';
27
-        $_POST['log'] = 'testuser';
28
-        $_POST['pwd'] = 'admin';
29
-        add_filter('wp_redirect', '__return_false');
30
-        geodir_user_signup();
31
-        remove_filter('wp_redirect', '__return_false');
32
-        $errors = (array) $errors;
33
-        $this->assertArrayHasKey( 'incorrect_password', $errors["errors"] );
34
-        $this->assertContains( 'The password you entered for the username', $errors["errors"]["incorrect_password"][0] );
35
-    }
22
+	public function testLoginBoxIncorrectPassword()
23
+	{
24
+		global $errors;
25
+		$_POST['testcookie'] = 1;
26
+		$_REQUEST['action'] = 'login';
27
+		$_POST['log'] = 'testuser';
28
+		$_POST['pwd'] = 'admin';
29
+		add_filter('wp_redirect', '__return_false');
30
+		geodir_user_signup();
31
+		remove_filter('wp_redirect', '__return_false');
32
+		$errors = (array) $errors;
33
+		$this->assertArrayHasKey( 'incorrect_password', $errors["errors"] );
34
+		$this->assertContains( 'The password you entered for the username', $errors["errors"]["incorrect_password"][0] );
35
+	}
36 36
 
37
-    public function testLoginBoxInvalidUsername()
38
-    {
39
-        global $errors;
40
-        $_POST['testcookie'] = 1;
41
-        $_REQUEST['action'] = 'login';
42
-        $_POST['log'] = 'adm##@in';
43
-        $_POST['pwd'] = 'admin';
44
-        add_filter('wp_redirect', '__return_false');
45
-        geodir_user_signup();
46
-        remove_filter('wp_redirect', '__return_false');
47
-        $errors = (array) $errors;
48
-        $this->assertArrayHasKey( 'invalid_username', $errors["errors"] );
49
-        $this->assertContains( 'Invalid username', $errors["errors"]["invalid_username"][0] );
50
-    }
37
+	public function testLoginBoxInvalidUsername()
38
+	{
39
+		global $errors;
40
+		$_POST['testcookie'] = 1;
41
+		$_REQUEST['action'] = 'login';
42
+		$_POST['log'] = 'adm##@in';
43
+		$_POST['pwd'] = 'admin';
44
+		add_filter('wp_redirect', '__return_false');
45
+		geodir_user_signup();
46
+		remove_filter('wp_redirect', '__return_false');
47
+		$errors = (array) $errors;
48
+		$this->assertArrayHasKey( 'invalid_username', $errors["errors"] );
49
+		$this->assertContains( 'Invalid username', $errors["errors"]["invalid_username"][0] );
50
+	}
51 51
 
52
-    public function tearDown()
53
-    {
54
-        parent::tearDown();
55
-    }
52
+	public function tearDown()
53
+	{
54
+		parent::tearDown();
55
+	}
56 56
 }
57 57
 ?>
58 58
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@  discard block
 block discarded – undo
15 15
         geodir_user_signup();
16 16
         remove_filter('wp_redirect', '__return_false');
17 17
         $errors = (array) $errors;
18
-        $this->assertArrayHasKey( 'empty_password', $errors["errors"] );
19
-        $this->assertContains( 'The password field is empty', $errors["errors"]["empty_password"][0] );
18
+        $this->assertArrayHasKey('empty_password', $errors["errors"]);
19
+        $this->assertContains('The password field is empty', $errors["errors"]["empty_password"][0]);
20 20
     }
21 21
 
22 22
     public function testLoginBoxIncorrectPassword()
@@ -30,8 +30,8 @@  discard block
 block discarded – undo
30 30
         geodir_user_signup();
31 31
         remove_filter('wp_redirect', '__return_false');
32 32
         $errors = (array) $errors;
33
-        $this->assertArrayHasKey( 'incorrect_password', $errors["errors"] );
34
-        $this->assertContains( 'The password you entered for the username', $errors["errors"]["incorrect_password"][0] );
33
+        $this->assertArrayHasKey('incorrect_password', $errors["errors"]);
34
+        $this->assertContains('The password you entered for the username', $errors["errors"]["incorrect_password"][0]);
35 35
     }
36 36
 
37 37
     public function testLoginBoxInvalidUsername()
@@ -45,8 +45,8 @@  discard block
 block discarded – undo
45 45
         geodir_user_signup();
46 46
         remove_filter('wp_redirect', '__return_false');
47 47
         $errors = (array) $errors;
48
-        $this->assertArrayHasKey( 'invalid_username', $errors["errors"] );
49
-        $this->assertContains( 'Invalid username', $errors["errors"]["invalid_username"][0] );
48
+        $this->assertArrayHasKey('invalid_username', $errors["errors"]);
49
+        $this->assertContains('Invalid username', $errors["errors"]["invalid_username"][0]);
50 50
     }
51 51
 
52 52
     public function tearDown()
Please login to merge, or discard this patch.
tests/test-Login.php 2 patches
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
         geodir_user_signup();
17 17
         remove_filter('wp_redirect', '__return_false');
18 18
         $errors = (array) $errors;
19
-        $this->assertArrayHasKey( 'empty_password', $errors["errors"] );
20
-        $this->assertContains( 'The password field is empty', $errors["errors"]["empty_password"][0] );
19
+        $this->assertArrayHasKey('empty_password', $errors["errors"]);
20
+        $this->assertContains('The password field is empty', $errors["errors"]["empty_password"][0]);
21 21
     }
22 22
 
23 23
     public function testLoginIncorrectPassword()
@@ -30,8 +30,8 @@  discard block
 block discarded – undo
30 30
         geodir_user_signup();
31 31
         remove_filter('wp_redirect', '__return_false');
32 32
         $errors = (array) $errors;
33
-        $this->assertArrayHasKey( 'incorrect_password', $errors["errors"] );
34
-        $this->assertContains( 'The password you entered for the username', $errors["errors"]["incorrect_password"][0] );
33
+        $this->assertArrayHasKey('incorrect_password', $errors["errors"]);
34
+        $this->assertContains('The password you entered for the username', $errors["errors"]["incorrect_password"][0]);
35 35
     }
36 36
 
37 37
     public function testLoginInvalidUsername()
@@ -44,8 +44,8 @@  discard block
 block discarded – undo
44 44
         geodir_user_signup();
45 45
         remove_filter('wp_redirect', '__return_false');
46 46
         $errors = (array) $errors;
47
-        $this->assertArrayHasKey( 'invalid_username', $errors["errors"] );
48
-        $this->assertContains( 'Invalid username', $errors["errors"]["invalid_username"][0] );
47
+        $this->assertArrayHasKey('invalid_username', $errors["errors"]);
48
+        $this->assertContains('Invalid username', $errors["errors"]["invalid_username"][0]);
49 49
     }
50 50
 
51 51
 //    public function testLoginValid()
@@ -70,8 +70,8 @@  discard block
 block discarded – undo
70 70
         geodir_user_signup();
71 71
         remove_filter('wp_redirect', '__return_false');
72 72
         $errors = (array) $errors;
73
-        $this->assertArrayHasKey( 'empty_username', $errors["errors"] );
74
-        $this->assertContains( 'Enter a username or e-mail address', $errors["errors"]["empty_username"][0] );
73
+        $this->assertArrayHasKey('empty_username', $errors["errors"]);
74
+        $this->assertContains('Enter a username or e-mail address', $errors["errors"]["empty_username"][0]);
75 75
     }
76 76
 
77 77
     public function testForgotPassInvalidEmail()
@@ -85,8 +85,8 @@  discard block
 block discarded – undo
85 85
         geodir_user_signup();
86 86
         remove_filter('wp_redirect', '__return_false');
87 87
         $errors = (array) $errors;
88
-        $this->assertArrayHasKey( 'invalid_email', $errors["errors"] );
89
-        $this->assertContains( 'There is no user registered with that email address', $errors["errors"]["invalid_email"][0] );
88
+        $this->assertArrayHasKey('invalid_email', $errors["errors"]);
89
+        $this->assertContains('There is no user registered with that email address', $errors["errors"]["invalid_email"][0]);
90 90
     }
91 91
 
92 92
     public function testForgotPassInvalidUsername()
@@ -100,8 +100,8 @@  discard block
 block discarded – undo
100 100
         geodir_user_signup();
101 101
         remove_filter('wp_redirect', '__return_false');
102 102
         $errors = (array) $errors;
103
-        $this->assertArrayHasKey( 'invalidcombo', $errors["errors"] );
104
-        $this->assertContains( 'Invalid username or e-mail', $errors["errors"]["invalidcombo"][0] );
103
+        $this->assertArrayHasKey('invalidcombo', $errors["errors"]);
104
+        $this->assertContains('Invalid username or e-mail', $errors["errors"]["invalidcombo"][0]);
105 105
     }
106 106
 
107 107
     public function tearDown()
Please login to merge, or discard this patch.
Indentation   +88 added lines, -88 removed lines patch added patch discarded remove patch
@@ -1,51 +1,51 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 class LoginUser extends WP_UnitTestCase
3 3
 {
4
-    public function setUp()
5
-    {
6
-        parent::setUp();
7
-    }
4
+	public function setUp()
5
+	{
6
+		parent::setUp();
7
+	}
8 8
 
9
-    public function testLoginEmptyPassword()
10
-    {
11
-        global $errors;
12
-        $_REQUEST['action'] = 'login';
13
-        $_POST['log'] = 'admin';
14
-        add_filter('wp_redirect', '__return_false');
15
-        geodir_user_signup();
16
-        remove_filter('wp_redirect', '__return_false');
17
-        $errors = (array) $errors;
18
-        $this->assertArrayHasKey( 'empty_password', $errors["errors"] );
19
-        $this->assertContains( 'The password field is empty', $errors["errors"]["empty_password"][0] );
20
-    }
9
+	public function testLoginEmptyPassword()
10
+	{
11
+		global $errors;
12
+		$_REQUEST['action'] = 'login';
13
+		$_POST['log'] = 'admin';
14
+		add_filter('wp_redirect', '__return_false');
15
+		geodir_user_signup();
16
+		remove_filter('wp_redirect', '__return_false');
17
+		$errors = (array) $errors;
18
+		$this->assertArrayHasKey( 'empty_password', $errors["errors"] );
19
+		$this->assertContains( 'The password field is empty', $errors["errors"]["empty_password"][0] );
20
+	}
21 21
 
22
-    public function testLoginIncorrectPassword()
23
-    {
24
-        global $errors;
25
-        $_REQUEST['action'] = 'login';
26
-        $_POST['log'] = 'testuser';
27
-        $_POST['pwd'] = 'admin';
28
-        add_filter('wp_redirect', '__return_false');
29
-        geodir_user_signup();
30
-        remove_filter('wp_redirect', '__return_false');
31
-        $errors = (array) $errors;
32
-        $this->assertArrayHasKey( 'incorrect_password', $errors["errors"] );
33
-        $this->assertContains( 'The password you entered for the username', $errors["errors"]["incorrect_password"][0] );
34
-    }
22
+	public function testLoginIncorrectPassword()
23
+	{
24
+		global $errors;
25
+		$_REQUEST['action'] = 'login';
26
+		$_POST['log'] = 'testuser';
27
+		$_POST['pwd'] = 'admin';
28
+		add_filter('wp_redirect', '__return_false');
29
+		geodir_user_signup();
30
+		remove_filter('wp_redirect', '__return_false');
31
+		$errors = (array) $errors;
32
+		$this->assertArrayHasKey( 'incorrect_password', $errors["errors"] );
33
+		$this->assertContains( 'The password you entered for the username', $errors["errors"]["incorrect_password"][0] );
34
+	}
35 35
 
36
-    public function testLoginInvalidUsername()
37
-    {
38
-        global $errors;
39
-        $_REQUEST['action'] = 'login';
40
-        $_POST['log'] = 'adm##@in';
41
-        $_POST['pwd'] = 'admin';
42
-        add_filter('wp_redirect', '__return_false');
43
-        geodir_user_signup();
44
-        remove_filter('wp_redirect', '__return_false');
45
-        $errors = (array) $errors;
46
-        $this->assertArrayHasKey( 'invalid_username', $errors["errors"] );
47
-        $this->assertContains( 'Invalid username', $errors["errors"]["invalid_username"][0] );
48
-    }
36
+	public function testLoginInvalidUsername()
37
+	{
38
+		global $errors;
39
+		$_REQUEST['action'] = 'login';
40
+		$_POST['log'] = 'adm##@in';
41
+		$_POST['pwd'] = 'admin';
42
+		add_filter('wp_redirect', '__return_false');
43
+		geodir_user_signup();
44
+		remove_filter('wp_redirect', '__return_false');
45
+		$errors = (array) $errors;
46
+		$this->assertArrayHasKey( 'invalid_username', $errors["errors"] );
47
+		$this->assertContains( 'Invalid username', $errors["errors"]["invalid_username"][0] );
48
+	}
49 49
 
50 50
 //    public function testLoginValid()
51 51
 //    {
@@ -58,55 +58,55 @@  discard block
 block discarded – undo
58 58
 //        remove_filter('wp_redirect', '__return_false');
59 59
 //    }
60 60
 
61
-    public function testForgotPassEmptyData()
62
-    {
63
-        global $errors;
64
-        $_SERVER['REQUEST_METHOD'] = 'POST';
65
-        $_REQUEST['action'] = 'retrievepassword';
66
-        $_POST['user_login'] = '';
67
-        $_POST['user_email'] = '';
68
-        add_filter('wp_redirect', '__return_false');
69
-        geodir_user_signup();
70
-        remove_filter('wp_redirect', '__return_false');
71
-        $errors = (array) $errors;
72
-        $this->assertArrayHasKey( 'empty_username', $errors["errors"] );
73
-        $this->assertContains( 'Enter a username or e-mail address', $errors["errors"]["empty_username"][0] );
74
-    }
61
+	public function testForgotPassEmptyData()
62
+	{
63
+		global $errors;
64
+		$_SERVER['REQUEST_METHOD'] = 'POST';
65
+		$_REQUEST['action'] = 'retrievepassword';
66
+		$_POST['user_login'] = '';
67
+		$_POST['user_email'] = '';
68
+		add_filter('wp_redirect', '__return_false');
69
+		geodir_user_signup();
70
+		remove_filter('wp_redirect', '__return_false');
71
+		$errors = (array) $errors;
72
+		$this->assertArrayHasKey( 'empty_username', $errors["errors"] );
73
+		$this->assertContains( 'Enter a username or e-mail address', $errors["errors"]["empty_username"][0] );
74
+	}
75 75
 
76
-    public function testForgotPassInvalidEmail()
77
-    {
78
-        global $errors;
79
-        $_SERVER['REQUEST_METHOD'] = 'POST';
80
-        $_REQUEST['action'] = 'retrievepassword';
81
-        $_POST['user_login'] = '[email protected]';
82
-        $_POST['user_email'] = '';
83
-        add_filter('wp_redirect', '__return_false');
84
-        geodir_user_signup();
85
-        remove_filter('wp_redirect', '__return_false');
86
-        $errors = (array) $errors;
87
-        $this->assertArrayHasKey( 'invalid_email', $errors["errors"] );
88
-        $this->assertContains( 'There is no user registered with that email address', $errors["errors"]["invalid_email"][0] );
89
-    }
76
+	public function testForgotPassInvalidEmail()
77
+	{
78
+		global $errors;
79
+		$_SERVER['REQUEST_METHOD'] = 'POST';
80
+		$_REQUEST['action'] = 'retrievepassword';
81
+		$_POST['user_login'] = '[email protected]';
82
+		$_POST['user_email'] = '';
83
+		add_filter('wp_redirect', '__return_false');
84
+		geodir_user_signup();
85
+		remove_filter('wp_redirect', '__return_false');
86
+		$errors = (array) $errors;
87
+		$this->assertArrayHasKey( 'invalid_email', $errors["errors"] );
88
+		$this->assertContains( 'There is no user registered with that email address', $errors["errors"]["invalid_email"][0] );
89
+	}
90 90
 
91
-    public function testForgotPassInvalidUsername()
92
-    {
93
-        global $errors;
94
-        $_SERVER['REQUEST_METHOD'] = 'POST';
95
-        $_REQUEST['action'] = 'retrievepassword';
96
-        $_POST['user_login'] = 'holla';
97
-        $_POST['user_email'] = '[email protected]';
98
-        add_filter('wp_redirect', '__return_false');
99
-        geodir_user_signup();
100
-        remove_filter('wp_redirect', '__return_false');
101
-        $errors = (array) $errors;
102
-        $this->assertArrayHasKey( 'invalidcombo', $errors["errors"] );
103
-        $this->assertContains( 'Invalid username or e-mail', $errors["errors"]["invalidcombo"][0] );
104
-    }
91
+	public function testForgotPassInvalidUsername()
92
+	{
93
+		global $errors;
94
+		$_SERVER['REQUEST_METHOD'] = 'POST';
95
+		$_REQUEST['action'] = 'retrievepassword';
96
+		$_POST['user_login'] = 'holla';
97
+		$_POST['user_email'] = '[email protected]';
98
+		add_filter('wp_redirect', '__return_false');
99
+		geodir_user_signup();
100
+		remove_filter('wp_redirect', '__return_false');
101
+		$errors = (array) $errors;
102
+		$this->assertArrayHasKey( 'invalidcombo', $errors["errors"] );
103
+		$this->assertContains( 'Invalid username or e-mail', $errors["errors"]["invalidcombo"][0] );
104
+	}
105 105
 
106
-    public function tearDown()
107
-    {
108
-        parent::tearDown();
109
-    }
106
+	public function tearDown()
107
+	{
108
+		parent::tearDown();
109
+	}
110 110
 
111 111
 }
112 112
 ?>
113 113
\ No newline at end of file
Please login to merge, or discard this patch.
tests/test-Edit_Listing.php 2 patches
Indentation   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -1,63 +1,63 @@
 block discarded – undo
1 1
 <?php
2 2
 class EditListing extends WP_UnitTestCase
3 3
 {
4
-    public function setUp()
5
-    {
6
-        parent::setUp();
7
-        wp_set_current_user(1);
8
-    }
9
-
10
-    public function testEditListing()
11
-    {
12
-        $query_args = array(
13
-            'post_status' => 'publish',
14
-            'post_type' => 'gd_place',
15
-            'posts_per_page' => 1,
16
-        );
17
-
18
-        $all_posts = new WP_Query( $query_args );
19
-        $post_id = null;
20
-        while ( $all_posts->have_posts() ) : $all_posts->the_post();
21
-            $post_id = get_the_ID();
22
-        endwhile;
23
-
24
-        $this->assertTrue(is_int($post_id));
25
-
26
-        $args = array(
27
-            'pid' => $post_id,
28
-            'listing_type' => 'gd_place',
29
-            'post_title' => 'Test Listing Title Modified',
30
-            'post_desc' => 'Test Desc',
31
-            'post_tags' => 'test1,test2',
32
-            'post_address' => 'New York City Hall',
33
-            'post_zip' => '10007',
34
-            'post_latitude' => '40.7127837',
35
-            'post_longitude' => '-74.00594130000002',
36
-            'post_mapview' => 'ROADMAP',
37
-            'post_mapzoom' => '10',
38
-            'geodir_timing' => '10.00 am to 6 pm every day',
39
-            'geodir_contact' => '1234567890',
40
-            'geodir_email' => '[email protected]',
41
-            'geodir_website' => 'http://test.com',
42
-            'geodir_twitter' => 'http://twitter.com/test',
43
-            'geodir_facebook' => 'http://facebook.com/test',
44
-            'geodir_special_offers' => 'Test offer'
45
-        );
46
-        $saved_post_id = geodir_save_listing($args, true);
47
-
48
-        $this->assertTrue(is_int($saved_post_id));
49
-
50
-        $title = get_the_title($post_id);
51
-
52
-        $this->assertEquals('Test Listing Title Modified', $title);
53
-
54
-
55
-    }
56
-
57
-
58
-    public function tearDown()
59
-    {
60
-        parent::tearDown();
61
-    }
4
+	public function setUp()
5
+	{
6
+		parent::setUp();
7
+		wp_set_current_user(1);
8
+	}
9
+
10
+	public function testEditListing()
11
+	{
12
+		$query_args = array(
13
+			'post_status' => 'publish',
14
+			'post_type' => 'gd_place',
15
+			'posts_per_page' => 1,
16
+		);
17
+
18
+		$all_posts = new WP_Query( $query_args );
19
+		$post_id = null;
20
+		while ( $all_posts->have_posts() ) : $all_posts->the_post();
21
+			$post_id = get_the_ID();
22
+		endwhile;
23
+
24
+		$this->assertTrue(is_int($post_id));
25
+
26
+		$args = array(
27
+			'pid' => $post_id,
28
+			'listing_type' => 'gd_place',
29
+			'post_title' => 'Test Listing Title Modified',
30
+			'post_desc' => 'Test Desc',
31
+			'post_tags' => 'test1,test2',
32
+			'post_address' => 'New York City Hall',
33
+			'post_zip' => '10007',
34
+			'post_latitude' => '40.7127837',
35
+			'post_longitude' => '-74.00594130000002',
36
+			'post_mapview' => 'ROADMAP',
37
+			'post_mapzoom' => '10',
38
+			'geodir_timing' => '10.00 am to 6 pm every day',
39
+			'geodir_contact' => '1234567890',
40
+			'geodir_email' => '[email protected]',
41
+			'geodir_website' => 'http://test.com',
42
+			'geodir_twitter' => 'http://twitter.com/test',
43
+			'geodir_facebook' => 'http://facebook.com/test',
44
+			'geodir_special_offers' => 'Test offer'
45
+		);
46
+		$saved_post_id = geodir_save_listing($args, true);
47
+
48
+		$this->assertTrue(is_int($saved_post_id));
49
+
50
+		$title = get_the_title($post_id);
51
+
52
+		$this->assertEquals('Test Listing Title Modified', $title);
53
+
54
+
55
+	}
56
+
57
+
58
+	public function tearDown()
59
+	{
60
+		parent::tearDown();
61
+	}
62 62
 }
63 63
 ?>
64 64
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,9 +15,9 @@
 block discarded – undo
15 15
             'posts_per_page' => 1,
16 16
         );
17 17
 
18
-        $all_posts = new WP_Query( $query_args );
18
+        $all_posts = new WP_Query($query_args);
19 19
         $post_id = null;
20
-        while ( $all_posts->have_posts() ) : $all_posts->the_post();
20
+        while ($all_posts->have_posts()) : $all_posts->the_post();
21 21
             $post_id = get_the_ID();
22 22
         endwhile;
23 23
 
Please login to merge, or discard this patch.
tests/test-Check_Notifications.php 2 patches
Indentation   +80 added lines, -80 removed lines patch added patch discarded remove patch
@@ -1,92 +1,92 @@
 block discarded – undo
1 1
 <?php
2 2
 class CheckNotifications extends WP_UnitTestCase
3 3
 {
4
-    public function setUp()
5
-    {
6
-        parent::setUp();
7
-    }
4
+	public function setUp()
5
+	{
6
+		parent::setUp();
7
+	}
8 8
 
9
-    public function testSendFriendEmail()
10
-    {
11
-        add_filter('wp_mail', 'print_mail');
12
-        ob_start();
13
-        geodir_sendEmail('','', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'send_friend');
14
-        $output = ob_get_clean();
15
-        remove_filter('wp_mail', 'print_mail');
16
-        $this->assertContains( 'thought you might be interested in', $output );
17
-        $this->assertContains( 'Your friend has sent you a message from', $output );
18
-        $this->assertContains( '[email protected]', $output );
19
-        $this->assertContains( 'ADMIN BCC COPY', $output );
20
-    }
9
+	public function testSendFriendEmail()
10
+	{
11
+		add_filter('wp_mail', 'print_mail');
12
+		ob_start();
13
+		geodir_sendEmail('','', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'send_friend');
14
+		$output = ob_get_clean();
15
+		remove_filter('wp_mail', 'print_mail');
16
+		$this->assertContains( 'thought you might be interested in', $output );
17
+		$this->assertContains( 'Your friend has sent you a message from', $output );
18
+		$this->assertContains( '[email protected]', $output );
19
+		$this->assertContains( 'ADMIN BCC COPY', $output );
20
+	}
21 21
 
22
-    public function testSendEnquiryEmail()
23
-    {
24
-        add_filter('wp_mail', 'print_mail');
25
-        ob_start();
26
-        geodir_sendEmail('','', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'send_enquiry');
27
-        $output = ob_get_clean();
28
-        remove_filter('wp_mail', 'print_mail');
29
-        $this->assertContains( 'Website Enquiry', $output );
30
-        $this->assertContains( 'An enquiry has been sent from', $output );
31
-        $this->assertContains( '[email protected]', $output );
32
-        $this->assertContains( 'ADMIN BCC COPY', $output );
33
-    }
22
+	public function testSendEnquiryEmail()
23
+	{
24
+		add_filter('wp_mail', 'print_mail');
25
+		ob_start();
26
+		geodir_sendEmail('','', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'send_enquiry');
27
+		$output = ob_get_clean();
28
+		remove_filter('wp_mail', 'print_mail');
29
+		$this->assertContains( 'Website Enquiry', $output );
30
+		$this->assertContains( 'An enquiry has been sent from', $output );
31
+		$this->assertContains( '[email protected]', $output );
32
+		$this->assertContains( 'ADMIN BCC COPY', $output );
33
+	}
34 34
 
35
-    public function testForgotPassEmail()
36
-    {
37
-        add_filter('wp_mail', 'print_mail');
38
-        ob_start();
39
-        geodir_sendEmail('','', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'forgot_password');
40
-        $output = ob_get_clean();
41
-        remove_filter('wp_mail', 'print_mail');
42
-        $this->assertContains( 'Your new password', $output );
43
-        $this->assertContains( 'You requested a new password for', $output );
44
-        $this->assertContains( '[email protected]', $output );
45
-    }
35
+	public function testForgotPassEmail()
36
+	{
37
+		add_filter('wp_mail', 'print_mail');
38
+		ob_start();
39
+		geodir_sendEmail('','', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'forgot_password');
40
+		$output = ob_get_clean();
41
+		remove_filter('wp_mail', 'print_mail');
42
+		$this->assertContains( 'Your new password', $output );
43
+		$this->assertContains( 'You requested a new password for', $output );
44
+		$this->assertContains( '[email protected]', $output );
45
+	}
46 46
 
47
-    public function testRegistrationEmail()
48
-    {
49
-        add_filter('wp_mail', 'print_mail');
50
-        ob_start();
51
-        geodir_sendEmail('','', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'registration');
52
-        $output = ob_get_clean();
53
-        remove_filter('wp_mail', 'print_mail');
54
-        $this->assertContains( 'Your Log In Details', $output );
55
-        $this->assertContains( 'You can log in  with the following information', $output );
56
-        $this->assertContains( '[email protected]', $output );
57
-        $this->assertContains( 'ADMIN BCC COPY', $output );
58
-    }
47
+	public function testRegistrationEmail()
48
+	{
49
+		add_filter('wp_mail', 'print_mail');
50
+		ob_start();
51
+		geodir_sendEmail('','', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'registration');
52
+		$output = ob_get_clean();
53
+		remove_filter('wp_mail', 'print_mail');
54
+		$this->assertContains( 'Your Log In Details', $output );
55
+		$this->assertContains( 'You can log in  with the following information', $output );
56
+		$this->assertContains( '[email protected]', $output );
57
+		$this->assertContains( 'ADMIN BCC COPY', $output );
58
+	}
59 59
 
60
-    public function testPostSubmitEmail()
61
-    {
62
-        add_filter('wp_mail', 'print_mail');
63
-        ob_start();
64
-        geodir_sendEmail('','', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'post_submit');
65
-        $output = ob_get_clean();
66
-        remove_filter('wp_mail', 'print_mail');
67
-        $this->assertContains( 'Post Submitted Successfully', $output );
68
-        $this->assertContains( 'You submitted the below listing information', $output );
69
-        $this->assertContains( '[email protected]', $output );
70
-        $this->assertContains( 'ADMIN BCC COPY', $output );
71
-        $this->assertContains( 'A new  listing has been published', $output );
72
-    }
60
+	public function testPostSubmitEmail()
61
+	{
62
+		add_filter('wp_mail', 'print_mail');
63
+		ob_start();
64
+		geodir_sendEmail('','', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'post_submit');
65
+		$output = ob_get_clean();
66
+		remove_filter('wp_mail', 'print_mail');
67
+		$this->assertContains( 'Post Submitted Successfully', $output );
68
+		$this->assertContains( 'You submitted the below listing information', $output );
69
+		$this->assertContains( '[email protected]', $output );
70
+		$this->assertContains( 'ADMIN BCC COPY', $output );
71
+		$this->assertContains( 'A new  listing has been published', $output );
72
+	}
73 73
 
74
-    public function testListingPublishedEmail()
75
-    {
76
-        add_filter('wp_mail', 'print_mail');
77
-        ob_start();
78
-        geodir_sendEmail('','', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'listing_published');
79
-        $output = ob_get_clean();
80
-        remove_filter('wp_mail', 'print_mail');
81
-        $this->assertContains( 'Listing Published Successfully', $output );
82
-        $this->assertContains( 'Your listing  has been published', $output );
83
-        $this->assertContains( '[email protected]', $output );
84
-        $this->assertContains( 'ADMIN BCC COPY', $output );
85
-    }
74
+	public function testListingPublishedEmail()
75
+	{
76
+		add_filter('wp_mail', 'print_mail');
77
+		ob_start();
78
+		geodir_sendEmail('','', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'listing_published');
79
+		$output = ob_get_clean();
80
+		remove_filter('wp_mail', 'print_mail');
81
+		$this->assertContains( 'Listing Published Successfully', $output );
82
+		$this->assertContains( 'Your listing  has been published', $output );
83
+		$this->assertContains( '[email protected]', $output );
84
+		$this->assertContains( 'ADMIN BCC COPY', $output );
85
+	}
86 86
 
87
-    public function tearDown()
88
-    {
89
-        parent::tearDown();
90
-    }
87
+	public function tearDown()
88
+	{
89
+		parent::tearDown();
90
+	}
91 91
 }
92 92
 ?>
93 93
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -10,78 +10,78 @@
 block discarded – undo
10 10
     {
11 11
         add_filter('wp_mail', 'print_mail');
12 12
         ob_start();
13
-        geodir_sendEmail('','', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'send_friend');
13
+        geodir_sendEmail('', '', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'send_friend');
14 14
         $output = ob_get_clean();
15 15
         remove_filter('wp_mail', 'print_mail');
16
-        $this->assertContains( 'thought you might be interested in', $output );
17
-        $this->assertContains( 'Your friend has sent you a message from', $output );
18
-        $this->assertContains( '[email protected]', $output );
19
-        $this->assertContains( 'ADMIN BCC COPY', $output );
16
+        $this->assertContains('thought you might be interested in', $output);
17
+        $this->assertContains('Your friend has sent you a message from', $output);
18
+        $this->assertContains('[email protected]', $output);
19
+        $this->assertContains('ADMIN BCC COPY', $output);
20 20
     }
21 21
 
22 22
     public function testSendEnquiryEmail()
23 23
     {
24 24
         add_filter('wp_mail', 'print_mail');
25 25
         ob_start();
26
-        geodir_sendEmail('','', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'send_enquiry');
26
+        geodir_sendEmail('', '', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'send_enquiry');
27 27
         $output = ob_get_clean();
28 28
         remove_filter('wp_mail', 'print_mail');
29
-        $this->assertContains( 'Website Enquiry', $output );
30
-        $this->assertContains( 'An enquiry has been sent from', $output );
31
-        $this->assertContains( '[email protected]', $output );
32
-        $this->assertContains( 'ADMIN BCC COPY', $output );
29
+        $this->assertContains('Website Enquiry', $output);
30
+        $this->assertContains('An enquiry has been sent from', $output);
31
+        $this->assertContains('[email protected]', $output);
32
+        $this->assertContains('ADMIN BCC COPY', $output);
33 33
     }
34 34
 
35 35
     public function testForgotPassEmail()
36 36
     {
37 37
         add_filter('wp_mail', 'print_mail');
38 38
         ob_start();
39
-        geodir_sendEmail('','', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'forgot_password');
39
+        geodir_sendEmail('', '', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'forgot_password');
40 40
         $output = ob_get_clean();
41 41
         remove_filter('wp_mail', 'print_mail');
42
-        $this->assertContains( 'Your new password', $output );
43
-        $this->assertContains( 'You requested a new password for', $output );
44
-        $this->assertContains( '[email protected]', $output );
42
+        $this->assertContains('Your new password', $output);
43
+        $this->assertContains('You requested a new password for', $output);
44
+        $this->assertContains('[email protected]', $output);
45 45
     }
46 46
 
47 47
     public function testRegistrationEmail()
48 48
     {
49 49
         add_filter('wp_mail', 'print_mail');
50 50
         ob_start();
51
-        geodir_sendEmail('','', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'registration');
51
+        geodir_sendEmail('', '', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'registration');
52 52
         $output = ob_get_clean();
53 53
         remove_filter('wp_mail', 'print_mail');
54
-        $this->assertContains( 'Your Log In Details', $output );
55
-        $this->assertContains( 'You can log in  with the following information', $output );
56
-        $this->assertContains( '[email protected]', $output );
57
-        $this->assertContains( 'ADMIN BCC COPY', $output );
54
+        $this->assertContains('Your Log In Details', $output);
55
+        $this->assertContains('You can log in  with the following information', $output);
56
+        $this->assertContains('[email protected]', $output);
57
+        $this->assertContains('ADMIN BCC COPY', $output);
58 58
     }
59 59
 
60 60
     public function testPostSubmitEmail()
61 61
     {
62 62
         add_filter('wp_mail', 'print_mail');
63 63
         ob_start();
64
-        geodir_sendEmail('','', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'post_submit');
64
+        geodir_sendEmail('', '', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'post_submit');
65 65
         $output = ob_get_clean();
66 66
         remove_filter('wp_mail', 'print_mail');
67
-        $this->assertContains( 'Post Submitted Successfully', $output );
68
-        $this->assertContains( 'You submitted the below listing information', $output );
69
-        $this->assertContains( '[email protected]', $output );
70
-        $this->assertContains( 'ADMIN BCC COPY', $output );
71
-        $this->assertContains( 'A new  listing has been published', $output );
67
+        $this->assertContains('Post Submitted Successfully', $output);
68
+        $this->assertContains('You submitted the below listing information', $output);
69
+        $this->assertContains('[email protected]', $output);
70
+        $this->assertContains('ADMIN BCC COPY', $output);
71
+        $this->assertContains('A new  listing has been published', $output);
72 72
     }
73 73
 
74 74
     public function testListingPublishedEmail()
75 75
     {
76 76
         add_filter('wp_mail', 'print_mail');
77 77
         ob_start();
78
-        geodir_sendEmail('','', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'listing_published');
78
+        geodir_sendEmail('', '', '[email protected]', 'Test User', 'Test subject', 'Test message', '', 'listing_published');
79 79
         $output = ob_get_clean();
80 80
         remove_filter('wp_mail', 'print_mail');
81
-        $this->assertContains( 'Listing Published Successfully', $output );
82
-        $this->assertContains( 'Your listing  has been published', $output );
83
-        $this->assertContains( '[email protected]', $output );
84
-        $this->assertContains( 'ADMIN BCC COPY', $output );
81
+        $this->assertContains('Listing Published Successfully', $output);
82
+        $this->assertContains('Your listing  has been published', $output);
83
+        $this->assertContains('[email protected]', $output);
84
+        $this->assertContains('ADMIN BCC COPY', $output);
85 85
     }
86 86
 
87 87
     public function tearDown()
Please login to merge, or discard this patch.
tests/test-Test_Dummy_Data.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
             'post_type' => 'gd_place'
30 30
         );
31 31
 
32
-        $all_posts = new WP_Query( $query_args );
32
+        $all_posts = new WP_Query($query_args);
33 33
 
34 34
         $total_posts = $all_posts->found_posts;
35 35
 
Please login to merge, or discard this patch.
Indentation   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -1,50 +1,50 @@
 block discarded – undo
1 1
 <?php
2 2
 class TestDummyData extends WP_UnitTestCase
3 3
 {
4
-    public function setUp()
5
-    {
6
-        parent::setUp();
7
-        wp_set_current_user(1);
8
-        geodir_delete_dummy_posts();
9
-    }
4
+	public function setUp()
5
+	{
6
+		parent::setUp();
7
+		wp_set_current_user(1);
8
+		geodir_delete_dummy_posts();
9
+	}
10 10
 
11
-    public function testCreatePlaces()
12
-    {
13
-        global $dummy_post_index, $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2;
11
+	public function testCreatePlaces()
12
+	{
13
+		global $dummy_post_index, $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2;
14 14
 
15
-        global $geodir_post_custom_fields_cache;
16
-        $geodir_post_custom_fields_cache = array();
15
+		global $geodir_post_custom_fields_cache;
16
+		$geodir_post_custom_fields_cache = array();
17 17
 
18
-        $city_bound_lat1 = 40.4960439;
19
-        $city_bound_lng1 = -74.2557349;
20
-        $city_bound_lat2 = 40.91525559999999;
21
-        $city_bound_lng2 = -73.7002721;
18
+		$city_bound_lat1 = 40.4960439;
19
+		$city_bound_lng1 = -74.2557349;
20
+		$city_bound_lat2 = 40.91525559999999;
21
+		$city_bound_lng2 = -73.7002721;
22 22
 
23 23
 
24
-        $dummy_post_index = 30;
25
-        test_create_dummy_posts(30);
24
+		$dummy_post_index = 30;
25
+		test_create_dummy_posts(30);
26 26
 
27
-        $query_args = array(
28
-            'post_status' => 'publish',
29
-            'post_type' => 'gd_place'
30
-        );
27
+		$query_args = array(
28
+			'post_status' => 'publish',
29
+			'post_type' => 'gd_place'
30
+		);
31 31
 
32
-        $all_posts = new WP_Query( $query_args );
32
+		$all_posts = new WP_Query( $query_args );
33 33
 
34
-        $total_posts = $all_posts->found_posts;
34
+		$total_posts = $all_posts->found_posts;
35 35
 
36
-        $this->assertTrue((int) $total_posts > 0);
36
+		$this->assertTrue((int) $total_posts > 0);
37 37
 
38
-    }
38
+	}
39 39
 
40
-    public function testDeletePlaces()
41
-    {
42
-        geodir_delete_dummy_posts();
43
-    }
40
+	public function testDeletePlaces()
41
+	{
42
+		geodir_delete_dummy_posts();
43
+	}
44 44
 
45
-    public function tearDown()
46
-    {
47
-        parent::tearDown();
48
-    }
45
+	public function tearDown()
46
+	{
47
+		parent::tearDown();
48
+	}
49 49
 }
50 50
 ?>
51 51
\ No newline at end of file
Please login to merge, or discard this patch.
tests/test-Import_Export.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,19 +1,19 @@
 block discarded – undo
1 1
 <?php
2 2
 class ImportExport extends WP_UnitTestCase
3 3
 {
4
-    public function setUp()
5
-    {
6
-        parent::setUp();
7
-    }
4
+	public function setUp()
5
+	{
6
+		parent::setUp();
7
+	}
8 8
 
9
-    public function testImportExport()
10
-    {
9
+	public function testImportExport()
10
+	{
11 11
 
12
-    }
12
+	}
13 13
 
14
-    public function tearDown()
15
-    {
16
-        parent::tearDown();
17
-    }
14
+	public function tearDown()
15
+	{
16
+		parent::tearDown();
17
+	}
18 18
 }
19 19
 ?>
20 20
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-functions/location_functions.php 3 patches
Braces   +31 added lines, -22 removed lines patch added patch discarded remove patch
@@ -61,11 +61,12 @@  discard block
 block discarded – undo
61 61
 function geodir_is_default_location_set()
62 62
 {
63 63
     $default_location = geodir_get_default_location();
64
-    if (!empty($default_location))
65
-        return true;
66
-    else
67
-        return false;
68
-}
64
+    if (!empty($default_location)) {
65
+            return true;
66
+    } else {
67
+            return false;
68
+    }
69
+    }
69 70
 
70 71
 /**
71 72
  * Returns location slug using location string.
@@ -258,8 +259,9 @@  discard block
 block discarded – undo
258 259
 
259 260
         }
260 261
 
261
-        if ($geodir_location->is_default)
262
-            update_option('geodir_default_location', $geodir_location);
262
+        if ($geodir_location->is_default) {
263
+                    update_option('geodir_default_location', $geodir_location);
264
+        }
263 265
 
264 266
         return $geodir_location->location_id;
265 267
 
@@ -307,9 +309,10 @@  discard block
 block discarded – undo
307 309
     $status = $data->status;
308 310
     if ($status == "OK") {
309 311
         return $data->results[0]->address_components;
310
-    } else
311
-        return false;
312
-}
312
+    } else {
313
+            return false;
314
+    }
315
+    }
313 316
 
314 317
 /**
315 318
  * Returns current location terms.
@@ -333,16 +336,19 @@  discard block
 block discarded – undo
333 336
         }
334 337
 
335 338
         $country = $gd_session->get('gd_country');
336
-        if ($country != '' && $country)
337
-            $location_array['gd_country'] = urldecode($country);
339
+        if ($country != '' && $country) {
340
+                    $location_array['gd_country'] = urldecode($country);
341
+        }
338 342
 
339 343
         $region = $gd_session->get('gd_region');
340
-        if ($region != '' && $region)
341
-            $location_array['gd_region'] = urldecode($region);
344
+        if ($region != '' && $region) {
345
+                    $location_array['gd_region'] = urldecode($region);
346
+        }
342 347
 
343 348
         $city = $gd_session->get('gd_city');
344
-        if ($city != '' && $city)
345
-            $location_array['gd_city'] = urldecode($city);
349
+        if ($city != '' && $city) {
350
+                    $location_array['gd_city'] = urldecode($city);
351
+        }
346 352
     } else {
347 353
         if ((isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] == 'me') || (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] == 'me') || (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] == 'me')) {
348 354
             return $location_array;
@@ -354,14 +360,17 @@  discard block
 block discarded – undo
354 360
 
355 361
         $city = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : '';
356 362
 
357
-        if ($country != '')
358
-            $location_array['gd_country'] = urldecode($country);
363
+        if ($country != '') {
364
+                    $location_array['gd_country'] = urldecode($country);
365
+        }
359 366
 
360
-        if ($region != '')
361
-            $location_array['gd_region'] = urldecode($region);
367
+        if ($region != '') {
368
+                    $location_array['gd_region'] = urldecode($region);
369
+        }
362 370
 
363
-        if ($city != '')
364
-            $location_array['gd_city'] = urldecode($city);
371
+        if ($city != '') {
372
+                    $location_array['gd_city'] = urldecode($city);
373
+        }
365 374
 			
366 375
 		// Fix category link in ajax popular category widget on change post type
367 376
 		if (empty($location_array) && defined('DOING_AJAX') && DOING_AJAX) {
Please login to merge, or discard this patch.
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 {
125 125
     global $wpdb;
126 126
 
127
-    $rows = $wpdb->get_results("SELECT Country,ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " ORDER BY Country ASC");
127
+    $rows = $wpdb->get_results("SELECT Country,ISO2 FROM ".GEODIR_COUNTRIES_TABLE." ORDER BY Country ASC");
128 128
     
129 129
     $ISO2 = array();
130 130
     $countries = array();
@@ -136,11 +136,11 @@  discard block
 block discarded – undo
136 136
     
137 137
     asort($countries);
138 138
     
139
-    $out_put = '<option ' . selected('', $post_country, false) . ' value="">' . __('Select Country', 'geodirectory') . '</option>';
139
+    $out_put = '<option '.selected('', $post_country, false).' value="">'.__('Select Country', 'geodirectory').'</option>';
140 140
     foreach ($countries as $country => $name) {
141 141
         $ccode = $ISO2[$country];
142 142
 
143
-        $out_put .= '<option ' . selected($post_country, $country, false) . ' value="' . esc_attr($country) . '" data-country_code="' . $ccode . '">' . $name . '</option>';
143
+        $out_put .= '<option '.selected($post_country, $country, false).' value="'.esc_attr($country).'" data-country_code="'.$ccode.'">'.$name.'</option>';
144 144
     }
145 145
 
146 146
     echo $out_put;
@@ -182,10 +182,10 @@  discard block
 block discarded – undo
182 182
         if (isset($_REQUEST['listing_action']) && $_REQUEST['listing_action'] == 'delete') {
183 183
 
184 184
             foreach ($posttype as $posttypeobj) {
185
-                $post_locations = '[' . $default_location->city_slug . '],[' . $default_location->region_slug . '],[' . $default_location->country_slug . ']'; // set all overall post location
185
+                $post_locations = '['.$default_location->city_slug.'],['.$default_location->region_slug.'],['.$default_location->country_slug.']'; // set all overall post location
186 186
 
187 187
                 $sql = $wpdb->prepare(
188
-                    "UPDATE " . $plugin_prefix . $posttypeobj . "_detail SET post_city=%s, post_region=%s, post_country=%s, post_locations=%s WHERE post_location_id=%d AND ( post_city!=%s OR post_region!=%s OR post_country!=%s OR post_locations!=%s OR post_locations IS NULL)",
188
+                    "UPDATE ".$plugin_prefix.$posttypeobj."_detail SET post_city=%s, post_region=%s, post_country=%s, post_locations=%s WHERE post_location_id=%d AND ( post_city!=%s OR post_region!=%s OR post_country!=%s OR post_locations!=%s OR post_locations IS NULL)",
189 189
                     array($_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations, $locationid, $_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations)
190 190
                 );
191 191
                 $wpdb->query($sql);
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
          *
234 234
          * @since 1.0.0
235 235
          */
236
-        $geodir_location = (object)apply_filters('geodir_add_new_location', array('location_id' => 0,
236
+        $geodir_location = (object) apply_filters('geodir_add_new_location', array('location_id' => 0,
237 237
             'country' => $location_country,
238 238
             'region' => $location_region,
239 239
             'city' => $location_city,
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
  */
296 296
 function geodir_get_address_by_lat_lan($lat, $lng)
297 297
 {
298
-    $url = 'https://maps.googleapis.com/maps/api/geocode/json?latlng=' . trim($lat) . ',' . trim($lng) ;
298
+    $url = 'https://maps.googleapis.com/maps/api/geocode/json?latlng='.trim($lat).','.trim($lng);
299 299
 
300 300
     $ch = curl_init();
301 301
     curl_setopt($ch, CURLOPT_URL, $url);
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
 	 * @param string $location_array_from Source type of location terms. Default session.
389 389
 	 * @param string $gd_post_type WP post type.
390 390
 	 */
391
-	$location_array = apply_filters( 'geodir_current_location_terms', $location_array, $location_array_from, $gd_post_type );
391
+	$location_array = apply_filters('geodir_current_location_terms', $location_array, $location_array_from, $gd_post_type);
392 392
 
393 393
     return $location_array;
394 394
 
@@ -434,7 +434,7 @@  discard block
 block discarded – undo
434 434
  */
435 435
 function geodir_get_osm_address_by_lat_lan($lat, $lng) {
436 436
     $url = is_ssl() ? 'https:' : 'http:';
437
-    $url .= '//nominatim.openstreetmap.org/reverse?format=json&lat=' . trim($lat) . '&lon=' . trim($lng) . '&zoom=16&addressdetails=1&email=' . get_option('admin_email');
437
+    $url .= '//nominatim.openstreetmap.org/reverse?format=json&lat='.trim($lat).'&lon='.trim($lng).'&zoom=16&addressdetails=1&email='.get_option('admin_email');
438 438
 
439 439
     $ch = curl_init();
440 440
     curl_setopt($ch, CURLOPT_URL, $url);
@@ -448,9 +448,9 @@  discard block
 block discarded – undo
448 448
     
449 449
     if (!empty($data) && !empty($data->address)) {
450 450
         $address_fields = array('public_building', 'house', 'house_number', 'bakery', 'footway', 'street', 'road', 'village', 'attraction', 'pedestrian', 'neighbourhood', 'suburb');
451
-        $formatted_address = (array)$data->address;
451
+        $formatted_address = (array) $data->address;
452 452
         
453
-        foreach ( $data->address as $key => $value ) {
453
+        foreach ($data->address as $key => $value) {
454 454
             if (!in_array($key, $address_fields)) {
455 455
                 unset($formatted_address[$key]);
456 456
             }
@@ -478,7 +478,7 @@  discard block
 block discarded – undo
478 478
     }
479 479
     
480 480
     if (defined('POST_LOCATION_TABLE')) {
481
-        $rows = $wpdb->get_results($wpdb->prepare("SELECT DISTINCT country FROM " . POST_LOCATION_TABLE . " WHERE country NOT LIKE %s ORDER BY location_id ASC", $country));
481
+        $rows = $wpdb->get_results($wpdb->prepare("SELECT DISTINCT country FROM ".POST_LOCATION_TABLE." WHERE country NOT LIKE %s ORDER BY location_id ASC", $country));
482 482
         if (!empty($rows)) {
483 483
             foreach ($rows as $row) {
484 484
                 $translated = __($row->country, 'geodirectory');
@@ -488,7 +488,7 @@  discard block
 block discarded – undo
488 488
             }
489 489
         }
490 490
         
491
-        $rows = $wpdb->get_results( $wpdb->prepare( "SELECT DISTINCT country FROM " . POST_LOCATION_TABLE . " WHERE country_slug LIKE %s AND country NOT LIKE %s ORDER BY location_id", $country, $country ) );
491
+        $rows = $wpdb->get_results($wpdb->prepare("SELECT DISTINCT country FROM ".POST_LOCATION_TABLE." WHERE country_slug LIKE %s AND country NOT LIKE %s ORDER BY location_id", $country, $country));
492 492
         if (!empty($rows)) {
493 493
             foreach ($rows as $row) {
494 494
                 $translated = __($row->country, 'geodirectory');
@@ -526,10 +526,10 @@  discard block
 block discarded – undo
526 526
 function geodir_get_country_iso2($country) {
527 527
     global $wpdb;
528 528
     
529
-    if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", $country))) {
529
+    if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM ".GEODIR_COUNTRIES_TABLE." WHERE Country LIKE %s", $country))) {
530 530
         return $result;
531 531
     }
532
-    if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", geodir_get_normal_country($country)))) {
532
+    if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM ".GEODIR_COUNTRIES_TABLE." WHERE Country LIKE %s", geodir_get_normal_country($country)))) {
533 533
         return $result;
534 534
     }
535 535
     
@@ -548,10 +548,10 @@  discard block
 block discarded – undo
548 548
 function geodir_get_country_by_name($country, $iso2 = false) {
549 549
     global $wpdb;
550 550
     
551
-    if ($result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", $country))) {
551
+    if ($result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM ".GEODIR_COUNTRIES_TABLE." WHERE Country LIKE %s", $country))) {
552 552
         return $result;
553 553
     }
554
-    if ($iso2 && $result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE ISO2 LIKE %s", $country))) {
554
+    if ($iso2 && $result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM ".GEODIR_COUNTRIES_TABLE." WHERE ISO2 LIKE %s", $country))) {
555 555
         return $result;
556 556
     }
557 557
     
Please login to merge, or discard this patch.
Indentation   +266 added lines, -266 removed lines patch added patch discarded remove patch
@@ -9,10 +9,10 @@  discard block
 block discarded – undo
9 9
  */
10 10
 function geodir_get_current_city_lat()
11 11
 {
12
-    $location = geodir_get_default_location();
13
-    $lat = isset($location_result->city_latitude) ? $location_result->city_latitude : '39.952484';
12
+	$location = geodir_get_default_location();
13
+	$lat = isset($location_result->city_latitude) ? $location_result->city_latitude : '39.952484';
14 14
 
15
-    return $lat;
15
+	return $lat;
16 16
 }
17 17
 
18 18
 /**
@@ -25,9 +25,9 @@  discard block
 block discarded – undo
25 25
  */
26 26
 function geodir_get_current_city_lng()
27 27
 {
28
-    $location = geodir_get_default_location();
29
-    $lng = isset($location_result->city_longitude) ? $location_result->city_longitude : '-75.163786';
30
-    return $lng;
28
+	$location = geodir_get_default_location();
29
+	$lng = isset($location_result->city_longitude) ? $location_result->city_longitude : '-75.163786';
30
+	return $lng;
31 31
 }
32 32
 
33 33
 
@@ -40,15 +40,15 @@  discard block
 block discarded – undo
40 40
  */
41 41
 function geodir_get_default_location()
42 42
 {
43
-    /**
44
-     * Filter the default location.
45
-     *
46
-     * @since 1.0.0
47
-     * @package GeoDirectory
48
-     *
49
-     * @param string $location_result The default location object.
50
-     */
51
-    return $location_result = apply_filters('geodir_get_default_location', get_option('geodir_default_location'));
43
+	/**
44
+	 * Filter the default location.
45
+	 *
46
+	 * @since 1.0.0
47
+	 * @package GeoDirectory
48
+	 *
49
+	 * @param string $location_result The default location object.
50
+	 */
51
+	return $location_result = apply_filters('geodir_get_default_location', get_option('geodir_default_location'));
52 52
 }
53 53
 
54 54
 /**
@@ -60,11 +60,11 @@  discard block
 block discarded – undo
60 60
  */
61 61
 function geodir_is_default_location_set()
62 62
 {
63
-    $default_location = geodir_get_default_location();
64
-    if (!empty($default_location))
65
-        return true;
66
-    else
67
-        return false;
63
+	$default_location = geodir_get_default_location();
64
+	if (!empty($default_location))
65
+		return true;
66
+	else
67
+		return false;
68 68
 }
69 69
 
70 70
 /**
@@ -78,15 +78,15 @@  discard block
 block discarded – undo
78 78
 function create_location_slug($location_string)
79 79
 {
80 80
 
81
-    /**
82
-     * Filter the location slug.
83
-     *
84
-     * @since 1.0.0
85
-     * @package GeoDirectory
86
-     *
87
-     * @param string $location_string Sanitized location string.
88
-     */
89
-    return urldecode(apply_filters('geodir_location_slug_check', sanitize_title($location_string)));
81
+	/**
82
+	 * Filter the location slug.
83
+	 *
84
+	 * @since 1.0.0
85
+	 * @package GeoDirectory
86
+	 *
87
+	 * @param string $location_string Sanitized location string.
88
+	 */
89
+	return urldecode(apply_filters('geodir_location_slug_check', sanitize_title($location_string)));
90 90
 
91 91
 }
92 92
 
@@ -100,15 +100,15 @@  discard block
 block discarded – undo
100 100
  */
101 101
 function geodir_get_location($id = '')
102 102
 {
103
-    /**
104
-     * Filter the location information.
105
-     *
106
-     * @since 1.0.0
107
-     * @package GeoDirectory
108
-     *
109
-     * @param string $id The location ID.
110
-     */
111
-    return $location_result = apply_filters('geodir_get_location_by_id', get_option('geodir_default_location'), $id);
103
+	/**
104
+	 * Filter the location information.
105
+	 *
106
+	 * @since 1.0.0
107
+	 * @package GeoDirectory
108
+	 *
109
+	 * @param string $id The location ID.
110
+	 */
111
+	return $location_result = apply_filters('geodir_get_location_by_id', get_option('geodir_default_location'), $id);
112 112
 }
113 113
 
114 114
 /**
@@ -122,28 +122,28 @@  discard block
 block discarded – undo
122 122
  */
123 123
 function geodir_get_country_dl($post_country = '', $prefix = '')
124 124
 {
125
-    global $wpdb;
125
+	global $wpdb;
126 126
 
127
-    $rows = $wpdb->get_results("SELECT Country,ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " ORDER BY Country ASC");
127
+	$rows = $wpdb->get_results("SELECT Country,ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " ORDER BY Country ASC");
128 128
     
129
-    $ISO2 = array();
130
-    $countries = array();
129
+	$ISO2 = array();
130
+	$countries = array();
131 131
     
132
-    foreach ($rows as $row) {
133
-        $ISO2[$row->Country] = $row->ISO2;
134
-        $countries[$row->Country] = __($row->Country, 'geodirectory');
135
-    }
132
+	foreach ($rows as $row) {
133
+		$ISO2[$row->Country] = $row->ISO2;
134
+		$countries[$row->Country] = __($row->Country, 'geodirectory');
135
+	}
136 136
     
137
-    asort($countries);
137
+	asort($countries);
138 138
     
139
-    $out_put = '<option ' . selected('', $post_country, false) . ' value="">' . __('Select Country', 'geodirectory') . '</option>';
140
-    foreach ($countries as $country => $name) {
141
-        $ccode = $ISO2[$country];
139
+	$out_put = '<option ' . selected('', $post_country, false) . ' value="">' . __('Select Country', 'geodirectory') . '</option>';
140
+	foreach ($countries as $country => $name) {
141
+		$ccode = $ISO2[$country];
142 142
 
143
-        $out_put .= '<option ' . selected($post_country, $country, false) . ' value="' . esc_attr($country) . '" data-country_code="' . $ccode . '">' . $name . '</option>';
144
-    }
143
+		$out_put .= '<option ' . selected($post_country, $country, false) . ' value="' . esc_attr($country) . '" data-country_code="' . $ccode . '">' . $name . '</option>';
144
+	}
145 145
 
146
-    echo $out_put;
146
+	echo $out_put;
147 147
 }
148 148
 
149 149
 
@@ -158,40 +158,40 @@  discard block
 block discarded – undo
158 158
 function geodir_location_form_submit()
159 159
 {
160 160
 
161
-    global $wpdb, $plugin_prefix;
162
-    if (isset($_REQUEST['add_location'])) {
161
+	global $wpdb, $plugin_prefix;
162
+	if (isset($_REQUEST['add_location'])) {
163 163
 
164
-        $location_info = array(
165
-            'city' => $_REQUEST['city'],
166
-            'region' => $_REQUEST['region'],
167
-            'country' => $_REQUEST['country'],
168
-            'geo_lat' => $_REQUEST['latitude'],
169
-            'geo_lng' => $_REQUEST['longitude'],
170
-            'is_default' => $_REQUEST['is_default'],
171
-            'update_city' => $_REQUEST['update_city']
172
-        );
164
+		$location_info = array(
165
+			'city' => $_REQUEST['city'],
166
+			'region' => $_REQUEST['region'],
167
+			'country' => $_REQUEST['country'],
168
+			'geo_lat' => $_REQUEST['latitude'],
169
+			'geo_lng' => $_REQUEST['longitude'],
170
+			'is_default' => $_REQUEST['is_default'],
171
+			'update_city' => $_REQUEST['update_city']
172
+		);
173 173
 
174
-        $old_location = geodir_get_default_location();
174
+		$old_location = geodir_get_default_location();
175 175
 
176
-        $locationid = geodir_add_new_location($location_info);
176
+		$locationid = geodir_add_new_location($location_info);
177 177
 
178
-        $default_location = geodir_get_location($locationid);
178
+		$default_location = geodir_get_location($locationid);
179 179
 
180
-        //UPDATE AND DELETE LISTING
181
-        $posttype = geodir_get_posttypes();
182
-        if (isset($_REQUEST['listing_action']) && $_REQUEST['listing_action'] == 'delete') {
180
+		//UPDATE AND DELETE LISTING
181
+		$posttype = geodir_get_posttypes();
182
+		if (isset($_REQUEST['listing_action']) && $_REQUEST['listing_action'] == 'delete') {
183 183
 
184
-            foreach ($posttype as $posttypeobj) {
185
-                $post_locations = '[' . $default_location->city_slug . '],[' . $default_location->region_slug . '],[' . $default_location->country_slug . ']'; // set all overall post location
184
+			foreach ($posttype as $posttypeobj) {
185
+				$post_locations = '[' . $default_location->city_slug . '],[' . $default_location->region_slug . '],[' . $default_location->country_slug . ']'; // set all overall post location
186 186
 
187
-                $sql = $wpdb->prepare(
188
-                    "UPDATE " . $plugin_prefix . $posttypeobj . "_detail SET post_city=%s, post_region=%s, post_country=%s, post_locations=%s WHERE post_location_id=%d AND ( post_city!=%s OR post_region!=%s OR post_country!=%s OR post_locations!=%s OR post_locations IS NULL)",
189
-                    array($_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations, $locationid, $_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations)
190
-                );
191
-                $wpdb->query($sql);
192
-            }
193
-        }
194
-    }
187
+				$sql = $wpdb->prepare(
188
+					"UPDATE " . $plugin_prefix . $posttypeobj . "_detail SET post_city=%s, post_region=%s, post_country=%s, post_locations=%s WHERE post_location_id=%d AND ( post_city!=%s OR post_region!=%s OR post_country!=%s OR post_locations!=%s OR post_locations IS NULL)",
189
+					array($_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations, $locationid, $_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations)
190
+				);
191
+				$wpdb->query($sql);
192
+			}
193
+		}
194
+	}
195 195
 }
196 196
 
197 197
 /**
@@ -215,37 +215,37 @@  discard block
 block discarded – undo
215 215
  */
216 216
 function geodir_add_new_location($location_info = array())
217 217
 {
218
-    global $wpdb;
219
-
220
-    if (!empty($location_info)) {
221
-        $location_city = ($location_info['city'] != '') ? $location_info['city'] : 'all';
222
-        $location_region = ($location_info['region'] != '') ? $location_info['region'] : 'all';
223
-        $location_country = ($location_info['country'] != '') ? geodir_get_normal_country($location_info['country']) : 'all';
224
-        $location_lat = ($location_info['geo_lat'] != '') ? $location_info['geo_lat'] : '';
225
-        $location_lng = ($location_info['geo_lng'] != '') ? $location_info['geo_lng'] : '';
226
-        $is_default = isset($location_info['is_default']) ? $location_info['is_default'] : '';
227
-        $country_slug = create_location_slug(__($location_country, 'geodirectory'));
228
-        $region_slug = create_location_slug($location_region);
229
-        $city_slug = create_location_slug($location_city);
218
+	global $wpdb;
219
+
220
+	if (!empty($location_info)) {
221
+		$location_city = ($location_info['city'] != '') ? $location_info['city'] : 'all';
222
+		$location_region = ($location_info['region'] != '') ? $location_info['region'] : 'all';
223
+		$location_country = ($location_info['country'] != '') ? geodir_get_normal_country($location_info['country']) : 'all';
224
+		$location_lat = ($location_info['geo_lat'] != '') ? $location_info['geo_lat'] : '';
225
+		$location_lng = ($location_info['geo_lng'] != '') ? $location_info['geo_lng'] : '';
226
+		$is_default = isset($location_info['is_default']) ? $location_info['is_default'] : '';
227
+		$country_slug = create_location_slug(__($location_country, 'geodirectory'));
228
+		$region_slug = create_location_slug($location_region);
229
+		$city_slug = create_location_slug($location_city);
230 230
         
231
-        /**
232
-         * Filter add new location data.
233
-         *
234
-         * @since 1.0.0
235
-         */
236
-        $geodir_location = (object)apply_filters('geodir_add_new_location', array('location_id' => 0,
237
-            'country' => $location_country,
238
-            'region' => $location_region,
239
-            'city' => $location_city,
240
-            'country_slug' => $country_slug,
241
-            'region_slug' => $region_slug,
242
-            'city_slug' => $city_slug,
243
-            'city_latitude' => $location_lat,
244
-            'city_longitude' => $location_lng,
245
-            'is_default' => $is_default
246
-        ));
247
-
248
-        /* // Not allowed to create country in DB : 2016-12-09
231
+		/**
232
+		 * Filter add new location data.
233
+		 *
234
+		 * @since 1.0.0
235
+		 */
236
+		$geodir_location = (object)apply_filters('geodir_add_new_location', array('location_id' => 0,
237
+			'country' => $location_country,
238
+			'region' => $location_region,
239
+			'city' => $location_city,
240
+			'country_slug' => $country_slug,
241
+			'region_slug' => $region_slug,
242
+			'city_slug' => $city_slug,
243
+			'city_latitude' => $location_lat,
244
+			'city_longitude' => $location_lng,
245
+			'is_default' => $is_default
246
+		));
247
+
248
+		/* // Not allowed to create country in DB : 2016-12-09
249 249
         if ($geodir_location->country) {
250 250
 
251 251
             $get_country = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country=%s", array($geodir_location->country)));
@@ -259,14 +259,14 @@  discard block
 block discarded – undo
259 259
         }
260 260
         */
261 261
 
262
-        if ($geodir_location->is_default)
263
-            update_option('geodir_default_location', $geodir_location);
262
+		if ($geodir_location->is_default)
263
+			update_option('geodir_default_location', $geodir_location);
264 264
 
265
-        return $geodir_location->location_id;
265
+		return $geodir_location->location_id;
266 266
 
267
-    } else {
268
-        return false;
269
-    }
267
+	} else {
268
+		return false;
269
+	}
270 270
 }
271 271
 
272 272
 /**
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
  */
281 281
 function geodir_random_float($min = 0, $max = 1)
282 282
 {
283
-    return $min + mt_rand() / mt_getrandmax() * ($max - $min);
283
+	return $min + mt_rand() / mt_getrandmax() * ($max - $min);
284 284
 }
285 285
 
286 286
 /**
@@ -294,22 +294,22 @@  discard block
 block discarded – undo
294 294
  */
295 295
 function geodir_get_address_by_lat_lan($lat, $lng)
296 296
 {
297
-    $url = 'https://maps.googleapis.com/maps/api/geocode/json?latlng=' . trim($lat) . ',' . trim($lng) ;
298
-
299
-    $ch = curl_init();
300
-    curl_setopt($ch, CURLOPT_URL, $url);
301
-    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
302
-    curl_setopt($ch, CURLOPT_PROXYPORT, 3128);
303
-    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
304
-    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
305
-    $response = curl_exec($ch);
306
-    curl_close($ch);
307
-    $data = json_decode($response);
308
-    $status = $data->status;
309
-    if ($status == "OK") {
310
-        return $data->results[0]->address_components;
311
-    } else
312
-        return false;
297
+	$url = 'https://maps.googleapis.com/maps/api/geocode/json?latlng=' . trim($lat) . ',' . trim($lng) ;
298
+
299
+	$ch = curl_init();
300
+	curl_setopt($ch, CURLOPT_URL, $url);
301
+	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
302
+	curl_setopt($ch, CURLOPT_PROXYPORT, 3128);
303
+	curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
304
+	curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
305
+	$response = curl_exec($ch);
306
+	curl_close($ch);
307
+	$data = json_decode($response);
308
+	$status = $data->status;
309
+	if ($status == "OK") {
310
+		return $data->results[0]->address_components;
311
+	} else
312
+		return false;
313 313
 }
314 314
 
315 315
 /**
@@ -326,70 +326,70 @@  discard block
 block discarded – undo
326 326
  */
327 327
 function geodir_get_current_location_terms($location_array_from = 'session', $gd_post_type = '')
328 328
 {
329
-    global $wp, $gd_session;
330
-    $location_array = array();
331
-    if ($location_array_from == 'session') {
332
-        if ($gd_session->get('gd_country') == 'me' || $gd_session->get('gd_region') == 'me' || $gd_session->get('gd_city') == 'me') {
333
-            return $location_array;
334
-        }
329
+	global $wp, $gd_session;
330
+	$location_array = array();
331
+	if ($location_array_from == 'session') {
332
+		if ($gd_session->get('gd_country') == 'me' || $gd_session->get('gd_region') == 'me' || $gd_session->get('gd_city') == 'me') {
333
+			return $location_array;
334
+		}
335 335
 
336
-        $country = $gd_session->get('gd_country');
337
-        if ($country != '' && $country)
338
-            $location_array['gd_country'] = urldecode($country);
336
+		$country = $gd_session->get('gd_country');
337
+		if ($country != '' && $country)
338
+			$location_array['gd_country'] = urldecode($country);
339 339
 
340
-        $region = $gd_session->get('gd_region');
341
-        if ($region != '' && $region)
342
-            $location_array['gd_region'] = urldecode($region);
340
+		$region = $gd_session->get('gd_region');
341
+		if ($region != '' && $region)
342
+			$location_array['gd_region'] = urldecode($region);
343 343
 
344
-        $city = $gd_session->get('gd_city');
345
-        if ($city != '' && $city)
346
-            $location_array['gd_city'] = urldecode($city);
347
-    } else {
348
-        if ((isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] == 'me') || (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] == 'me') || (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] == 'me')) {
349
-            return $location_array;
350
-        }
344
+		$city = $gd_session->get('gd_city');
345
+		if ($city != '' && $city)
346
+			$location_array['gd_city'] = urldecode($city);
347
+	} else {
348
+		if ((isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] == 'me') || (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] == 'me') || (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] == 'me')) {
349
+			return $location_array;
350
+		}
351 351
 
352
-        $country = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : '';
352
+		$country = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : '';
353 353
 
354
-        $region = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : '';
354
+		$region = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : '';
355 355
 
356
-        $city = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : '';
356
+		$city = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : '';
357 357
 
358
-        if ($country != '')
359
-            $location_array['gd_country'] = urldecode($country);
358
+		if ($country != '')
359
+			$location_array['gd_country'] = urldecode($country);
360 360
 
361
-        if ($region != '')
362
-            $location_array['gd_region'] = urldecode($region);
361
+		if ($region != '')
362
+			$location_array['gd_region'] = urldecode($region);
363 363
 
364
-        if ($city != '')
365
-            $location_array['gd_city'] = urldecode($city);
364
+		if ($city != '')
365
+			$location_array['gd_city'] = urldecode($city);
366 366
 			
367 367
 		// Fix category link in ajax popular category widget on change post type
368 368
 		if (empty($location_array) && defined('DOING_AJAX') && DOING_AJAX) {
369 369
 			$location_array = geodir_get_current_location_terms('session');
370 370
 		}
371
-    }
371
+	}
372 372
 
373 373
 	/**
374 374
 	 * Filter the location terms.
375 375
 	 *
376 376
 	 * @since 1.4.6
377
-     * @package GeoDirectory
377
+	 * @package GeoDirectory
378
+	 *
379
+	 * @param array $location_array {
380
+	 *    Attributes of the location_array.
381
+	 *
382
+	 *    @type string $gd_country The country slug.
383
+	 *    @type string $gd_region The region slug.
384
+	 *    @type string $gd_city The city slug.
378 385
 	 *
379
-     * @param array $location_array {
380
-     *    Attributes of the location_array.
381
-     *
382
-     *    @type string $gd_country The country slug.
383
-     *    @type string $gd_region The region slug.
384
-     *    @type string $gd_city The city slug.
385
-     *
386
-     * }
386
+	 * }
387 387
 	 * @param string $location_array_from Source type of location terms. Default session.
388 388
 	 * @param string $gd_post_type WP post type.
389 389
 	 */
390 390
 	$location_array = apply_filters( 'geodir_current_location_terms', $location_array, $location_array_from, $gd_post_type );
391 391
 
392
-    return $location_array;
392
+	return $location_array;
393 393
 
394 394
 }
395 395
 
@@ -402,24 +402,24 @@  discard block
 block discarded – undo
402 402
  * @return bool|string
403 403
  */
404 404
 function geodir_get_location_link($which_location = 'current') {
405
-    $location_link = get_permalink(geodir_location_page_id());
406
-
407
-    if ($which_location == 'base') {
408
-        return $location_link;
409
-    } else {
410
-        $location_terms = geodir_get_current_location_terms();
411
-
412
-        if (!empty($location_terms)) {
413
-            if (get_option('permalink_structure') != '') {
414
-                $location_terms = implode("/", $location_terms);
415
-                $location_terms = rtrim($location_terms, '/');
416
-                $location_link .= $location_terms;
417
-            } else {
418
-                $location_link = geodir_getlink($location_link, $location_terms);
419
-            }
420
-        }
421
-    }
422
-    return $location_link;
405
+	$location_link = get_permalink(geodir_location_page_id());
406
+
407
+	if ($which_location == 'base') {
408
+		return $location_link;
409
+	} else {
410
+		$location_terms = geodir_get_current_location_terms();
411
+
412
+		if (!empty($location_terms)) {
413
+			if (get_option('permalink_structure') != '') {
414
+				$location_terms = implode("/", $location_terms);
415
+				$location_terms = rtrim($location_terms, '/');
416
+				$location_link .= $location_terms;
417
+			} else {
418
+				$location_link = geodir_getlink($location_link, $location_terms);
419
+			}
420
+		}
421
+	}
422
+	return $location_link;
423 423
 }
424 424
 
425 425
 /**
@@ -432,34 +432,34 @@  discard block
 block discarded – undo
432 432
  * @return array|bool Returns address on success.
433 433
  */
434 434
 function geodir_get_osm_address_by_lat_lan($lat, $lng) {
435
-    $url = is_ssl() ? 'https:' : 'http:';
436
-    $url .= '//nominatim.openstreetmap.org/reverse?format=json&lat=' . trim($lat) . '&lon=' . trim($lng) . '&zoom=16&addressdetails=1&email=' . get_option('admin_email');
437
-
438
-    $ch = curl_init();
439
-    curl_setopt($ch, CURLOPT_URL, $url);
440
-    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
441
-    curl_setopt($ch, CURLOPT_PROXYPORT, 3128);
442
-    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
443
-    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
444
-    $response = curl_exec($ch);
445
-    curl_close($ch);
446
-    $data = json_decode($response);
435
+	$url = is_ssl() ? 'https:' : 'http:';
436
+	$url .= '//nominatim.openstreetmap.org/reverse?format=json&lat=' . trim($lat) . '&lon=' . trim($lng) . '&zoom=16&addressdetails=1&email=' . get_option('admin_email');
437
+
438
+	$ch = curl_init();
439
+	curl_setopt($ch, CURLOPT_URL, $url);
440
+	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
441
+	curl_setopt($ch, CURLOPT_PROXYPORT, 3128);
442
+	curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
443
+	curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
444
+	$response = curl_exec($ch);
445
+	curl_close($ch);
446
+	$data = json_decode($response);
447 447
     
448
-    if (!empty($data) && !empty($data->address)) {
449
-        $address_fields = array('public_building', 'house', 'house_number', 'bakery', 'footway', 'street', 'road', 'village', 'attraction', 'pedestrian', 'neighbourhood', 'suburb');
450
-        $formatted_address = (array)$data->address;
448
+	if (!empty($data) && !empty($data->address)) {
449
+		$address_fields = array('public_building', 'house', 'house_number', 'bakery', 'footway', 'street', 'road', 'village', 'attraction', 'pedestrian', 'neighbourhood', 'suburb');
450
+		$formatted_address = (array)$data->address;
451 451
         
452
-        foreach ( $data->address as $key => $value ) {
453
-            if (!in_array($key, $address_fields)) {
454
-                unset($formatted_address[$key]);
455
-            }
456
-        }
457
-        $data->formatted_address = !empty($formatted_address) ? implode(', ', $formatted_address) : '';
452
+		foreach ( $data->address as $key => $value ) {
453
+			if (!in_array($key, $address_fields)) {
454
+				unset($formatted_address[$key]);
455
+			}
456
+		}
457
+		$data->formatted_address = !empty($formatted_address) ? implode(', ', $formatted_address) : '';
458 458
         
459
-        return $data;
460
-    } else {
461
-        return false;
462
-    }
459
+		return $data;
460
+	} else {
461
+		return false;
462
+	}
463 463
 }
464 464
 
465 465
 /**
@@ -471,47 +471,47 @@  discard block
 block discarded – undo
471 471
  * @return string Returns the country.
472 472
  */
473 473
 function geodir_get_normal_country($country) {
474
-    global $wpdb;
475
-    if ($result = geodir_get_country_by_name($country)) {
476
-        return $result;
477
-    }
474
+	global $wpdb;
475
+	if ($result = geodir_get_country_by_name($country)) {
476
+		return $result;
477
+	}
478 478
     
479
-    if (defined('POST_LOCATION_TABLE')) {
480
-        $rows = $wpdb->get_results($wpdb->prepare("SELECT DISTINCT country FROM " . POST_LOCATION_TABLE . " WHERE country NOT LIKE %s ORDER BY location_id ASC", $country));
481
-        if (!empty($rows)) {
482
-            foreach ($rows as $row) {
483
-                $translated = __($row->country, 'geodirectory');
484
-                if (geodir_strtolower($translated) == geodir_strtolower($country) && $result = geodir_get_country_by_name($row->country)) {
485
-                    return $result;
486
-                }
487
-            }
488
-        }
479
+	if (defined('POST_LOCATION_TABLE')) {
480
+		$rows = $wpdb->get_results($wpdb->prepare("SELECT DISTINCT country FROM " . POST_LOCATION_TABLE . " WHERE country NOT LIKE %s ORDER BY location_id ASC", $country));
481
+		if (!empty($rows)) {
482
+			foreach ($rows as $row) {
483
+				$translated = __($row->country, 'geodirectory');
484
+				if (geodir_strtolower($translated) == geodir_strtolower($country) && $result = geodir_get_country_by_name($row->country)) {
485
+					return $result;
486
+				}
487
+			}
488
+		}
489 489
         
490
-        $rows = $wpdb->get_results( $wpdb->prepare( "SELECT DISTINCT country FROM " . POST_LOCATION_TABLE . " WHERE country_slug LIKE %s AND country NOT LIKE %s ORDER BY location_id", $country, $country ) );
491
-        if (!empty($rows)) {
492
-            foreach ($rows as $row) {
493
-                $translated = __($row->country, 'geodirectory');
494
-                if (geodir_strtolower($translated) == geodir_strtolower($country) && $result = geodir_get_country_by_name($row->country)) {
495
-                    return $result;
496
-                }
497
-            }
498
-        }
499
-    }
490
+		$rows = $wpdb->get_results( $wpdb->prepare( "SELECT DISTINCT country FROM " . POST_LOCATION_TABLE . " WHERE country_slug LIKE %s AND country NOT LIKE %s ORDER BY location_id", $country, $country ) );
491
+		if (!empty($rows)) {
492
+			foreach ($rows as $row) {
493
+				$translated = __($row->country, 'geodirectory');
494
+				if (geodir_strtolower($translated) == geodir_strtolower($country) && $result = geodir_get_country_by_name($row->country)) {
495
+					return $result;
496
+				}
497
+			}
498
+		}
499
+	}
500 500
     
501
-    $default_location = geodir_get_default_location();
502
-    if (!empty($default_location->country) && $result = geodir_get_country_by_name($default_location->country)) {
503
-        return $result;
504
-    }
501
+	$default_location = geodir_get_default_location();
502
+	if (!empty($default_location->country) && $result = geodir_get_country_by_name($default_location->country)) {
503
+		return $result;
504
+	}
505 505
     
506
-    if (!empty($default_location->country_slug) && $result = geodir_get_country_by_name($default_location->country_slug)) {
507
-        return $result;
508
-    }
506
+	if (!empty($default_location->country_slug) && $result = geodir_get_country_by_name($default_location->country_slug)) {
507
+		return $result;
508
+	}
509 509
     
510
-    if (!empty($default_location->country_ISO2) && $result = geodir_get_country_by_name($default_location->country_ISO2, true)) {
511
-        return $result;
512
-    }
510
+	if (!empty($default_location->country_ISO2) && $result = geodir_get_country_by_name($default_location->country_ISO2, true)) {
511
+		return $result;
512
+	}
513 513
     
514
-    return $country;
514
+	return $country;
515 515
 }
516 516
 
517 517
 /**
@@ -523,16 +523,16 @@  discard block
 block discarded – undo
523 523
  * @return string Country ISO2 code.
524 524
  */
525 525
 function geodir_get_country_iso2($country) {
526
-    global $wpdb;
526
+	global $wpdb;
527 527
     
528
-    if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", $country))) {
529
-        return $result;
530
-    }
531
-    if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", geodir_get_normal_country($country)))) {
532
-        return $result;
533
-    }
528
+	if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", $country))) {
529
+		return $result;
530
+	}
531
+	if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", geodir_get_normal_country($country)))) {
532
+		return $result;
533
+	}
534 534
     
535
-    return $country;
535
+	return $country;
536 536
 }
537 537
 
538 538
 /**
@@ -545,14 +545,14 @@  discard block
 block discarded – undo
545 545
  * @return string|null Country ISO2 code.
546 546
  */
547 547
 function geodir_get_country_by_name($country, $iso2 = false) {
548
-    global $wpdb;
548
+	global $wpdb;
549 549
     
550
-    if ($result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", $country))) {
551
-        return $result;
552
-    }
553
-    if ($iso2 && $result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE ISO2 LIKE %s", $country))) {
554
-        return $result;
555
-    }
550
+	if ($result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", $country))) {
551
+		return $result;
552
+	}
553
+	if ($iso2 && $result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE ISO2 LIKE %s", $country))) {
554
+		return $result;
555
+	}
556 556
     
557
-    return NULL;
557
+	return NULL;
558 558
 }
559 559
\ No newline at end of file
Please login to merge, or discard this patch.