arguments
3 years ago
arrayable
3 years ago
filters
3 years ago
http
3 years ago
post
3 years ago
repository
3 years ago
resources
3 years ago
security
3 years ago
theme
3 years ago
attributes-trait.php
3 years ago
base-attributes-trait.php
3 years ago
builder-helper.php
3 years ago
compatibility.php
3 years ago
gallery.php
3 years ago
get-icon-trait.php
3 years ago
get-template-trait.php
3 years ago
html-attributes-trait.php
3 years ago
instance-trait.php
3 years ago
macros-parser.php
3 years ago
messages-helper-trait.php
3 years ago
tools.php
3 years ago
get-template-trait.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Classes; |
| 5 | |
| 6 | trait Get_Template_Trait { |
| 7 | /** |
| 8 | * Returns template path |
| 9 | * |
| 10 | * @param [type] $path [description] |
| 11 | * |
| 12 | * @return [type] [description] |
| 13 | */ |
| 14 | public function get_global_template( $path = '' ) { |
| 15 | return JET_FORM_BUILDER_PATH . 'templates' . DIRECTORY_SEPARATOR . $path; |
| 16 | } |
| 17 | |
| 18 | } |
| 19 |