mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-11 19:14:09 +02:00
Last batch of bridges, all implemented !
Signed-off-by: teromene <teromene@teromene.fr>
This commit is contained in:
@@ -1,21 +1,27 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Google Plus Post Bridge
|
||||
* Freely inspired by tweeter bridge
|
||||
* 2014-07-20
|
||||
*
|
||||
* @name Google Plus Post Bridge
|
||||
* @homepage http://plus.google.com/
|
||||
* @description Returns user public post (without API).
|
||||
* @maintainer Grummfy
|
||||
* @use1(username="usernameOrId")
|
||||
*/
|
||||
class GooglePlusPostBridge extends BridgeAbstract
|
||||
{
|
||||
protected $_title;
|
||||
protected $_url;
|
||||
|
||||
public function loadMetadatas() {
|
||||
|
||||
$this->maintainer = "Grummfy";
|
||||
$this->name = "Google Plus Post Bridge";
|
||||
$this->uri = "http://plus.google.com/";
|
||||
$this->description = "Returns user public post (without API).";
|
||||
$this->update = "2014-07-20";
|
||||
|
||||
$this->parameters[] =
|
||||
'[
|
||||
{
|
||||
"name" : "username or Id",
|
||||
"identifier" : "username"
|
||||
}
|
||||
]';
|
||||
|
||||
}
|
||||
|
||||
const GOOGLE_PLUS_BASE_URL = 'https://plus.google.com/';
|
||||
|
||||
public function collectData(array $param)
|
||||
|
Reference in New Issue
Block a user