Abstract_Screen::__construct( int $configuration_status, string $assets_url )

Summary

Abstract_Screen constructor.


Parameters

$configuration_status

(int) (Required) A flag indicating if the current stage in the setup process

$assets_url

(string) (Required) Path to the plugin assets directory


Source

File: src/BigCommerce/Settings/Screens/Abstract_Screen.php

	public function __construct( $configuration_status, $assets_url ) {
		if ( empty( static::NAME ) ) {
			throw new \LogicException( 'Classes extending Abstract_Screen must have the NAME constant set to a non-empty value' );
		}
		$this->configuration_status = $configuration_status;
		$this->assets_url           = $assets_url;
	}


User Contributed Notes

You must log in before being able to contribute a note or feedback.