feat: Add IntegrationRepository and ShopProClient for managing integrations and fetching products from shopPRO API
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/assets/css/app.css">
|
||||
<link rel="stylesheet" href="/assets/css/modules/jquery-alerts.css">
|
||||
</head>
|
||||
<body>
|
||||
<?php $currentMenu = (string) ($activeMenu ?? ''); ?>
|
||||
@@ -22,7 +23,10 @@
|
||||
<a class="sidebar__link<?= $currentMenu === 'users' ? ' is-active' : '' ?>" href="/users">
|
||||
<?= $e($t('navigation.users')) ?>
|
||||
</a>
|
||||
<a class="sidebar__link<?= $currentMenu === 'settings' ? ' is-active' : '' ?>" href="/settings/database">
|
||||
<a class="sidebar__link<?= $currentMenu === 'products' ? ' is-active' : '' ?>" href="/products">
|
||||
<?= $e($t('navigation.products')) ?>
|
||||
</a>
|
||||
<a class="sidebar__link<?= $currentMenu === 'settings' ? ' is-active' : '' ?>" href="/settings/integrations/shoppro">
|
||||
<?= $e($t('navigation.settings')) ?>
|
||||
</a>
|
||||
</nav>
|
||||
@@ -44,5 +48,6 @@
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
<script src="/assets/js/modules/jquery-alerts.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user