MP_Addon_Google_Spreadsheets_Settings::set_export_settings()

Set Google spreadsheets for export settings.


Return Return

(array) Export settings.

  • ''allow_google_sheet''
    (array) Allow sending lead data to google spreadsheet


Top ↑

Source Source

File: calculator-google-spreadsheets-add-on/inc/MP_Addon_Google_Spreadsheets_Settings.php

	public function set_export_settings() {
		$this->export_settings = array(
			array(
				'id'       => 'allow_google_sheet',
				'title'    => __( 'Allow Google sheet', 'CalculatorsGoogleSpreadSheetsAddon' ),
				'callback' => array( $this, 'checkbox' ),
				'args'     => array(
					'option_name' => MortgagePlatform::$prefix . 'export',
					'label_for'   => 'allow_google_sheet',
					'placeholder' => '',
					'default'     => '',
					'description' => __( 'Allow Google sheet', 'CalculatorsGoogleSpreadSheetsAddon' ),
				),
			),
		);

		return $this->export_settings;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0 Introduced.