Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
WordPress Web Application Development - Second Edition
WordPress Web Application Development - Second Edition

WordPress Web Application Development - Second Edition: Build rapid web applications with cutting-edge technologies using WordPress

eBook
$9.99 $43.99
Paperback
$54.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

WordPress Web Application Development - Second Edition

Chapter 2. Implementing Membership Roles, Permissions, and Features

The success of any web application or website depends heavily on its user base. There are plenty of great web applications that go unnoticed by many people due to the lack of user interaction. As developers, it's our responsibility to build a simple and interactive user management process, as visitors decide whether to stay on or leave a website by looking at the complexity of initial tasks such as registration and login.

In this chapter, we will be mainly concentrating on adapting existing user management functionalities into typical web applications. In order to accomplish our goal, we will execute some tasks outside the box to bring user management features from WordPress core to WordPress themes.

While striving to build a better user experience, we will also take a look at someadvanced aspects of web application development such as routing, controlling, and custom templating.

In this chapter, we will cover...

Introduction to user management

Usually, popular PHP development frameworks such as Zend, CakePHP, CodeIgniter, and Laravel don't provide a built-in user module. Developers tend to build their own user management modules and use it across many projects of the same framework. WordPress offers a built-in user management system to cater to common user management tasks found in web applications. Such things include the following:

  • Managing user roles and capabilities
  • A built-in user registration functionality
  • A built-in user login functionality
  • A built-in forgot password functionality

Developers are likely to encounter these tasks in almost all web applications. In most cases, these features and functions can be effectively used without significant changes in the code. However, web applications are much more advanced and hence, we might need various customizations on these existing features. It's important to explore the possibility of extending these functions in order to be compatible...

Getting started with user roles

In simple terms, user roles define the types of users in a system. WordPress offers built-in functions for working with every aspect of user roles. In this section, we will look at how we can manage these tasks by implementing the user roles for our application. We can create a new user role by calling the add_role function. The following code illustrates the basic form of user role creation:

$result = add_role( 'role_name', 'Display Name', array( 'read' => true, 'edit_posts' => true, 'delete_posts' => false ) );

The first parameter takes the role name, which is a unique key to identify the role. The second parameter will be the display name, which will be shown in the admin area. The final parameter will take the necessary capabilities of the user role. You can find out more about existing user roles at http://codex.wordpress.org/Roles_and_Capabilities. In this scenario, read, edit_posts, and delete_posts...

Understanding user capabilities

Capabilities can be considered as tasks, which users are permitted to perform inside the application. A single user role can perform many capabilities, while a single capability can be performed by many user roles. Typically, we use the term access control for handling capabilities in web applications. Let's see how capabilities work inside WordPress.

Creating your first capability

Capabilities are always associated with user roles and hence, we cannot create new capabilities without providing a user role. Let's look at the following code for associating custom capability with a follower user role, created in the earlier section, Creating application user roles:

public function add_application_user_capabilities(){
  $role = get_role( 'follower' );
  $role->add_cap( 'follow_developer_activities' );
}

First, we need to retrieve the user role as an object using the get_role function. Then, we can associate new or existing capability...

Registering application users

An administration panel is built into the WordPress framework, allowing us to log in through the admin screen. Therefore, we have a registration area, which can be used to add new users by providing a username and e-mail. In web applications, registration can become complex, compared to the simple registration process in WordPress. Let's consider some typical requirements of web application registration process in comparison with WordPress:

  • User-friendly interface: An application can have different types of user roles. Until registration is completed, everyone is treated as a normal application user with the ability to view public content. Typically, users are used to seeing fancy registration forms inside the main site rather than a completely different login area such as with WordPress. Therefore, we need to explore the possibilities of adding WordPress registration to the frontend.
  • Requesting detailed information: Most web applications will have at least...

Implementing frontend registration

Fortunately, we can make use of the existing functionalities to implement registration from the frontend. We can use a regular HTTP request or AJAX-based technique to implement this feature. In this book, I will focus on a normal process instead of using AJAX. Our first task is to create the registration form in the frontend.

There are various ways to implement such forms in the frontend. Let's look at some of the possibilities as described in the following section:

  • Shortcode implementation
  • Page template implementation
  • Custom template implementation

Now, let's look at the implementation of each of these techniques.

Shortcode implementation

Shortcodes are the quickest way to add dynamic content to your pages. In this situation, we need to create a page for registration. Therefore, we need to create a shortcode that generates the registration form, as shown in the following code:

add_shortcode( "register_form", "display_register_form&quot...

Introduction to user management


Usually, popular PHP development frameworks such as Zend, CakePHP, CodeIgniter, and Laravel don't provide a built-in user module. Developers tend to build their own user management modules and use it across many projects of the same framework. WordPress offers a built-in user management system to cater to common user management tasks found in web applications. Such things include the following:

  • Managing user roles and capabilities

  • A built-in user registration functionality

  • A built-in user login functionality

  • A built-in forgot password functionality

Developers are likely to encounter these tasks in almost all web applications. In most cases, these features and functions can be effectively used without significant changes in the code. However, web applications are much more advanced and hence, we might need various customizations on these existing features. It's important to explore the possibility of extending these functions in order to be compatible with advanced...

Getting started with user roles


In simple terms, user roles define the types of users in a system. WordPress offers built-in functions for working with every aspect of user roles. In this section, we will look at how we can manage these tasks by implementing the user roles for our application. We can create a new user role by calling the add_role function. The following code illustrates the basic form of user role creation:

$result = add_role( 'role_name', 'Display Name', array( 'read' => true, 'edit_posts' => true, 'delete_posts' => false ) );

The first parameter takes the role name, which is a unique key to identify the role. The second parameter will be the display name, which will be shown in the admin area. The final parameter will take the necessary capabilities of the user role. You can find out more about existing user roles at http://codex.wordpress.org/Roles_and_Capabilities. In this scenario, read, edit_posts, and delete_posts will be the capabilities while true and false...

Understanding user capabilities


Capabilities can be considered as tasks, which users are permitted to perform inside the application. A single user role can perform many capabilities, while a single capability can be performed by many user roles. Typically, we use the term access control for handling capabilities in web applications. Let's see how capabilities work inside WordPress.

Creating your first capability

Capabilities are always associated with user roles and hence, we cannot create new capabilities without providing a user role. Let's look at the following code for associating custom capability with a follower user role, created in the earlier section, Creating application user roles:

public function add_application_user_capabilities(){
  $role = get_role( 'follower' );
  $role->add_cap( 'follow_developer_activities' );
}

First, we need to retrieve the user role as an object using the get_role function. Then, we can associate new or existing capability using the add_cap function...

Left arrow icon Right arrow icon
Download code icon Download Code

Description

This book is intended for WordPress developers and designers who want to develop quality web applications within a limited time frame and for maximum profit. Prior knowledge of basic web development and design is assumed.

Who is this book for?

This book is intended for WordPress developers and designers who want to develop quality web applications within a limited time frame and for maximum profit. Prior knowledge of basic web development and design is assumed.

What you will learn

  • Develop extendable plugins with the use of WordPress features in core modules
  • Develop pluggable modules to extend the core features of WordPress as independent modules
  • Follow WordPress coding standards to develop reusable and maintainable code
  • Build and customize themes beyond conventional web layouts
  • Explore the power of core database tables and understand the limitations when designing database tables for large applications
  • Integrate open source modules into WordPress applications to keep up with the latest open source technologies
  • Customize the WordPress admin section and themes to create the look and feel of a typical web application

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : May 28, 2015
Length: 404 pages
Edition : 1st
Language : English
ISBN-13 : 9781783988563
Languages :
Concepts :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : May 28, 2015
Length: 404 pages
Edition : 1st
Language : English
ISBN-13 : 9781783988563
Languages :
Concepts :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 153.97
WordPress Search Engine Optimization- Second Edition
$49.99
WordPress 4.0 Site Blueprints (Second Edition)
$48.99
WordPress Web Application Development - Second Edition
$54.99
Total $ 153.97 Stars icon
Banner background image

Table of Contents

13 Chapters
1. WordPress as a Web Application Framework Chevron down icon Chevron up icon
2. Implementing Membership Roles, Permissions, and Features Chevron down icon Chevron up icon
3. Planning and Customizing the Core Database Chevron down icon Chevron up icon
4. Building Blocks of Web Applications Chevron down icon Chevron up icon
5. Developing Pluggable Modules Chevron down icon Chevron up icon
6. Customizing the Dashboard for Powerful Backends Chevron down icon Chevron up icon
7. Adjusting Theme for Amazing Frontends Chevron down icon Chevron up icon
8. Enhancing the Power of Open Source Libraries and Plugins Chevron down icon Chevron up icon
9. Listening to Third-party Applications Chevron down icon Chevron up icon
10. Integrating and Finalizing the Portfolio Management Application Chevron down icon Chevron up icon
11. Supplementary Modules for Web Development Chevron down icon Chevron up icon
A. Configurations, Tools, and Resources Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Full star icon 5
(2 Ratings)
5 star 100%
4 star 0%
3 star 0%
2 star 0%
1 star 0%
D. Stevenson Aug 08, 2016
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book is awesome. It walks through building a web application on top of WordPress. I tried a few other books that I thought covered the same topic. This one was by far the best I have read on using WordPress as a web application. I actually came back to Amazon to order the print version because I want a paper copy for reference (I previously bought the kindle version).
Amazon Verified review Amazon
ab85 Aug 12, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book covers web app development using WordPress, anything from theme structure to advanced custom post types to working with APIs on the front end. The book shows that WordPress is way more than simple blogging platform or CMS, it can be used as a backend or platform to build web applications.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.