2015-10-22 14:52:34 +02:00
|
|
|
<?php
|
2016-09-15 12:40:26 +02:00
|
|
|
require_once('WordPressBridge.php');
|
|
|
|
|
|
|
|
class SiliconBridge extends WordPressBridge {
|
2015-10-22 14:52:34 +02:00
|
|
|
|
2016-08-30 11:23:55 +02:00
|
|
|
const MAINTAINER = "ORelio";
|
|
|
|
const NAME = 'Silicon Bridge';
|
|
|
|
const URI = 'http://www.silicon.fr/';
|
|
|
|
const DESCRIPTION = "Returns the newest articles.";
|
2016-09-15 12:40:26 +02:00
|
|
|
const PARAMETERS = array();
|
2016-09-14 13:33:38 +02:00
|
|
|
|
|
|
|
public function getCacheDuration() {
|
|
|
|
return 1800; // 30 minutes
|
|
|
|
}
|
2015-10-22 14:52:34 +02:00
|
|
|
}
|