Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/3rdparty.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'fusonic/opengraph/src/Objects/Website.php')
-rw-r--r--fusonic/opengraph/src/Objects/Website.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/fusonic/opengraph/src/Objects/Website.php b/fusonic/opengraph/src/Objects/Website.php
new file mode 100644
index 00000000..f66428cc
--- /dev/null
+++ b/fusonic/opengraph/src/Objects/Website.php
@@ -0,0 +1,21 @@
+<?php
+
+namespace Fusonic\OpenGraph\Objects;
+
+/**
+ * This object type represents a website. It is a simple object type and uses only common Open Graph properties. For
+ * specific pages within a website, the article object type should be used.
+ *
+ * https://developers.facebook.com/docs/reference/opengraph/object-type/website/
+ */
+class Website extends ObjectBase
+{
+ const TYPE = "website";
+
+ public function __construct()
+ {
+ parent::__construct();
+
+ $this->type = self::TYPE;
+ }
+}