diff --git a/includes/functions.php b/includes/functions.php index 2971a329..6ab8a40a 100755 --- a/includes/functions.php +++ b/includes/functions.php @@ -792,3 +792,14 @@ function get_public_ip() return $public_ip[0]; } +/* Returns a standardized tooltip + * + * @return string $tooltip + */ +function getTooltip($msg, $id, $visible = true) +{ + ($visible) ? $opt = 'visible' : $opt = 'invisible'; + $tooltip = ''; + return $tooltip; +} +