public static function krumo::path in Devel 7
Same name and namespace in other branches
- 6 krumo/class.krumo.php \krumo::path()
Prints a list of the specified directories under your <i>include_path</i> option.
@access public @static
File
- krumo/
class.krumo.php, line 320
Class
- krumo
- Krumo API
Code
public static function path() {
// disabled ?
//
if (!krumo::_debug()) {
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of the specified directories under your <code><b>include_path</b></code> option.
</div>
<?php
return krumo::dump(explode(PATH_SEPARATOR, ini_get('include_path')));
}