Automattic\WooCommerce\Admin\RemoteSpecs
DataSourcePoller::get_spec_key
Returns the key identifier of spec, this can easily be overwritten. Defaults to id.
Method of the class: DataSourcePoller{}
No Hooks.
Returns
String|true|false.
Usage
// protected - for code of main (parent) or child class $result = $this->get_spec_key( $spec );
- $spec(mixed) (required)
- a JSON parsed spec coming from the JSON feed.
DataSourcePoller::get_spec_key() DataSourcePoller::get spec key code WC 10.5.0
protected function get_spec_key( $spec ) {
$key = $this->args['spec_key'];
if ( isset( $spec->$key ) ) {
return $spec->$key;
}
return false;
}