OrderModifier::valid PHP Method

valid() public method

Check if the modifier should be in the cart.
public valid ( )
    public function valid()
    {
        $order = $this->Order();
        if (!$order) {
            return false;
        }
        return true;
    }