File "hustle-embedded-admin.php"

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

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

if ( ! class_exists( 'Hustle_Embedded_Admin' ) ) :

	/**
	 * Class Hustle_Embedded_Admin
	 */
	class Hustle_Embedded_Admin extends Hustle_Module_Page_Abstract {

		/**
		 * Set the properties for the listing and wizard pages
		 *
		 * @since 4.0.1
		 */
		protected function set_page_properties() {

			$this->module_type = Hustle_Module_Model::EMBEDDED_MODULE;

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

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

endif;