Download the PHP package wp-cli/role-command without Composer

On this page you can find all versions of the php package wp-cli/role-command. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package role-command

wp-cli/role-command

Adds, removes, lists, and resets roles and capabilities.

Testing

Quick links: Support

Using

This package implements the following commands:

wp role

Manages user roles, including creating new roles and resetting to defaults.

wp role

See references for Roles and Capabilities and WP User class.

EXAMPLES

# List roles.
$ wp role list --fields=role --format=csv
role
administrator
editor
author
contributor
subscriber

# Check to see if a role exists.
$ wp role exists editor
Success: Role with ID 'editor' exists.

# Create a new role.
$ wp role create approver Approver
Success: Role with key 'approver' created.

# Delete an existing role.
$ wp role delete approver
Success: Role with key 'approver' deleted.

# Reset existing roles to their default capabilities.
$ wp role reset administrator author contributor
Success: Reset 3/3 roles.

wp role create

Creates a new role.

wp role create <role-key> <role-name> [--clone=<role>]

OPTIONS

<role-key>
    The internal name of the role.

<role-name>
    The publicly visible name of the role.

[--clone=<role>]
    Clone capabilities from an existing role.

EXAMPLES

# Create role for Approver.
$ wp role create approver Approver
Success: Role with key 'approver' created.

# Create role for Product Administrator.
$ wp role create productadmin "Product Administrator"
Success: Role with key 'productadmin' created.

wp role delete

Deletes an existing role.

wp role delete <role-key>

OPTIONS

<role-key>
    The internal name of the role.

EXAMPLES

# Delete approver role.
$ wp role delete approver
Success: Role with key 'approver' deleted.

# Delete productadmin role.
wp role delete productadmin
Success: Role with key 'productadmin' deleted.

wp role exists

Checks if a role exists.

wp role exists <role-key>

Exits with return code 0 if the role exists, 1 if it does not.

OPTIONS

<role-key>
    The internal name of the role.

EXAMPLES

# Check if a role exists.
$ wp role exists editor
Success: Role with ID 'editor' exists.

wp role list

Lists all roles.

wp role list [--fields=<fields>] [--field=<field>] [--format=<format>]

OPTIONS

[--fields=<fields>]
    Limit the output to specific object fields.

[--field=<field>]
    Prints the value of a single field.

[--format=<format>]
    Render output in a particular format.
    ---
    default: table
    options:
      - table
      - csv
      - json
      - count
      - yaml
    ---

AVAILABLE FIELDS

These fields will be displayed by default for each role:

There are no optional fields.

EXAMPLES

# List roles.
$ wp role list --fields=role --format=csv
role
administrator
editor
author
contributor
subscriber

wp role reset

Resets any default role to default capabilities.

wp role reset [<role-key>...] [--all]

Uses WordPress' populate_roles() function to put one or more roles back into the state they were at in the a fresh WordPress install. Removes any capabilities that were added, and restores any capabilities that were removed. Custom roles are not affected.

OPTIONS

[<role-key>...]
    The internal name of one or more roles to reset.

[--all]
    If set, all default roles will be reset.

EXAMPLES

# Reset three roles.
$ wp role reset administrator author contributor
Restored 1 capability to and removed 0 capabilities from 'administrator' role.
No changes necessary for 'author' role.
No changes necessary for 'contributor' role.
Success: 1 of 3 roles reset.

# Reset a custom role.
$ wp role reset custom_role
Custom role 'custom_role' not affected.
Error: Must specify a default role to reset.

# Reset all default roles.
$ wp role reset --all
Success: All default roles reset.

wp cap

Adds, removes, and lists capabilities of a user role.

wp cap

See references for Roles and Capabilities and WP User class.

EXAMPLES

# Add 'spectate' capability to 'author' role.
$ wp cap add 'author' 'spectate'
Success: Added 1 capability to 'author' role.

# Add all caps from 'editor' role to 'author' role.
$ wp cap list 'editor' | xargs wp cap add 'author'
Success: Added 24 capabilities to 'author' role.

# Remove all caps from 'editor' role that also appear in 'author' role.
$ wp cap list 'author' | xargs wp cap remove 'editor'
Success: Removed 34 capabilities from 'editor' role.

wp cap add

Adds capabilities to a given role.

wp cap add <role> <cap>... [--grant]

OPTIONS

<role>
    Key for the role.

<cap>...
    One or more capabilities to add.

[--grant]
    Adds the capability as an explicit boolean value, instead of implicitly defaulting to `true`.
    ---
    default: true
    options:
      - true
      - false
    ---

EXAMPLES

# Add 'spectate' capability to 'author' role.
$ wp cap add author spectate
Success: Added 1 capability to 'author' role.

wp cap list

Lists capabilities for a given role.

wp cap list <role> [--format=<format>] [--show-grant]

OPTIONS

<role>
    Key for the role.

[--format=<format>]
    Render output in a particular format.
    ---
    default: list
    options:
      - list
      - table
      - csv
      - json
      - count
      - yaml
    ---

[--show-grant]
    Display all capabilities defined for a role including grant.
    ---
    default: false
    ---

EXAMPLES

# Display alphabetical list of Contributor capabilities.
$ wp cap list 'contributor' | sort
delete_posts
edit_posts
level_0
level_1
read

wp cap remove

Removes capabilities from a given role.

wp cap remove <role> <cap>...

OPTIONS

<role>
    Key for the role.

<cap>...
    One or more capabilities to remove.

EXAMPLES

# Remove 'spectate' capability from 'author' role.
$ wp cap remove author spectate
Success: Removed 1 capability from 'author' role.

Installing

This package is included with WP-CLI itself, no additional installation necessary.

To install the latest version of this package over what's included in WP-CLI, run:

wp package install [email protected]:wp-cli/role-command.git

Contributing

We appreciate you taking the initiative to contribute to this project.

Contributing isn’t limited to just code. We encourage you to contribute in the way that best fits your abilities, by writing tutorials, giving a demo at your local meetup, helping other users with their support questions, or revising our documentation.

For a more thorough introduction, check out WP-CLI's guide to contributing. This package follows those policy and guidelines.

Reporting a bug

Think you’ve found a bug? We’d love for you to help us get it fixed.

Before you create a new issue, you should search existing issues to see if there’s an existing resolution to it, or if it’s already been fixed in a newer version.

Once you’ve done a bit of searching and discovered there isn’t an open or fixed issue for your bug, please create a new issue. Include as much detail as you can, and clear steps to reproduce if possible. For more guidance, review our bug report documentation.

Creating a pull request

Want to contribute a new feature? Please first open a new issue to discuss whether the feature is a good fit for the project.

Once you've decided to commit the time to seeing your pull request through, please follow our guidelines for creating a pull request to make sure it's a pleasant experience. See "Setting up" for details specific to working on this package locally.

Support

GitHub issues aren't for general support questions, but there are other venues you can try: https://wp-cli.org/#support

This README.md is generated dynamically from the project's codebase using wp scaffold package-readme (doc). To suggest changes, please submit a pull request against the corresponding part of the codebase.


All versions of role-command with dependencies

PHP Build Version
Package Version
Requires wp-cli/wp-cli Version ^2.5
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package wp-cli/role-command contains the following files

Loading the files please wait ....