peliprint/resources/views/admin/extensions/blueprint/index.blade.php

100 lines
5.3 KiB
PHP
Raw Normal View History

@extends('layouts.admin')
@section('title')
Blueprint
@endsection
@section('content-header')
<img src="/assets/extensions/blueprint/logo.jpg" alt="logo" style="float:left;width:30px;height:30px;border-radius:3px;margin-right:5px;">
<h1 ext-title>Blueprint<tag mg-left blue>{{ $bp->version() }}</tag></h1>
<ol class="breadcrumb">
<li><a href="{{ route('admin.index') }}">Admin</a></li>
<li><a href="{{ route('admin.extensions') }}">Extensions</a></li>
<li class="active">Blueprint</li>
</ol>
@endsection
@section('content')
2023-04-17 07:15:47 -04:00
{{ $bp->serve() }}
2023-04-11 15:54:57 -04:00
{{ $telemetry->send("SERVE_BLUEPRINT_ADMIN") }}
<p>Blueprint is the framework that powers all Blueprint-compatible extensions, enabling multiple extensions to be installed and used simultaneously.</p>
<div class="row">
<div class="col-xs-3">
<!-- Overview -->
<div class="box">
<div class="box-header with-border">
<h3 class="box-title"><i class='bx bxs-shapes' style='margin-right:5px;'></i></i>Overview</h3>
</div>
<div class="box-body">
<p>You are currently using version <code>{{ $bp->version() }}</code>.</p>
</div>
</div>
2023-04-09 15:15:11 -04:00
<!-- Terminal -->
2023-04-17 07:15:47 -04:00
@if($bp->dbGet('developer') == "true")
<div class="box">
<div class="box-header with-border">
<h3 class="box-title"><i class='bx bxs-terminal' style='margin-right:5px;'></i>Terminal</h3>
</div>
2023-04-17 07:15:47 -04:00
<div class="box-body">
<form action="" method="POST">
<div class="col-xs-12" style="padding-top:5px;">
<input type="text" required name="developer:cmd" id="developer:cmd" value="{{ $bp->dbGet('developer:cmd') }}" class="form-control" style="height:40px;width:100%;"/>
<p class="text-muted small">Be careful with what you run, some commands may end up breaking this page.</p>
2023-04-17 07:15:47 -04:00
{{ csrf_field() }}
<button type="submit" name="_method" value="PATCH" class="btn btn-gray-alt btn-sm pull-right" style="display:none;">Send</button>
</div>
<div class="col-xs-12" style="padding-top:10px;">
@if($bp->dbGet('developer:log') != "")
<code>{{ $bp->dbGet('developer:log') }}</code>
@endif
</div>
</form>
</div>
</div>
2023-04-09 15:15:11 -04:00
{{ $bp->dbSet('developer:log', '') }}
{{ $bp->dbSet('developer:cmd', '') }}
@endif
</div>
<div class="col-xs-9">
<form action="" method="POST">
<div class="box">
<div class="box-header with-border">
<h3 class="box-title"><i class='bx bxs-cog' style='margin-right:5px;'></i>Configuration</h3>
</div>
<div class="box-body">
<div class="row">
<div class="col-xs-4">
2023-04-10 15:59:20 -04:00
<label class="control-label">Telemetry</label>
<select class="form-control" name="telemetry">
<option value="true">Enabled</option>
2023-05-09 15:15:13 -04:00
<option value="false" @if($bp->dbGet('telemetry') != "true") selected @endif>Disabled</option>
2023-04-10 15:59:20 -04:00
</select>
<p class="text-muted small">Automatically share anonymous usage data with Blueprint.</p>
</div>
<div class="col-xs-4">
<label class="control-label">ID</label>
<input type="text" required name="panel:id" id="panel:id" value="{{ $bp->dbGet('panel:id') }}" class="form-control" readonly/>
<p class="text-muted small">Randomly generated string with your version that is used as a panel identifier.</p>
</div>
<div class="col-xs-4">
<label class="control-label">Developer Mode</label>
<select class="form-control" name="developer">
<option value="true">Enabled</option>
<option value="false" @if($bp->dbGet('developer') != "true") selected @endif>Disabled</option>
</select>
<p class="text-muted small">Enable or disable developer-oriented features.</p>
</div>
</div>
</div>
<div class="box-footer">
2023-04-17 07:48:45 -04:00
{{ csrf_field() }}
<button type="submit" name="_method" value="PATCH" class="btn btn-gray-alt btn-sm pull-right">Save</button>
</div>
</div>
</form>
</div>
</div>
@endsection