[ Index ]

PHP Cross Reference of MantisBT

title

Body

[close]

/core/ -> filter_constants_inc.php (source)

   1  <?php
   2  # MantisBT - A PHP based bugtracking system
   3  
   4  # MantisBT is free software: you can redistribute it and/or modify
   5  # it under the terms of the GNU General Public License as published by
   6  # the Free Software Foundation, either version 2 of the License, or
   7  # (at your option) any later version.
   8  #
   9  # MantisBT is distributed in the hope that it will be useful,
  10  # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12  # GNU General Public License for more details.
  13  #
  14  # You should have received a copy of the GNU General Public License
  15  # along with MantisBT.  If not, see <http://www.gnu.org/licenses/>.
  16  
  17      /**
  18       * @package MantisBT
  19       * @copyright Copyright (C) 2002 - 2011  MantisBT Team - mantisbt-dev@lists.sourceforge.net
  20       * @link http://www.mantisbt.org
  21       */
  22  
  23      ###########################################################################
  24      # Filter Property Names
  25      ###########################################################################
  26  
  27      # filter meta fields
  28      define( 'FILTER_PROPERTY_SEARCH', 'search' );
  29      define( 'FILTER_PROPERTY_HIGHLIGHT_CHANGED', 'highlight_changed' );
  30      define( 'FILTER_PROPERTY_HIDE_STATUS', 'hide_status' ); # hide_status
  31      define( 'FILTER_PROPERTY_SORT_FIELD_NAME', 'sort' );
  32      define( 'FILTER_PROPERTY_SORT_DIRECTION', 'dir' );
  33      define( 'FILTER_PROPERTY_ISSUES_PER_PAGE', 'per_page' ); # ?
  34      define( 'FILTER_PROPERTY_START_DAY', 'start_day' );
  35      define( 'FILTER_PROPERTY_START_MONTH', 'start_month' );
  36      define( 'FILTER_PROPERTY_START_YEAR', 'start_year' );
  37      define( 'FILTER_PROPERTY_END_DAY', 'end_day' );
  38      define( 'FILTER_PROPERTY_END_MONTH', 'end_month' );
  39      define( 'FILTER_PROPERTY_END_YEAR', 'end_year' );
  40      define( 'FILTER_PROPERTY_FILTER_BY_DATE', 'filter_by_date' ); #do_filter_by_date
  41      define( 'FILTER_PROPERTY_RELATIONSHIP_TYPE', 'relationship_type' );
  42      define( 'FILTER_PROPERTY_RELATIONSHIP_BUG', 'relationship_bug' );
  43      define( 'FILTER_PROPERTY_TAG_STRING', 'tag_string' );
  44      define( 'FILTER_PROPERTY_TAG_SELECT', 'tag_select' );
  45  
  46      define( 'FILTER_PROPERTY_NOTE_USER_ID', 'note_user_id' );
  47      define( 'FILTER_PROPERTY_MONITOR_USER_ID', 'monitor_user_id' ); # user_monitor
  48  
  49      # bug fields
  50      define( 'FILTER_PROPERTY_CATEGORY_ID', 'category_id' ); #show_category
  51      define( 'FILTER_PROPERTY_SEVERITY', 'severity' ); #show_severity
  52      define( 'FILTER_PROPERTY_STATUS', 'status' ); #show_status
  53      define( 'FILTER_PROPERTY_PRIORITY', 'priority' ); #show_priority
  54      define( 'FILTER_PROPERTY_REPORTER_ID', 'reporter_id' );
  55      define( 'FILTER_PROPERTY_HANDLER_ID', 'handler_id' );
  56      define( 'FILTER_PROPERTY_PROJECT_ID', 'project_id' );
  57      define( 'FILTER_PROPERTY_RESOLUTION', 'resolution' ); #show_resolution
  58      define( 'FILTER_PROPERTY_BUILD', 'build' ); #show_build
  59      define( 'FILTER_PROPERTY_VERSION', 'version' ); #show_version
  60      define( 'FILTER_PROPERTY_STICKY', 'sticky' );
  61      define( 'FILTER_PROPERTY_VIEW_STATE', 'view_state' ); # view_state
  62      define( 'FILTER_PROPERTY_FIXED_IN_VERSION', 'fixed_in_version' );
  63      define( 'FILTER_PROPERTY_TARGET_VERSION', 'target_version' );
  64      define( 'FILTER_PROPERTY_PROFILE_ID', 'profile_id' ); # show_profile
  65      define( 'FILTER_PROPERTY_PLATFORM', 'platform' );
  66      define( 'FILTER_PROPERTY_OS', 'os' );
  67      define( 'FILTER_PROPERTY_OS_BUILD', 'os_build' );


Generated: Thu Jul 28 15:48:31 2011 Cross-referenced by PHPXref 0.7