base-constant.php
2 years ago
constants-manager.php
2 years ago
site-name-constant.php
2 years ago
site-url-constant.php
2 years ago
site-url-constant.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Classes\Macro_Constants; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | class Site_Url_Constant extends Base_Constant { |
| 12 | |
| 13 | public function get_id(): string { |
| 14 | return 'SiteUrl'; |
| 15 | } |
| 16 | |
| 17 | public function get_value(): string { |
| 18 | return get_site_url(); |
| 19 | } |
| 20 | } |
| 21 |