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-name-constant.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Classes\Macro_Constants; |
| 5 | |
| 6 | use Jet_Form_Builder\Classes\Tools; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | class Site_Name_Constant extends Base_Constant { |
| 14 | |
| 15 | public function get_id(): string { |
| 16 | return 'SiteName'; |
| 17 | } |
| 18 | |
| 19 | public function get_value(): string { |
| 20 | return Tools::get_site_name(); |
| 21 | } |
| 22 | } |
| 23 |