You are here

static function krumo::conf in Devel 6

Same name and namespace in other branches
  1. 7 krumo/class.krumo.php \krumo::conf()

* Prints a list of all your configuration settings. * * @access public * @static

File

krumo/class.krumo.php, line 292

Class

krumo
Krumo API

Code

static function conf() {

  // disabled ?
  //
  if (!krumo::_debug()) {
    return false;
  }

  // render it
  //
  ?>
<div class="krumo-title">
This is a list of all your configuration settings.
</div>
		<?php

  return krumo::dump(ini_get_all());
}