2021-10-26 15:54:56 +00:00
|
|
|
<?= $this->extend('_layout') ?>
|
|
|
|
|
|
|
|
<?= $this->section('title') ?>
|
|
|
|
<?= lang('Settings.title') ?>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('pageTitle') ?>
|
|
|
|
<?= lang('Settings.title') ?>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('content') ?>
|
2021-11-23 11:54:34 +00:00
|
|
|
<div class="flex flex-col gap-y-4">
|
2021-10-26 15:54:56 +00:00
|
|
|
|
2022-01-02 14:11:05 +00:00
|
|
|
<form action="<?= route_to('settings-instance') ?>" method="POST" enctype="multipart/form-data" class="max-w-xl">
|
2021-10-26 15:54:56 +00:00
|
|
|
<?= csrf_field() ?>
|
|
|
|
|
|
|
|
<Forms.Section
|
2021-11-23 11:54:34 +00:00
|
|
|
title="<?= lang('Settings.instance.title') ?>">
|
2021-10-26 15:54:56 +00:00
|
|
|
|
|
|
|
<Forms.Field
|
|
|
|
name="site_name"
|
2021-11-23 11:54:34 +00:00
|
|
|
label="<?= lang('Settings.instance.site_name') ?>"
|
2022-03-04 14:33:48 +00:00
|
|
|
value="<?= esc(service('settings')
|
|
|
|
->get('App.siteName')) ?>"
|
2021-10-26 15:54:56 +00:00
|
|
|
required="true" />
|
|
|
|
|
|
|
|
<Forms.Field
|
|
|
|
as="Textarea"
|
|
|
|
name="site_description"
|
2021-11-23 11:54:34 +00:00
|
|
|
label="<?= lang('Settings.instance.site_description') ?>"
|
2022-03-04 14:33:48 +00:00
|
|
|
value="<?= esc(service('settings')
|
|
|
|
->get('App.siteDescription')) ?>"
|
2021-10-26 15:54:56 +00:00
|
|
|
required="true"
|
|
|
|
rows="4" />
|
|
|
|
|
|
|
|
<div class="flex items-center">
|
|
|
|
<Forms.Field
|
|
|
|
name="site_icon"
|
|
|
|
type="file"
|
2021-11-23 11:54:34 +00:00
|
|
|
label="<?= lang('Settings.instance.site_icon') ?>"
|
|
|
|
hint="<?= lang('Settings.instance.site_icon_hint') ?>"
|
|
|
|
helper="<?= lang('Settings.instance.site_icon_helper') ?>"
|
2021-11-02 11:58:06 +00:00
|
|
|
accept=".png,.jpeg,.jpg"
|
2021-10-26 15:54:56 +00:00
|
|
|
class="flex-1"
|
|
|
|
/>
|
|
|
|
<?php if (config('App')->siteIcon['ico'] !== service('settings')->get('App.siteIcon')['ico']): ?>
|
|
|
|
<div class="relative ml-2">
|
2021-11-23 11:54:34 +00:00
|
|
|
<a href="<?= route_to('settings-instance-delete-icon') ?>" class="absolute p-1 text-red-700 bg-red-100 border-2 rounded-full hover:text-red-900 border-contrast -top-3 -right-3 focus:ring-accent" title="<?= lang('Settings.instance.site_icon_delete') ?>" data-tooltip="top"><?= icon('delete-bin') ?></a>
|
2022-03-04 14:33:48 +00:00
|
|
|
<img src="<?= service('settings')->get('App.siteIcon')['64'] ?>" alt="<?= esc(service('settings')->get('App.siteName')) ?> Favicon" class="w-10 h-10 aspect-square" loading="lazy" />
|
2021-10-26 15:54:56 +00:00
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
|
2021-11-23 11:54:34 +00:00
|
|
|
<Button variant="primary" type="submit" class="self-end"><?= lang('Settings.instance.submit') ?></Button>
|
2021-10-26 15:54:56 +00:00
|
|
|
|
|
|
|
</Forms.Section>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
|
2022-01-23 16:53:23 +00:00
|
|
|
<form action="<?= route_to('settings-images-regenerate') ?>" method="POST" class="flex flex-col w-full max-w-xl gap-y-4">
|
2021-11-23 11:54:34 +00:00
|
|
|
<?= csrf_field() ?>
|
|
|
|
|
|
|
|
<Forms.Section
|
|
|
|
title="<?= lang('Settings.images.title') ?>"
|
|
|
|
subtitle="<?= lang('Settings.images.subtitle') ?>" >
|
|
|
|
|
|
|
|
<Button variant="primary" type="submit" iconLeft="refresh"><?= lang('Settings.images.regenerate') ?></Button>
|
|
|
|
|
|
|
|
</Forms.Section>
|
|
|
|
|
|
|
|
</form>
|
2022-01-13 16:02:14 +00:00
|
|
|
|
2022-01-23 16:53:23 +00:00
|
|
|
<form action="<?= route_to('settings-housekeeping-run') ?>" method="POST" class="flex flex-col w-full max-w-xl gap-y-4">
|
2022-01-13 16:02:14 +00:00
|
|
|
<?= csrf_field() ?>
|
|
|
|
|
|
|
|
<Forms.Section
|
|
|
|
title="<?= lang('Settings.housekeeping.title') ?>"
|
|
|
|
subtitle="<?= lang('Settings.housekeeping.subtitle') ?>" >
|
|
|
|
|
2022-01-14 17:42:55 +00:00
|
|
|
<Forms.Toggler name="reset_counts" value="yes" size="small" checked="true" hint="<?= lang('Settings.housekeeping.reset_counts_helper') ?>"><?= lang('Settings.housekeeping.reset_counts') ?></Forms.Toggler>
|
|
|
|
<Forms.Toggler name="rewrite_media" value="yes" size="small" checked="true" hint="<?= lang('Settings.housekeeping.rewrite_media_helper') ?>"><?= lang('Settings.housekeeping.rewrite_media') ?></Forms.Toggler>
|
2022-01-29 16:42:34 +00:00
|
|
|
<Forms.Toggler name="clear_cache" value="yes" size="small" checked="true" hint="<?= lang('Settings.housekeeping.clear_cache_helper') ?>"><?= lang('Settings.housekeeping.clear_cache') ?></Forms.Toggler>
|
2022-01-14 17:42:55 +00:00
|
|
|
|
2022-01-13 16:02:14 +00:00
|
|
|
<Button variant="primary" type="submit" iconLeft="home-gear"><?= lang('Settings.housekeeping.run') ?></Button>
|
|
|
|
|
|
|
|
</Forms.Section>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
|
2021-11-23 11:54:34 +00:00
|
|
|
</div>
|
|
|
|
|
2021-10-26 15:54:56 +00:00
|
|
|
<?= $this->endSection() ?>
|