static function krumo::_integer in Devel 6
Same name and namespace in other branches
- 7 krumo/class.krumo.php \krumo::_integer()
* Render a dump for a integer value * *
Parameters
mixed $data: * @param string $name * @access private * @static
1 call to krumo::_integer()
- krumo::_dump in krumo/
class.krumo.php - * Dump information about a variable * *
File
- krumo/
class.krumo.php, line 1156
Class
- krumo
- Krumo API
Code
static function _integer($data, $name) {
?>
<li class="krumo-child">
<div class="krumo-element"
onMouseOver="krumo.over(this);"
onMouseOut="krumo.out(this);">
<?php
/* DEVEL: added htmlSpecialChars */
?>
<a class="krumo-name"><?php
echo htmlSpecialChars($name);
?></a>
(<em class="krumo-type">Integer</em>)
<strong class="krumo-integer"><?php
echo $data;
?></strong>
</div>
</li>
<?php
}