attributes-trait.php
4 years ago
condition-helper.php
4 years ago
curl-helper.php
4 years ago
factory.php
4 years ago
gallery.php
4 years ago
get-icon-trait.php
4 years ago
get-template-trait.php
4 years ago
instance-trait.php
4 years ago
listing-filter-manager.php
4 years ago
listing-filter.php
4 years ago
messages-helper-trait.php
4 years ago
tools.php
4 years ago
get-template-trait.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Classes; |
| 5 | |
| 6 | |
| 7 | trait Get_Template_Trait { |
| 8 | /** |
| 9 | * Returns template path |
| 10 | * |
| 11 | * @param [type] $path [description] |
| 12 | * |
| 13 | * @return [type] [description] |
| 14 | */ |
| 15 | public function get_global_template( $path = '' ) { |
| 16 | return JET_FORM_BUILDER_PATH . 'templates' . DIRECTORY_SEPARATOR . $path; |
| 17 | } |
| 18 | |
| 19 | } |