Your IP : 216.73.216.138


Current Path : /home/ereika83/www/wp-content/plugins/hustle/inc/metas/
Upload File :
Current File : /home/ereika83/www/wp-content/plugins/hustle/inc/metas/class-hustle-meta-base-integrations.php

<?php
/**
 * File for Hustle_Meta_Base_Integrations class.
 *
 * @package Hustle
 * @since 4.2.0
 */

/**
 * Hustle_Meta_Base_Integrations is the base class for the "integrations" meta of modules.
 * This class should handle what's related to the "integrations" meta.
 *
 * @since 4.2.0
 */
class Hustle_Meta_Base_Integrations extends Hustle_Meta {

	/**
	 * Get the defaults for this meta.
	 *
	 * @since 4.0.0
	 * @return array
	 */
	public function get_defaults() {
		return array(
			'allow_subscribed_users'      => '1',
			'disallow_submission_message' => __( 'This email address is already subscribed.', 'hustle' ),
			'active_integrations'         => 'local_list', // Default active integration.
			'active_integrations_count'   => '1', // Default. Only local_list is active.
		);
	}
}