psCacheWarmer/metadata.php

87 lines
2.3 KiB
PHP
Raw Permalink Normal View History

2016-08-25 15:26:37 +02:00
<?php
/**
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
2020-08-17 12:38:19 +02:00
*
* @copyright (c) ProudCommerce | 2020
2020-09-14 17:14:07 +02:00
* @link www.proudcommerce.com
* @package psCacheWarmer
2020-09-15 11:23:28 +02:00
* @version 3.1.1
2020-08-17 12:38:19 +02:00
**/
2016-08-25 15:26:37 +02:00
/**
* Metadata version
*/
2019-06-26 20:44:36 +02:00
$sMetadataVersion = '2.0';
2016-08-25 15:26:37 +02:00
/**
* Module information
*/
2020-08-17 12:38:19 +02:00
$aModule = [
'id' => 'psCacheWarmer',
'title' => 'psCacheWarmer',
'description' => [
'de' => 'Website anhand der XML-Sitemap automatisch aufrufen, z. B. zum "Aufwärmen" eines Caches.',
'en' => 'Automatically calling urls using the xml-sitemap, eg. for cache warmup.',
],
'thumbnail' => 'logo_pc-os.jpg',
2021-03-17 15:10:26 +01:00
'version' => '3.1.2',
2020-08-17 12:38:19 +02:00
'author' => 'ProudCommerce',
'url' => 'https://github.com/proudcommerce/psCacheWarmer',
'email' => '',
'extend' => [
],
'controllers' => [
],
'templates' => [
],
'blocks' => [
],
'settings' => [
[
2016-08-25 15:26:37 +02:00
'group' => 'psCacheWarmerConfig',
'name' => 'psCacheWarmerSitemapUrl',
'type' => 'str',
'value' => 'sitemap.xml',
2020-08-17 12:38:19 +02:00
],
[
2016-08-25 15:26:37 +02:00
'group' => 'psCacheWarmerConfig',
'name' => 'psCacheWarmerKey',
'type' => 'str',
'value' => md5(time()),
2020-08-17 12:38:19 +02:00
],
[
2016-08-25 15:26:37 +02:00
'group' => 'psCacheWarmerConfig',
'name' => 'psCacheWarmerUser',
'type' => 'str',
'value' => '',
2020-08-17 12:38:19 +02:00
],
[
2016-08-25 15:26:37 +02:00
'group' => 'psCacheWarmerConfig',
'name' => 'psCacheWarmerPass',
'type' => 'str',
'value' => '',
2020-08-17 12:38:19 +02:00
],
[
'group' => 'psCacheWarmerConfig',
'name' => 'psCacheWarmerHttpCodes',
'type' => 'arr',
'value' => [200, 302],
],
[
2019-07-17 17:14:07 +02:00
'group' => 'psCacheWarmerConfig',
'name' => 'psCacheWarmerWriteCsv',
'type' => 'bool',
2020-08-06 14:35:24 +02:00
'value' => false,
2020-08-17 12:38:19 +02:00
],
[
2019-07-17 17:14:07 +02:00
'group' => 'psCacheWarmerConfig',
'name' => 'psCacheWarmerWriteCsvOnlyError',
'type' => 'bool',
2020-08-06 14:35:24 +02:00
'value' => true,
2020-08-17 12:38:19 +02:00
]
],
];