with-theme-info.php
25 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Classes\Theme; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | trait With_Theme_Info { |
| 12 | |
| 13 | // phpcs:ignore PSR2.Classes.PropertyDeclaration.Underscore |
| 14 | private $_theme; |
| 15 | |
| 16 | public function theme(): Theme_Info { |
| 17 | if ( ! $this->_theme ) { |
| 18 | $this->_theme = new Theme_Info(); |
| 19 | } |
| 20 | |
| 21 | return $this->_theme; |
| 22 | } |
| 23 | |
| 24 | } |
| 25 |