Files
wp-graphql-woocommerce/includes/admin/class-section.php
T
Geoffrey K TaylorandGitHub c068671d93 feat: WooGraphQL settings tab added. (#726)
* 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
2023-04-04 12:02:25 -04:00

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();
}