| 1 |
<?php |
| 2 |
|
| 3 |
namespace Elementor\Modules\AtomicWidgets\Image; |
| 4 |
|
| 5 |
if ( ! defined( 'ABSPATH' ) ) { |
| 6 |
exit; // Exit if accessed directly. |
| 7 |
} |
| 8 |
|
| 9 |
class Placeholder_Image { |
| 10 |
|
| 11 |
public static function get_placeholder_image() { |
| 12 |
return ELEMENTOR_ASSETS_URL . 'images/placeholder-v4.svg'; |
| 13 |
} |
| 14 |
|
| 15 |
public static function get_background_placeholder_image() { |
| 16 |
return ELEMENTOR_ASSETS_URL . 'images/background-placeholder.svg'; |
| 17 |
} |
| 18 |
} |
| 19 |
|