/* * Patch for filter_var() */ if(!function_exists('filter_var')){ define('FILTER_VALIDATE_IP', 'ip'); define('FILTER_FLAG_IPV4', 'ipv4'); define('FILTER_FLAG_IPV6', 'ipv6'); define('FILTER_VALIDATE_EMAIL', 'email'); define('FILTER_FLAG_EMAIL_UNICODE', 'unicode'); function filter_var($variable, $filter, $option = false){ if($filter == 'ip'){ if($option == 'ipv4'){ if(preg_match("/(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/", $variable, $matches)){ $variable = $matches[1]; return $variable; } } if($option == 'ipv6'){ if(preg_match("/\s*(([:.]{0,7}[0-9a-fA-F]{0,4}){1,8})\s*/", $variable, $matches)){ $variable = $matches[1]; return $variable; } } } if($filter == 'email'){ if($option == 'unicode' || $option == false){ if(preg_match("/\s*(\S*@\S*\.\S*)\s*/", $variable, $matches)){ $variable = $matches[1]; return $variable; } } } } }
I would like to know if it's possible to add maintenace costs for each plane on the "View Aircraft" separator?
I think that would make it easier to control costs and know when and what plane to replace first.
When you go to the individual aircraft's page, you should be able to se the maintenance costs for that particular aircraft. Is that what you mean? Or are you reffering to another placement of the information?
I'm reffering to another place in order to be able to sort planes by main costs instead of having to click each plane. That would make it easier to control the planes to replace.
Before the changes we would replace planes by ID and i have been doing that, but today i checked each plane individually and find out that my replacement policy is wrong.