Remove duplicate entries from defined arrays

This commit is contained in:
Rasmus Bengtsson 2017-05-15 10:48:02 +02:00
parent 0334ed255a
commit 51fd482206
4 changed files with 0 additions and 19 deletions

View File

@ -117,10 +117,6 @@ class WC_Admin_Help {
'title' => __( 'API Settings', 'woocommerce' ), 'title' => __( 'API Settings', 'woocommerce' ),
'url' => '//fast.wistia.net/embed/iframe/1q0ny74vvq.jsonp?', 'url' => '//fast.wistia.net/embed/iframe/1q0ny74vvq.jsonp?',
), ),
'wc-settings-api' => array(
'title' => __( 'API Settings', 'woocommerce' ),
'url' => '//fast.wistia.net/embed/iframe/1q0ny74vvq.jsonp?',
),
'product' => array( 'product' => array(
'title' => __( 'Creating Products', 'woocommerce' ), 'title' => __( 'Creating Products', 'woocommerce' ),
'url' => '//fast.wistia.net/embed/iframe/fw0477t6wr.jsonp?', 'url' => '//fast.wistia.net/embed/iframe/fw0477t6wr.jsonp?',

View File

@ -101,13 +101,6 @@ class WC_REST_Webhook_Deliveries_Controller extends WC_REST_Webhook_Deliveries_V
'context' => array( 'view' ), 'context' => array( 'view' ),
'readonly' => true, 'readonly' => true,
), ),
'request_headers' => array(
'description' => __( 'The URL where the webhook was delivered.', 'woocommerce' ),
'type' => 'string',
'format' => 'uri',
'context' => array( 'view' ),
'readonly' => true,
),
'request_headers' => array( 'request_headers' => array(
'description' => __( 'Request headers.', 'woocommerce' ), 'description' => __( 'Request headers.', 'woocommerce' ),
'type' => 'array', 'type' => 'array',

View File

@ -255,13 +255,6 @@ class WC_REST_Webhook_Deliveries_V1_Controller extends WC_REST_Controller {
'context' => array( 'view' ), 'context' => array( 'view' ),
'readonly' => true, 'readonly' => true,
), ),
'request_headers' => array(
'description' => __( 'The URL where the webhook was delivered.', 'woocommerce' ),
'type' => 'string',
'format' => 'uri',
'context' => array( 'view' ),
'readonly' => true,
),
'request_headers' => array( 'request_headers' => array(
'description' => __( 'Request headers.', 'woocommerce' ), 'description' => __( 'Request headers.', 'woocommerce' ),
'type' => 'array', 'type' => 'array',

View File

@ -208,7 +208,6 @@ class WC_Post_types {
'show_ui' => true, 'show_ui' => true,
'show_in_quick_edit' => false, 'show_in_quick_edit' => false,
'show_in_menu' => false, 'show_in_menu' => false,
'show_in_nav_menus' => false,
'meta_box_cb' => false, 'meta_box_cb' => false,
'query_var' => 1 === $tax->attribute_public, 'query_var' => 1 === $tax->attribute_public,
'rewrite' => false, 'rewrite' => false,