Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Premium_Integrations::get_name()

Returns the integration name

Contents


Return Return

(String) The integration name


Source Source

File: src/core/lib/settings/trait-premium-integrations.php

	public function get_name() {
		// Check if the name is defined
		if ( empty( $this->name ) ) {
			throw new Exception( "Premium Integration: The name can't be empty" );
		}
		return $this->name;
	}