GalleryItem.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Support\Contracts; |
| 4 | |
| 5 | interface GalleryItem { |
| 6 | /** |
| 7 | * Get the page title attribute. |
| 8 | * |
| 9 | * @param string $size The size of the image. |
| 10 | * @param array $attr The attributes for the tag. |
| 11 | * |
| 12 | * @return string |
| 13 | */ |
| 14 | public function html( $size = 'full', $attr = [] ) : string; |
| 15 | |
| 16 | /** |
| 17 | * Get the page descriptoin attribute |
| 18 | * |
| 19 | * @param string $size The size of the image. |
| 20 | * @param array $attr The attributes for the tag. |
| 21 | * |
| 22 | * @return string |
| 23 | */ |
| 24 | public function attributes( $size = 'full', $attr = [] ); |
| 25 | } |
| 26 |