2022-07-18 15:12:52 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This Software is the property of Data Development and is protected
|
|
|
|
* by copyright law - it is NOT Freeware.
|
|
|
|
*
|
|
|
|
* Any unauthorized use of this software without a valid license
|
|
|
|
* is a violation of the license agreement and will be prosecuted by
|
|
|
|
* civil and criminal law.
|
|
|
|
*
|
|
|
|
* https://www.d3data.com
|
|
|
|
*
|
|
|
|
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
|
|
|
* @author D3 Data Development - Daniel Stein <support@shopmodule.com>
|
|
|
|
* @link https://www.oxidmodule.com
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Metadata version
|
|
|
|
*/
|
|
|
|
|
|
|
|
$sMetadataVersion = '2.0';
|
|
|
|
|
|
|
|
$sModuleId = 'removegooglefonts';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module information
|
|
|
|
*/
|
|
|
|
|
|
|
|
$aModule = [
|
|
|
|
'id' => $sModuleId,
|
2022-08-31 14:55:36 +02:00
|
|
|
'title' => '<img src="https://logos.oxidmodule.com/d3logo.svg" alt="(D3)" style="height:1em;width:1em"> Google Fonts lokal einbinden',
|
2022-07-18 15:12:52 +02:00
|
|
|
'description' => [
|
2022-08-31 14:55:36 +02:00
|
|
|
'de' => 'Bindet Google Fonts lokal ein',
|
2022-07-18 15:12:52 +02:00
|
|
|
'en' => '',
|
|
|
|
],
|
2022-08-31 14:55:36 +02:00
|
|
|
'version' => '1.0.0.0',
|
2022-07-18 15:12:52 +02:00
|
|
|
'author' => 'D³ Data Development (Inh.: Thomas Dartsch)',
|
|
|
|
'email' => 'support@shopmodule.com',
|
|
|
|
'url' => 'http://www.oxidmodule.com/',
|
|
|
|
'blocks' => [
|
|
|
|
[
|
2022-08-31 14:55:36 +02:00
|
|
|
'template' => 'layout/base.tpl',
|
|
|
|
'block' => 'base_style',
|
|
|
|
'file' => '/Application/views/blocks/layout/d3_base_style.tpl'
|
2022-07-18 15:12:52 +02:00
|
|
|
],
|
|
|
|
[
|
2022-08-31 14:55:36 +02:00
|
|
|
'template' => 'layout/base.tpl',
|
|
|
|
'block' => 'base_fonts',
|
|
|
|
'file' => '/Application/views/blocks/layout/d3_base_fonts.tpl'
|
2022-07-18 15:12:52 +02:00
|
|
|
]
|
|
|
|
],
|
|
|
|
];
|