[bridges] Remove compatible WordPress bridges
The WordPressBridge should be used for all those sites
This commit is contained in:
parent
351eb00400
commit
ec3824e284
7 changed files with 0 additions and 94 deletions
|
@ -1,11 +0,0 @@
|
||||||
<?php
|
|
||||||
require_once('WordPressBridge.php');
|
|
||||||
|
|
||||||
class ArstechnicaBridge extends WordPressBridge {
|
|
||||||
|
|
||||||
const MAINTAINER = "prysme";
|
|
||||||
const NAME = "ArstechnicaBridge";
|
|
||||||
const URI = "http://arstechnica.com";
|
|
||||||
const DESCRIPTION = "The PC enthusiast's resource. Power users and the tools they love, without computing religion";
|
|
||||||
const PARAMETERS = array();
|
|
||||||
}
|
|
|
@ -1,11 +0,0 @@
|
||||||
<?php
|
|
||||||
require_once('WordPressBridge.php');
|
|
||||||
|
|
||||||
class FreenewsBridge extends WordPressBridge {
|
|
||||||
|
|
||||||
const MAINTAINER = "mitsukarenai";
|
|
||||||
const NAME = "Freenews";
|
|
||||||
const URI = "http://freenews.fr";
|
|
||||||
const DESCRIPTION = "Un site d'actualité pour les freenautes (mais ne parlant pas que de la freebox)";
|
|
||||||
const PARAMETERS = array();
|
|
||||||
}
|
|
|
@ -1,15 +0,0 @@
|
||||||
<?php
|
|
||||||
require_once('WordPressBridge.php');
|
|
||||||
|
|
||||||
class LeJournalDuGeekBridge extends WordPressBridge{
|
|
||||||
|
|
||||||
const MAINTAINER = "polopollo";
|
|
||||||
const NAME = "journaldugeek.com (FR)";
|
|
||||||
const URI = "http://www.journaldugeek.com/";
|
|
||||||
const DESCRIPTION = "Returns the newest posts from LeJournalDuGeek (full text).";
|
|
||||||
const PARAMETERS = array();
|
|
||||||
|
|
||||||
public function getCacheDuration(){
|
|
||||||
return 1800; // 30min
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,11 +0,0 @@
|
||||||
<?php
|
|
||||||
require_once('WordPressBridge.php');
|
|
||||||
|
|
||||||
class NakedSecurityBridge extends WordPressBridge {
|
|
||||||
|
|
||||||
const MAINTAINER = 'ORelio';
|
|
||||||
const NAME = 'Naked Security';
|
|
||||||
const URI = 'https://nakedsecurity.sophos.com/';
|
|
||||||
const DESCRIPTION = 'Returns the newest articles.';
|
|
||||||
const PARAMETERS = array();
|
|
||||||
}
|
|
|
@ -1,15 +0,0 @@
|
||||||
<?php
|
|
||||||
require_once('WordPressBridge.php');
|
|
||||||
|
|
||||||
class NumeramaBridge extends WordPressBridge {
|
|
||||||
|
|
||||||
const MAINTAINER = 'mitsukarenai';
|
|
||||||
const NAME = 'Numerama';
|
|
||||||
const URI = 'http://www.numerama.com/';
|
|
||||||
const DESCRIPTION = 'Returns the newest posts from Numerama (full text)';
|
|
||||||
const PARAMETERS = array();
|
|
||||||
public function getCacheDuration() {
|
|
||||||
|
|
||||||
return 1800; // 30min
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,15 +0,0 @@
|
||||||
<?php
|
|
||||||
require_once('WordPressBridge.php');
|
|
||||||
|
|
||||||
class SiliconBridge extends WordPressBridge {
|
|
||||||
|
|
||||||
const MAINTAINER = "ORelio";
|
|
||||||
const NAME = 'Silicon Bridge';
|
|
||||||
const URI = 'http://www.silicon.fr/';
|
|
||||||
const DESCRIPTION = "Returns the newest articles.";
|
|
||||||
const PARAMETERS = array();
|
|
||||||
|
|
||||||
public function getCacheDuration() {
|
|
||||||
return 1800; // 30 minutes
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,16 +0,0 @@
|
||||||
<?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
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in a new issue