Add MJML settings
This commit is contained in:
parent
d6ebe3eea4
commit
c336c96eaa
2 changed files with 173 additions and 61 deletions
|
@ -233,31 +233,73 @@ class Page
|
||||||
{
|
{
|
||||||
$user = new User();
|
$user = new User();
|
||||||
|
|
||||||
$pagesAccount = array();
|
$pages = array(
|
||||||
|
'wishlists' => array(
|
||||||
|
'text' => 'Wishlists',
|
||||||
|
'alignment' => 'left',
|
||||||
|
'items' => array(
|
||||||
|
array(
|
||||||
|
'url' => '/?page=wishlists',
|
||||||
|
'text' => 'My lists',
|
||||||
|
'icon' => 'list',
|
||||||
|
)
|
||||||
|
),
|
||||||
|
),
|
||||||
|
'system' => array(
|
||||||
|
'text' => 'System',
|
||||||
|
'icon' => 'wrench',
|
||||||
|
'alignment' => 'right',
|
||||||
|
'items' => array(
|
||||||
|
array(
|
||||||
|
'url' => '/?page=settings',
|
||||||
|
'text' => 'Settings',
|
||||||
|
'icon' => 'cog',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
'account' => array(
|
||||||
|
'text' => 'Account',
|
||||||
|
'icon' => 'user circle',
|
||||||
|
'alignment' => 'right',
|
||||||
|
'items' => array(),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
if ($user && $user->isLoggedIn()) {
|
if ($user && $user->isLoggedIn()) {
|
||||||
if (100 === $user->power) {
|
if (100 === $user->power) {
|
||||||
$pagesAccount[] = array(
|
$pages['account']['items'][] = array(
|
||||||
'url' => '/?page=login-as',
|
'url' => '/?page=login-as',
|
||||||
'icon' => 'sign out alternate',
|
|
||||||
'text' => 'Login as',
|
'text' => 'Login as',
|
||||||
|
'icon' => 'sign out alternate',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
$pagesAccount[] = array(
|
$pages['account']['items'][] = array(
|
||||||
'url' => '/?page=logout',
|
'url' => '/?page=logout',
|
||||||
'icon' => 'sign out alternate',
|
|
||||||
'text' => 'Logout',
|
'text' => 'Logout',
|
||||||
|
'icon' => 'sign out alternate',
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
$pagesAccount[] = array(
|
$pages['account']['items'][] = array(
|
||||||
'url' => '/?page=login',
|
'url' => '/?page=login',
|
||||||
'icon' => 'sign in alternate',
|
|
||||||
'text' => 'Login',
|
'text' => 'Login',
|
||||||
|
'icon' => 'sign in alternate',
|
||||||
);
|
);
|
||||||
$pagesAccount[] = array(
|
$pages['account']['items'][] = array(
|
||||||
'url' => '/?page=register',
|
'url' => '/?page=register',
|
||||||
'icon' => 'user plus alternate',
|
|
||||||
'text' => 'Register',
|
'text' => 'Register',
|
||||||
|
'icon' => 'user plus alternate',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
global $options;
|
||||||
|
|
||||||
|
if ($options->updateAvailable && $user && 100 === $user->power) {
|
||||||
|
$pages['system']['items'][] = array(
|
||||||
|
array(
|
||||||
|
'url' => '/?page=update',
|
||||||
|
'text' => 'Update',
|
||||||
|
'icon' => 'upload',
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
@ -268,29 +310,15 @@ class Page
|
||||||
<a class="item home" href="/?page=home">
|
<a class="item home" href="/?page=home">
|
||||||
<img src="/src/assets/img/logo.svg" alt="wishthis logo" />
|
<img src="/src/assets/img/logo.svg" alt="wishthis logo" />
|
||||||
</a>
|
</a>
|
||||||
<a class="item" href="/?page=wishlists">
|
|
||||||
<i class="list icon"></i>
|
|
||||||
My lists
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<?php global $options; ?>
|
<?php foreach ($pages as $page) { ?>
|
||||||
|
<?php foreach ($page['items'] as $item) { ?>
|
||||||
<?php if ($options->updateAvailable && $user && 100 === $user->power) { ?>
|
|
||||||
<a class="item" href="/?page=update">
|
|
||||||
<i class="upload icon"></i> Update
|
|
||||||
</a>
|
|
||||||
<?php } ?>
|
|
||||||
|
|
||||||
<?php
|
|
||||||
foreach ($pagesAccount as $item) {
|
|
||||||
?>
|
|
||||||
<a class="item" href="<?= $item['url'] ?>">
|
<a class="item" href="<?= $item['url'] ?>">
|
||||||
<i class="<?= $item['icon'] ?> icon"></i>
|
<i class="<?= $item['icon'] ?> icon"></i>
|
||||||
<?= $item['text'] ?>
|
<?= $item['text'] ?>
|
||||||
</a>
|
</a>
|
||||||
<?php
|
<?php } ?>
|
||||||
}
|
<?php } ?>
|
||||||
?>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -303,45 +331,70 @@ class Page
|
||||||
<a class="item home" href="/?page=home">
|
<a class="item home" href="/?page=home">
|
||||||
<img src="/src/assets/img/logo.svg" />
|
<img src="/src/assets/img/logo.svg" />
|
||||||
</a>
|
</a>
|
||||||
<a class="item" href="/?page=wishlists">
|
|
||||||
<i class="list icon"></i>
|
|
||||||
My lists
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<div class="right menu">
|
<?php foreach ($pages as $page) { ?>
|
||||||
<?php global $options; ?>
|
<?php if ('left' === $page['alignment']) { ?>
|
||||||
|
<?php if (count($page['items']) > 1) { ?>
|
||||||
<?php if ($options->updateAvailable && $user && 100 === $user->power) { ?>
|
<div class="ui simple dropdown item">
|
||||||
<a class="item" href="/?page=update">
|
<?php if (isset($page['icon'])) { ?>
|
||||||
<i class="upload icon"></i> Update
|
<i class="<?= $page['icon'] ?> icon"></i>
|
||||||
</a>
|
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
<?php if (count($pagesAccount) === 1) { ?>
|
<?= $page['text'] ?>
|
||||||
<a class="item" href="<?= $pagesAccount[0]['url'] ?>">
|
|
||||||
<i class="<?= $pagesAccount[0]['icon'] ?> icon"></i>
|
|
||||||
<?= $pagesAccount[0]['text'] ?>
|
|
||||||
</a>
|
|
||||||
<?php } elseif (count($pagesAccount) >= 2) { ?>
|
|
||||||
<div class="ui simple dropdown item">
|
|
||||||
<i class="user circle icon"></i>
|
|
||||||
Account
|
|
||||||
<i class="dropdown icon"></i>
|
<i class="dropdown icon"></i>
|
||||||
|
|
||||||
<div class="menu">
|
<div class="menu">
|
||||||
<?php
|
<?php foreach ($page['items'] as $item) { ?>
|
||||||
if (count($pagesAccount) >= 2) {
|
|
||||||
foreach ($pagesAccount as $item) {
|
|
||||||
?>
|
|
||||||
<a class="item" href="<?= $item['url'] ?>">
|
<a class="item" href="<?= $item['url'] ?>">
|
||||||
<i class="<?= $item['icon'] ?> icon"></i>
|
<i class="<?= $item['icon'] ?> icon"></i>
|
||||||
<?= $item['text'] ?>
|
<?= $item['text'] ?>
|
||||||
</a>
|
</a>
|
||||||
<?php
|
<?php } ?>
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<?php } else { ?>
|
||||||
|
<?php foreach ($page['items'] as $item) { ?>
|
||||||
|
<a class="item" href="<?= $item['url'] ?>">
|
||||||
|
<i class="<?= $item['icon'] ?> icon"></i>
|
||||||
|
<?= $item['text'] ?>
|
||||||
|
</a>
|
||||||
|
<?php } ?>
|
||||||
|
<?php } ?>
|
||||||
|
<?php } ?>
|
||||||
|
<?php } ?>
|
||||||
|
|
||||||
|
<div class="right menu">
|
||||||
|
<?php foreach ($pages as $page) { ?>
|
||||||
|
<?php if ('right' === $page['alignment']) { ?>
|
||||||
|
<?php if (count($page['items']) > 1) { ?>
|
||||||
|
<div class="ui simple dropdown item">
|
||||||
|
<?php if (isset($page['icon'])) { ?>
|
||||||
|
<i class="<?= $page['icon'] ?> icon"></i>
|
||||||
|
<?php } ?>
|
||||||
|
|
||||||
|
<?= $page['text'] ?>
|
||||||
|
|
||||||
|
<i class="dropdown icon"></i>
|
||||||
|
|
||||||
|
<div class="menu">
|
||||||
|
<?php foreach ($page['items'] as $item) { ?>
|
||||||
|
<a class="item" href="<?= $item['url'] ?>">
|
||||||
|
<i class="<?= $item['icon'] ?> icon"></i>
|
||||||
|
<?= $item['text'] ?>
|
||||||
|
</a>
|
||||||
|
<?php } ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php } else { ?>
|
||||||
|
<?php foreach ($page['items'] as $item) { ?>
|
||||||
|
<a class="item" href="<?= $item['url'] ?>">
|
||||||
|
<i class="<?= $item['icon'] ?> icon"></i>
|
||||||
|
<?= $item['text'] ?>
|
||||||
|
</a>
|
||||||
|
<?php } ?>
|
||||||
|
<?php } ?>
|
||||||
|
<?php } ?>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
59
src/pages/settings.php
Normal file
59
src/pages/settings.php
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The settings page.
|
||||||
|
*
|
||||||
|
* @author Jay Trees <github.jay@grandel.anonaddy.me>
|
||||||
|
*/
|
||||||
|
|
||||||
|
use wishthis\Page;
|
||||||
|
|
||||||
|
$page = new page(__FILE__, 'Settings');
|
||||||
|
$page->header();
|
||||||
|
$page->bodyStart();
|
||||||
|
$page->navigation();
|
||||||
|
|
||||||
|
if (isset($_POST['mjml_api'], $_POST['api_key'], $_POST['api_secret'])) {
|
||||||
|
$options->setOption('mjml_api_key', $_POST['api_key']);
|
||||||
|
$options->setOption('mjml_api_secret', $_POST['api_secret']);
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<div class="ui container">
|
||||||
|
<h1 class="ui header"><?= $page->title ?></h1>
|
||||||
|
|
||||||
|
<div class="ui segment">
|
||||||
|
<h2 class="ui header">MJML</h2>
|
||||||
|
<p>MJML is required for sending emails. Visit <a href="https://mjml.io/api" target="_blank">https://mjml.io/api</a> to request API access.</p>
|
||||||
|
|
||||||
|
<h3 class="ui header">API</h3>
|
||||||
|
<form class="ui form" method="POST">
|
||||||
|
<div class="field">
|
||||||
|
<label>Key</label>
|
||||||
|
<input type="text"
|
||||||
|
name="api_key"
|
||||||
|
placeholder="01234567-89ab-cdef-0123-456789abcdef"
|
||||||
|
value="<?= $options->getOption('mjml_api_key'); ?>"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="field">
|
||||||
|
<label>Secret</label>
|
||||||
|
<input type="text"
|
||||||
|
name="api_secret"
|
||||||
|
placeholder="01234567-89ab-cdef-0123-456789abcdef"
|
||||||
|
value="<?= $options->getOption('mjml_api_secret'); ?>"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<input class="ui primary button" type="submit" name="mjml_api" value="Save" />
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
$page->footer();
|
||||||
|
$page->bodyEnd();
|
||||||
|
?>
|
Loading…
Reference in a new issue