tethys/resources/views/settings/dashboard.blade.php

137 lines
2.7 KiB
PHP
Raw Normal View History

2018-08-31 14:47:04 +00:00
@extends('settings.layouts.app')
2018-11-28 16:06:00 +00:00
@section('styles')
<style type="text/css" media="screen">
.php-info pre {
margin: 0;
font-family: monospace;
}
2018-11-28 16:06:00 +00:00
.php-info a:link {
color: #009;
text-decoration: none;
background-color: #ffffff;
}
2018-11-28 16:06:00 +00:00
.php-info a:hover {
text-decoration: underline;
}
2018-11-28 16:06:00 +00:00
.php-info table {
border-collapse: collapse;
border: 0;
width: 100%;
box-shadow: 1px 2px 3px #ccc;
}
2018-11-28 16:06:00 +00:00
.php-info .center {
text-align: center;
}
2018-11-28 16:06:00 +00:00
.php-info .center table {
margin: 1em auto;
text-align: left;
}
2018-11-28 16:06:00 +00:00
.php-info .center th {
text-align: center !important;
}
2018-11-28 16:06:00 +00:00
.php-info td {
border: 1px solid #666;
font-size: 75%;
vertical-align: baseline;
padding: 4px 5px;
}
2018-11-28 16:06:00 +00:00
.php-info th {
border: 1px solid #666;
font-size: 75%;
vertical-align: baseline;
padding: 4px 5px;
}
2018-11-28 16:06:00 +00:00
.php-info h1 {
font-size: 150%;
}
2018-11-28 16:06:00 +00:00
.php-info h2 {
font-size: 125%;
}
2018-11-28 16:06:00 +00:00
.php-info .p {
text-align: left;
}
2018-11-28 16:06:00 +00:00
.php-info .e {
background-color: #ccf;
width: 50px;
font-weight: bold;
}
2018-11-28 16:06:00 +00:00
.php-info .h {
background-color: #99c;
font-weight: bold;
}
2018-11-28 16:06:00 +00:00
.php-info .v {
background-color: #ddd;
max-width: 50px;
overflow-x: auto;
word-wrap: break-word;
}
2018-11-28 16:06:00 +00:00
.php-info .v i {
color: #999;
}
2018-11-28 16:06:00 +00:00
.php-info img {
float: right;
border: 0;
}
2018-11-28 16:06:00 +00:00
.php-info hr {
width: 100%;
background-color: #ccc;
border: 0;
height: 1px;
}
.box-content a {
text-decoration:underline;
}
2018-11-28 16:06:00 +00:00
</style>
@endsection
2018-08-31 14:47:04 +00:00
{{-- @section('breadcrumbs', Breadcrumbs::render('settings.dashboard')) --}}
2018-08-29 15:18:15 +00:00
@section('content')
<div class="header">
<h3 class="header-title">Manual</h3>
</div>
<div class="pure-g box-content">
<div class="pure-u-1 pure-u-md-1">
<a href="{{ url('/docs/HandbuchTethys.pdf') }}" target=_blank>
Datenpublikationsrichtlinien, Terms & Conditions, Anleitung
</a>
2018-11-28 16:06:00 +00:00
<div class="php-info">
{{-- @php
2018-11-28 16:06:00 +00:00
ob_start();
phpinfo();
$pinfo = ob_get_contents();
ob_end_clean();
$pinfo = preg_replace( '%^.*<body>(.*)</body>.*$%ms','$1',$pinfo);
echo $pinfo;
@endphp --}}
</div>
2018-08-29 15:18:15 +00:00
</div>
<div class="pure-u-1 pure-u-md-1">
<a href="{{ url('/docs/geopackage_v01.pdf') }}" target=_blank>
Hilfe zu GeoPackage (GPKG)
</a>
</div>
2018-08-29 15:18:15 +00:00
</div>
@endsection