aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Web/OpenGraph.php
blob: b14b2b9896d4db122ec33edef7b38236d9490026 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?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() {
		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 '';
	}

}