You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
469 B
23 lines
469 B
<?php |
|
|
|
if (! function_exists('test_path')) { |
|
/** |
|
* @param string $file |
|
* @return string |
|
*/ |
|
function test_path($file = '') |
|
{ |
|
return __DIR__.($file ? '/'.trim($file, '/') : ''); |
|
} |
|
} |
|
|
|
if (! function_exists('test_resource_path')) { |
|
/** |
|
* @param string $file |
|
* @return string |
|
*/ |
|
function test_resource_path($file = '') |
|
{ |
|
return test_path('resources'.($file ? '/'.trim($file, '/') : '')); |
|
} |
|
}
|
|
|