mirror of
https://github.com/wp-graphql/wp-graphql-woocommerce.git
synced 2026-08-14 12:53:44 +02:00
* feat: WooGraphQL settings tab added. * chore: WPCS compliance met * bugfix: Order Item Node ID implemented. * chore: Deprecated "AppContext::getLoader" calls replaced. * chore: WPCS compliance met. * fix: DownloadableItem "id" field implemented
22 lines
336 B
PHP
22 lines
336 B
PHP
<?php
|
|
/**
|
|
* The section defines the root functionality for a settings section
|
|
*
|
|
* @package WPGraphQL\WooCommerce\Admin
|
|
*/
|
|
|
|
namespace WPGraphQL\WooCommerce\Admin;
|
|
|
|
/**
|
|
* Section class
|
|
*/
|
|
abstract class Section {
|
|
|
|
/**
|
|
* Returns Section settings fields.
|
|
*
|
|
* @return array
|
|
*/
|
|
abstract public static function get_fields();
|
|
}
|