Yuck, but added helper function to return the demo mode form warning
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
@@ -1147,4 +1147,14 @@ class Helper
|
||||
return $age;
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
* I know it's gauche to return a shitty HTML string, but this is just a helper and since it will be the same every single time,
|
||||
* it seemed pretty safe to do here. Don't you judge me.
|
||||
*/
|
||||
public function showDemoModeFieldWarning() {
|
||||
if (app('demo_mode')) {
|
||||
return "<p class=\"text-warning\"><i class=\"fas fa-lock\"></i>" . trans('general.feature_disabled') . "</p>";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user