File "hustle-sshare-admin.php"

Full Path: /home/londdqdw/public_html/06/wp-content/plugins/wordpress-popup/inc/hustle-sshare-admin.php
File size: 2.5 KB
MIME-type: text/x-php
Charset: utf-8

<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
/**
 * Hustle_SShare_Admin
 *
 * @package Hustle
 */

if ( ! class_exists( 'Hustle_SShare_Admin' ) ) :

	/**
	 * Class Hustle_SShare_Admin
	 */
	class Hustle_SShare_Admin extends Hustle_Module_Page_Abstract {

		/**
		 * Set page properties
		 */
		protected function set_page_properties() {

			$this->module_type = Hustle_Module_Model::SOCIAL_SHARING_MODULE;

			$this->page_title = Opt_In_Utils::get_module_type_display_name( $this->module_type, false, true );

			$this->page_template_path      = '/admin/sshare/listing';
			$this->page_edit_template_path = '/admin/sshare/wizard';
		}

		/**
		 * Gets the JS variables to be localized in Wizard for Social Sharing modules.
		 *
		 * @since 4.3.0
		 *
		 * @return array
		 */
		protected function get_wizard_js_variables_to_localize() {
			$variables = array(
				'social_platforms'                => Hustle_SShare_Model::get_social_platform_names(),
				'social_platforms_with_endpoints' => Hustle_SShare_Model::get_sharing_endpoints(),
				'social_platforms_with_api'       => Hustle_SShare_Model::get_networks_counter_endpoint(),
				'social_platforms_data'           => array(
					'email_message_default' => __( "I've found an excellent article on {post_url} which may interest you.", 'hustle' ),
				),
				'palettes'                        => array(
					'sshare_defaults' => $this->module->get_design()->get_defaults(),
				),
			);
			return $variables;
		}

		/**
		 * Get the args for the wizard page.
		 *
		 * @since 4.0.1
		 * @return array
		 */
		protected function get_page_edit_template_args() {
			return array(
				'section'   => $this->get_current_section( 'services' ),
				'module_id' => $this->module->module_id,
				'module'    => $this->module,
				'is_active' => (bool) $this->module->active,
			);
		}

		/**
		 * Loads preview styles used only by the Ssharing wizard.
		 *
		 * @since 4.3.1
		 */
		protected function on_listing_and_wizard_actions() {
			parent::on_listing_and_wizard_actions();

			// Load preview scripts used only by ssharing wizard.
			if ( $this->page_edit === $this->current_page ) {
				add_action( 'admin_print_styles', array( $this, 'print_preview_styles' ) );
			}
		}

		/**
		 * Prints the styles for Ssharing inline modules.
		 *
		 * @since 4.3.1
		 */
		public function print_preview_styles() {
			$module_types = array( Hustle_Module_Model::SOCIAL_SHARING_MODULE, Hustle_SShare_Model::INLINE_MODULE );
			Hustle_Module_Front::print_front_styles( $module_types );
		}
	}

endif;