FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
app
/
src
/
Rest
Edit File: UpsellFunnelRestServiceProvider.php
<?php namespace SureCart\Rest; use SureCart\Controllers\Rest\UpsellFunnelsController; use SureCart\Rest\RestServiceInterface; /** * Service provider for Price Rest Requests */ class UpsellFunnelRestServiceProvider extends RestServiceProvider implements RestServiceInterface { /** * Endpoint. * * @var string */ protected $endpoint = 'upsell_funnels'; /** * Rest Controller * * @var string */ protected $controller = UpsellFunnelsController::class; /** * Methods allowed for the model. * * @var array */ protected $methods = [ 'index', 'create', 'find', 'edit', 'delete' ]; /** * Get our sample schema for a post. * * @return array The sample schema for a post */ public function get_item_schema() { if ( $this->schema ) { // Since WordPress 5.3, the schema can be cached in the $schema property. return $this->schema; } $this->schema = [ // This tells the spec of JSON Schema we are using which is draft 4. '$schema' => 'http://json-schema.org/draft-04/schema#', // The title property marks the identity of the resource. 'title' => $this->endpoint, 'type' => 'object', // In JSON Schema you can specify object properties in the properties attribute. 'properties' => [ 'id' => [ 'description' => esc_html__( 'Unique identifier for the object.', 'surecart' ), 'type' => 'string', 'context' => [ 'view', 'edit', 'embed' ], 'readonly' => true, ], 'object' => [ 'description' => esc_html__( 'Type of object (upsell_funnel)', 'surecart' ), 'type' => 'string', 'context' => [ 'view', 'edit', 'embed' ], 'readonly' => true, ], 'created_at' => [ 'description' => esc_html__( 'Created at timestamp', 'surecart' ), 'type' => 'integer', 'context' => [ 'view', 'edit', 'embed' ], 'readonly' => true, ], 'updated_at' => [ 'description' => esc_html__( 'Created at timestamp', 'surecart' ), 'type' => 'integer', 'context' => [ 'view', 'edit', 'embed' ], 'readonly' => true, ], 'filter_match_type' => [ 'description' => esc_html__( 'The matching strategy to use when filtering upsell funnels – can be null or one of all, any, none. If null, the upsell funnel will not be filtered and will be applicable to all checkouts.', 'surecart' ), 'type' => 'string', 'context' => [ 'view', 'edit', 'embed' ], ], 'filter_price_ids' => [ 'description' => esc_html__( 'The prices to filter this upsell funnel by.', 'surecart' ), 'type' => 'array', 'items' => [ 'type' => 'string', ], 'context' => [ 'view', 'edit', 'embed' ], ], 'filter_product_ids' => [ 'description' => esc_html__( 'The products to filter this upsell funnel by.', 'surecart' ), 'type' => 'array', 'items' => [ 'type' => 'string', ], 'context' => [ 'view', 'edit', 'embed' ], ], 'enabled' => [ 'description' => esc_html__( 'Whether or not this upsell is currently enabled and being shown to customers.', 'surecart' ), 'type' => 'boolean', 'context' => [ 'view', 'edit', 'embed' ], ], 'name' => [ 'description' => esc_html__( 'A name for this upsell that will be visible to customers. If empty, the product name will be used.', 'surecart' ), 'type' => 'string', 'context' => [ 'view', 'edit', 'embed' ], ], 'priority' => [ 'description' => esc_html__( 'The priority of this upsell in relation to other upsells. Must be in the range of 1 - 5.', 'surecart' ), 'type' => 'integer', 'context' => [ 'view', 'edit', 'embed' ], ], ], ]; return $this->schema; } /** * Anyone can get an upsell funnel. * * @param \WP_REST_Request $request Full details about the request. * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. */ public function get_item_permissions_check( $request ) { return true; } /** * Who can list funnels * * @param \WP_REST_Request $request Full details about the request. * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. */ public function get_items_permissions_check( $request ) { return current_user_can( 'edit_sc_prices' ); } /** * Create model. * * @param \WP_REST_Request $request Full details about the request. * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. */ public function create_item_permissions_check( $request ) { return current_user_can( 'publish_sc_prices' ); } /** * Update model. * * @param \WP_REST_Request $request Full details about the request. * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. */ public function update_item_permissions_check( $request ) { return current_user_can( 'edit_sc_prices' ); } /** * Delete model. * * @param \WP_REST_Request $request Full details about the request. * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. */ public function delete_item_permissions_check( $request ) { return current_user_can( 'delete_sc_prices' ); } }
Save
Back