aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Web/OpenGraph.php
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs/Web/OpenGraph.php')
-rw-r--r--Zotlabs/Web/OpenGraph.php50
1 files changed, 0 insertions, 50 deletions
diff --git a/Zotlabs/Web/OpenGraph.php b/Zotlabs/Web/OpenGraph.php
deleted file mode 100644
index f282c82d4..000000000
--- a/Zotlabs/Web/OpenGraph.php
+++ /dev/null
@@ -1,50 +0,0 @@
-<?php
-
-namespace Zotlabs\Web;
-
-
-class OpenGraph {
-
- private $vars = null;
-
- function __construct() {
-
- $this->vars = array();
-
- }
-
- function set($property,$value) {
- $this->vars[$property] = $value;
- }
-
- function check_required() {
- if(
- ($this->vars)
- && array_key_exists('og:title',$this->vars)
- && array_key_exists('og:type', $this->vars)
- && array_key_exists('og:image',$this->vars)
- && array_key_exists('og:url', $this->vars)
- )
- return true;
- return false;
- }
-
- function get_field($field) {
- if($this->vars && array_key_exists($field,$this->vars) && $this->vars[$field])
- return $this->vars[$field];
- return false;
- }
-
-
- function get() {
- if($this->check_required()) {
- $o = "\r\n";
- foreach($this->vars as $k => $v) {
- $o .= '<meta property="' . $k . '" content="' . urlencode($v) . '" />' . "\r\n" ;
- }
- return $o;
- }
- return '';
- }
-
-} \ No newline at end of file