| 1 | <?php |
||
| 12 | class BannerType extends AbstractObjectType |
||
| 13 | { |
||
| 14 | public function build($config) |
||
| 15 | { |
||
| 16 | $config |
||
| 17 | ->addField('title', new NonNullType(new StringType())) |
||
| 18 | ->addField('summary', new StringType()) |
||
| 19 | ->addField('imageLink', new StringType()); |
||
| 20 | } |
||
| 21 | |||
| 22 | public function getInterfaces() |
||
| 23 | { |
||
| 24 | return [new ContentBlockInterface()]; |
||
| 25 | } |
||
| 26 | } |
||
| 27 |