Advertisement
  1. Code
  2. WordPress
  3. Plugin Development

Improved Ajax Techniques for WordPress: Object-Oriented Programming

Scroll to top
Read Time: 14 min

In the previous post in this series, we revisited the topic of working with Ajax in WordPress. Ultimately, the goal is to improve upon a previous series that was run on the site a few years ago.

To reiterate, it's not that the techniques taught in the original series were wrong, but it's that software changes over time so it's always good to revisit concepts that were covered years ago and try to update them to something that's a bit more current and more resilient for our development efforts.

Recall from the previous post, we looked at the following comment from the original series:

We're going to give a very brief overview of what Ajax is, how it works, how to set it up on the front, and understanding the hooks that WordPress provides. We'll also actually build a small project that puts the theory into practice. We'll walk through the source code and we'll also make sure it's available on GitHub, as well.

And in that post, we reviewed some advanced ways to incorporate the WordPress Ajax API into our projects using procedural programming. In this post, we're going to take the code that we wrote in the first part of this series and refactor it so that it uses an object-oriented approach.

Ultimately, the goal is not to make a case why one paradigm should be used over the other; instead, it is to show how we can achieve the same functionality regardless of the approach that you choose when building your plugins.

Planning the Plugin

Before we get started refactoring the code, something that we need to consider is how we're going to lay out the various files. After all, part of the process of beginning a new project—or even jumping into an old one—is planning how work is going to be done.

For this particular plugin, we're going to need the following:

  • a bootstrap file that's responsible for initializing the main class and starting off the plugin
  • a class that's responsible for loading the dependencies such as the JavaScript
  • a class that serves as the main plugin class

As you can see, there's not too much that we need to do to the plugin. We'll also be re-organizing some of the files to have a consistent directory structure, and we'll make sure to properly document all of the code so that it follows the WordPress Coding Standards.

With that said, let's get started.

Organizing the Files

Before we get into writing any code, let's go ahead and do the following:

  1. Create an assets directory.
  2. Create a js directory that will be located in the assets directory.
  3. Move frontend.js to the js directory.
The assets directoryThe assets directoryThe assets directory

The reason for doing this is that we're moving into an object-oriented style of programming. Part of this includes organizing our files so that they follow conventions often considered to be packages.

In our case, the assets directory includes all of the things necessary to make the program run. For some plugins, this could be JavaScript, CSS, images, fonts, and so on. In this instance, we have a single JavaScript file.

The Dependency Loader

Next, we need to introduce a class that will be responsible for loading the dependencies for our project. For this particular plugin, the only dependency that we have is the JavaScript file that we just placed in the assets directory.

Part of object-oriented programming is making sure that each class has a specific purpose. In this case, the class we're about to introduce will be responsible for loading the JavaScript using the WordPress API.

Let's start by creating the basic structure of the class:

1
<?php
2
    
3
/**

4
 * Loads and enqueues dependencies for the plugin.

5
 *

6
 * @since    1.0.0

7
 *

8
 * @package  WPA/includes

9
 */
10
class Dependency_Loader {
11
	
12
}

Next, we'll add a method that will be responsible for enqueuing the JavaScript as per the WordPress API.

1
<?php
2
/**

3
 * Loads and registers dependencies.

4
 *

5
 * @since    1.0.0

6
 *

7
 * @package   WPA

8
 * @author    Tom McFarlin

9
 * @license   https://www.gnu.org/licenses/gpl-2.0.txt

10
 * @link      https://tommcfarlin.com/

11
 */
12
13
/**

14
 * Loads and enqueues dependencies for the plugin.

15
 *

16
 * @package    WPA

17
 * @subpackage WPA/includes

18
 * @since      1.0.0

19
 * @author     Tom McFarlin

20
 * @license    http://www.gnu.org/licenses/gpl-2.0.txt

21
 * @link       https://tommcfarlin.com/

22
 */
23
class Dependency_Loader {
24
25
    /**

26
     * Initializes the plugin by enqueuing the necessary dependencies.

27
	 *

28
	 * @since    1.0.0

29
	 */
30
    public function initialize() {
31
        $this->enqueue_scripts();
32
    }
33
34
    /**

35
	 * Enqueues the front-end scripts for getting the current user's information

36
	 * via Ajax.

37
	 *

38
     * @access   private

39
     * 

40
	 * @since    1.0.0

41
	 */
42
	private function enqueue_scripts() {
43
44
		wp_enqueue_script(
45
			'ajax-script',
46
			plugin_dir_url( dirname( __FILE__ ) ) . 'assets/js/frontend.js',
47
			array( 'jquery' )
48
		);
49
50
		wp_localize_script(
51
			'ajax-script',
52
			'sa_demo',
53
			array( 'ajax_url' => admin_url( 'admin-ajax.php' ) )
54
		);
55
56
	}
57
}

After that, we need to take the functions responsible for handling the Ajax requests and providing responses and then add them to the class. Since they'll be within the context of a class, we need to add a new function that will register them with WordPress.

We'll create a setup_ajax_handlers function. It looks like this:

1
<?php
2
3
/**
4
 * Registers the callback functions responsible for providing a response
5
 * to Ajax requests setup throughout the rest of the plugin.
6
 *
7
 * @since    1.0.0
8
 */
9
public function setup_ajax_handlers() {
10
11
    add_action(
12
		'wp_ajax_get_current_user_info',
13
		array( $this, 'get_current_user_info' )
14
	);
15
16
	add_action(
17
		'wp_ajax_nopriv_get_current_user_info',
18
		array( $this, 'get_current_user_info' )
19
	);
20
21
}

Next, we need to actually move the functions into this class. Note that the functions that were originally prefixed with _sa are no longer marked as such. Since they are in the context of the class, we can drop the prefix and also drop the underscore in favor of the private keyword.

1
<?php
2
3
public function get_current_user_info() {
4
5
    $user_id = get_current_user_id();
6
7
	if ( $this->user_is_logged_in( $user_id ) && $this->user_exists( $user_id ) ) {
8
9
		wp_send_json_success(
10
			wp_json_encode( get_user_by( 'id', $user_id ) )
11
		);
12
13
	}
14
15
}
16
17
private function user_is_logged_in( $user_id ) {
18
19
	$is_logged_in = true;
20
21
	if ( 0 === $user_id ) {
22
23
		wp_send_json_error(
24
			new WP_Error( '-2', 'The visitor is not currently logged into the site.' )
25
		);
26
27
		$is_logged_in = false;
28
29
	}
30
31
	return $is_logged_in;
32
33
}
34
35
private function user_exists( $user_id ) {
36
37
	$user_exists = true;
38
39
	if ( false === get_user_by( 'id', $user_id ) ) {
40
41
		wp_send_json_error(
42
			new WP_Error( '-1', 'No user was found with the specified ID [' . $user_id . ']' )
43
		);
44
45
		$user_exists = false;
46
47
	}
48
49
	return $user_exists;
50
51
}

Then we'll save this file in an includes directory in the root of the plugin directory. The includes directory is often where code that is used throughout a project is located. More could be said about this particular directory, but that's content for a longer post.

The final version of this class should look like this:

1
<?php
2
/**

3
 * Loads and registers dependencies.

4
 *

5
 * @since    1.0.0

6
 *

7
 * @package   WPA

8
 * @author    Tom McFarlin

9
 * @license   http://www.gnu.org/licenses/gpl-2.0.txt

10
 * @link      https://tommcfarlin.com/

11
 */
12
13
/**

14
 * Loads and enqueues dependencies for the plugin.

15
 *

16
 * @package    WPA

17
 * @subpackage WPA/includes

18
 * @since      1.0.0

19
 * @author     Tom McFarlin

20
 * @license    http://www.gnu.org/licenses/gpl-2.0.txt

21
 * @link       https://tommcfarlin.com/

22
 */
23
class Dependency_Loader {
24
25
    /**

26
     * Initializes the plugin by enqueuing the necessary dependencies.

27
     *

28
	 * @since    1.0.0

29
	 */
30
    public function initialize() {
31
        $this->enqueue_scripts();
32
    }
33
34
    /**

35
	 * Enqueues the front-end scripts for getting the current user's information

36
	 * via Ajax.

37
	 *

38
     * @access   private

39
     * 

40
	 * @since    1.0.0

41
	 */
42
	private function enqueue_scripts() {
43
44
		wp_enqueue_script(
45
			'ajax-script',
46
			plugin_dir_url( dirname( __FILE__ ) ) . 'assets/js/frontend.js',
47
			array( 'jquery' )
48
		);
49
50
		wp_localize_script(
51
			'ajax-script',
52
			'sa_demo',
53
			array( 'ajax_url' => admin_url( 'admin-ajax.php' ) )
54
		);
55
56
	}
57
58
	/**

59
	 * Registers the callback functions responsible for providing a response

60
	 * to Ajax requests setup throughout the rest of the plugin.

61
	 *

62
	 * @since    1.0.0

63
	 */
64
	public function setup_ajax_handlers() {
65
66
		add_action(
67
			'wp_ajax_get_current_user_info',
68
			array( $this, 'get_current_user_info' )
69
		);
70
71
		add_action(
72
			'wp_ajax_nopriv_get_current_user_info',
73
			array( $this, 'get_current_user_info' )
74
		);
75
76
	}
77
78
	/**

79
	 * Retrieves information about the user who is currently logged into the site.

80
	 *

81
	 * This function is intended to be called via the client-side of the public-facing

82
	 * side of the site.

83
	 *

84
	 * @since    1.0.0

85
	 */
86
	public function get_current_user_info() {
87
88
		$user_id = get_current_user_id();
89
90
		if ( $this->user_is_logged_in( $user_id ) && $this->user_exists( $user_id ) ) {
91
92
			wp_send_json_success(
93
				wp_json_encode( get_user_by( 'id', $user_id ) )
94
			);
95
96
		}
97
98
	}
99
100
	/**

101
	 * Determines if a user is logged into the site using the specified user ID. If not,

102
	 * then the following error code and message will be returned to the client:

103
	 *

104
	 * -2: The visitor is not currently logged into the site.

105
	 *

106
	 * @access   private

107
	 * @since    1.0.0

108
	 *

109
	 * @param    int $user_id         The current user's ID.

110
	 *

111
	 * @return   bool $is_logged_in    Whether or not the current user is logged in.

112
	 */
113
	private function user_is_logged_in( $user_id ) {
114
115
		$is_logged_in = true;
116
117
		if ( 0 === $user_id ) {
118
119
			wp_send_json_error(
120
				new WP_Error( '-2', 'The visitor is not currently logged into the site.' )
121
			);
122
123
			$is_logged_in = false;
124
125
		}
126
127
		return $is_logged_in;
128
129
	}
130
131
	/**

132
	 * Determines if a user with the specified ID exists in the WordPress database. If not, then will

133
	 * the following error code and message will be returned to the client:

134
	 *

135
	 * -1: No user was found with the specified ID [ $user_id ].

136
	 *

137
	 * @access   private

138
	 * @since    1.0.0

139
	 *

140
	 * @param    int $user_id        The current user's ID.

141
	 *

142
	 * @return   bool $user_exists    Whether or not the specified user exists.

143
	 */
144
	private function user_exists( $user_id ) {
145
146
		$user_exists = true;
147
148
		if ( false === get_user_by( 'id', $user_id ) ) {
149
150
			wp_send_json_error(
151
				new WP_Error( '-1', 'No user was found with the specified ID [' . $user_id . ']' )
152
			);
153
154
			$user_exists = false;
155
156
		}
157
158
		return $user_exists;
159
160
	}
161
}

The Main Class

Now we're ready to write the main class for the plugin. This particular class will reside in the root of the plugin directory and the basic structure of the class will look like this:

1
<?php
2
3
/**

4
 * Loads and enqueues dependencies for the plugin.

5
 *

6
 * @since    1.0.0

7
 *

8
 * @package  Acme

9
 */
10
class Acme_Simple_Ajax {
11
    
12
}

Next, we'll add a couple of properties that we'll set when the class is instantiated:

1
<?php
2
3
class Acme_Simple_Ajax {
4
5
	private $version;
6
7
	private $loader;
8
9
}

After that, we'll create a constructor and an initialization function that will be used to set the plugin in motion:

1
<?php
2
/**

3
 * The primary class for the plugin

4
 *

5
 * Stores the plugin version, loads and enqueues dependencies

6
 * for the plugin.

7
 *

8
 * @since    1.0.0

9
 *

10
 * @package   Acme

11
 * @author    Tom McFarlin

12
 * @license   http://www.gnu.org/licenses/gpl-2.0.txt

13
 * @link      https://tommcfarlin.com/

14
 */
15
16
/**

17
 * Stores the plugin version, loads and enqueues dependencies

18
 * for the plugin.

19
 *

20
 * @package   Acme

21
 * @author    Tom McFarlin

22
 * @license   http://www.gnu.org/licenses/gpl-2.0.txt

23
 * @link      https://tommcfarlin.com/

24
 */
25
class Acme_Simple_Ajax {
26
27
    /**

28
	 * Represents the current version of this plugin.

29
	 *

30
	 * @access    private

31
	 * @since     1.0.0

32
	 * @var       string

33
	 */
34
	private $version;
35
36
	/**

37
	 * A reference to the Dependency Loader.

38
	 *

39
	 * @access    private

40
	 * @since     1.0.0

41
	 * @var       Dependency_Loader

42
	 */
43
	private $loader;
44
45
	/**

46
	 * Initializes the properties of the class.

47
	 *

48
	 * @access    private

49
	 * @since     1.0.0

50
	 */
51
	public function __construct() {
52
53
		$this->version = '1.0.0';
54
		$this->loader  = new Dependency_Loader();
55
56
	}
57
58
	/**

59
	 * Initializes this plugin and the dependency loader to include

60
	 * the JavaScript necessary for the plugin to function.

61
	 *

62
	 * @access    private

63
	 * @since     1.0.0

64
	 */
65
	public function initialize() {
66
        
67
		$this->loader->initialize();
68
        $this->loader->setup_ajax_handlers();
69
        
70
	}
71
}

In the code above, the constructor sets the properties and instantiates the dependencies necessary to set the plugin in motion.

When initialize is called, the plugin will start and it will call the initialize method on the dependency class we created earlier in this tutorial.

The Bootstrap

The last thing that we need to do is to take the main file that we have, use PHP's include functionality, and make sure it's aware of the necessary PHP files that we have.

1
<?php
2
3
/**

4
 * Loads and registers dependencies.

5
 */
6
include_once( 'includes/class-dependency-loader.php' );
7
8
/**

9
 * The primary class for the plugin

10
 */
11
include_once( 'class-acme-simple-ajax.php' );

After that, we need to define a method that will initialize the main plugin file and set everything in motion.

1
<?php
2
3
/**

4
 * Instantiates the main class and initializes the plugin.

5
 */
6
function acme_start_plugin() {
7
8
    $plugin = new Acme_Simple_Ajax();
9
	$plugin->initialize();
10
11
}

The final version of the bootstrap file should look like this:

1
<?php
2
/**

3
 * This plugin demonstrates how to use the WordPress Ajax APIs.

4
 *

5
 * @package           Acme

6
 *

7
 * @wordpress-plugin

8
 * Plugin Name:       Simple Ajax Demo

9
 * Description:       A simple demonstration of the WordPress Ajax APIs.

10
 * Version:           1.0.0

11
 * Author:            Tom McFarlin

12
 * Author URI:        https://tommcfarlin.com/

13
 * License:           GPL-2.0+

14
 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt

15
 */
16
17
// If this file is called directly, abort.

18
if ( ! defined( 'WPINC' ) ) {
19
    die;
20
}
21
22
/**

23
 * Loads and registers dependencies.

24
 */
25
include_once( 'includes/class-dependency-loader.php' );
26
27
/**

28
 * The primary class for the plugin

29
 */
30
include_once( 'class-acme-simple-ajax.php' );
31
32
/**

33
 * Instantiates the main class and initializes the plugin.

34
 */
35
function acme_start_plugin() {
36
37
	$plugin = new Acme_Simple_Ajax();
38
	$plugin->initialize();
39
40
}
41
acme_start_plugin();

First, the file checks to see if its being accessed directly by checking to see if a WordPress constant has been defined. If not, then the execution stops. 

After that, it includes the various classes we created through this tutorial. Finally, it defines a function that's called when WordPress loads the plugin that starts the plugin and sets everything into motion.

Conclusion

And that brings us to the end of this two-part series. Hopefully you've learned not only some of the best practices for incorporating Ajax into your WordPress projects, but also a bit about documenting both procedural and object-oriented code as well as seeing the difference in how much of the code is laid out.

In a future post, I may revisit some of the object-oriented concepts that were introduced here and cover them in much more detail. For now, however, have a look at the plugin using the GitHub link on the sidebar of this page.

Remember, you can catch all of my courses and tutorials on my profile page, and you can follow me on my blog and/or Twitter at @tommcfarlin where I talk about software development in the context of WordPress.

As usual, please don't hesitate to leave any questions or comments in the feed below, and I'll aim to respond to each of them. 

Advertisement
Did you find this post useful?
Want a weekly email summary?
Subscribe below and we’ll send you a weekly email summary of all new Code tutorials. Never miss out on learning about the next big thing.
Advertisement
Looking for something to help kick start your next project?
Envato Market has a range of items for sale to help get you started.