fromgplus: Add keywords to imported posts
This commit is contained in:
parent
f0310f6275
commit
b3eb963a2b
|
@ -10,6 +10,7 @@
|
||||||
define('FROMGPLUS_DEFAULT_POLL_INTERVAL', 30); // given in minutes
|
define('FROMGPLUS_DEFAULT_POLL_INTERVAL', 30); // given in minutes
|
||||||
|
|
||||||
require_once('mod/share.php');
|
require_once('mod/share.php');
|
||||||
|
require_once('mod/parse_url.php');
|
||||||
|
|
||||||
function fromgplus_install() {
|
function fromgplus_install() {
|
||||||
register_hook('connector_settings', 'addon/fromgplus/fromgplus.php', 'fromgplus_addon_settings');
|
register_hook('connector_settings', 'addon/fromgplus/fromgplus.php', 'fromgplus_addon_settings');
|
||||||
|
@ -323,6 +324,11 @@ function fromgplus_handleattachments($a, $uid, $item, $displaytext, $shared) {
|
||||||
if ($quote != "")
|
if ($quote != "")
|
||||||
$pagedata["text"] = $quote;
|
$pagedata["text"] = $quote;
|
||||||
|
|
||||||
|
// Add Keywords to page link
|
||||||
|
$data = parseurl_getsiteinfo_cached($pagedata["url"], true);
|
||||||
|
if (isset($data["keywords"]))
|
||||||
|
$pagedata["keywords"] = $data["keywords"];
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "photo":
|
case "photo":
|
||||||
|
|
Loading…
Reference in New Issue
Block a user