file-collection.php
2 years ago
file-tools.php
2 years ago
file.php
2 years ago
has-error-file.php
2 years ago
media-block-value.php
2 years ago
sanitize-file-exception.php
2 years ago
upload-dir.php
2 years ago
upload-exception.php
2 years ago
upload-permission-exception.php
2 years ago
uploaded-collection.php
2 years ago
uploaded-file-path.php
2 years ago
uploaded-file.php
2 years ago
media-block-value.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Classes\Resources; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | interface Media_Block_Value { |
| 12 | |
| 13 | public function get_attachment_id(): string; |
| 14 | |
| 15 | public function get_attachment_url(): string; |
| 16 | |
| 17 | public function get_attachment_both(): array; |
| 18 | |
| 19 | } |
| 20 |