Skip to content

Commit

Permalink
Group filter constants in constant_inc.php
Browse files Browse the repository at this point in the history
  • Loading branch information
cproensa authored and dregad committed Jan 9, 2019
1 parent 2420099 commit afee374
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions core/constant_inc.php
Expand Up @@ -489,6 +489,13 @@
define( 'FILTER_STANDARD_REPORTED', 'reported' );
define( 'FILTER_STANDARD_MONITORED', 'monitored' );

# Filter actions, refactored from view_all_set.php
define( 'FILTER_ACTION_RESET', 0 );
define( 'FILTER_ACTION_PARSE_NEW', 1 );
define( 'FILTER_ACTION_PARSE_ADD', 2 );
define( 'FILTER_ACTION_LOAD', 3 );
define( 'FILTER_ACTION_GENERALIZE', 4 );

# Versions
define( 'VERSION_ALL', null );
define( 'VERSION_FUTURE', false );
Expand Down Expand Up @@ -724,10 +731,3 @@
define( 'DB_TYPE_PGSQL', 2 );
define( 'DB_TYPE_MSSQL', 3 );
define( 'DB_TYPE_ORACLE', 4 );

# Filter actions, refactored from view_all_set.php
define( 'FILTER_ACTION_RESET', 0 );
define( 'FILTER_ACTION_PARSE_NEW', 1 );
define( 'FILTER_ACTION_PARSE_ADD', 2 );
define( 'FILTER_ACTION_LOAD', 3 );
define( 'FILTER_ACTION_GENERALIZE', 4 );

0 comments on commit afee374

Please sign in to comment.