HEX
Server: Apache
System: Linux webm004.cluster121.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
User: grainesdfo (155059)
PHP: 5.4.45
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/grainesdfo/www/wp-content/plugins/wordpress-popup/inc/class-hustle-upsell-page.php
<?php
/**
 * File for Hustle_Admin_Page_Abstract class.
 *
 * @package Hustle
 * @since 4.3.0
 */

/**
 * Class Hustle_Upsell_Page
 * This class handles the global "Hustle pro" page view for free versions.
 *
 * @since 4.3.0
 */
class Hustle_Upsell_Page extends Hustle_Admin_Page_Abstract {

	/**
	 * Initiates the page's properties
	 *
	 * @since 4.3.0
	 */
	public function init() {

		$this->page = 'hustle_pro';

		$this->page_title = __( 'Hustle Pro', 'hustle' );

		$this->page_menu_title = __( 'Hustle Pro', 'hustle' );

		$this->page_capability = 'hustle_menu';

		$this->page_template_path = 'admin/upsell';
	}

	/**
	 * Get the arguments used when rendering the main page.
	 *
	 * @since 4.3.0
	 * @return array
	 */
	public function get_page_template_args() {
		return array();
	}

}