diff --git a/app/config/app.php b/app/config/app.php index 96bda0b..71aedee 100644 --- a/app/config/app.php +++ b/app/config/app.php @@ -86,32 +86,6 @@ return [ */ 'zip_compress' => env('ZIP_COMPRESS', false), - /** - * DEPRECATED: Will be removed in a future release. - * - * Your Google analytics tracking ID. - * - * Expected format: 'UA-123456789-0' - * Default value: false - */ - 'google_analytics_id' => env('GOOGLE_ANALYTICS_ID', false), - - /** - * DEPRECATED: Will be removed in a future release. - * - * Your Matomo analytics URL. - * - * Default value: false - */ - 'matomo_analytics_url' => env('MATOMO_ANALYTICS_URL', false), - - /** - * Your Matomo analytics site ID. - * - * Default value: false - */ - 'matomo_analytics_site_id' => env('MATOMO_ANALYTICS_SITE_ID', false), - /** * Sorting order of files and folders. * diff --git a/app/views/components/analytics/google.twig b/app/views/components/analytics/google.twig deleted file mode 100644 index 37cc488..0000000 --- a/app/views/components/analytics/google.twig +++ /dev/null @@ -1,11 +0,0 @@ - - - diff --git a/app/views/components/analytics/matomo.twig b/app/views/components/analytics/matomo.twig deleted file mode 100644 index 0780e2f..0000000 --- a/app/views/components/analytics/matomo.twig +++ /dev/null @@ -1,15 +0,0 @@ - - - diff --git a/app/views/layouts/app.twig b/app/views/layouts/app.twig index 1da7c91..bc9418c 100644 --- a/app/views/layouts/app.twig +++ b/app/views/layouts/app.twig @@ -12,16 +12,6 @@ {{ analytics() | raw }} -{# NOTE: To be removed in a future release #} -{% if config('google_analytics_id', false) %} - {% include 'components/analytics/google.twig' %} -{% endif %} - -{# NOTE: To be removed in a future release #} -{% if config('matomo_analytics_url', false) and config('matomo_analytics_site_id', false) %} - {% include 'components/analytics/matomo.twig' %} -{% endif %} -