| 1 |
<?php |
| 2 |
|
| 3 |
if ( ! defined( 'ABSPATH' ) ) { |
| 4 |
exit; |
| 5 |
} |
| 6 |
|
| 7 |
$attributes = include __DIR__ . '/../atomic-shared/attributes.php'; |
| 8 |
$attributes['src'] = [ 'type' => 'string', 'default' => '' ]; |
| 9 |
$attributes['alt'] = [ 'type' => 'string', 'default' => '' ]; |
| 10 |
$attributes['imageId'] = [ 'type' => 'number', 'default' => 0 ]; |
| 11 |
$attributes['sizeSlug'] = [ 'type' => 'string', 'default' => '' ]; |
| 12 |
$attributes['link'] = [ 'type' => 'object', 'default' => [ 'url' => '', 'newTab' => false, 'noFollow' => false ] ]; |
| 13 |
|
| 14 |
return $attributes; |
| 15 |
|