Current File : /home/digitaw/www/wp-content/updraft/plugins-old/wordpress-popup/inc/hustle-popup-admin.php
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
/**
 * Hustle_Popup_Admin
 *
 * @package Hustle
 */

if ( ! class_exists( 'Hustle_Popup_Admin' ) ) :

	/**
	 * Class Hustle_Popup_Admin
	 */
	class Hustle_Popup_Admin extends Hustle_Module_Page_Abstract {

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

			$this->module_type = Hustle_Module_Model::POPUP_MODULE;

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

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

endif;