Skip to content
Snippets Groups Projects
class.forms.php 97.2 KiB
Newer Older
  • Learn to ignore specific revisions
  •             }
            }
            $glue = $Q->isOred() ? ' || ' : ' && ';
            $expression = implode($glue, $expr);
            if (count($expr) > 1)
                $expression = '('.$expression.')';
            if ($Q->isNegated)
                $expression = '!'.$expression;
            return $expression;
        }
    }