2023-11-29 12:24:09 +03:00
|
|
|
<?php extend('layouts/backend_layout'); ?>
|
2022-07-26 16:39:31 +03:00
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
<?php section('content'); ?>
|
2022-07-26 16:39:31 +03:00
|
|
|
|
|
|
|
<div id="matomo-analytics-settings-page" class="container backend-page">
|
2023-01-21 14:50:12 +03:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-3 offset-sm-1">
|
2023-11-29 12:24:09 +03:00
|
|
|
<?php component('settings_nav'); ?>
|
2023-01-21 14:50:12 +03:00
|
|
|
</div>
|
|
|
|
<div id="matomo-analytics-settings" class="col-sm-6">
|
|
|
|
<form>
|
|
|
|
<fieldset>
|
|
|
|
<div class="d-flex justify-content-between align-items-center border-bottom mb-4 py-2">
|
|
|
|
<h4 class="text-black-50 mb-0 fw-light">
|
|
|
|
<?= lang('matomo_analytics') ?>
|
|
|
|
</h4>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<a href="<?= site_url('integrations') ?>" class="btn btn-outline-primary me-2">
|
|
|
|
<i class="fas fa-chevron-left me-2"></i>
|
|
|
|
<?= lang('back') ?>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<?php if (can('edit', PRIV_SYSTEM_SETTINGS)): ?>
|
|
|
|
<button type="button" id="save-settings" class="btn btn-primary">
|
|
|
|
<i class="fas fa-check-square me-2"></i>
|
|
|
|
<?= lang('save') ?>
|
|
|
|
</button>
|
2023-11-29 12:24:09 +03:00
|
|
|
<?php endif; ?>
|
2022-09-14 11:30:52 +03:00
|
|
|
</div>
|
2023-01-21 14:50:12 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
|
|
|
<div class="mb-3">
|
|
|
|
<label class="form-label" for="matomo-analytics-url">
|
|
|
|
<?= lang('matomo_analytics_url') ?>
|
|
|
|
</label>
|
|
|
|
<input id="matomo-analytics-url" placeholder="//example.org/url/to/matomo/"
|
|
|
|
data-field="matomo_analytics_url" class="form-control">
|
|
|
|
<div class="form-text text-muted">
|
|
|
|
<small>
|
|
|
|
<?= lang('matomo_analytics_url_hint') ?>
|
|
|
|
</small>
|
2022-07-26 16:39:31 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-01-21 14:50:12 +03:00
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
2022-07-26 16:39:31 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
<?php end_section('content'); ?>
|
2022-07-26 16:39:31 +03:00
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
<?php section('scripts'); ?>
|
2022-07-26 16:39:31 +03:00
|
|
|
|
|
|
|
<script src="<?= asset_url('assets/js/utils/url.js') ?>"></script>
|
|
|
|
<script src="<?= asset_url('assets/js/http/matomo_analytics_settings_http_client.js') ?>"></script>
|
|
|
|
<script src="<?= asset_url('assets/js/pages/matomo_analytics_settings.js') ?>"></script>
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
<?php end_section('scripts'); ?>
|