psCacheWarmer/metadata.php

84 lignes
3.1 KiB
PHP
Brut Vue normale Historique

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.
*
* @copyright (c) Proud Sourcing GmbH | 2016
* @link www.proudcommerce.com
* @package psCacheWarmer
* @version 1.0.1
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
*/
$aModule = array(
'id' => 'psCacheWarmer',
'title' => 'psCacheWarmer',
'description' => array(
'de' => 'Website anhand der XML-Sitemap automatisch aufrufen, z. B. zum "Aufwärmen" eines Caches.<br>
<b>URL:</b> <a href="'.oxRegistry::getConfig()->getConfigParam('sShopURL').'?cl=psCacheWarmer&key='.oxRegistry::getConfig()->getShopConfVar('psCacheWarmerKey', oxRegistry::getConfig()->getShopId()).'" target="_blank">'.oxRegistry::getConfig()->getConfigParam('sShopURL').'?cl=psCacheWarmer&key='.oxRegistry::getConfig()->getShopConfVar('psCacheWarmerKey', oxRegistry::getConfig()->getShopId()).'</a>',
'en' => 'Automatically calling urls using the xml-sitemap, eg. for cache warming.
<b>URL:</b> <a href="'.oxRegistry::getConfig()->getConfigParam('sShopURL').'?cl=psCacheWarmer&key='.oxRegistry::getConfig()->getShopConfVar('psCacheWarmerKey', oxRegistry::getConfig()->getShopId()).'" target="_blank">'.oxRegistry::getConfig()->getConfigParam('sShopURL').'?cl=psCacheWarmer&key='.oxRegistry::getConfig()->getShopConfVar('psCacheWarmerKey', oxRegistry::getConfig()->getShopId()).'</a>',
),
2016-12-06 17:50:33 +01:00
'thumbnail' => 'logo_pc-os.jpg',
2019-07-22 08:49:16 +02:00
'version' => '2.2.0',
2016-08-25 15:26:37 +02:00
'author' => 'Proud Sourcing GmbH',
'url' => 'http://www.proudcommerce.com/',
'email' => 'support@proudcommerce.com',
'extend' => array(
),
2019-06-26 20:44:36 +02:00
'controllers' => array(
'pscachewarmer' => \ProudCommerce\CacheWarmer\Application\Controller\CacheWarmer::class,
2016-08-25 15:26:37 +02:00
),
'templates' => array(
),
'blocks' => array(
),
'settings' => array(
array(
'group' => 'psCacheWarmerConfig',
'name' => 'psCacheWarmerSitemapUrl',
'type' => 'str',
'value' => 'sitemap.xml',
),
array(
'group' => 'psCacheWarmerConfig',
'name' => 'psCacheWarmerKey',
'type' => 'str',
'value' => md5(time()),
),
array(
'group' => 'psCacheWarmerConfig',
'name' => 'psCacheWarmerUser',
'type' => 'str',
'value' => '',
),
array(
'group' => 'psCacheWarmerConfig',
'name' => 'psCacheWarmerPass',
'type' => 'str',
'value' => '',
),
2019-07-17 17:14:07 +02:00
array(
'group' => 'psCacheWarmerConfig',
'name' => 'psCacheWarmerWriteCsv',
'type' => 'bool',
'value' => '',
),
array(
'group' => 'psCacheWarmerConfig',
'name' => 'psCacheWarmerWriteCsvOnlyError',
'type' => 'bool',
'value' => '',
),
2016-08-25 15:26:37 +02:00
),
2019-07-17 14:08:59 +02:00
);