internal/functions/Get-ActionColor.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
function Get-ActionColor { [CmdletBinding()] Param ( $Action ) process { switch ($Action) { "Create" { return "yellow" } "Delete" { return "red" } "Update" { return "blue" } default { return "green" } } } } |