2014-05-26 00:30:46 +02:00
|
|
|
<?php
|
2016-09-15 12:40:26 +02:00
|
|
|
require_once('WordPressBridge.php');
|
|
|
|
|
|
|
|
class NumeramaBridge extends WordPressBridge {
|
2014-05-26 00:30:46 +02:00
|
|
|
|
2016-08-30 11:23:55 +02:00
|
|
|
const MAINTAINER = 'mitsukarenai';
|
|
|
|
const NAME = 'Numerama';
|
|
|
|
const URI = 'http://www.numerama.com/';
|
2016-09-15 12:40:26 +02:00
|
|
|
const DESCRIPTION = 'Returns the newest posts from Numerama (full text)';
|
|
|
|
const PARAMETERS = array();
|
2016-07-19 19:35:43 +02:00
|
|
|
public function getCacheDuration() {
|
2016-09-15 12:40:26 +02:00
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
return 1800; // 30min
|
|
|
|
}
|
|
|
|
}
|