Rss-Bridge/bridges/ZatazBridge.php
Pierre Mazière 3f64d2d65a [bridges] make them WordPressBridge derivatives
The specific content filtering used in these bridges will need to
be reintegrated later as part of the bridge or as part of the
WordPressBridge if they are considered generic enough filters,
such as the already existing WordPressBridge <script> removal filter.

Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
2016-09-17 19:37:39 +02:00

17 lines
362 B
PHP

<?php
require_once('WordPressBridge.php');
class ZatazBridge extends WordPressBridge{
const MAINTAINER = "aledeg";
const NAME = 'Zataz Magazine';
const URI = 'http://www.zataz.com';
const DESCRIPTION = "ZATAZ Magazine - S'informer, c'est déjà se sécuriser";
const PARAMETERS = array();
public function getCacheDuration() {
return 7200; // 2h
}
}