function getControlObject($id = '') { $dev_object = dev_valid_number($id, true) ? $this->dev_objects[$id] : $this->dev_objects; return $dev_object; }
function dev_ratio($part = 0, $whole = 100, $percent = false) { if (!dev_valid_number($part)) { $part = 0; } if (!dev_valid_number($whole)) { $whole = 1; } $ratio = $part * 100 / $whole; return $ratio * ($percent ? 100 : 1); }