-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Update schema definition to version 6.0
Related: #3
- Loading branch information
1 parent
8269668
commit b4983b9
Showing
10 changed files
with
2,248 additions
and
2,090 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Brotkrueml\Schema\Model\Type; | ||
|
||
/* | ||
* This file is part of the "schema" extension for TYPO3 CMS. | ||
* | ||
* For the full copyright and license information, please read the | ||
* LICENSE.txt file that was distributed with this source code. | ||
*/ | ||
|
||
use Brotkrueml\Schema\Core\Model\AbstractType; | ||
use Brotkrueml\Schema\Core\Model\WebPageTypeInterface; | ||
use Brotkrueml\Schema\Model\TypeTrait; | ||
|
||
/** | ||
* Web page type: Media gallery page. A mixed-media page that can contains media such as images, videos, and other multimedia. | ||
*/ | ||
final class MediaGallery extends AbstractType implements WebPageTypeInterface | ||
{ | ||
use TypeTrait\CreativeWorkTrait; | ||
use TypeTrait\ThingTrait; | ||
use TypeTrait\WebPageTrait; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Brotkrueml\Schema\ViewHelpers\Type; | ||
|
||
/* | ||
* This file is part of the "schema" extension for TYPO3 CMS. | ||
* | ||
* For the full copyright and license information, please read the | ||
* LICENSE.txt file that was distributed with this source code. | ||
*/ | ||
|
||
use Brotkrueml\Schema\Core\ViewHelpers\AbstractTypeViewHelper; | ||
|
||
/** | ||
* Web page type: Media gallery page. A mixed-media page that can contains media such as images, videos, and other multimedia. | ||
*/ | ||
final class MediaGalleryViewHelper extends AbstractTypeViewHelper | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.