Lines: 1 to 34 of 34
<?php /** * Abstract Rest Terms Controller * * @package WooCommerce/Abstracts * @version 3.3.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } /* class WC_REST_Terms_Controller */ /* function WC_REST_Terms_Controller::register_routes() – Register the routes for terms. */ /* function WC_REST_Terms_Controller::get_items_permissions_check() – Check if a given request has access to read the terms. */ /* function WC_REST_Terms_Controller::create_item_permissions_check() – Check if a given request has access to create a term. */ /* function WC_REST_Terms_Controller::get_item_permissions_check() – Check if a given request has access to read a term. */ /* function WC_REST_Terms_Controller::update_item_permissions_check() – Check if a given request has access to update a term. */ /* function WC_REST_Terms_Controller::delete_item_permissions_check() – Check if a given request has access to delete a term. */ /* function WC_REST_Terms_Controller::batch_items_permissions_check() – Check if a given request has access batch create, update and delete items. */ /* function WC_REST_Terms_Controller::check_permissions() – Check permissions. */ /* function WC_REST_Terms_Controller::get_items() – Get terms associated with a taxonomy. */ /* function WC_REST_Terms_Controller::create_item() – Create a single term for a taxonomy. */ /* function WC_REST_Terms_Controller::get_item() – Get a single term from a taxonomy. */ /* function WC_REST_Terms_Controller::update_item() – Update a single term from a taxonomy. */ /* function WC_REST_Terms_Controller::delete_item() – Delete a single term from a taxonomy. */ /* function WC_REST_Terms_Controller::prepare_links() – Prepare links for the request. */ /* function WC_REST_Terms_Controller::update_term_meta_fields() – Update term meta fields. */ /* function WC_REST_Terms_Controller::get_terms_for_product() – Get the terms attached to a product. */ /* function WC_REST_Terms_Controller::compare_terms() – Comparison function for sorting terms by a column. */ /* function WC_REST_Terms_Controller::get_collection_params() – Get the query params for collections */ /* function WC_REST_Terms_Controller::get_taxonomy() – Get taxonomy. */