コード例 #1
0
ファイル: Author.class.php プロジェクト: bmhm/wp-jsonld
 /**
  */
 public function __construct()
 {
     parent::__construct("Person");
 }
コード例 #2
0
ファイル: Article.class.php プロジェクト: bmhm/wp-jsonld
 /**
  * @param bool|FALSE $addContext
  */
 public function __construct($type = "Article")
 {
     parent::__construct($type);
 }
コード例 #3
0
ファイル: ImageObject.class.php プロジェクト: bmhm/wp-jsonld
 /**
  */
 public function __construct($type = "ImageObject")
 {
     parent::__construct($type);
 }
コード例 #4
0
ファイル: Rating.class.php プロジェクト: bmhm/wp-jsonld
 /**
  */
 public function __construct($type = "Rating")
 {
     parent::__construct($type);
 }
コード例 #5
0
ファイル: Organization.class.php プロジェクト: bmhm/wp-jsonld
 /**
  * @param bool|FALSE $addContext
  */
 public function __construct($type = "Organization")
 {
     parent::__construct($type);
 }