|
1
|
<?php |
|
2
|
|
|
3
|
|
|
4
|
namespace Jet_Form_Builder\Classes\Theme; |
|
5
|
|
|
6
|
|
|
7
|
trait With_Theme_Info { |
|
8
|
|
|
9
|
private $_theme; |
|
10
|
|
|
11
|
public function theme(): Theme_Info { |
|
12
|
if ( ! $this->_theme ) { |
|
13
|
$this->_theme = new Theme_Info(); |
|
14
|
} |
|
15
|
|
|
16
|
return $this->_theme; |
|
17
|
} |
|
18
|
|
|
19
|
}
|