Add_Google_Calendar_Integration::setup()

Integration Set-up.


Source

File: src/integrations/google-calendar/add-google-calendar-integration.php

	protected function setup() {

		$this->set_integration( 'GOOGLE_CALENDAR' );

		$this->set_name( 'Google Calendar' );

		$this->set_connected( false !== get_option( 'automator_google_calendar_credentials', false ) ? true : false );

		$this->set_settings_url( automator_get_premium_integrations_settings_url( 'google-calendar' ) );

		$this->set_icon( __DIR__ . '/img/google-calendar-icon.svg' );

	}