| 1 | <?php namespace EmailLog\License;  | 
            ||
| 10 | class License extends BaseLicense { | 
            ||
| 11 | |||
| 12 | /**  | 
            ||
| 13 | * Is the license activated and valid?  | 
            ||
| 14 | *  | 
            ||
| 15 | * @return bool True if license is active, False otherwise.  | 
            ||
| 16 | */  | 
            ||
| 17 | 	public function is_valid() { | 
            ||
| 21 | |||
| 22 | /**  | 
            ||
| 23 | * Get the license key.  | 
            ||
| 24 | *  | 
            ||
| 25 | * @return string License Key.  | 
            ||
| 26 | */  | 
            ||
| 27 | 	public function get_license_key() { | 
            ||
| 30 | |||
| 31 | /**  | 
            ||
| 32 | * Get the download url for the add-on.  | 
            ||
| 33 | *  | 
            ||
| 34 | * @return string Download url.  | 
            ||
| 35 | */  | 
            ||
| 36 | 	public function get_download_url() { | 
            ||
| 45 | }  | 
            ||
| 46 |