Files
gdoo/public/assets/vendor/stimulsoft/php/stimulsoft/license.php
T
2021-02-22 12:17:00 +08:00

10 lines
212 B
PHP

<?php
// You can check the user authorization to send a license key only if the result is positive.
if (file_exists("license.key")) {
$license = file_get_contents("license.key");
echo $license;
}
?>