Untitled
unknown
php
2 years ago
902 B
9
Indexable
<?php
namespace Laramin\Utility;
use App\Models\GeneralSetting;
class Helpmate{
public static function sysPass(){
$fileExists = file_exists(__DIR__.'/laramin.json');
$general = cache()->get('GeneralSetting');
if (!$general) {
$general = GeneralSetting::first();
}
/**
$hasPurchaseCode = cache()->get('purchase_code');
if (!$hasPurchaseCode) {
$hasPurchaseCode = env('PURCHASECODE');
cache()->set('purchase_code',$hasPurchaseCode);
}
if (!$fileExists || $general->maintenance_mode == 9 || !$hasPurchaseCode) {
return false;
}
*/
return true;
}
public static function appUrl(){
$current = $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
$url = substr($current, 0, -9);
return $url;
}
}
Editor is loading...