Controller\Node::verifyPlan PHP Method

verifyPlan() private static method

private static verifyPlan ( $plan, $nodeType )
    private static function verifyPlan($plan, $nodeType)
    {
        if ($nodeType == 1) {
            if ($plan == 'VIP' || $plan == 'SVIP') {
                return true;
            } else {
                return false;
            }
        } else {
            return true;
        }
    }