View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0009328 | mantisbt | administration | public | 2008-07-02 05:12 | 2014-11-07 16:29 |
| Reporter | iceninja | Assigned To | |||
| Priority | normal | Severity | minor | Reproducibility | have not tried |
| Status | new | Resolution | open | ||
| Product Version | 1.2.0a1 | ||||
| Summary | 0009328: Viewing Issue customization | ||||
| Description | Is it possible to show at same time "Reporter Name" and "Reporter Real Name" in the Reporter field. | ||||
| Tags | No tags attached. | ||||
| Attached Files | config_defaults_inc.php (73,717 bytes)
<?php
# Mantis - a php based bugtracking system
# Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
# Copyright (C) 2002 - 2007 Mantis Team - mantisbt-dev@lists.sourceforge.net
# Mantis is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# Mantis is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Mantis. If not, see <http://www.gnu.org/licenses/>.
# --------------------------------------------------------
# $Id: config_defaults_inc.php,v 1.364.2.6 2007-10-28 15:39:30 nuclear_eclipse Exp $
# --------------------------------------------------------
###########################################################################
# CONFIGURATION VARIABLES
###########################################################################
# config_defaults_inc.php
# This file should not be changed. If you want to override any of the values
# defined here, define them in a file called config_inc.php, which will
# be loaded after this file.
# In general a value of OFF means the feature is disabled and ON means the
# feature is enabled. Any other cases will have an explanation.
# For more details see http://manual.mantisbt.org/
################################
# Mantis Database Settings
################################
# --- database variables ---------
# set these values to match your setup
# hostname should be either a hostname or connection string to supply to adodb.
# For example, if you would like to connect to a mysql server on the local machine,
# set hostname to 'localhost', and db_type to 'mysql'.
# If you need to supply a port to connect to, set hostname as 'localhost:3306'.
$g_hostname = 'localhost';
$g_db_username = 'root';
$g_db_password = '';
$g_database_name = 'bugtracker';
$g_db_schema = ''; // used in the case of db2
# Supported types: 'mysql' or 'mysqli' for MySQL, 'pgsql' for PostgreSQL,
# 'mssql' for MS SQL Server, 'oci8' for Oracle, and 'db2' for DB2.
$g_db_type = 'mysql';
############################
# Mantis Path Settings
############################
# --- path variables --------------
# path to your installation as seen from the web browser
# requires trailing /
if ( isset ( $_SERVER['PHP_SELF'] ) ) {
$t_protocol = 'http';
if ( isset( $_SERVER['HTTPS'] ) && ( strtolower( $_SERVER['HTTPS'] ) != 'off' ) ) {
$t_protocol = 'https';
}
# $_SERVER['SERVER_PORT'] is not defined in case of php-cgi.exe
if ( isset( $_SERVER['SERVER_PORT'] ) ) {
$t_port = ':' . $_SERVER['SERVER_PORT'];
if ( ( ':80' == $t_port && 'http' == $t_protocol )
|| ( ':443' == $t_port && 'https' == $t_protocol )) {
$t_port = '';
}
} else {
$t_port = '';
}
if ( isset( $_SERVER['HTTP_X_FORWARDED_HOST'] ) ) { // Support ProxyPass
$t_host = $_SERVER['HTTP_X_FORWARDED_HOST'];
} else if ( isset( $_SERVER['HTTP_HOST'] ) ) {
$t_host = $_SERVER['HTTP_HOST'];
} else if ( isset( $_SERVER['SERVER_NAME'] ) ) {
$t_host = $_SERVER['SERVER_NAME'] . $t_port;
} else if ( isset( $_SERVER['SERVER_ADDR'] ) ) {
$t_host = $_SERVER['SERVER_ADDR'] . $t_port;
} else {
$t_host = 'www.example.com';
}
$t_path = dirname( strip_tags( $_SERVER['PHP_SELF'] ) );
# Remove /api/soap/ from the path to handle the case where the config_defaults_inc.php is included from the
# soap api.
$t_soap_api_path = '/api/soap';
$t_soap_api_path_pos = strpos( strtolower( $t_path ), $t_soap_api_path );
if ( $t_soap_api_path_pos !== false ) {
if ( $t_soap_api_path_pos == ( strlen( $t_path ) - strlen( $t_soap_api_path ) ) ) {
$t_path = substr( $t_path, 0, $t_soap_api_path_pos );
}
}
if ( '/' == $t_path || '\\' == $t_path ) {
$t_path = '';
}
$g_path = $t_protocol . '://' . $t_host . $t_path.'/';
} else {
$g_path = 'http://www.example.com/mantis/';
}
# path to your images directory (for icons)
# requires trailing /
$g_icon_path = '%path%images/';
# absolute path to your installation. Requires trailing / or \
# Symbolic links are allowed since release 0.17.3
$g_absolute_path = dirname( __FILE__ ) . DIRECTORY_SEPARATOR;
# absolute patch to your core files. The default is usually OK,
# unless you moved the 'core' directory out of your webroot (recommended).
$g_core_path = $g_absolute_path . 'core' . DIRECTORY_SEPARATOR;
# Used to link to manual for User Documentation.
$g_manual_url = 'http://manual.mantisbt.org/';
#############################
# Web Server
#############################
# Using Microsoft Internet Information Server (IIS)
if ( isset( $_SERVER['SERVER_SOFTWARE'] ) ) { # SERVER_SOFTWARE not defined in case of php-cgi.exe
$g_use_iis = ( strstr( $_SERVER['SERVER_SOFTWARE'], 'IIS' ) !== false ) ? ON : OFF;
} else {
$g_use_iis = OFF;
}
# Session handler. Possible values:
# 'php' -> Default PHP filesystem sessions
# 'adodb' -> Database storage sessions
# 'memcached' -> Memcached storage sessions
$g_session_handler = 'php';
#############################
# Configuration Settings
#############################
# The following list of variables should never be in the database.
# These patterns will be concatenated and used as a regular expression
# to bypass the database lookup and look here for appropriate global settings.
$g_global_settings = array(
'_table$', 'cookie', '^db_', 'hostname', 'database_name', 'session_handler',
'_path$', 'use_iis', 'language', 'use_javascript', 'display_errors', 'stop_on_errors', 'login_method', '_file$',
'anonymous', 'content_expire', 'html_valid_tags', 'custom_headers', 'rss_key_seed'
);
#############################
# Signup and Lost Password
#############################
# --- signup ----------------------
# allow users to signup for their own accounts.
# Mail settings must be correctly configured in order for this to work
$g_allow_signup = ON;
# Max. attempts to login using a wrong password before lock the account.
# When locked, it's required to reset the password (lost password)
# Value resets to zero at each successfully login
# Set to OFF to disable this control
$g_max_failed_login_count = OFF;
# access level required to be notified when a new user has been created using the "signup form"
$g_notify_new_user_created_threshold_min = ADMINISTRATOR;
# if ON users will be sent their password when reset.
# if OFF the password will be set to blank. If set to ON, mail settings must be
# correctly configured.
$g_send_reset_password = ON;
# String used to generate the confirm_hash for the 'lost password' feature and captcha code for 'signup'
# ATTENTION: CHANGE IT TO WHATEVER VALUE YOU PREFER
$g_password_confirm_hash_magic_string = 'blowfish';
# --- captcha image ---------------
# use captcha image to validate subscription it requires GD library installed
$g_signup_use_captcha = ON;
# absolute path (with trailing slash!) to folder which contains your TrueType-Font files
# used to create the captcha image and since 0.19.3 for the Relationship Graphs
$g_system_font_folder = 'c:/winnt/fonts/';
# font name used to create the captcha image. i.e. arial.ttf
# (the font file has to exist in the system_font_folder)
$g_font_per_captcha = 'arial.ttf';
# --- lost password -------------
# Setting to disable the 'lost your password' feature.
$g_lost_password_feature = ON;
# Max. simultaneous requests of 'lost password'
# When this value is reached, it's no longer possible to request new password reset
# Value resets to zero at each successfully login
$g_max_lost_password_in_progress_count = 3;
#############################
# Mantis Email Settings
#############################
# --- email variables -------------
$g_administrator_email = 'administrator@example.com';
$g_webmaster_email = 'webmaster@example.com';
# the sender email, part of 'From: ' header in emails
$g_from_email = 'noreply@example.com';
# the sender name, part of 'From: ' header in emails
$g_from_name = 'Mantis Bug Tracker';
# the return address for bounced mail
$g_return_path_email = 'admin@example.com';
# allow email notification
# note that if this is disabled, sign-up and password reset messages will
# not be sent.
$g_enable_email_notification = ON;
# The following two config options allow you to control who should get email
# notifications on different actions/statuses. The first option (default_notify_flags)
# sets the default values for different user categories. The user categories
# are:
#
# 'reporter': the reporter of the bug
# 'handler': the handler of the bug
# 'monitor': users who are monitoring a bug
# 'bugnotes': users who have added a bugnote to the bug
# 'threshold_max': all users with access <= max
# 'threshold_min': ..and with access >= min
#
# The second config option (notify_flags) sets overrides for specific actions/statuses.
# If a user category is not listed for an action, the default from the config
# option above is used. The possible actions are:
#
# 'new': a new bug has been added
# 'owner': a bug has been assigned to a new owner
# 'reopened': a bug has been reopened
# 'deleted': a bug has been deleted
# 'updated': a bug has been updated
# 'bugnote': a bugnote has been added to a bug
# 'sponsor': sponsorship has changed on this bug
# 'relation': a relationship has changed on this bug
# '<status>': eg: 'resolved', 'closed', 'feedback', 'acknowledged', ...etc.
# this list corresponds to $g_status_enum_string
#
# If you wanted to have all developers get notified of new bugs you might add
# the following lines to your config file:
#
# $g_notify_flags['new']['threshold_min'] = DEVELOPER;
# $g_notify_flags['new']['threshold_max'] = DEVELOPER;
#
# You might want to do something similar so all managers are notified when a
# bug is closed. If you didn't want reporters to be notified when a bug is
# closed (only when it is resolved) you would use:
#
# $g_notify_flags['closed']['reporter'] = OFF;
$g_default_notify_flags = array('reporter' => ON,
'handler' => ON,
'monitor' => ON,
'bugnotes' => ON,
'threshold_min' => NOBODY,
'threshold_max' => NOBODY);
# We don't need to send these notifications on new bugs
# (see above for info on this config option)
#@@@ (though I'm not sure they need to be turned off anymore
# - there just won't be anyone in those categories)
# I guess it serves as an example and a placeholder for this
# config option
$g_notify_flags['new'] = array('bugnotes' => OFF,
'monitor' => OFF);
# Whether user's should receive emails for their own actions
$g_email_receive_own = OFF;
# set to OFF to disable email check
$g_validate_email = ( substr( php_uname(), 0, 7 ) == 'Windows' ) ? OFF : ON;
$g_check_mx_record = OFF; # Not supported under Windows.
# if ON, allow the user to omit an email field
# note if you allow users to create their own accounts, they
# must specify an email at that point, no matter what the value
# of this option is. Otherwise they wouldn't get their passwords.
$g_allow_blank_email = OFF;
# Only allow and send email to addresses in the given domain
# For example:
# $g_limit_email_domain = 'users.sourceforge.net';
$g_limit_email_domain = OFF;
# This specifies the access level that is needed to get the mailto: links.
$g_show_user_email_threshold = NOBODY;
# If use_x_priority is set to ON, what should the value be?
# Urgent = 1, Not Urgent = 5, Disable = 0
# Note: some MTAs interpret X-Priority = 0 to mean 'Very Urgent'
$g_mail_priority = 3;
# select the method to mail by:
# 0 - mail()
# 1 - sendmail
# 2 - SMTP
$g_phpMailer_method = 0;
# This option allows you to use a remote SMTP host. Must use the phpMailer script
# One or more hosts, separated by a semicolon, can be listed.
# You can also specify a different port for each host by using this
# format: [hostname:port] (e.g. "smtp1.example.com:25;smtp2.example.com").
# Hosts will be tried in order.
$g_smtp_host = 'localhost';
# These options allow you to use SMTP Authentication when you use a remote
# SMTP host with phpMailer. If smtp_username is not '' then the username
# and password will be used when logging in to the SMTP server.
$g_smtp_username = '';
$g_smtp_password = '';
# It is recommended to use a cronjob or a scheduler task to send emails.
# The cronjob should typically run every 5 minutes. If no cronjob is used,
# then user will have to wait for emails to be sent after performing an action
# which triggers notifications. This slows user performance.
$g_email_send_using_cronjob = OFF;
# Specify whether e-mails should be sent with the category set or not. This is tested
# with Microsoft Outlook. More testing for this feature + other formats will be added
# in the future.
# OFF, EMAIL_CATEGORY_PROJECT_CATEGORY (format: [Project] Category)
$g_email_set_category = OFF;
# --- email separator and padding ------------
$g_email_separator1 = str_pad('', 70, '=');
$g_email_separator2 = str_pad('', 70, '-');
$g_email_padding_length = 28;
#############################
# Mantis Version String
#############################
# --- version variables -----------
$g_show_version = ON;
################################
# Mantis Language Settings
################################
# --- language settings -----------
# If the language is set to 'auto', the actual
# language is determined by the user agent (web browser)
# language preference.
$g_default_language = 'english';
# list the choices that the users are allowed to choose
$g_language_choices_arr = array(
'auto',
'bulgarian',
'catalan',
'chinese_simplified',
'chinese_traditional',
'croatian',
'czech',
'danish',
'dutch',
'english',
'estonian',
'finnish',
'french',
'german',
'german_eintrag',
'greek',
'hebrew',
'hungarian',
'icelandic',
'italian',
'japanese',
'korean',
'latvian',
'lithuanian',
'norwegian',
'polish',
'portuguese_brazil',
'portuguese_standard',
'romanian',
'russian',
'serbian',
'slovak',
'slovene',
'spanish',
'swedish',
'turkish',
'ukrainian',
'urdu',
'vietnamese',
);
# Browser language mapping for 'auto' language selection
$g_language_auto_map = array(
'bg' => 'bulgarian',
'ca' => 'catalan',
'zh-cn, zh-sg, zh' => 'chinese_simplified',
'zh-hk, zh-tw' => 'chinese_traditional',
'cs' => 'czech',
'da' => 'danish',
'nl-be, nl' => 'dutch',
'en-us, en-gb, en-au, en' => 'english',
'et' => 'estonian',
'fi' => 'finnish',
'fr-ca, fr-be, fr-ch, fr' => 'french',
'de-de, de-at, de-ch, de' => 'german',
'he' => 'hebrew',
'hu' => 'hungarian',
'hr' => 'croatian',
'is' => 'icelandic',
'it-ch, it' => 'italian',
'ja' => 'japanese',
'ko' => 'korean',
'lt' => 'lithuanian',
'lv' => 'latvian',
'no' => 'norwegian',
'pl' => 'polish',
'pt-br' => 'portugese_brazil',
'pt' => 'portugese_standard',
'ro-mo, ro' => 'romanian',
'ru-mo, ru-ru, ru-ua, ru' => 'russian',
'sr' => 'serbian',
'sk' => 'slovak',
'sl' => 'slovene',
'es-mx, es-co, es-ar, es-cl, es-pr, es' => 'spanish',
'sv-fi, sv' => 'swedish',
'tr' => 'turkish',
'uk' => 'ukrainian',
'vi'=>'vietnamese'
);
# Fallback for automatic language selection
$g_fallback_language = 'english';
###############################
# Mantis Display Settings
###############################
# --- sitewide variables ----------
$g_window_title = 'Mantis'; # browser window title
$g_page_title = ''; # title at top of html page (empty by default, since there is a logo now)
# --- advanced views --------------
# BOTH, SIMPLE_ONLY, ADVANCED_ONLY
$g_show_report = BOTH;
$g_show_update = BOTH;
$g_show_view = BOTH;
# --- top menu items --------------
# Specifies whether to enable support for project documents or not.
$g_enable_project_documentation = ON;
# --- footer menu -----------------
# Display another instance of the menu at the bottom. The top menu will still remain.
$g_show_footer_menu = OFF;
# --- show extra menu bar with all available projects ---
$g_show_project_menu_bar = OFF;
# --- show extra dropdown for subprojects ---
# Shows only top projects in the project dropdown and adds an extra dropdown for subprojects.
$g_show_extended_project_browser = OFF;
# --- show assigned to names ------
# This is in the view all pages
$g_show_assigned_names = ON;
# --- show priority as icon ---
# OFF: Shows priority as icon in view all bugs page
# ON: Shows priority as text in view all bugs page
$g_show_priority_text = OFF;
# A configuration option that identifies the columns to be shown on the View Issues page.
# In Mantis 1.1, this option can be overriden using the Generic Configuration screen.
# This configuration can be overriden dynamically by overriding the custom function "get_columns_to_view".
# Some of the columns specified here can be removed automatically if they conflict with other configuration.
# For example, sponsorship_total will be removed if sponsorships are disabled.
# To include custom field 'xyz', include the column name as 'custom_xyz'.
#
# Standard Column Names (i.e. names to choose from):
# selection, edit, id, project_id, reporter_id, handler_id, priority, reproducibility, projection, eta,
# resolution, fixed_in_version, view_state, os, os_build, platform, version, date_submitted, attachment,
# category, sponsorship_total, severity, status, last_updated, summary, bugnotes_count
$g_view_issues_page_columns = array ( 'realname','selection', 'edit', 'priority', 'id', 'sponsorship_total', 'bugnotes_count', 'attachment', 'category', 'severity', 'status', 'last_updated', 'summary' );
# A configuration option that identifies the columns to be show on the print issues page.
# In Mantis 1.1, this option can be overriden using the Generic Configuration screen.
# This configuration can be overriden dynamically by overriding the custom function "get_columns_to_view".
$g_print_issues_page_columns = array ( 'selection', 'priority', 'id', 'sponsorship_total', 'bugnotes_count', 'attachment', 'category', 'severity', 'status', 'last_updated', 'summary' );
# A configuration option that identifies the columns to be include in the CSV export.
# In Mantis 1.1, this option can be overriden using the Generic Configuration screen.
# This configuration can be overriden dynamically by overriding the custom function "get_columns_to_view".
$g_csv_columns = array ( 'id', 'project_id', 'reporter_id', 'handler_id', 'priority', 'severity', 'reproducibility', 'version', 'projection', 'category', 'date_submitted', 'eta', 'os', 'os_build', 'platform', 'view_state', 'last_updated', 'summary', 'status', 'resolution', 'fixed_in_version', 'duplicate_id' );
# --- show projects when in All Projects mode ---
$g_show_bug_project_links = ON;
# --- Position of the status colour legend, can be: STATUS_LEGEND_POSITION_*
# --- see constant_inc.php. (*: TOP , BOTTOM , or BOTH)
$g_status_legend_position = STATUS_LEGEND_POSITION_BOTTOM;
# --- Show a legend with percentage of bug status
# --- x% of all bugs are new, y% of all bugs are assigned and so on.
# --- If set to ON it will printed below the status colour legend.
$g_status_percentage_legend = OFF;
# --- Position of the filter box, can be: FILTER_POSITION_*
# FILTER_POSITION_TOP, FILTER_POSITION_BOTTOM, or 0 for none.
$g_filter_position = FILTER_POSITION_TOP;
# --- show product versions in create, view and update screens
# ON forces display even if none are defined
# OFF suppresses display
# AUTO suppresses the display if there are no versions defined for the project
$g_show_product_version = AUTO;
# -- show users with their real name or not
$g_show_realname = OFF;
$g_differentiate_duplicates = OFF; # leave off for now
# -- sorting for names in dropdown lists. If turned on, "Jane Doe" will be sorted with the "D"s
$g_sort_by_last_name = OFF;
# Show user avatar
# the current implementation is based on http://www.gravatar.com
# users will need to register there the same address used in
# this mantis installation to have their avatar shown
# Please note: upon registration or avatar change, it takes some time for
# the updated gravatar images to show on sites
$g_show_avatar = OFF;
# Only users above this threshold will have their avatar shown
$g_show_avatar_threshold = DEVELOPER;
# Default avatar for users without a gravatar account
$g_default_avatar = "%path%images/no_avatar.png";
############################
# Mantis JPGRAPH Addon
############################
# --- jpgraph settings --- #
# Initial Version from Duncan Lisset
#
# To use the Jpgraph addon you need the JPGRAPH package from
# http://www.aditus.nu/jpgraph/index.php
# You can place the package whereever you want, but you have
# to set the var in jpgraph.php eg.
# (DEFINE('DIR_BASE','/www/mantisbt/jpgraph/');)
$g_use_jpgraph = OFF;
$g_jpgraph_path = '.' . DIRECTORY_SEPARATOR . 'jpgraph' . DIRECTORY_SEPARATOR; # dont forget the ending slash!
# use antialiasing - Enabling anti-aliasing will greatly improve the visual apperance of certain graphs.
# Note: Using anti-aliasing makes line drawing roughly 8 time slower than normal lines
$g_jpgraph_antialias = ON;
# what truetype font will the graphs use. Allowed values are 'arial', 'verdana', 'courier', 'book', 'comic', 'times',
# 'georgia', 'trebuche', 'vera', 'veramono', or 'veraserif'. Refer to the jpgraph manual for details.
# NOTE: these fonts need to be installed in the TTF_DIR as specified to jpgraph
$g_graph_font = '';
# what width is used to scale the graphs.
$g_graph_window_width = 800;
# bar graph aspect ration (height / width)
$g_graph_bar_aspect = 0.9;
# how many graphs to put in each row in the advanced summary page
$g_graph_summary_graphs_per_row = 2;
# initial graph type selected on bug_graph_page (see that page for possible values)
# 0 asks user to select
$g_default_graph_type = 0;
# graph colours, once the list is exhausted it will repeat
$g_graph_colors = array('coral', 'red', 'blue', 'black', 'green', 'orange', 'pink', 'brown', 'gray',
'blueviolet','chartreuse','magenta','purple3','teal','tan','olivedrab','magenta');
############################
# Mantis Time Settings
############################
# time for 'permanent' cookie to live in seconds (1 year)
$g_cookie_time_length = 30000000;
# minutes to wait before document is stale (in minutes)
$g_content_expire = 0;
# The time (in seconds) to allow for page execution during long processes
# such as upgrading your database.
# The default value of 0 indicates that the page should be allowed to
# execute until it is finished.
$g_long_process_timeout = 0;
############################
# Mantis Date Settings
############################
# --- date format settings --------
# date format strings defaults to ISO 8601 formatting
# go to http://www.php.net/manual/en/function.date.php
# for detailed instructions on date formatting
$g_short_date_format = 'Y-m-d';
$g_normal_date_format = 'Y-m-d H:i';
$g_complete_date_format = 'Y-m-d H:i T';
############################
# Mantis News Settings
############################
# --- Limit News Items ------------
# limit by entry count or date
# BY_LIMIT - entry limit
# BY_DATE - by date
$g_news_limit_method = BY_LIMIT;
# limit by last X entries
$g_news_view_limit = 7;
# limit by days
$g_news_view_limit_days = 30;
# threshold for viewing private news
$g_private_news_threshold = DEVELOPER;
##################################
# Mantis Default Preferences
##################################
# --- signup default ---------------
# look in constant_inc.php for values
$g_default_new_account_access_level = REPORTER;
# Default Bug View Status (VS_PUBLIC or VS_PRIVATE)
$g_default_bug_view_status = VS_PUBLIC;
# Default value for steps to reproduce field.
$g_default_bug_steps_to_reproduce = '';
# Default value for addition information field.
$g_default_bug_additional_info = '';
# Default Bugnote View Status (VS_PUBLIC or VS_PRIVATE)
$g_default_bugnote_view_status = VS_PUBLIC;
# Default bug severity when reporting a new bug
$g_default_bug_severity = MINOR;
# Default bug priority when reporting a new bug
$g_default_bug_priority = NORMAL;
# Default bug reproducibility when reporting a new bug
$g_default_bug_reproducibility = REPRODUCIBILITY_HAVENOTTRIED;
# Default bug category when reporting a new bug
$g_default_bug_category = '';
# --- viewing defaults ------------
# site defaults for viewing preferences
$g_default_limit_view = 50;
$g_default_show_changed = 6;
$g_hide_status_default = CLOSED;
$g_show_sticky_issues = 'on';
# make sure people aren't refreshing too often
$g_min_refresh_delay = 10; # in minutes
# --- account pref defaults -------
$g_default_advanced_report = OFF;
$g_default_advanced_view = OFF;
$g_default_advanced_update = OFF;
$g_default_refresh_delay = 30; # in minutes
$g_default_redirect_delay = 2; # in seconds
$g_default_bugnote_order = 'ASC';
$g_default_email_on_new = ON;
$g_default_email_on_assigned = ON;
$g_default_email_on_feedback = ON;
$g_default_email_on_resolved = ON;
$g_default_email_on_closed = ON;
$g_default_email_on_reopened = ON;
$g_default_email_on_bugnote = ON;
$g_default_email_on_status = 0; # @@@ Unused
$g_default_email_on_priority = 0; # @@@ Unused
$g_default_email_on_new_minimum_severity = OFF; # 'any'
$g_default_email_on_assigned_minimum_severity = OFF; # 'any'
$g_default_email_on_feedback_minimum_severity = OFF; # 'any'
$g_default_email_on_resolved_minimum_severity = OFF; # 'any'
$g_default_email_on_closed_minimum_severity = OFF; # 'any'
$g_default_email_on_reopened_minimum_severity = OFF; # 'any'
$g_default_email_on_bugnote_minimum_severity = OFF; # 'any'
$g_default_email_on_status_minimum_severity = OFF; # 'any'
$g_default_email_on_priority_minimum_severity = OFF; # @@@ Unused
$g_default_email_bugnote_limit = 0;
# default_language - is set to site language
###############################
# Mantis Summary Settings
###############################
# how many reporters to show
# this is useful when there are hundreds of reporters
$g_reporter_summary_limit = 10;
# --- summary date displays -------
# date lengths to count bugs by (in days)
$g_date_partitions = array( 1, 2, 3, 7, 30, 60, 90, 180, 365);
# shows project '[project] category' when 'All Projects' is selected
# otherwise only 'category name'
$g_summary_category_include_project = OFF;
# threshold for viewing summary
$g_view_summary_threshold = MANAGER;
###############################
# Mantis Bugnote Settings
###############################
# --- bugnote ordering ------------
# change to ASC or DESC
$g_bugnote_order = 'DESC';
################################
# Mantis Bug History Settings
################################
# --- bug history visible by default when you view a bug ----
# change to ON or OFF
$g_history_default_visible = ON;
# --- bug history ordering ----
# change to ASC or DESC
$g_history_order = 'ASC';
###############################
# Mantis Reminder Settings
###############################
# are reminders stored as bugnotes
$g_store_reminders = ON;
# Automatically add recipients of reminders to monitor list, if they are not
# the handler or the reporter (since they automatically get notified, if required)
# If recipients of the reminders are below the monitor threshold, they will not be added.
$g_reminder_recipents_monitor_bug = ON;
# Default Reminder View Status (VS_PUBLIC or VS_PRIVATE)
$g_default_reminder_view_status = VS_PUBLIC;
###################################
# Mantis Sponsorship Settings
###################################
# Whether to enable/disable the whole issue sponsorship feature
$g_enable_sponsorship = OFF;
# Currency used for all sponsorships.
$g_sponsorship_currency = 'US$';
# Access level threshold needed to view the total sponsorship for an issue by all users.
$g_view_sponsorship_total_threshold = VIEWER;
# Access level threshold needed to view the users sponsoring an issue and the sponsorship
# amount for each.
$g_view_sponsorship_details_threshold = VIEWER;
# Access level threshold needed to allow user to sponsor issues.
$g_sponsor_threshold = REPORTER;
# Access level required to be able to handle sponsored issues.
$g_handle_sponsored_bugs_threshold = DEVELOPER;
# Access level required to be able to assign a sponsored issue to a user with access level
# greater or equal to 'handle_sponsored_bugs_threshold'.
$g_assign_sponsored_bugs_threshold = MANAGER;
# Minimum sponsorship amount. If the user enters a value less than this, an error will be prompted.
$g_minimum_sponsorship_amount = 5;
###################################
# Mantis File Upload Settings
###################################
# --- file upload settings --------
# This is the master setting to disable *all* file uploading functionality
#
# If you want to allow file uploads, you must also make sure that they are
# enabled in php. You may need to add 'file_uploads = TRUE' to your php.ini
#
# See also: $g_upload_project_file_threshold, $g_upload_bug_file_threshold,
# $g_allow_reporter_upload
$g_allow_file_upload = ON;
# Upload destination: specify actual location in project settings
# DISK, DATABASE, or FTP.
$g_file_upload_method = DATABASE;
# When using FTP or DISK for storing uploaded files, this setting control
# the access permissions they will have on the web server: with the default
# value (0400) files will be read-only, and accessible only by the user
# running the apache process (probably "apache" in Linux and "Administrator"
# in Windows).
# For more details on unix style permissions:
# http://www.perlfect.com/articles/chmod.shtml
$g_attachments_file_permissions = 0400;
# FTP settings, used if $g_file_upload_method = FTP
$g_file_upload_ftp_server = 'ftp.myserver.com';
$g_file_upload_ftp_user = 'readwriteuser';
$g_file_upload_ftp_pass = 'readwritepass';
# Maximum file size that can be uploaded
# Also check your PHP settings (default is usually 2MBs)
$g_max_file_size = 5000000; # 5 MB
# Files that are allowed or not allowed. Separate items by commas.
# eg. 'php,html,java,exe,pl'
# if $g_allowed_files is filled in NO other file types will be allowed.
# $g_disallowed_files takes precedence over $g_allowed_files
$g_allowed_files = '';
$g_disallowed_files = '';
# prefix to be used for the file system names of files uploaded to projects.
# Eg: doc-001-myprojdoc.zip
$g_document_files_prefix = 'doc';
# absolute path to the default upload folder. Requires trailing / or \
$g_absolute_path_default_upload_folder = '';
############################
# Mantis HTML Settings
############################
# --- html tags -------------------
# Set this flag to automatically convert www URLs and
# email adresses into clickable links
$g_html_make_links = ON;
# These are the valid html tags for multi-line fields (e.g. description)
# do NOT include href or img tags here
# do NOT include tags that have parameters (eg. <font face="arial">)
$g_html_valid_tags = 'p, li, ul, ol, br, pre, i, b, u, em';
# These are the valid html tags for single line fields (e.g. issue summary).
# do NOT include href or img tags here
# do NOT include tags that have parameters (eg. <font face="arial">)
$g_html_valid_tags_single_line = 'i, b, u, em';
# maximum length of the description in a dropdown menu (for search)
# set to 0 to disable truncations
$g_max_dropdown_length = 40;
# This flag conntrolls whether pre-formatted text (delimited by <pre> tags
# is wrapped to a maximum linelength (defaults to 100 chars in strings_api)
# If turned off, the display may be wide when viewing the text
$g_wrap_in_preformatted_text = ON;
##########################
# Mantis HR Settings
##########################
# --- hr --------------------------
$g_hr_size = 1;
$g_hr_width = 50;
#############################
# Mantis LDAP Settings
#############################
# look in README.LDAP for details
# --- using openldap -------------
$g_ldap_server = 'ldaps://ldap.example.com.au/';
$g_ldap_port = '636';
$g_ldap_root_dn = 'dc=example,dc=com,dc=au';
$g_ldap_organization = ''; # e.g. '(organizationname=*Traffic)'
$g_ldap_uid_field = 'uid'; # Use 'sAMAccountName' for Active Directory
$g_ldap_bind_dn = '';
$g_ldap_bind_passwd = '';
$g_use_ldap_email = OFF; # Should we send to the LDAP email address or what MySql tells us
# The LDAP Protocol Version, if 0, then the protocol version is not set.
$g_ldap_protocol_version = 0;
############################
# Status Settings
############################
# Status to assign to the bug when submitted.
$g_bug_submit_status = NEW_;
# Status to assign to the bug when assigned.
$g_bug_assigned_status = ASSIGNED;
# Status to assign to the bug when reopened.
$g_bug_reopen_status = FEEDBACK;
# Resolution to assign to the bug when reopened.
$g_bug_reopen_resolution = REOPENED;
# --- status thresholds (*_status_threshold) ---
# Bug becomes readonly if its status is >= this status. The bug becomes read/write again if re-opened and its
# status becomes less than this threshold.
$g_bug_readonly_status_threshold = RESOLVED;
# Bug is resolved, ready to be closed or reopened. In some custom installations a bug
# maybe considered as resolved when it is moved to a custom (FIXED OR TESTED) status.
$g_bug_resolved_status_threshold = RESOLVED;
# Automatically set status to ASSIGNED whenever a bug is assigned to a person.
# This is useful for installations where assigned status is to be used when
# the bug is in progress, rather than just put in a person's queue.
$g_auto_set_status_to_assigned = ON;
# 'status_enum_workflow' defines the workflow, and reflects a simple
# 2-dimensional matrix. For each existing status, you define which
# statuses you can go to from that status, e.g. from NEW_ you might list statuses
# '10:new,20:feedback,30:acknowledged' but not higher ones.
# The following example can be transferred to config_inc.php
# $g_status_enum_workflow[NEW_]='20:feedback,30:acknowledged,40:confirmed,50:assigned,80:resolved';
# $g_status_enum_workflow[FEEDBACK] ='10:new,30:acknowledged,40:confirmed,50:assigned,80:resolved';
# $g_status_enum_workflow[ACKNOWLEDGED] ='20:feedback,40:confirmed,50:assigned,80:resolved';
# $g_status_enum_workflow[CONFIRMED] ='20:feedback,50:assigned,80:resolved';
# $g_status_enum_workflow[ASSIGNED] ='20:feedback,80:resolved,90:closed';
# $g_status_enum_workflow[RESOLVED] ='50:assigned,90:closed';
# $g_status_enum_workflow[CLOSED] ='50:assigned';
$g_status_enum_workflow = array();
############################
# Bug Attachments Settings
############################
# Specifies the maximum size below which an attachment is previewed in the bug
# view pages. To disable this feature, set max size to 0.
# This feature applies to: bmp, png, gif, jpg
$g_preview_attachments_inline_max_size = 0;
# Extenstions for text files that can be expanded inline.
$g_preview_text_extensions = array( 'txt', 'diff', 'patch' );
# Extensions for images that can be expanded inline.
$g_preview_image_extensions = array( 'bmp', 'png', 'gif', 'jpg', 'jpeg' );
# Specifies the maximum width for the auto-preview feature. If no maximum width should be imposed
# then it should be set to 0.
$g_preview_max_width = 0;
# Specifies the maximum height for the auto-preview feature. If no maximum height should be imposed
# then it should be set to 0.
$g_preview_max_height = 250;
# --- Show an attachment indicator on bug list ---
# Show a clickable attachment indicator on the bug
# list page if the bug has one or more files attached.
# Note: This option is disabled by default since it adds
# 1 database query per bug listed and thus might slow
# down the page display.
$g_show_attachment_indicator = OFF;
# access level needed to view bugs attachments. View means to see the file names
# sizes, and timestamps of the attachments.
$g_view_attachments_threshold = VIEWER;
# list of filetypes to view inline. This is a string of extentions separated by commas
# This is used when downloading an attachment. Rather than downloading, the attachment
# is viewed in the browser.
$g_inline_file_exts = 'gif,png';
# access level needed to download bug attachments
$g_download_attachments_threshold = VIEWER;
# access level needed to delete bug attachments
$g_delete_attachments_threshold = DEVELOPER;
# allow users to view attachments uploaded by themselves even if their access
# level is below view_attachments_threshold.
$g_allow_view_own_attachments = ON;
# allow users to download attachments uploaded by themselves even if their access
# level is below download_attachments_threshold.
$g_allow_download_own_attachments = ON;
# allow users to delete attachments uploaded by themselves even if their access
# level is below delete_attachments_threshold.
$g_allow_delete_own_attachments = OFF;
############################
# Mantis Misc Settings
############################
# --- access level thresholds (*_threshold) ---
# access level needed to report a bug
$g_report_bug_threshold = REPORTER;
# access level needed to update bugs (i.e., the update_bug_page)
# This controls whether the user sees the "Update Bug" button in bug_view*_page
# and the pencil icon in view_all_bug_page
$g_update_bug_threshold = UPDATER;
# access level needed to monitor bugs
# Look in the constant_inc.php file if you want to set a different value
$g_monitor_bug_threshold = REPORTER;
# access level needed to view private bugs
# Look in the constant_inc.php file if you want to set a different value
$g_private_bug_threshold = DEVELOPER;
# access level needed to be able to be listed in the assign to field.
$g_handle_bug_threshold = DEVELOPER;
# access level needed to show the Assign To: button bug_view*_page or
# the Assigned list in bug_update*_page.
# This allows control over who can route bugs
# This defaults to $g_handle_bug_threshold
$g_update_bug_assign_threshold = '%handle_bug_threshold%';
# access level needed to view private bugnotes
# Look in the constant_inc.php file if you want to set a different value
$g_private_bugnote_threshold = DEVELOPER;
# access level needed to view handler in bug reports and notification email
# @@@ yarick123: now it is implemented for notification email only
$g_view_handler_threshold = VIEWER;
# access level needed to view history in bug reports and notification email
# @@@ yarick123: now it is implemented for notification email only
$g_view_history_threshold = VIEWER;
# access level needed to send a reminder from the bug view pages
# set to NOBODY to disable the feature
$g_bug_reminder_threshold = DEVELOPER;
# access level needed to upload files to the project documentation section
# You can set this to NOBODY to prevent uploads to projects
# See also: $g_upload_bug_file_threshold, $g_allow_file_upload
$g_upload_project_file_threshold = MANAGER;
# access level needed to upload files to attach to a bug
# You can set this to NOBODY to prevent uploads to bugs but note that
# the reporter of the bug will still be able to upload unless you set
# $g_allow_reporter_upload or $g_allow_file_upload to OFF
# See also: $g_upload_project_file_threshold, $g_allow_file_upload,
# $g_allow_reporter_upload
$g_upload_bug_file_threshold = REPORTER;
# Add bugnote threshold
$g_add_bugnote_threshold = REPORTER;
# Update bugnote threshold (if the bugnote is not your own)
$g_update_bugnote_threshold = DEVELOPER;
# Threshold needed to view project documentation
$g_view_proj_doc_threshold = ANYBODY;
# Threshold needed to manage a project: edit project
# details (not to add/delete projects), upload documentation, ...etc.
$g_manage_project_threshold = MANAGER;
# Threshold needed to add/delete/modify news
$g_manage_news_threshold = MANAGER;
# Threshold required to delete a project
$g_delete_project_threshold = ADMINISTRATOR;
# Threshold needed to create a new project
$g_create_project_threshold = ADMINISTRATOR;
# Threshold needed to be automatically included in private projects
$g_private_project_threshold = ADMINISTRATOR;
# Threshold needed to manage user access to a project
$g_project_user_threshold = MANAGER;
# Threshold needed to manage user accounts
$g_manage_user_threshold = ADMINISTRATOR;
# Delete bug threshold
$g_delete_bug_threshold = DEVELOPER;
# Delete bugnote threshold
$g_delete_bugnote_threshold = '%delete_bug_threshold%';
# Are users allowed to change and delete their own bugnotes?
$g_bugnote_allow_user_edit_delete = ON;
# Move bug threshold
$g_move_bug_threshold = DEVELOPER;
# Threshold needed to set the view status while reporting a bug or a bug note.
$g_set_view_status_threshold = REPORTER;
# Threshold needed to update the view status while updating a bug or a bug note.
# This threshold should be greater or equal to $g_set_view_status_threshold.
$g_change_view_status_threshold = UPDATER;
# --- Threshold needed to show the list of users montoring a bug on the bug view pages.
$g_show_monitor_list_threshold = DEVELOPER;
# Threshold needed to be able to use stored queries
$g_stored_query_use_threshold = REPORTER;
# Threshold needed to be able to create stored queries
$g_stored_query_create_threshold = DEVELOPER;
# Threshold needed to be able to create shared stored queries
$g_stored_query_create_shared_threshold = MANAGER;
# Threshold needed to update readonly bugs. Readonly bugs are identified via
# $g_bug_readonly_status_threshold.
$g_update_readonly_bug_threshold = MANAGER;
# threshold for viewing changelog
$g_view_changelog_threshold = VIEWER;
# threshold for viewing roadmap
$g_roadmap_view_threshold = VIEWER;
# threshold for updating roadmap, target_version, etc
$g_roadmap_update_threshold = DEVELOPER;
# status change thresholds
$g_update_bug_status_threshold = DEVELOPER;
# access level needed to re-open bugs
$g_reopen_bug_threshold = DEVELOPER;
# access level needed to set a bug sticky
$g_set_bug_sticky_threshold = MANAGER;
# The minimum access level for someone to be a member of the development team
# and appear on the project information page.
$g_development_team_threshold = DEVELOPER;
# this array sets the access thresholds needed to enter each status listed.
# if a status is not listed, it falls back to $g_update_bug_status_threshold
# example: $g_set_status_threshold = array( ACKNOWLEDGED => MANAGER, CONFIRMED => DEVELOPER, CLOSED => MANAGER );
$g_set_status_threshold = array();
# --- login method ----------------
# CRYPT or PLAIN or MD5 or LDAP or BASIC_AUTH
# You can simply change this at will. Mantis will try to figure out how the passwords were encrypted.
$g_login_method = MD5;
# --- limit reporters -------------
# Set to ON if you wish to limit reporters to only viewing bugs that they report.
$g_limit_reporters = OFF;
# --- close immediately -----------
# Allow developers and above to close bugs immediately when resolving bugs
$g_allow_close_immediately = OFF;
# --- reporter can close ----------
# Allow reporters to close the bugs they reported, after they're marked resolved.
$g_allow_reporter_close = OFF;
# --- reporter can reopen ---------
# Allow reporters to reopen the bugs they reported, after they're marked resolved.
$g_allow_reporter_reopen = ON;
# --- reporter can upload ---------
# Allow reporters to upload attachments to bugs they reported.
$g_allow_reporter_upload = ON;
# --- account delete -----------
# Allow users to delete their own accounts
$g_allow_account_delete = OFF;
# --- anonymous login -----------
# Allow anonymous login
$g_allow_anonymous_login = OFF;
$g_anonymous_account = '';
# --- CVS linking ---------------
# insert the URL to your CVSweb or ViewCVS
# eg: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/mantisbt/mantisbt/
$g_cvs_web = '';
# --- Source Control Integration ------
# For open source projects it is expected that the notes be public, however,
# for non-open source it will probably be VS_PRIVATE.
$g_source_control_notes_view_status = VS_PRIVATE;
# Account to be used by the source control script. The account must be enabled
# and must have the appropriate access level to add notes to all issues even
# private ones (DEVELOPER access recommended).
$g_source_control_account = '';
# If set to a status, then after a checkin with a log message that matches the regular expression in
# $g_source_control_fixed_regexp, the issue status is set to the specified status. If set to OFF, the
# issue status is not changed.
$g_source_control_set_status_to = OFF;
# Whenever an issue status is set to $g_source_control_set_status_to, the issue resolution is set to
# the value specified for this configuration.
$g_source_control_set_resolution_to = FIXED;
# Regular expression used to detect issue ids within checkin comments.
# see preg_match_all() documentation at
# http://www.php.net/manual/en/function.preg-match-all.php
$g_source_control_regexp = "/\bissue [#]{0,1}(\d+)\b/i";
# Regular expression used to detect the fact that an issue is fixed and extracts
# its issue id. If there is a match to this regular expression, then the issue
# will be marked as resolved and the resolution will be set to fixed.
$g_source_control_fixed_regexp = "%source_control_regexp%";
# --- Bug Linking ---------------
# if a number follows this tag it will create a link to a bug.
# eg. for # a link would be #45
# eg. for bug: a link would be bug:98
$g_bug_link_tag = '#';
# --- Bugnote Linking ---------------
# if a number follows this tag it will create a link to a bugnote.
# eg. for ~ a link would be ~45
# eg. for bugnote: a link would be bugnote:98
$g_bugnote_link_tag = '~';
# --- Bug Count Linking ----------
# this is the prefix to use when creating links to bug views from bug counts (eg. on the main
# page and the summary page).
# $g_bug_count_hyperlink_prefix = 'view_all_set.php?type=1'; # permanently change the filter
$g_bug_count_hyperlink_prefix = 'view_all_set.php?type=1&temporary=y'; # only change the filter this time
# The regular expression to use when validating new user login names
# The default regular expression allows a-z, A-z, 0-9, as well as space and
# underscore. If you change this, you may want to update the
# ERROR_USER_NAME_INVALID string in the language files to explain
# the rules you are using on your site
$g_user_login_valid_regex = '/^[\w \-]+$/';
# Default user name prefix used to filter the list of users in
# manage_user_page.php. Change this to 'A' (or any other
# letter) if you have a lot of users in the system and loading
# the manage users page takes a long time.
$g_default_manage_user_prefix = 'ALL';
# --- CSV Export ---------------
# Set the csv separator
$g_csv_separator = ',';
# threshold for users to view the system configurations
$g_view_configuration_threshold = DEVELOPER;
# threshold for users to set the system configurations generically via Mantis web interface.
# WARNING: Users who have access to set configuration via the interface MUST be trusted. This is due
# to the fact that such users can set configurations to PHP code and hence there can be a security
# risk if such users are not trusted.
$g_set_configuration_threshold = ADMINISTRATOR;
################################
# Mantis Look and Feel Variables
################################
# --- status color codes ----------
#
$g_status_colors = array( 'new' => '#ffa0a0', # red,
'feedback' => '#ff50a8', # purple
'acknowledged' => '#ffd850', # orange
'confirmed' => '#ffffb0', # yellow
'assigned' => '#c8c8ff', # blue
'resolved' => '#cceedd', # buish-green
'closed' => '#e8e8e8'); # light gray
# The padding level when displaying project ids
# The bug id will be padded with 0's up to the size given
$g_display_project_padding = 3;
# The padding level when displaying bug ids
# The bug id will be padded with 0's up to the size given
$g_display_bug_padding = 7;
# The padding level when displaying bugnote ids
# The bugnote id will be padded with 0's up to the size given
$g_display_bugnote_padding = 7;
# colours for configuration display
$g_colour_project = 'LightGreen';
$g_colour_global = 'LightBlue';
###############################
# Mantis Cookie Variables
###############################
# --- cookie path ---------------
# set this to something more restrictive if needed
# http://www.php.net/manual/en/function.setcookie.php
$g_cookie_path = '/';
$g_cookie_domain = '';
# cookie version for view_all_page
$g_cookie_version = 'v8';
# --- cookie prefix ---------------
# set this to a unique identifier. No spaces.
$g_cookie_prefix = 'MANTIS';
# --- cookie names ----------------
$g_string_cookie = '%cookie_prefix%_STRING_COOKIE';
$g_project_cookie = '%cookie_prefix%_PROJECT_COOKIE';
$g_view_all_cookie = '%cookie_prefix%_VIEW_ALL_COOKIE';
$g_manage_cookie = '%cookie_prefix%_MANAGE_COOKIE';
$g_logout_cookie = '%cookie_prefix%_LOGOUT_COOKIE';
$g_bug_list_cookie = '%cookie_prefix%_BUG_LIST_COOKIE';
#######################################
# Mantis Filter Variables
#######################################
$g_filter_by_custom_fields = ON;
$g_filter_custom_fields_per_row = 8;
$g_view_filters = SIMPLE_DEFAULT;
# This switch enables the use of xmlhttprequest protocol to speed up the filter display.
# Rather than launching a separate page, the filters are updated in-line in the
# view_all_bugs_page.
$g_dhtml_filters = ON;
# The service to use to create a short URL. The %s will be replaced by the long URL.
$g_create_short_url = 'http://tinyurl.com/create.php?url=%s';
#######################################
# Mantis Database Table Variables
#######################################
# --- table prefix ----------------
$g_db_table_prefix = 'mantis';
$g_db_table_suffix = '_table';
# --- table names -----------------
$g_mantis_bug_file_table = '%db_table_prefix%_bug_file%db_table_suffix%';
$g_mantis_bug_history_table = '%db_table_prefix%_bug_history%db_table_suffix%';
$g_mantis_bug_monitor_table = '%db_table_prefix%_bug_monitor%db_table_suffix%';
$g_mantis_bug_relationship_table = '%db_table_prefix%_bug_relationship%db_table_suffix%';
$g_mantis_bug_table = '%db_table_prefix%_bug%db_table_suffix%';
$g_mantis_bug_tag_table = '%db_table_prefix%_bug_tag%db_table_suffix%';
$g_mantis_bug_text_table = '%db_table_prefix%_bug_text%db_table_suffix%';
$g_mantis_bugnote_table = '%db_table_prefix%_bugnote%db_table_suffix%';
$g_mantis_bugnote_text_table = '%db_table_prefix%_bugnote_text%db_table_suffix%';
$g_mantis_news_table = '%db_table_prefix%_news%db_table_suffix%';
$g_mantis_project_category_table = '%db_table_prefix%_project_category%db_table_suffix%';
$g_mantis_project_file_table = '%db_table_prefix%_project_file%db_table_suffix%';
$g_mantis_project_table = '%db_table_prefix%_project%db_table_suffix%';
$g_mantis_project_user_list_table = '%db_table_prefix%_project_user_list%db_table_suffix%';
$g_mantis_project_version_table = '%db_table_prefix%_project_version%db_table_suffix%';
$g_mantis_tag_table = '%db_table_prefix%_tag%db_table_suffix%';
$g_mantis_user_table = '%db_table_prefix%_user%db_table_suffix%';
$g_mantis_user_profile_table = '%db_table_prefix%_user_profile%db_table_suffix%';
$g_mantis_user_pref_table = '%db_table_prefix%_user_pref%db_table_suffix%';
$g_mantis_user_print_pref_table = '%db_table_prefix%_user_print_pref%db_table_suffix%';
$g_mantis_custom_field_project_table = '%db_table_prefix%_custom_field_project%db_table_suffix%';
$g_mantis_custom_field_table = '%db_table_prefix%_custom_field%db_table_suffix%';
$g_mantis_custom_field_string_table = '%db_table_prefix%_custom_field_string%db_table_suffix%';
$g_mantis_upgrade_table = '%db_table_prefix%_upgrade%db_table_suffix%';
$g_mantis_filters_table = '%db_table_prefix%_filters%db_table_suffix%';
$g_mantis_sponsorship_table = '%db_table_prefix%_sponsorship%db_table_suffix%';
$g_mantis_tokens_table = '%db_table_prefix%_tokens%db_table_suffix%';
$g_mantis_project_hierarchy_table = '%db_table_prefix%_project_hierarchy%db_table_suffix%';
$g_mantis_config_table = '%db_table_prefix%_config%db_table_suffix%';
$g_mantis_database_table = '%db_table_prefix%_database%db_table_suffix%';
$g_mantis_email_table = '%db_table_prefix%_email%db_table_suffix%';
###########################
# Mantis Enum Strings
###########################
# --- enum strings ----------------
# status from $g_status_index-1 to 79 are used for the onboard customization (if enabled)
# directly use Mantis to edit them.
$g_access_levels_enum_string = '10:viewer,25:reporter,40:updater,55:developer,70:manager,90:administrator';
$g_project_status_enum_string = '10:development,30:release,50:stable,70:obsolete';
$g_project_view_state_enum_string = '10:public,50:private';
$g_view_state_enum_string = '10:public,50:private';
$g_priority_enum_string = '10:none,20:low,30:normal,40:high,50:urgent,60:immediate';
$g_severity_enum_string = '10:feature,20:trivial,30:text,40:tweak,50:minor,60:major,70:crash,80:block';
$g_reproducibility_enum_string = '10:always,30:sometimes,50:random,70:have not tried,90:unable to duplicate,100:N/A';
$g_status_enum_string = '10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,80:resolved,90:closed';
# @@@ for documentation, the values in this list are also used to define variables in the language files
# (e.g., $s_new_bug_title referenced in bug_change_status_page.php )
# Embedded spaces are converted to underscores (e.g., "working on" references $s_working_on_bug_title).
# they are also expected to be english names for the states
$g_resolution_enum_string = '10:open,20:fixed,30:reopened,40:unable to duplicate,50:not fixable,60:duplicate,70:not a bug,80:suspended,90:wont fix';
$g_projection_enum_string = '10:none,30:tweak,50:minor fix,70:major rework,90:redesign';
$g_eta_enum_string = '10:none,20:< 1 day,30:2-3 days,40:< 1 week,50:< 1 month,60:> 1 month';
$g_sponsorship_enum_string = '0:Unpaid,1:Requested,2:Paid';
$g_custom_field_type_enum_string = '0:string,1:numeric,2:float,3:enum,4:email,5:checkbox,6:list,7:multiselection list,8:date';
#############################
# Mantis Javascript Variables
#############################
# allow the use of Javascript?
$g_use_javascript = ON;
###########################
# Mantis Speed Optimisation
###########################
# Use compression of generated html if browser supports it
# If you already have compression enabled in your php.ini file
# (either with zlib.output_compression or
# output_handler=ob_gzhandler) this option will be ignored.
#
# If you do not have zlib enabled in your PHP installation
# this option will also be ignored. PHP 4.3.0 and later have
# zlib included by default. Windows users should uncomment
# the appropriate line in their php.ini files to load
# the zlib DLL. You can check what extensions are loaded
# by running "php -m" at the command line (look for 'zlib')
$g_compress_html = ON;
# Use persistent database connections
$g_use_persistent_connections = OFF;
###########################
# Include files
###########################
# Specify your top/bottom include file (logos, banners, etc)
# if a top file is supplied, the default Mantis logo at the top will be hidden
$g_bottom_include_page = '%absolute_path%';
$g_top_include_page = '%absolute_path%';
# CSS file
$g_css_include_file = '%path%css/default.css';
# meta tags
$g_meta_include_file = '%absolute_path%meta_inc.php';
###########################
# Redirections
###########################
# Specify where the user should be sent after logging out.
$g_logout_redirect_page = '%path%login_page.php';
###########################
# Headers
###########################
# An array of headers to be sent with each page.
# For example, to allow your mantis installation to be viewed in a frame in IE 6
# when the frameset is not at the same hostname as the mantis install, you need
# to add a P3P header. You could try something like 'P3P: CP="CUR ADM"' in your
# config file, but make sure to check that the your policy actually matches with
# what you are promising. See
# http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnpriv/html/ie6privacyfeature.asp
# for more information.
$g_custom_headers = array();
#$g_custom_headers[] = 'P3P: CP="CUR ADM"';
# Browser Caching Control
# By default, we try to prevent the browser from caching anything. These two settings
# will defeat this for some cases.
#
# Browser Page caching - This will allow the browser to cache all pages. The upside will
# be better performance, but there may be cases where obsolete information is displayed.
# Note that this will be bypassed (and caching is allowed) for the bug report pages.
# $g_allow_browser_cache = ON;
#
# File caching - This will allow the browser to cache downloaded files. Without this set,
# there may be issues with IE receiving files, and launching support programs.
# $g_allow_file_cache = ON;
###########################
# Debugging
###########################
# --- Timer ----------------------
# Time page loads. Shows at the bottom of the page.
$g_show_timer = OFF;
# used for development only. Leave OFF
$g_debug_timer = OFF;
# Used for debugging e-mail feature, when set to OFF the emails work as normal.
# when set to e-mail address, all e-mails are sent to this address with the
# original To, Cc, Bcc included in the message body.
$g_debug_email = OFF;
# --- Queries --------------------
# Shows the total number/unique number of queries executed to serve the page.
$g_show_queries_count = ON;
# Indicates the access level required for a user to see the queries count / list.
# This only has an effect if $g_show_queries_count is ON. Note that this threshold
# is compared against the user's default global access level rather than the
# threshold based on the current active project.
$g_show_queries_threshold = ADMINISTRATOR;
# Shows the list of all queries that are executed in chronological order from top
# to bottom. This option is only effective when $g_show_queries_count is ON.
# WARNING: Potential security hazard. Only turn this on when you really
# need it (for debugging/profiling)
$g_show_queries_list = OFF;
# --- detailed error messages -----
# Shows a list of variables and their values when an error is triggered
# Only applies to error types configured to 'halt' in $g_display_errors, below
# WARNING: Potential security hazard. Only turn this on when you really
# need it for debugging
$g_show_detailed_errors = OFF;
# --- error display ---
# what errors are displayed and how?
# The options for display are:
# 'halt' - stop and display traceback
# 'inline' - display 1 line error and continue
# 'none' - no error displayed
# A developer might set this in config_inc.php as:
# $g_display_errors = array(
# E_WARNING => 'halt',
# E_NOTICE => 'halt',
# E_USER_ERROR => 'halt',
# E_USER_WARNING => 'none',
# E_USER_NOTICE => 'none'
# );
$g_display_errors = array(
E_WARNING => 'inline',
E_NOTICE => 'none',
E_USER_ERROR => 'halt',
E_USER_WARNING => 'inline',
E_USER_NOTICE => 'none'
);
# --- debug messages ---
# If this option is turned OFF (default) page redirects will continue to
# function even if a non-fatal error occurs. For debugging purposes, you
# can set this to ON so that any non-fatal error will prevent page redirection,
# allowing you to see the errors.
# Only turn this option on for debugging
$g_stop_on_errors = OFF;
# --- system logging ---
# This controls the logging of information to a separate file for debug or audit
# $g_log_level controls what information is logged
# see constant_inc.php for details on the log channels available
# e.g., $g_log_level = LOG_EMAIL | LOG_EMAIL_RECIPIENT | LOG_FILTERING | LOG_AJAX;
#
# $g_log_destination specifies the file where the data goes
# right now, only "file:<file path>" is supported
# e.g. (Linux), $g_log_destination = 'file:/tmp/mantis.log';
# e.g. (Windows), $g_log_destination = 'file:c:/temp/mantis.log';
# see http://www.php.net/error_log for details
$g_log_level = LOG_NONE;
$g_log_destination = '';
##################
# Custom Fields
##################
# Threshold needed to manage custom fields
$g_manage_custom_fields_threshold = ADMINISTRATOR;
# Threshold needed to link/unlink custom field to/from a project
$g_custom_field_link_threshold = MANAGER;
# Whether to start editng a custom field immediately after creating it
$g_custom_field_edit_after_create = ON;
#################
# Custom Menus
#################
# Add custom options to the main menu. For example:
# $g_main_menu_custom_options = array( array( "My Link", MANAGER, 'my_link.php' ),
# array( "My Link2", ADMINISTRATOR, 'my_link2.php' ) );
# Note that if the caption is found in custom_strings_inc.php, then it will be replaced by the
# translated string. Options will only be added to the menu if the current logged in user has
# the appropriate access level.
$g_main_menu_custom_options = array ();
##########
# Icons
##########
# Maps a file extension to a file type icon. These icons are printed
# next to project documents and bug attachments.
# Note:
# - Extensions must be in lower case
# - All icons will be displayed as 16x16 pixels.
$g_file_type_icons = array(
'7z' => 'zip.gif',
'ace' => 'zip.gif',
'arj' => 'zip.gif',
'bz2' => 'zip.gif',
'c' => 'cpp.gif',
'chm' => 'chm.gif',
'cpp' => 'cpp.gif',
'css' => 'css.gif',
'csv' => 'csv.gif',
'cxx' => 'cpp.gif',
'doc' => 'doc.gif',
'dot' => 'doc.gif',
'eml' => 'eml.gif',
'htm' => 'html.gif',
'html' => 'html.gif',
'gif' => 'gif.gif',
'gz' => 'zip.gif',
'jpe' => 'jpg.gif',
'jpg' => 'jpg.gif',
'jpeg' => 'jpg.gif',
'log' => 'text.gif',
'lzh' => 'zip.gif',
'mhtml' => 'html.gif',
'mid' => 'mid.gif',
'midi' => 'mid.gif',
'mov' => 'mov.gif',
'msg' => 'eml.gif',
'one' => 'one.gif',
'pcx' => 'pcx.gif',
'pdf' => 'pdf.gif',
'png' => 'png.gif',
'pot' => 'pot.gif',
'pps' => 'pps.gif',
'ppt' => 'ppt.gif',
'pub' => 'pub.gif',
'rar' => 'zip.gif',
'reg' => 'reg.gif',
'rtf' => 'doc.gif',
'tar' => 'zip.gif',
'tgz' => 'zip.gif',
'txt' => 'text.gif',
'uc2' => 'zip.gif',
'vsd' => 'vsd.gif',
'vsl' => 'vsl.gif',
'vss' => 'vsd.gif',
'vst' => 'vst.gif',
'vsu' => 'vsd.gif',
'vsw' => 'vsd.gif',
'vsx' => 'vsd.gif',
'vtx' => 'vst.gif',
'wav' => 'wav.gif',
'wbk' => 'wbk.gif',
'wma' => 'wav.gif',
'wmv' => 'mov.gif',
'wri' => 'wri.gif',
'xlk' => 'xls.gif',
'xls' => 'xls.gif',
'xlt' => 'xlt.gif',
'xml' => 'xml.gif',
'zip' => 'zip.gif',
'?' => 'generic.gif' );
# Icon associative arrays
# Status to icon mapping
$g_status_icon_arr = array (
NONE => '',
LOW => 'priority_low_1.gif',
NORMAL => '',
HIGH => 'priority_1.gif',
URGENT => 'priority_2.gif',
IMMEDIATE => 'priority_3.gif'
);
# --------------------
# Sort direction to icon mapping
$g_sort_icon_arr = array (
ASCENDING => 'up.gif',
DESCENDING => 'down.gif'
);
# --------------------
# Read status to icon mapping
$g_unread_icon_arr = array (
READ => 'mantis_space.gif',
UNREAD => 'unread.gif'
);
# --------------------
##################
# My View Settings
##################
# Number of bugs shown in each box
$g_my_view_bug_count = 10;
# Boxes to be shown and their order
# A box that is not to be shown can have its value set to 0
$g_my_view_boxes = array (
'assigned' => '1',
'unassigned' => '2',
'reported' => '3',
'resolved' => '4',
'recent_mod' => '5',
'monitored' => '6',
'feedback' => '0',
'verify' => '0'
);
# Toggle whether 'My View' boxes are shown in a fixed position (i.e. adjacent boxes start at the same vertical position)
$g_my_view_boxes_fixed_position = ON;
# Default page after Login or Set Project
$g_default_home_page = 'my_view_page.php';
######################
# RSS Feeds
######################
# This flag enables or disables RSS syndication. In the case where RSS syndication is not used,
# it is recommended to set it to OFF.
$g_rss_enabled = ON;
# This seed is used as part of the inputs for calculating the authentication key for the RSS feeds.
# If this seed changes, all the existing keys for the RSS feeds will become invalid. This is
# defaulted to the database user name, but it is recommended to overwrite it with a specific value
# on installation.
$g_rss_key_seed = '%db_username%';
######################
# Bug Relationships
######################
# Enable support for bug relationships where a bug can be a related, dependent on, or duplicate of another.
# See relationship_api.php for more details.
$g_enable_relationship = ON;
# --- Relationship Graphs -----------
# Show issue relationships using graphs.
#
# In order to use this feature, you must first install either GraphViz
# (all OSs except Windows) or WinGraphviz (only Windows).
#
# Graphviz homepage: http://www.research.att.com/sw/tools/graphviz/
# WinGraphviz homepage: http://home.so-net.net.tw/oodtsen/wingraphviz/
#
# Refer to the notes near the top of core/graphviz_api.php and
# core/relationship_graph_api.php for more information.
# Enable relationship graphs support.
$g_relationship_graph_enable = OFF;
# Font name and size, as required by Graphviz. If Graphviz fails to run
# for you, you are probably using a font name that gd can't find. On
# Linux, try the name of the font file without the extension.
$g_relationship_graph_fontname = 'Arial';
$g_relationship_graph_fontsize = 8;
# Local path where the above font is found on your system for Relationship Graphs
# You shouldn't care about this on Windows since there is only one system
# folder where fonts are installed and Graphviz already knows where it
# is. On Linux and other unices, the default font search path is defined
# during Graphviz compilation. If you are using a pre-compiled Graphviz
# package provided by your distribution, probably the font search path was
# already configured by the packager.
#
# If for any reason, the font file you want to use is not in any directory
# listed on the default font search path list, you can either: (1) export
# the DOTFONTPATH environment variable in your webserver startup script
# or (2) use this config option conveniently available here. If you need
# to list more than one directory, use colons to separate them.
# Since 0.19.3 we use the $g_system_font_folder variable to define the font folder
# Default dependency orientation. If you have issues with lots of childs
# or parents, leave as 'horizontal', otherwise, if you have lots of
# "chained" issue dependencies, change to 'vertical'.
$g_relationship_graph_orientation = 'horizontal';
# Max depth for relation graphs. This only affects relation graphs,
# dependency graphs are drawn to the full depth. A value of 3 is already
# enough to show issues really unrelated to the one you are currently
# viewing.
$g_relationship_graph_max_depth = 2;
# If set to ON, clicking on an issue on the relationship graph will open
# the bug view page for that issue, otherwise, will navigate to the
# relationship graph for that issue.
$g_relationship_graph_view_on_click = OFF;
# Complete path to dot and neato tools. Your webserver must have execute
# permission to these programs in order to generate relationship graphs.
# NOTE: These are meaningless under Windows! Just ignore them!
$g_dot_tool = '/usr/bin/dot';
$g_neato_tool = '/usr/bin/neato';
# Number of years in the future that custom date fields will display in
# drop down boxes.
$g_forward_year_count = 4 ;
# Custom Group Actions
#
# This extensibility model allows developing new group custom actions. This
# can be implemented with a totally custom form and action pages or with a
# pre-implemented form and action page and call-outs to some functions. These
# functions are to be implemented in a predefined file whose name is based on
# the action name. For example, for an action to add a note, the action would
# be EXT_ADD_NOTE and the file implementing it would be bug_actiongroup_add_note_inc.php.
# See implementation of this file for details.
#
# Sample:
#
# array(
# array( 'action' => 'my_custom_action',
# 'label' => 'my_label', // string to be passed to lang_get_defaulted()
# 'form_page' => 'my_custom_action_page.php',
# 'action_page' => 'my_custom_action.php'
# )
# array( 'action' => 'my_custom_action2',
# 'form_page' => 'my_custom_action2_page.php',
# 'action_page' => 'my_custom_action2.php'
# )
# array( 'action' => 'EXT_ADD_NOTE', // you need to implement bug_actiongroup_<action_without_'EXT_')_inc.php
# 'label' => 'actiongroup_menu_add_note' // see strings_english.txt for this label
# )
# );
$g_custom_group_actions = array();
#####################
# Wiki Integration
#####################
# Wiki Integration Enabled?
$g_wiki_enable = OFF;
# Wiki Engine (supported engines: 'dokuwiki', 'mediawiki', 'xwiki')
$g_wiki_engine = 'dokuwiki';
# Wiki namespace to be used as root for all pages relating to this mantis installation.
$g_wiki_root_namespace = 'mantis';
# URL under which the wiki engine is hosted. Must be on the same server.
$g_wiki_engine_url = $t_protocol . '://' . $t_host . '/%wiki_engine%/';
#####################
# Recently Visited
#####################
# Whether to show the most recently visited issues or not. At the moment we always track them even if this flag is off.
$g_recently_visited = ON;
# The maximum number of issues to keep in the recently visited list.
$g_recently_visited_count = 5;
#####################
# Bug Tagging
#####################
# String that will separate tags as entered for input
$g_tag_separator = ',';
# Access level required to view tags attached to a bug
$g_tag_view_threshold = VIEWER;
# Access level required to attach tags to a bug
$g_tag_attach_threshold = REPORTER;
# Access level required to detach tags from a bug
$g_tag_detach_threshold = DEVELOPER;
# Access level required to detach tags attached by the same user
$g_tag_detach_own_threshold = REPORTER;
# Access level required to create new tags
$g_tag_create_threshold = REPORTER;
# Access level required to edit tag names and descriptions
$g_tag_edit_threshold = DEVELOPER;
# Access level required to edit descriptions by the creating user
$g_tag_edit_own_threshold = REPORTER;
#####################
# Time tracking
#####################
# Turn on Time Tracking accounting
$g_time_tracking_enabled = OFF;
# A billing sums
$g_time_tracking_with_billing = OFF;
# Stop watch to build time tracking field
$g_time_tracking_stopwatch = OFF;
# access level required to view time tracking information
$g_time_tracking_view_threshold = DEVELOPER;
# access level required to add/edit time tracking information
$g_time_tracking_edit_threshold = DEVELOPER;
# access level required to run reports
$g_time_tracking_reporting_threshold = MANAGER;
#allow time tracking to be recorded without a bugnote
$g_time_tracking_without_note = ON;
#############################
# Profile Related Settings
#############################
# Add profile threshold
$g_add_profile_threshold = REPORTER;
# Threshold needed to be able to create and modify global profiles
$g_manage_global_profile_threshold = MANAGER;
# Allows the users to enter free text when reporting/updating issues
# for the profile related fields (i.e. platform, os, os build)
$g_allow_freetext_in_profile_fields = ON;
#############################
# Twitter Settings
#############################
# The integration with twitter allows for a Mantis installation to post
# updates to a twitter account. This feature will be disabled if username
# is empty or if the curl extension is not enabled.
# The twitter account user name.
$g_twitter_username = '';
# The twitter account password.
$g_twitter_password = '';
?>
filter_api.php (153,445 bytes)
<?php
# Mantis - a php based bugtracking system
# Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
# Copyright (C) 2002 - 2007 Mantis Team - mantisbt-dev@lists.sourceforge.net
# Mantis is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# Mantis is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Mantis. If not, see <http://www.gnu.org/licenses/>.
# --------------------------------------------------------
# $Id: filter_api.php,v 1.163.2.1 2007-10-13 22:35:27 giallu Exp $
# --------------------------------------------------------
$t_core_dir = dirname( __FILE__ ).DIRECTORY_SEPARATOR;
require_once( $t_core_dir . 'current_user_api.php' );
require_once( $t_core_dir . 'user_api.php' );
require_once( $t_core_dir . 'bug_api.php' );
require_once( $t_core_dir . 'collapse_api.php' );
require_once( $t_core_dir . 'relationship_api.php' );
require_once( $t_core_dir . 'tag_api.php' );
###########################################################################
# Filter Property Names
###########################################################################
define( 'FILTER_PROPERTY_FREE_TEXT', 'search' );
define( 'FILTER_PROPERTY_CATEGORY', 'show_category' );
define( 'FILTER_PROPERTY_SEVERITY_ID', 'show_severity' );
define( 'FILTER_PROPERTY_STATUS_ID', 'show_status' );
define( 'FILTER_PROPERTY_PRIORITY_ID', 'show_priority' );
define( 'FILTER_PROPERTY_HIGHLIGHT_CHANGED', 'highlight_changed' );
define( 'FILTER_PROPERTY_REPORTER_ID', 'reporter_id' );
define( 'FILTER_PROPERTY_HANDLER_ID', 'handler_id' );
define( 'FILTER_PROPERTY_PROJECT_ID', 'project_id' );
define( 'FILTER_PROPERTY_RESOLUTION_ID', 'show_resolution' );
define( 'FILTER_PROPERTY_PRODUCT_BUILD', 'show_build' );
define( 'FILTER_PROPERTY_PRODUCT_VERSION', 'show_version' );
define( 'FILTER_PROPERTY_MONITOR_USER_ID', 'user_monitor' );
define( 'FILTER_PROPERTY_HIDE_STATUS_ID', 'hide_status' );
define( 'FILTER_PROPERTY_SORT_FIELD_NAME', 'sort' );
define( 'FILTER_PROPERTY_SORT_DIRECTION', 'dir' );
define( 'FILTER_PROPERTY_SHOW_STICKY_ISSUES', 'sticky_issues' );
define( 'FILTER_PROPERTY_VIEW_STATE_ID', 'view_state' );
define( 'FILTER_PROPERTY_FIXED_IN_VERSION', 'fixed_in_version' );
define( 'FILTER_PROPERTY_TARGET_VERSION', 'target_version' );
define( 'FILTER_PROPERTY_ISSUES_PER_PAGE', 'per_page' );
define( 'FILTER_PROPERTY_PROFILE', 'profile_id' );
define( 'FILTER_PROPERTY_PLATFORM', 'platform' );
define( 'FILTER_PROPERTY_OS', 'os' );
define( 'FILTER_PROPERTY_OS_BUILD', 'os_build' );
define( 'FILTER_PROPERTY_START_DAY', 'start_day' );
define( 'FILTER_PROPERTY_START_MONTH', 'start_month' );
define( 'FILTER_PROPERTY_START_YEAR', 'start_year' );
define( 'FILTER_PROPERTY_END_DAY', 'end_day' );
define( 'FILTER_PROPERTY_END_MONTH', 'end_month' );
define( 'FILTER_PROPERTY_END_YEAR', 'end_year' );
define( 'FILTER_PROPERTY_NOT_ASSIGNED', 'and_not_assigned' );
define( 'FILTER_PROPERTY_FILTER_BY_DATE', 'do_filter_by_date' );
define( 'FILTER_PROPERTY_RELATIONSHIP_TYPE', 'relationship_type' );
define( 'FILTER_PROPERTY_RELATIONSHIP_BUG', 'relationship_bug' );
define( 'FILTER_PROPERTY_TAG_STRING', 'tag_string' );
define( 'FILTER_PROPERTY_TAG_SELECT', 'tag_select' );
###########################################################################
# Filter Query Parameter Names
###########################################################################
define( 'FILTER_SEARCH_FREE_TEXT', 'search' );
define( 'FILTER_SEARCH_CATEGORY', 'category' );
define( 'FILTER_SEARCH_SEVERITY_ID', 'severity_id');
define( 'FILTER_SEARCH_STATUS_ID', 'status_id' );
define( 'FILTER_SEARCH_REPORTER_ID', 'reporter_id' );
define( 'FILTER_SEARCH_HANDLER_ID', 'handler_id' );
define( 'FILTER_SEARCH_PROJECT_ID', 'project_id' );
define( 'FILTER_SEARCH_RESOLUTION_ID', 'resolution_id' );
define( 'FILTER_SEARCH_FIXED_IN_VERSION', 'fixed_in_version' );
define( 'FILTER_SEARCH_TARGET_VERSION', 'target_version' );
define( 'FILTER_SEARCH_START_DAY', 'start_day' );
define( 'FILTER_SEARCH_START_MONTH', 'start_month' );
define( 'FILTER_SEARCH_START_YEAR', 'start_year' );
define( 'FILTER_SEARCH_END_DAY', 'end_day' );
define( 'FILTER_SEARCH_END_MONTH', 'end_month' );
define( 'FILTER_SEARCH_END_YEAR', 'end_year' );
define( 'FILTER_SEARCH_PRIORITY_ID', 'priority_id' );
define( 'FILTER_SEARCH_PROFILE', 'profile_id' );
define( 'FILTER_SEARCH_PLATFORM', 'platform' );
define( 'FILTER_SEARCH_OS', 'os' );
define( 'FILTER_SEARCH_OS_BUILD', 'os_build' );
define( 'FILTER_SEARCH_MONITOR_USER_ID', 'monitor_user_id' );
define( 'FILTER_SEARCH_PRODUCT_BUILD', 'product_build' );
define( 'FILTER_SEARCH_PRODUCT_VERSION', 'product_version' );
define( 'FILTER_SEARCH_VIEW_STATE_ID', 'view_state_id' );
define( 'FILTER_SEARCH_SHOW_STICKY_ISSUES', 'sticky_issues' );
define( 'FILTER_SEARCH_SORT_FIELD_NAME', 'sortby' );
define( 'FILTER_SEARCH_SORT_DIRECTION', 'dir' );
define( 'FILTER_SEARCH_ISSUES_PER_PAGE', 'per_page' );
define( 'FILTER_SEARCH_HIGHLIGHT_CHANGED', 'highlight_changed' );
define( 'FILTER_SEARCH_HIDE_STATUS_ID', 'hide_status_id' );
define( 'FILTER_SEARCH_NOT_ASSIGNED', 'not_assigned' );
define( 'FILTER_SEARCH_FILTER_BY_DATE', 'filter_by_date' );
define( 'FILTER_SEARCH_RELATIONSHIP_TYPE', 'relationship_type' );
define( 'FILTER_SEARCH_RELATIONSHIP_BUG', 'relationship_bug' );
define( 'FILTER_SEARCH_TAG_STRING', 'tag_string' );
define( 'FILTER_SEARCH_TAG_SELECT', 'tag_select' );
# Checks the supplied value to see if it is an ANY value.
# $p_field_value - The value to check.
# Returns true for "ANY" values and false for others. "ANY" means filter criteria not active.
function filter_str_field_is_any( $p_field_value ) {
if ( is_array( $p_field_value ) ) {
if ( count( $p_field_value ) == 0 ) {
return true;
}
foreach( $p_field_value as $t_value ) {
if ( ( META_FILTER_ANY == $t_value ) && ( is_numeric( $t_value ) ) ) {
return true;
}
}
} else {
if ( is_string( $p_field_value ) && is_blank( $p_field_value ) ) {
return true;
}
if ( is_bool( $p_field_value ) && !$p_field_value ) {
return true;
}
if ( ( META_FILTER_ANY == $p_field_value ) && ( is_numeric( $p_field_value ) ) ) {
return true;
}
}
return false;
}
# Encodes a field and it's value for the filter URL. This handles the URL encoding
# and arrays.
# $p_field_name - The field name.
# $p_field_value - The field value (can be an array)
function filter_encode_field_and_value( $p_field_name, $p_field_value ) {
$t_query_array = array();
if ( is_array( $p_field_value ) ) {
$t_count = count( $p_field_value );
if ( $t_count > 1 ) {
foreach ( $p_field_value as $t_value ) {
$t_query_array[] = urlencode( $p_field_name . '[]' ) . '=' . urlencode( $t_value );
}
} else if ( $t_count == 1 ) {
$t_query_array[] = urlencode( $p_field_name ) . '=' . urlencode( $p_field_value[0] );
}
} else {
$t_query_array[] = urlencode( $p_field_name ) . '=' . urlencode( $p_field_value );
}
return implode( $t_query_array, '&' );
}
# Get a permalink for the current active filter. The results of using these fields by other users
# can be inconsistent with the original results due to fields like "Myself", "Current Project",
# and due to access level.
# Returns the search.php?xxxx or an empty string if no criteria applied.
function filter_get_url( $p_custom_filter ) {
$t_query = array();
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_PROJECT_ID] ) ) {
$t_project_id = $p_custom_filter[FILTER_PROPERTY_PROJECT_ID];
if ( count( $t_project_id ) == 1 && $t_project_id[0] == META_FILTER_CURRENT ) {
$t_project_id = array( helper_get_current_project() );
}
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_PROJECT_ID, $t_project_id );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_FREE_TEXT] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_FREE_TEXT, $p_custom_filter[FILTER_PROPERTY_FREE_TEXT] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_CATEGORY] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_CATEGORY, $p_custom_filter[FILTER_PROPERTY_CATEGORY] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_REPORTER_ID] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_REPORTER_ID, $p_custom_filter[FILTER_PROPERTY_REPORTER_ID] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_STATUS_ID] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_STATUS_ID, $p_custom_filter[FILTER_PROPERTY_STATUS_ID] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_MONITOR_USER_ID] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_MONITOR_USER_ID, $p_custom_filter[FILTER_PROPERTY_MONITOR_USER_ID] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_HANDLER_ID] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_HANDLER_ID, $p_custom_filter[FILTER_PROPERTY_HANDLER_ID] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_SEVERITY_ID] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_SEVERITY_ID, $p_custom_filter[FILTER_PROPERTY_SEVERITY_ID] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_RESOLUTION_ID] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_RESOLUTION_ID, $p_custom_filter[FILTER_PROPERTY_RESOLUTION_ID] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_PRIORITY_ID] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_PRIORITY_ID, $p_custom_filter[FILTER_PROPERTY_PRIORITY_ID] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_VIEW_STATE_ID] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_VIEW_STATE_ID, $p_custom_filter[FILTER_PROPERTY_VIEW_STATE_ID] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_SHOW_STICKY_ISSUES] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_SHOW_STICKY_ISSUES, $p_custom_filter[FILTER_PROPERTY_SHOW_STICKY_ISSUES] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_PRODUCT_VERSION] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_PRODUCT_VERSION, $p_custom_filter[FILTER_PROPERTY_PRODUCT_VERSION] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_PRODUCT_BUILD] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_PRODUCT_BUILD, $p_custom_filter[FILTER_PROPERTY_PRODUCT_BUILD] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_FIXED_IN_VERSION] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_FIXED_IN_VERSION, $p_custom_filter[FILTER_PROPERTY_FIXED_IN_VERSION] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_TARGET_VERSION] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_TARGET_VERSION, $p_custom_filter[FILTER_PROPERTY_TARGET_VERSION] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_SORT_FIELD_NAME] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_SORT_FIELD_NAME, $p_custom_filter[FILTER_PROPERTY_SORT_FIELD_NAME] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_SORT_DIRECTION] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_SORT_DIRECTION, $p_custom_filter[FILTER_PROPERTY_SORT_DIRECTION] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_SEARCH_ISSUES_PER_PAGE] ) ) {
if ( $p_custom_filter[FILTER_SEARCH_ISSUES_PER_PAGE] != config_get( 'default_limit_view' ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_PROPERTY_ISSUES_PER_PAGE, $p_custom_filter[FILTER_SEARCH_ISSUES_PER_PAGE] );
}
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_HIGHLIGHT_CHANGED] ) ) {
if ( $p_custom_filter[FILTER_PROPERTY_HIGHLIGHT_CHANGED] != config_get( 'default_show_changed' ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_HIGHLIGHT_CHANGED, $p_custom_filter[FILTER_PROPERTY_HIGHLIGHT_CHANGED] );
}
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_HIDE_STATUS_ID] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_HIDE_STATUS_ID, $p_custom_filter[FILTER_PROPERTY_HIDE_STATUS_ID] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_NOT_ASSIGNED] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_NOT_ASSIGNED, $p_custom_filter[FILTER_PROPERTY_NOT_ASSIGNED] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_FILTER_BY_DATE] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_FILTER_BY_DATE, $p_custom_filter[FILTER_PROPERTY_FILTER_BY_DATE] );
# The start and end dates are only applicable if filter by date is set.
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_START_DAY] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_START_DAY, $p_custom_filter[FILTER_PROPERTY_START_DAY] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_END_DAY] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_END_DAY, $p_custom_filter[FILTER_PROPERTY_END_DAY] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_START_MONTH] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_START_MONTH, $p_custom_filter[FILTER_PROPERTY_START_MONTH] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_END_MONTH] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_END_MONTH, $p_custom_filter[FILTER_PROPERTY_END_MONTH] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_START_YEAR] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_START_YEAR, $p_custom_filter[FILTER_PROPERTY_START_YEAR] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_END_YEAR] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_END_YEAR, $p_custom_filter[FILTER_PROPERTY_END_YEAR] );
}
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_RELATIONSHIP_TYPE] ) ) {
if ( $p_custom_filter[FILTER_PROPERTY_RELATIONSHIP_TYPE] != -1 ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_RELATIONSHIP_TYPE, $p_custom_filter[FILTER_PROPERTY_RELATIONSHIP_TYPE] );
}
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_RELATIONSHIP_BUG] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_RELATIONSHIP_BUG, $p_custom_filter[FILTER_PROPERTY_RELATIONSHIP_BUG] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_PLATFORM] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_PLATFORM, $p_custom_filter[FILTER_PROPERTY_PLATFORM] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_OS] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_OS, $p_custom_filter[FILTER_PROPERTY_OS] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_OS_BUILD] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_OS_BUILD, $p_custom_filter[FILTER_PROPERTY_OS_BUILD] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_TAG_STRING] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_TAG_STRING, $p_custom_filter[FILTER_PROPERTY_TAG_STRING] );
}
if ( !filter_str_field_is_any( $p_custom_filter[FILTER_PROPERTY_TAG_SELECT] ) ) {
$t_query[] = filter_encode_field_and_value( FILTER_SEARCH_TAG_SELECT, $p_custom_filter[FILTER_PROPERTY_TAG_SELECT] );
}
if ( isset( $p_custom_filter['custom_fields'] ) ) {
foreach( $p_custom_filter['custom_fields'] as $t_custom_field_id => $t_custom_field_values ) {
if ( !filter_str_field_is_any( $t_custom_field_values ) ) {
$t_query[] = filter_encode_field_and_value( 'custom_field_' . $t_custom_field_id, $t_custom_field_values );
}
}
}
if ( count( $t_query ) > 0 ) {
$t_query_str = implode( $t_query, '&' );
$t_url = config_get( 'path' ) . 'search.php?' . $t_query_str;
} else {
$t_url = '';
}
return $t_url;
}
###########################################################################
# Filter API
###########################################################################
# Get the standard filter that is to be used when no filter was previously saved.
# When creating specific filters, this can be used as a basis for the filter, where
# specific entries can be overridden.
function filter_get_default() {
$t_hide_status_default = config_get( 'hide_status_default' );
$t_default_show_changed = config_get( 'default_show_changed' );
$t_filter = array(
'show_category' => Array ( '0' => META_FILTER_ANY ),
'show_severity' => Array ( '0' => META_FILTER_ANY ),
'show_status' => Array ( '0' => META_FILTER_ANY ),
'highlight_changed' => $t_default_show_changed,
'reporter_id' => Array ( '0' => META_FILTER_ANY ),
'handler_id' => Array ( '0' => META_FILTER_ANY ),
'project_id' => Array ( '0' => META_FILTER_CURRENT ),
'show_resolution' => Array ( '0' => META_FILTER_ANY ),
'show_build' => Array ( '0' => META_FILTER_ANY ),
'show_version' => Array ( '0' => META_FILTER_ANY ),
'hide_status' => Array ( '0' => $t_hide_status_default ),
'user_monitor' => Array ( '0' => META_FILTER_ANY ),
'sort' => 'last_updated',
'dir' => 'DESC'
);
return filter_ensure_valid_filter( $t_filter );
}
# @@@ Had to make all these parameters required because we can't use
# call-time pass by reference anymore. I really preferred not having
# to pass all the params in if you didn't want to, but I wanted to get
# rid of the errors for now. If we can think of a better way later
# (maybe return an object) that would be great.
#
# $p_page_numer
# - the page you want to see (set to the actual page on return)
# $p_per_page
# - the number of bugs to see per page (set to actual on return)
# -1 indicates you want to see all bugs
# null indicates you want to use the value specified in the filter
# $p_page_count
# - you don't need to give a value here, the number of pages will be
# stored here on return
# $p_bug_count
# - you don't need to give a value here, the number of bugs will be
# stored here on return
# $p_custom_filter
# - Filter to use.
# $p_project_id
# - project id to use in filtering.
# $p_user_id
# - user id to use as current user when filtering.
# $p_show_sticky
# - get sticky issues only.
function filter_get_bug_rows( &$p_page_number, &$p_per_page, &$p_page_count, &$p_bug_count, $p_custom_filter = null, $p_project_id = null, $p_user_id = null, $p_show_sticky = null ) {
log_event( LOG_FILTERING, 'FILTERING: START NEW FILTER QUERY' );
$t_users_table = config_get('mantis_user_table');
$t_bug_table = config_get( 'mantis_bug_table' );
$t_bug_text_table = config_get( 'mantis_bug_text_table' );
$t_bugnote_table = config_get( 'mantis_bugnote_table' );
$t_custom_field_string_table = config_get( 'mantis_custom_field_string_table' );
$t_bugnote_text_table = config_get( 'mantis_bugnote_text_table' );
$t_project_table = config_get( 'mantis_project_table' );
$t_bug_monitor_table = config_get( 'mantis_bug_monitor_table' );
$t_limit_reporters = config_get( 'limit_reporters' );
$t_bug_relationship_table = config_get( 'mantis_bug_relationship_table' );
$t_report_bug_threshold = config_get( 'report_bug_threshold' );
$t_current_user_id = auth_get_current_user_id();
if ( null === $p_user_id ) {
$t_user_id = $t_current_user_id;
} else {
$t_user_id = $p_user_id;
}
$c_user_id = db_prepare_int( $t_user_id );
if ( null === $p_project_id ) {
# @@@ If project_id is not specified, then use the project id(s) in the filter if set, otherwise, use current project.
$t_project_id = helper_get_current_project();
} else {
$t_project_id = $p_project_id;
}
if ( $p_custom_filter === null ) {
# Prefer current_user_get_bug_filter() over user_get_filter() when applicable since it supports
# cookies set by previous version of the code.
if ( $t_user_id == $t_current_user_id ) {
$t_filter = current_user_get_bug_filter();
} else {
$t_filter = user_get_bug_filter( $t_user_id, $t_project_id );
}
} else {
$t_filter = $p_custom_filter;
}
$t_filter = filter_ensure_valid_filter( $t_filter );
if ( false === $t_filter ) {
return false; # signify a need to create a cookie
#@@@ error instead?
}
$t_view_type = $t_filter['_view_type'];
$t_where_clauses = array( "$t_project_table.enabled = 1", "$t_project_table.id = $t_bug_table.project_id" );
$t_select_clauses = array( "$t_bug_table.*,$t_users_table.realname" );
$t_join_clauses = array("inner join $t_users_table on $t_users_table.id=$t_bug_table.reporter_id");
$t_from_clauses = array("$t_users_table");
// normalize the project filtering into an array $t_project_ids
if ( 'simple' == $t_view_type ) {
log_event( LOG_FILTERING, 'FILTERING: Simple Filter' );
$t_project_ids = array( $t_project_id );
$t_include_sub_projects = true;
} else {
log_event( LOG_FILTERING, 'FILTERING: Advanced Filter' );
if ( !is_array( $t_filter['project_id'] ) ) {
$t_project_ids = array( db_prepare_int( $t_filter['project_id'] ) );
} else {
$t_project_ids = array_map( 'db_prepare_int', $t_filter['project_id'] );
}
$t_include_sub_projects = ( ( count( $t_project_ids ) == 1 ) && ( $t_project_ids[0] == META_FILTER_CURRENT ) );
}
log_event( LOG_FILTERING, 'FILTERING: project_ids = ' . implode( ',', $t_project_ids ) );
log_event( LOG_FILTERING, 'FILTERING: include sub-projects = ' . ( $t_include_sub_projects ? '1' : '0' ) );
// if the array has ALL_PROJECTS, then reset the array to only contain ALL_PROJECTS.
// replace META_FILTER_CURRENT with the actualy current project id.
$t_all_projects_found = false;
$t_new_project_ids = array();
foreach ( $t_project_ids as $t_pid ) {
if ( $t_pid == META_FILTER_CURRENT ) {
$t_pid = $t_project_id;
}
if ( $t_pid == ALL_PROJECTS ) {
$t_all_projects_found = true;
log_event( LOG_FILTERING, 'FILTERING: all projects selected' );
break;
}
// filter out inaccessible projects.
if ( !access_has_project_level( VIEWER, $t_pid, $t_user_id ) ) {
continue;
}
$t_new_project_ids[] = $t_pid;
}
$t_projects_query_required = true;
if ( $t_all_projects_found ) {
if ( user_is_administrator( $t_user_id ) ) {
log_event( LOG_FILTERING, 'FILTERING: all projects + administrator, hence no project filter.' );
$t_projects_query_required = false;
} else {
$t_project_ids = user_get_accessible_projects( $t_user_id );
}
} else {
$t_project_ids = $t_new_project_ids;
}
if ( $t_projects_query_required ) {
// expand project ids to include sub-projects
if ( $t_include_sub_projects ) {
$t_top_project_ids = $t_project_ids;
foreach ( $t_top_project_ids as $t_pid ) {
log_event( LOG_FILTERING, 'FILTERING: Getting sub-projects for project id ' . $t_pid );
$t_project_ids = array_merge( $t_project_ids, user_get_all_accessible_subprojects( $t_user_id, $t_pid ) );
}
$t_project_ids = array_unique( $t_project_ids );
}
// if no projects are accessible, then return an empty array.
if ( count( $t_project_ids ) == 0 ) {
log_event( LOG_FILTERING, 'FILTERING: no accessible projects' );
return array();
}
log_event( LOG_FILTERING, 'FILTERING: project_ids after including sub-projects = ' . implode( ',', $t_project_ids ) );
// this array is to be populated with project ids for which we only want to show public issues. This is due to the limited
// access of the current user.
$t_public_only_project_ids = array();
// this array is populated with project ids that the current user has full access to.
$t_private_and_public_project_ids = array();
$t_access_required_to_view_private_bugs = config_get( 'private_bug_threshold' );
foreach ( $t_project_ids as $t_pid ) {
if ( access_has_project_level( $t_access_required_to_view_private_bugs, $t_pid, $t_user_id ) ) {
$t_private_and_public_project_ids[] = $t_pid;
} else {
$t_public_only_project_ids[] = $t_pid;
}
}
log_event( LOG_FILTERING, 'FILTERING: project_ids (with public/private access) = ' . implode( ',', $t_private_and_public_project_ids ) );
log_event( LOG_FILTERING, 'FILTERING: project_ids (with public access) = ' . implode( ',', $t_public_only_project_ids ) );
$t_count_private_and_public_project_ids = count( $t_private_and_public_project_ids );
if ( $t_count_private_and_public_project_ids == 1 ) {
$t_private_and_public_query = "( $t_bug_table.project_id = " . $t_private_and_public_project_ids[0] . " )";
} else if ( $t_count_private_and_public_project_ids > 1 ) {
$t_private_and_public_query = "( $t_bug_table.project_id in (". implode( ', ', $t_private_and_public_project_ids ) . ") )";
} else {
$t_private_and_public_query = null;
}
$t_count_public_only_project_ids = count( $t_public_only_project_ids );
$t_public_view_state_check = "( ( $t_bug_table.view_state = " . VS_PUBLIC . " ) OR ( $t_bug_table.reporter_id = $t_user_id ) )";
if ( $t_count_public_only_project_ids == 1 ) {
$t_public_only_query = "( ( $t_bug_table.project_id = " . $t_public_only_project_ids[0] . " ) AND $t_public_view_state_check )";
} else if ( $t_count_public_only_project_ids > 1 ) {
$t_public_only_query = "( ( $t_bug_table.project_id in (". implode( ', ', $t_public_only_project_ids ) . ") ) AND $t_public_view_state_check )";
} else {
$t_public_only_query = null;
}
// both queries can't be null, so we either have one of them or both.
if ( $t_private_and_public_query === null ) {
$t_project_query = $t_public_only_query;
} else if ( $t_public_only_query === null ) {
$t_project_query = $t_private_and_public_query;
} else {
$t_project_query = "( $t_public_only_query OR $t_private_and_public_query )";
}
log_event( LOG_FILTERING, 'FILTERING: project query = ' . $t_project_query );
array_push( $t_where_clauses, $t_project_query );
}
# view state
$t_view_state = db_prepare_int( $t_filter['view_state'] );
if ( ( $t_filter['view_state'] !== META_FILTER_ANY ) && ( !is_blank( $t_filter['view_state'] ) ) ) {
$t_view_state_query = "($t_bug_table.view_state='$t_view_state')";
log_event( LOG_FILTERING, 'FILTERING: view_state query = ' . $t_view_state_query );
array_push( $t_where_clauses, $t_view_state_query );
} else {
log_event( LOG_FILTERING, 'FILTERING: no view_state query' );
}
# reporter
$t_any_found = false;
foreach( $t_filter['reporter_id'] as $t_filter_member ) {
if ( ( META_FILTER_ANY === $t_filter_member ) || ( 0 === $t_filter_member ) ) {
$t_any_found = true;
}
}
if ( count( $t_filter['reporter_id'] ) == 0 ) {
$t_any_found = true;
}
if ( !$t_any_found ) {
$t_clauses = array();
foreach( $t_filter['reporter_id'] as $t_filter_member ) {
if ( META_FILTER_NONE == $t_filter_member ) {
array_push( $t_clauses, "0" );
} else {
$c_reporter_id = db_prepare_int( $t_filter_member );
if ( META_FILTER_MYSELF == $c_reporter_id ) {
array_push( $t_clauses, $c_user_id );
} else {
array_push( $t_clauses, $c_reporter_id );
}
}
}
if ( 1 < count( $t_clauses ) ) {
$t_reporter_query = "( $t_bug_table.reporter_id in (". implode( ', ', $t_clauses ) .") )";
} else {
$t_reporter_query = "( $t_bug_table.reporter_id=$t_clauses[0] )";
}
log_event( LOG_FILTERING, 'FILTERING: reporter query = ' . $t_reporter_query );
array_push( $t_where_clauses, $t_reporter_query );
} else {
log_event( LOG_FILTERING, 'FILTERING: no reporter query' );
}
# limit reporter
# @@@ thraxisp - access_has_project_level checks greater than or equal to,
# this assumed that there aren't any holes above REPORTER where the limit would apply
#
if ( ( ON === $t_limit_reporters ) && ( ! access_has_project_level( REPORTER + 1, $t_project_id, $t_user_id ) ) ) {
$c_reporter_id = $c_user_id;
array_push( $t_where_clauses, "($t_bug_table.reporter_id='$c_reporter_id')" );
}
# handler
$t_any_found = false;
foreach( $t_filter['handler_id'] as $t_filter_member ) {
if ( ( META_FILTER_ANY === $t_filter_member ) || ( 0 === $t_filter_member ) ) {
$t_any_found = true;
}
}
if ( count( $t_filter['handler_id'] ) == 0 ) {
$t_any_found = true;
}
if ( !$t_any_found ) {
$t_clauses = array();
foreach( $t_filter['handler_id'] as $t_filter_member ) {
if ( META_FILTER_NONE == $t_filter_member ) {
array_push( $t_clauses, 0 );
} else {
$c_handler_id = db_prepare_int( $t_filter_member );
if ( META_FILTER_MYSELF == $c_handler_id ) {
array_push( $t_clauses, $c_user_id );
} else {
array_push( $t_clauses, $c_handler_id );
}
}
}
if ( 1 < count( $t_clauses ) ) {
$t_handler_query = "( $t_bug_table.handler_id in (". implode( ', ', $t_clauses ) .") )";
} else {
$t_handler_query = "( $t_bug_table.handler_id=$t_clauses[0] )";
}
log_event( LOG_FILTERING, 'FILTERING: handler query = ' . $t_handler_query );
array_push( $t_where_clauses, $t_handler_query );
} else {
log_event( LOG_FILTERING, 'FILTERING: no handler query' );
}
# category
if ( !_filter_is_any( $t_filter['show_category'] ) ) {
$t_clauses = array();
foreach( $t_filter['show_category'] as $t_filter_member ) {
$t_filter_member = stripslashes( $t_filter_member );
if ( META_FILTER_NONE == $t_filter_member ) {
array_push( $t_clauses, "''" );
} else {
$c_show_category = db_prepare_string( $t_filter_member );
array_push( $t_clauses, "'$c_show_category'" );
}
}
if ( 1 < count( $t_clauses ) ) {
array_push( $t_where_clauses, "( $t_bug_table.category in (". implode( ', ', $t_clauses ) .") )" );
} else {
array_push( $t_where_clauses, "( $t_bug_table.category=$t_clauses[0] )" );
}
}
# severity
$t_any_found = false;
foreach( $t_filter['show_severity'] as $t_filter_member ) {
if ( ( META_FILTER_ANY == $t_filter_member ) || ( 0 === $t_filter_member ) ) {
$t_any_found = true;
}
}
if ( count( $t_filter['show_severity'] ) == 0 ) {
$t_any_found = true;
}
if ( !$t_any_found ) {
$t_clauses = array();
foreach( $t_filter['show_severity'] as $t_filter_member ) {
$c_show_severity = db_prepare_int( $t_filter_member );
array_push( $t_clauses, $c_show_severity );
}
if ( 1 < count( $t_clauses ) ) {
array_push( $t_where_clauses, "( $t_bug_table.severity in (". implode( ', ', $t_clauses ) .") )" );
} else {
array_push( $t_where_clauses, "( $t_bug_table.severity=$t_clauses[0] )" );
}
}
# show / hide status
# take a list of all available statuses then remove the ones that we want hidden, then make sure
# the ones we want shown are still available
$t_status_arr = explode_enum_string( config_get( 'status_enum_string' ) );
$t_available_statuses = array();
$t_desired_statuses = array();
foreach( $t_status_arr as $t_this_status ) {
$t_this_status_arr = explode_enum_arr( $t_this_status );
$t_available_statuses[] = $t_this_status_arr[0];
}
if ( 'simple' == $t_filter['_view_type'] ) {
# simple filtering: if showing any, restrict by the hide status value, otherwise ignore the hide
$t_any_found = false;
$t_this_status = $t_filter['show_status'][0];
$t_this_hide_status = $t_filter['hide_status'][0];
if ( ( META_FILTER_ANY == $t_this_status ) || ( is_blank( $t_this_status ) ) || ( 0 === $t_this_status ) ) {
$t_any_found = true;
}
if ( $t_any_found ) {
foreach( $t_available_statuses as $t_this_available_status ) {
if ( $t_this_hide_status > $t_this_available_status ) {
$t_desired_statuses[] = $t_this_available_status;
}
}
} else {
$t_desired_statuses[] = $t_this_status;
}
} else {
# advanced filtering: ignore the hide
$t_any_found = false;
foreach( $t_filter['show_status'] as $t_this_status ) {
$t_desired_statuses[] = $t_this_status;
if ( ( META_FILTER_ANY == $t_this_status ) || ( is_blank( $t_this_status ) ) || ( 0 === $t_this_status ) ) {
$t_any_found = true;
}
}
if ( $t_any_found ) {
$t_desired_statuses = array();
}
}
if ( count( $t_desired_statuses ) > 0 ) {
$t_clauses = array();
foreach( $t_desired_statuses as $t_filter_member ) {
$c_show_status = db_prepare_int( $t_filter_member );
array_push( $t_clauses, $c_show_status );
}
if ( 1 < count( $t_clauses ) ) {
array_push( $t_where_clauses, "( $t_bug_table.status in (". implode( ', ', $t_clauses ) .") )" );
} else {
array_push( $t_where_clauses, "( $t_bug_table.status=$t_clauses[0] )" );
}
}
# resolution
$t_any_found = false;
foreach( $t_filter['show_resolution'] as $t_filter_member ) {
if ( META_FILTER_ANY == $t_filter_member ) {
$t_any_found = true;
}
}
if ( count( $t_filter['show_resolution'] ) == 0 ) {
$t_any_found = true;
}
if ( !$t_any_found ) {
$t_clauses = array();
foreach( $t_filter['show_resolution'] as $t_filter_member ) {
$c_show_resolution = db_prepare_int( $t_filter_member );
array_push( $t_clauses, $c_show_resolution );
}
if ( 1 < count( $t_clauses ) ) {
array_push( $t_where_clauses, "( $t_bug_table.resolution in (". implode( ', ', $t_clauses ) .") )" );
} else {
array_push( $t_where_clauses, "( $t_bug_table.resolution=$t_clauses[0] )" );
}
}
# priority
$t_any_found = false;
foreach( $t_filter['show_priority'] as $t_filter_member ) {
if ( ( META_FILTER_ANY == $t_filter_member ) || ( 0 === $t_filter_member ) ) {
$t_any_found = true;
}
}
if ( count( $t_filter['show_priority'] ) == 0 ) {
$t_any_found = true;
}
if ( !$t_any_found ) {
$t_clauses = array();
foreach( $t_filter['show_priority'] as $t_filter_member ) {
$c_show_priority = db_prepare_int( $t_filter_member );
array_push( $t_clauses, $c_show_priority );
}
if ( 1 < count( $t_clauses ) ) {
array_push( $t_where_clauses, "( $t_bug_table.priority in (". implode( ', ', $t_clauses ) .") )" );
} else {
array_push( $t_where_clauses, "( $t_bug_table.priority=$t_clauses[0] )" );
}
}
# product build
$t_any_found = false;
foreach( $t_filter['show_build'] as $t_filter_member ) {
if ( ( META_FILTER_ANY == $t_filter_member ) && ( is_numeric( $t_filter_member ) ) ) {
$t_any_found = true;
}
}
if ( count( $t_filter['show_build'] ) == 0 ) {
$t_any_found = true;
}
if ( !$t_any_found ) {
$t_clauses = array();
foreach( $t_filter['show_build'] as $t_filter_member ) {
$t_filter_member = stripslashes( $t_filter_member );
if ( META_FILTER_NONE == $t_filter_member ) {
array_push( $t_clauses, "''" );
} else {
$c_show_build = db_prepare_string( $t_filter_member );
array_push( $t_clauses, "'$c_show_build'" );
}
}
if ( 1 < count( $t_clauses ) ) {
array_push( $t_where_clauses, "( $t_bug_table.build in (". implode( ', ', $t_clauses ) .") )" );
} else {
array_push( $t_where_clauses, "( $t_bug_table.build=$t_clauses[0] )" );
}
}
# product version
if ( !_filter_is_any( $t_filter['show_version'] ) ) {
$t_clauses = array();
foreach( $t_filter['show_version'] as $t_filter_member ) {
$t_filter_member = stripslashes( $t_filter_member );
if ( META_FILTER_NONE == $t_filter_member ) {
array_push( $t_clauses, "''" );
} else {
$c_show_version = db_prepare_string( $t_filter_member );
array_push( $t_clauses, "'$c_show_version'" );
}
}
if ( 1 < count( $t_clauses ) ) {
array_push( $t_where_clauses, "( $t_bug_table.version in (". implode( ', ', $t_clauses ) .") )" );
} else {
array_push( $t_where_clauses, "( $t_bug_table.version=$t_clauses[0] )" );
}
}
# profile
if ( !_filter_is_any( $t_filter['show_profile'] ) ) {
$t_clauses = array();
foreach( $t_filter['show_profile'] as $t_filter_member ) {
$t_filter_member = stripslashes( $t_filter_member );
if ( META_FILTER_NONE == $t_filter_member ) {
array_push( $t_clauses, "0" );
} else {
$c_show_profile = db_prepare_int( $t_filter_member );
array_push( $t_clauses, "$c_show_profile" );
}
}
if ( 1 < count( $t_clauses ) ) {
array_push( $t_where_clauses, "( $t_bug_table.profile_id in (". implode( ', ', $t_clauses ) .") )" );
} else {
array_push( $t_where_clauses, "( $t_bug_table.profile_id=$t_clauses[0] )" );
}
}
# platform
if ( !_filter_is_any( $t_filter['platform'] ) ) {
$t_clauses = array();
foreach( $t_filter['platform'] as $t_filter_member ) {
$t_filter_member = stripslashes( $t_filter_member );
if ( META_FILTER_NONE == $t_filter_member ) {
array_push( $t_clauses, '' );
} else {
$c_platform = db_prepare_string( $t_filter_member );
array_push( $t_clauses, "'$c_platform'" );
}
}
if ( 1 < count( $t_clauses ) ) {
array_push( $t_where_clauses, "( $t_bug_table.platform in (". implode( ', ', $t_clauses ) .") )" );
} else {
array_push( $t_where_clauses, "( $t_bug_table.platform = $t_clauses[0] )" );
}
}
# os
if ( !_filter_is_any( $t_filter['os'] ) ) {
$t_clauses = array();
foreach( $t_filter['os'] as $t_filter_member ) {
$t_filter_member = stripslashes( $t_filter_member );
if ( META_FILTER_NONE == $t_filter_member ) {
array_push( $t_clauses, '' );
} else {
$c_os = db_prepare_string( $t_filter_member );
array_push( $t_clauses, "'$c_os'" );
}
}
if ( 1 < count( $t_clauses ) ) {
array_push( $t_where_clauses, "( $t_bug_table.os in (". implode( ', ', $t_clauses ) .") )" );
} else {
array_push( $t_where_clauses, "( $t_bug_table.os = $t_clauses[0] )" );
}
}
# os_build
if ( !_filter_is_any( $t_filter['os_build'] ) ) {
$t_clauses = array();
foreach( $t_filter['os_build'] as $t_filter_member ) {
$t_filter_member = stripslashes( $t_filter_member );
if ( META_FILTER_NONE == $t_filter_member ) {
array_push( $t_clauses, '' );
} else {
$c_os_build = db_prepare_string( $t_filter_member );
array_push( $t_clauses, "'$c_os_build'" );
}
}
if ( 1 < count( $t_clauses ) ) {
array_push( $t_where_clauses, "( $t_bug_table.os_build in (". implode( ', ', $t_clauses ) .") )" );
} else {
array_push( $t_where_clauses, "( $t_bug_table.os_build = $t_clauses[0] )" );
}
}
# date filter
if ( ( 'on' == $t_filter['do_filter_by_date'] ) &&
is_numeric( $t_filter['start_month'] ) &&
is_numeric( $t_filter['start_day'] ) &&
is_numeric( $t_filter['start_year'] ) &&
is_numeric( $t_filter['end_month'] ) &&
is_numeric( $t_filter['end_day'] ) &&
is_numeric( $t_filter['end_year'] )
) {
$t_start_string = db_prepare_string( $t_filter['start_year'] . "-". $t_filter['start_month'] . "-" . $t_filter['start_day'] ." 00:00:00" );
$t_end_string = db_prepare_string( $t_filter['end_year'] . "-". $t_filter['end_month'] . "-" . $t_filter['end_day'] ." 23:59:59" );
array_push( $t_where_clauses, "($t_bug_table.date_submitted BETWEEN '$t_start_string' AND '$t_end_string' )" );
}
# fixed in version
if ( !_filter_is_any( $t_filter['fixed_in_version'] ) ) {
$t_clauses = array();
foreach( $t_filter['fixed_in_version'] as $t_filter_member ) {
$t_filter_member = stripslashes( $t_filter_member );
if ( META_FILTER_NONE == $t_filter_member ) {
array_push( $t_clauses, "''" );
} else {
$c_fixed_in_version = db_prepare_string( $t_filter_member );
array_push( $t_clauses, "'$c_fixed_in_version'" );
}
}
if ( 1 < count( $t_clauses ) ) {
array_push( $t_where_clauses, "( $t_bug_table.fixed_in_version in (". implode( ', ', $t_clauses ) .") )" );
} else {
array_push( $t_where_clauses, "( $t_bug_table.fixed_in_version=$t_clauses[0] )" );
}
}
# target version
if ( !_filter_is_any( $t_filter['target_version'] ) ) {
$t_clauses = array();
foreach( $t_filter['target_version'] as $t_filter_member ) {
$t_filter_member = stripslashes( $t_filter_member );
if ( META_FILTER_NONE == $t_filter_member ) {
array_push( $t_clauses, "''" );
} else {
$c_target_version = db_prepare_string( $t_filter_member );
array_push( $t_clauses, "'$c_target_version'" );
}
}
#echo var_dump( $t_clauses ); exit;
if ( 1 < count( $t_clauses ) ) {
array_push( $t_where_clauses, "( $t_bug_table.target_version in (". implode( ', ', $t_clauses ) .") )" );
} else {
array_push( $t_where_clauses, "( $t_bug_table.target_version=$t_clauses[0] )" );
}
}
# users monitoring a bug
$t_any_found = false;
foreach( $t_filter['user_monitor'] as $t_filter_member ) {
if ( ( META_FILTER_ANY == $t_filter_member ) || ( 0 === $t_filter_member ) ) {
$t_any_found = true;
}
}
if ( count( $t_filter['user_monitor'] ) == 0 ) {
$t_any_found = true;
}
if ( !$t_any_found ) {
$t_clauses = array();
$t_table_name = 'user_monitor';
array_push( $t_from_clauses, $t_bug_monitor_table );
array_push( $t_join_clauses, "LEFT JOIN $t_bug_monitor_table $t_table_name ON $t_table_name.bug_id = $t_bug_table.id" );
foreach( $t_filter['user_monitor'] as $t_filter_member ) {
$c_user_monitor = db_prepare_int( $t_filter_member );
if ( META_FILTER_MYSELF == $c_user_monitor ) {
array_push( $t_clauses, $c_user_id );
} else {
array_push( $t_clauses, $c_user_monitor );
}
}
if ( 1 < count( $t_clauses ) ) {
array_push( $t_where_clauses, "( $t_table_name.user_id in (". implode( ', ', $t_clauses ) .") )" );
} else {
array_push( $t_where_clauses, "( $t_table_name.user_id=$t_clauses[0] )" );
}
}
# bug relationship
$t_any_found = false;
$c_rel_type = $t_filter['relationship_type'];
$c_rel_bug = $t_filter['relationship_bug'];
if ( -1 == $c_rel_type || 0 == $c_rel_bug) {
$t_any_found = true;
}
if ( !$t_any_found ) {
# use the complementary type
$t_comp_type = relationship_get_complementary_type( $c_rel_type );
$t_clauses = array();
$t_table_name = 'relationship';
array_push( $t_from_clauses, $t_bug_relationship_table );
array_push( $t_join_clauses, "LEFT JOIN $t_bug_relationship_table $t_table_name ON $t_table_name.destination_bug_id = $t_bug_table.id" );
array_push( $t_join_clauses, "LEFT JOIN $t_bug_relationship_table ${t_table_name}2 ON ${t_table_name}2.source_bug_id = $t_bug_table.id" );
// get reverse relationships
array_push( $t_clauses, "($t_table_name.relationship_type='$t_comp_type' AND $t_table_name.source_bug_id='$c_rel_bug')" );
array_push( $t_clauses, "($t_table_name"."2.relationship_type='$c_rel_type' AND $t_table_name"."2.destination_bug_id='$c_rel_bug')" );
array_push( $t_where_clauses, '('. implode( ' OR ', $t_clauses ) .')' );
}
# tags
$c_tag_string = trim( $t_filter['tag_string'] );
if ( !is_blank( $c_tag_string ) ) {
$t_tags = tag_parse_filters( $c_tag_string );
if ( count( $t_tags ) ) {
$t_tags_all = array();
$t_tags_any = array();
$t_tags_none = array();
foreach( $t_tags as $t_tag_row ) {
switch ( $t_tag_row['filter'] ) {
case 1:
$t_tags_all[] = $t_tag_row;
break;
case 0:
$t_tags_any[] = $t_tag_row;
break;
case -1:
$t_tags_none[] = $t_tag_row;
break;
}
}
if ( 0 < $t_filter['tag_select'] && tag_exists( $t_filter['tag_select'] ) ) {
$t_tags_any[] = tag_get( $t_filter['tag_select'] );
}
$t_bug_tag_table = config_get( 'mantis_bug_tag_table' );
if ( count( $t_tags_all ) ) {
$t_clauses = array();
foreach ( $t_tags_all as $t_tag_row ) {
array_push( $t_clauses, "$t_bug_table.id IN ( SELECT bug_id FROM $t_bug_tag_table WHERE $t_bug_tag_table.tag_id = $t_tag_row[id] )" );
}
array_push( $t_where_clauses, '('. implode( ' AND ', $t_clauses ) .')' );
}
if ( count( $t_tags_any ) ) {
$t_clauses = array();
foreach ( $t_tags_any as $t_tag_row ) {
array_push( $t_clauses, "$t_bug_tag_table.tag_id = $t_tag_row[id]" );
}
array_push( $t_where_clauses, "$t_bug_table.id IN ( SELECT bug_id FROM $t_bug_tag_table WHERE ( ". implode( ' OR ', $t_clauses ) .') )' );
}
if ( count( $t_tags_none ) ) {
$t_clauses = array();
foreach ( $t_tags_none as $t_tag_row ) {
array_push( $t_clauses, "$t_bug_tag_table.tag_id = $t_tag_row[id]" );
}
array_push( $t_where_clauses, "$t_bug_table.id NOT IN ( SELECT bug_id FROM $t_bug_tag_table WHERE ( ". implode( ' OR ', $t_clauses ) .') )' );
}
}
}
# custom field filters
if( ON == config_get( 'filter_by_custom_fields' ) ) {
# custom field filtering
# @@@ At the moment this gets the linked fields relating to the current project
# It should get the ones relating to the project in the filter or all projects
# if multiple projects.
$t_custom_fields = custom_field_get_linked_ids( $t_project_id );
foreach( $t_custom_fields as $t_cfid ) {
$t_custom_where_clause = '';
# Ignore all custom filters that are not set, or that are set to '' or "any"
$t_any_found = false;
foreach( $t_filter['custom_fields'][$t_cfid] as $t_filter_member ) {
if ( ( META_FILTER_ANY == $t_filter_member ) && ( is_numeric( $t_filter_member ) ) ) {
$t_any_found = true;
}
}
if ( !isset( $t_filter['custom_fields'][$t_cfid] ) ) {
$t_any_found = true;
}
if ( !$t_any_found ) {
$t_def = custom_field_get_definition( $t_cfid );
$t_table_name = $t_custom_field_string_table . '_' . $t_cfid;
# We need to filter each joined table or the result query will explode in dimensions
# Each custom field will result in a exponential growth like Number_of_Issues^Number_of_Custom_Fields
# and only after this process ends (if it is able to) the result query will be filtered
# by the WHERE clause and by the DISTINCT clause
$t_cf_join_clause = "LEFT JOIN $t_custom_field_string_table $t_table_name ON $t_table_name.bug_id = $t_bug_table.id AND $t_table_name.field_id = $t_cfid ";
if ($t_def['type'] == CUSTOM_FIELD_TYPE_DATE) {
switch ($t_filter['custom_fields'][$t_cfid][0]) {
case CUSTOM_FIELD_DATE_ANY:
break ;
case CUSTOM_FIELD_DATE_NONE:
array_push( $t_join_clauses, $t_cf_join_clause );
$t_custom_where_clause = '(( ' . $t_table_name . '.bug_id is null) OR ( ' . $t_table_name . '.value = 0)' ;
break ;
case CUSTOM_FIELD_DATE_BEFORE:
array_push( $t_join_clauses, $t_cf_join_clause );
$t_custom_where_clause = '(( ' . $t_table_name . '.value != 0 AND (' . $t_table_name . '.value+0) < ' . ($t_filter['custom_fields'][$t_cfid][2]) . ')' ;
break ;
case CUSTOM_FIELD_DATE_AFTER:
array_push( $t_join_clauses, $t_cf_join_clause );
$t_custom_where_clause = '( (' . $t_table_name . '.value+0) > ' . ($t_filter['custom_fields'][$t_cfid][1]+1) ;
break ;
default:
array_push( $t_join_clauses, $t_cf_join_clause );
$t_custom_where_clause = '( (' . $t_table_name . '.value+0) BETWEEN ' . $t_filter['custom_fields'][$t_cfid][1] . ' AND ' . $t_filter['custom_fields'][$t_cfid][2];
break ;
}
} else {
array_push( $t_join_clauses, $t_cf_join_clause );
$t_filter_array = array();
foreach( $t_filter['custom_fields'][$t_cfid] as $t_filter_member ) {
$t_filter_member = stripslashes( $t_filter_member );
if ( META_FILTER_NONE == $t_filter_member ) {
# coerce filter value if selecting META_FILTER_NONE so it will match empty fields
$t_filter_member = '';
# but also add those _not_ present in the custom field string table
array_push( $t_filter_array , "$t_bug_table.id NOT IN (SELECT bug_id FROM $t_custom_field_string_table WHERE field_id=$t_cfid)" );
}
switch( $t_def['type'] ) {
case CUSTOM_FIELD_TYPE_MULTILIST:
case CUSTOM_FIELD_TYPE_CHECKBOX:
array_push( $t_filter_array , db_helper_like( "$t_table_name.value", '%|' . db_prepare_string( $t_filter_member ) . '|%' ) );
break;
default:
array_push( $t_filter_array, "$t_table_name.value = '" . db_prepare_string( $t_filter_member ) . "'" );
}
}
$t_custom_where_clause .= '(' . implode( ' OR ', $t_filter_array );
}
if ( !is_blank( $t_custom_where_clause ) ) {
array_push( $t_where_clauses, $t_custom_where_clause . ')' );
}
}
}
}
$t_textsearch_where_clause = '';
$t_textsearch_wherejoin_clause = '';
# Simple Text Search - Thanks to Alan Knowles
if ( !is_blank( $t_filter['search'] ) ) {
$c_search = db_prepare_string( $t_filter['search'] );
$c_search_int = db_prepare_int( $t_filter['search'] );
$t_textsearch_where_clause = '(' . db_helper_like( 'summary', "%$c_search%" ) .
' OR ' . db_helper_like( "$t_bug_text_table.description", "%$c_search%" ) .
' OR ' . db_helper_like( "$t_bug_text_table.steps_to_reproduce", "%$c_search%" ) .
' OR ' . db_helper_like( "$t_bug_text_table.additional_information", "%$c_search%" ) .
" OR ( $t_bug_table.id = '$c_search_int' ) )";
$t_textsearch_wherejoin_clause = '(' . db_helper_like( 'summary', "%$c_search%" ) .
' OR ' . db_helper_like( "$t_bug_text_table.description", "%$c_search%" ) .
' OR ' . db_helper_like( "$t_bug_text_table.steps_to_reproduce", "%$c_search%" ) .
' OR ' . db_helper_like( "$t_bug_text_table.additional_information", "%$c_search%" ) .
' OR ' . db_helper_like( "$t_bug_table.id", "%$c_search%" ) .
' OR ' . db_helper_like( "$t_bugnote_text_table.note", "%$c_search%" ) . ' )';
array_push( $t_where_clauses, "($t_bug_text_table.id = $t_bug_table.bug_text_id)" );
$t_from_clauses = array( $t_bug_text_table, $t_project_table, $t_bug_table );
} else {
$t_from_clauses = array( $t_project_table, $t_bug_table );
}
$t_select = implode( ', ', array_unique( $t_select_clauses ) );
$t_from = 'FROM ' . implode( ', ', array_unique( $t_from_clauses ) );
$t_join = implode( ' ', $t_join_clauses );
if ( count( $t_where_clauses ) > 0 ) {
$t_where = 'WHERE ' . implode( ' AND ', $t_where_clauses );
} else {
$t_where = '';
}
# Possibly do two passes. First time, grab the IDs of issues that match the filters. Second time, grab the IDs of issues that
# have bugnotes that match the text search if necessary.
$t_id_array = array();
for ( $i = 0; $i < 2; $i++ ) {
$t_id_where = $t_where;
$t_id_join = $t_join;
if ( $i == 0 ) {
if ( !is_blank( $t_id_where ) && !is_blank( $t_textsearch_where_clause ) ) {
$t_id_where = $t_id_where . ' AND ' . $t_textsearch_where_clause;
}
} else if ( !is_blank( $t_textsearch_wherejoin_clause ) ) {
$t_id_where = $t_id_where . ' AND ' . $t_textsearch_wherejoin_clause;
$t_id_join = $t_id_join . " INNER JOIN $t_bugnote_table ON $t_bugnote_table.bug_id = $t_bug_table.id";
$t_id_join = $t_id_join . " INNER JOIN $t_bugnote_text_table ON $t_bugnote_text_table.id = $t_bugnote_table.bugnote_text_id";
}
$query = "SELECT DISTINCT $t_bug_table.id AS id
$t_from
$t_id_join
$t_id_where";
if ( ( $i == 0 ) || ( !is_blank( $t_textsearch_wherejoin_clause ) ) ) {
$result = db_query( $query );
$row_count = db_num_rows( $result );
for ( $j=0; $j < $row_count; $j++ ) {
$row = db_fetch_array( $result );
$t_id_array[] = db_prepare_int ( $row['id'] );
}
}
}
$t_id_array = array_unique( $t_id_array );
# Get the total number of bugs that meet the criteria.
$bug_count = count( $t_id_array );
$rows = array();
if ( $bug_count > 0 ) {
$t_where = "WHERE $t_bug_table.id in (" . implode( ", ", $t_id_array ) . ")";
} else {
return $rows;
}
$t_from = 'FROM ' . $t_bug_table .",". $t_users_table;
# write the value back in case the caller wants to know
$p_bug_count = $bug_count;
if ( null === $p_per_page ) {
$p_per_page = (int)$t_filter['per_page'];
} else if ( -1 == $p_per_page ) {
$p_per_page = $bug_count;
}
# Guard against silly values of $f_per_page.
if ( 0 == $p_per_page ) {
$p_per_page = $bug_count; // 0 - means show all
}
$p_per_page = (int)abs( $p_per_page );
# Use $bug_count and $p_per_page to determine how many pages
# to split this list up into.
# For the sake of consistency have at least one page, even if it
# is empty.
$t_page_count = ceil($bug_count / $p_per_page);
if ( $t_page_count < 1 ) {
$t_page_count = 1;
}
# write the value back in case the caller wants to know
$p_page_count = $t_page_count;
# Make sure $p_page_number isn't past the last page.
if ( $p_page_number > $t_page_count ) {
$p_page_number = $t_page_count;
}
# Make sure $p_page_number isn't before the first page
if ( $p_page_number < 1 ) {
$p_page_number = 1;
}
# Now add the rest of the criteria i.e. sorting, limit.
# if sort is blank then default the sort and direction. This is to fix the
# symptoms of #3953. Note that even if the main problem is fixed, we may
# have to keep this code for a while to handle filters saved with this blank field.
if ( is_blank( $t_filter['sort'] ) ) {
$t_filter['sort'] = 'last_updated';
$t_filter['dir'] = 'DESC';
}
$t_order_array = array();
$t_sort_fields = split( ',', $t_filter['sort'] );
$t_dir_fields = split( ',', $t_filter['dir'] );
if ( ( 'on' == $t_filter['sticky_issues'] ) && ( NULL !== $p_show_sticky ) ) {
$t_order_array[] = "sticky DESC";
}
$t_join = '';
for ( $i=0; $i < count( $t_sort_fields ); $i++ ) {
$c_sort = db_prepare_string( $t_sort_fields[$i] );
if ( ! in_array( $t_sort_fields[$i], array_slice( $t_sort_fields, $i + 1) ) ) {
# if sorting by a custom field
if ( strpos( $c_sort, 'custom_' ) === 0 ) {
$t_custom_field = substr( $c_sort, strlen( 'custom_' ) );
$t_custom_field_id = custom_field_get_id_from_name( $t_custom_field );
$t_join .= " LEFT JOIN $t_custom_field_string_table ON ( ( $t_custom_field_string_table.bug_id = $t_bug_table.id ) AND ( $t_custom_field_string_table.field_id = $t_custom_field_id ) )";
$c_sort = "$t_custom_field_string_table.value";
$t_select_clauses[] = "$t_custom_field_string_table.value";
}
if ( 'DESC' == $t_dir_fields[$i] ) {
$c_dir = 'DESC';
} else {
$c_dir = 'ASC';
}
$t_order_array[] = "$c_sort $c_dir";
}
}
# add basic sorting if necessary
if ( ! in_array( 'last_updated', $t_sort_fields ) ) {
$t_order_array[] = 'last_updated DESC';
}
if ( ! in_array( 'date_submitted', $t_sort_fields ) ) {
$t_order_array[] = 'date_submitted DESC';
}
$t_order = " ORDER BY " . implode( ', ', $t_order_array );
$t_select = implode( ', ', array_unique( $t_select_clauses ) );
$query2 = "SELECT DISTINCT $t_select
$t_from
$t_join
$t_where
$t_order";
# Figure out the offset into the db query
#
# for example page number 1, per page 5:
# t_offset = 0
# for example page number 2, per page 5:
# t_offset = 5
$c_per_page = db_prepare_int( $p_per_page );
$c_page_number = db_prepare_int( $p_page_number );
$t_offset = ( ( $c_page_number - 1 ) * $c_per_page );
# perform query
$result2 = db_query( $query2, $c_per_page, $t_offset );
$row_count = db_num_rows( $result2 );
$t_id_array_lastmod = array();
for ( $i=0 ; $i < $row_count ; $i++ ) {
$row = db_fetch_array( $result2 );
$t_id_array_lastmod[] = db_prepare_int ( $row['id'] );
$row['date_submitted'] = db_unixtimestamp ( $row['date_submitted'] );
$row['last_updated'] = db_unixtimestamp ( $row['last_updated'] );
array_push( $rows, $row );
}
$t_id_array_lastmod = array_unique( $t_id_array_lastmod );
// paulr: it should be impossible for t_id_array_lastmod to be array():
// that would imply that $t_id_array is null which aborts this function early
//if ( count( $t_id_array_lastmod ) > 0 ) {
$t_where = "WHERE $t_bugnote_table.bug_id in (" . implode( ", ", $t_id_array_lastmod ) . ")";
$query3 = "SELECT DISTINCT bug_id,MAX(last_modified) as last_modified, COUNT(last_modified) as count FROM $t_bugnote_table $t_where GROUP BY bug_id";
# perform query
$result3 = db_query( $query3 );
$row_count = db_num_rows( $result3 );
for ( $i=0 ; $i < $row_count ; $i++ ) {
$row = db_fetch_array( $result3 );
$t_stats[ $row['bug_id'] ] = $row;
}
foreach($rows as $row) {
if( !isset( $t_stats[ $row['id'] ] ) ) {
bug_cache_database_result( $row, false );
} else {
bug_cache_database_result( $row, $t_stats[ $row['id'] ] );
}
}
return $rows;
}
# --------------------
# return true if the filter cookie exists and is of the correct version,
# false otherwise
function filter_is_cookie_valid() {
$t_view_all_cookie_id = gpc_get_cookie( config_get( 'view_all_cookie' ), '' );
$t_view_all_cookie = filter_db_get_filter( $t_view_all_cookie_id );
# check to see if the cookie does not exist
if ( is_blank( $t_view_all_cookie ) ) {
return false;
}
# check to see if new cookie is needed
$t_setting_arr = explode( '#', $t_view_all_cookie, 2 );
if ( ( $t_setting_arr[0] == 'v1' ) ||
( $t_setting_arr[0] == 'v2' ) ||
( $t_setting_arr[0] == 'v3' ) ||
( $t_setting_arr[0] == 'v4' ) ) {
return false;
}
# We shouldn't need to do this anymore, as filters from v5 onwards should cope with changing
# filter indices dynamically
$t_filter_cookie_arr = array();
if ( isset( $t_setting_arr[1] ) ) {
$t_filter_cookie_arr = unserialize( $t_setting_arr[1] );
} else {
return false;
}
if ( $t_filter_cookie_arr['_version'] != config_get( 'cookie_version' ) ) {
return false;
}
return true;
}
# --------------------
# return filter array if supplied serialized filter is valid, otherwise false.otherwise
function filter_deserialize( $p_serialized_filter ) {
if ( is_blank( $p_serialized_filter ) ) {
return false;
}
# check to see if new cookie is needed
$t_setting_arr = explode( '#', $p_serialized_filter, 2 );
if ( ( $t_setting_arr[0] == 'v1' ) ||
( $t_setting_arr[0] == 'v2' ) ||
( $t_setting_arr[0] == 'v3' ) ||
( $t_setting_arr[0] == 'v4' ) ) {
# these versions can't be salvaged, they are too old to update
return false;
}
# We shouldn't need to do this anymore, as filters from v5 onwards should cope with changing
# filter indices dynamically
$t_filter_array = array();
if ( isset( $t_setting_arr[1] ) ) {
$t_filter_array = unserialize( $t_setting_arr[1] );
} else {
return false;
}
if ( $t_filter_array['_version'] != config_get( 'cookie_version' ) ) {
# if the version is not new enough, update it using defaults
return filter_ensure_valid_filter( $t_filter_array );
}
return $t_filter_array;
}
# --------------------
# Mainly based on filter_draw_selection_area2() but adds the support for the collapsible
# filter display.
function filter_draw_selection_area( $p_page_number, $p_for_screen = true )
{
collapse_open( 'filter' );
filter_draw_selection_area2( $p_page_number, $p_for_screen, true );
collapse_closed( 'filter' );
filter_draw_selection_area2( $p_page_number, $p_for_screen, false );
collapse_end( 'filter' );
}
# --------------------
# Will print the filter selection area for both the bug list view screen, as well
# as the bug list print screen. This function was an attempt to make it easier to
# add new filters and rearrange them on screen for both pages.
function filter_draw_selection_area2( $p_page_number, $p_for_screen = true, $p_expanded = true )
{
$t_form_name_suffix = $p_expanded ? '_open' : '_closed';
$t_filter = current_user_get_bug_filter();
$t_filter = filter_ensure_valid_filter( $t_filter );
$t_project_id = helper_get_current_project();
$t_page_number = (int) $p_page_number;
$t_view_type = $t_filter['_view_type'];
$t_tdclass = 'small-caption';
$t_trclass = 'row-category2';
$t_action = 'view_all_set.php?f=3';
if ( $p_for_screen == false ) {
$t_tdclass = 'print';
$t_trclass = '';
$t_action = 'view_all_set.php';
}
?>
<br />
<form method="post" name="filters<?php echo $t_form_name_suffix ?>" id="filters_form<?php echo $t_form_name_suffix ?>" action="<?php PRINT $t_action; ?>">
<input type="hidden" name="type" value="1" />
<?php
if ( $p_for_screen == false ) {
PRINT '<input type="hidden" name="print" value="1" />';
PRINT '<input type="hidden" name="offset" value="0" />';
}
?>
<input type="hidden" name="page_number" value="<?php PRINT $t_page_number ?>" />
<input type="hidden" name="view_type" value="<?php PRINT $t_view_type ?>" />
<table class="width100" cellspacing="1">
<?php
$t_filter_cols = config_get( 'filter_custom_fields_per_row' );
if ( $p_expanded ) {
$t_custom_cols = $t_filter_cols;
$t_current_user_access_level = current_user_get_access_level();
$t_accessible_custom_fields_ids = array();
$t_accessible_custom_fields_names = array();
$t_accessible_custom_fields_values = array();
$t_num_custom_rows = 0;
$t_per_row = 0;
if ( ON == config_get( 'filter_by_custom_fields' ) ) {
$t_custom_fields = custom_field_get_linked_ids( $t_project_id );
foreach ( $t_custom_fields as $t_cfid ) {
$t_field_info = custom_field_cache_row( $t_cfid, true );
if ( $t_field_info['access_level_r'] <= $t_current_user_access_level ) {
$t_accessible_custom_fields_ids[] = $t_cfid;
$t_accessible_custom_fields_names[] = $t_field_info['name'];
$t_accessible_custom_fields_types[] = $t_field_info['type'];
$t_accessible_custom_fields_values[] = custom_field_distinct_values( $t_cfid );
}
}
if ( count( $t_accessible_custom_fields_ids ) > 0 ) {
$t_per_row = config_get( 'filter_custom_fields_per_row' );
$t_num_custom_rows = ceil( count( $t_accessible_custom_fields_ids ) / $t_per_row );
}
}
$t_filters_url = 'view_filters_page.php?for_screen=' . $p_for_screen;
if ( 'advanced' == $t_view_type ) {
$t_filters_url = $t_filters_url . '&view_type=advanced';
}
$t_filters_url = $t_filters_url . '&target_field=';
$t_show_version = ( ON == config_get( 'show_product_version' ) )
|| ( ( AUTO == config_get( 'show_product_version' ) )
&& ( count( version_get_all_rows_with_subs( $t_project_id ) ) > 0 ) );
# overload handler_id setting if user isn't supposed to see them (ref #6189)
if ( ! access_has_project_level( config_get( 'view_handler_threshold' ), $t_project_id ) ) {
$t_filter['handler_id'] = array( META_FILTER_ANY );
}
?>
<tr <?php PRINT "class=\"" . $t_trclass . "\""; ?>>
<td class="small-caption" valign="top">
<a href="<?php PRINT $t_filters_url . 'reporter_id[]'; ?>" id="reporter_id_filter"><?php PRINT lang_get( 'reporter' ) ?>:</a>
</td>
<td class="small-caption" valign="top">
<a href="<?php PRINT $t_filters_url . 'user_monitor[]'; ?>" id="user_monitor_filter"><?php PRINT lang_get( 'monitored_by' ) ?>:</a>
</td>
<td class="small-caption" valign="top">
<a href="<?php PRINT $t_filters_url . 'handler_id[]'; ?>" id="handler_id_filter"><?php PRINT lang_get( 'assigned_to' ) ?>:</a>
</td>
<td colspan="2" class="small-caption" valign="top">
<a href="<?php PRINT $t_filters_url . 'show_category[]'; ?>" id="show_category_filter"><?php PRINT lang_get( 'category' ) ?>:</a>
</td>
<td class="small-caption" valign="top">
<a href="<?php PRINT $t_filters_url . 'show_severity[]'; ?>" id="show_severity_filter"><?php PRINT lang_get( 'severity' ) ?>:</a>
</td>
<td class="small-caption" valign="top">
<a href="<?php PRINT $t_filters_url . 'show_resolution[]'; ?>" id="show_resolution_filter"><?php PRINT lang_get( 'resolution' ) ?>:</a>
</td>
<td class="small-caption" valign="top">
<a href="<?php PRINT $t_filters_url . 'show_profile[]'; ?>" id="show_profile_filter"><?php PRINT lang_get( 'profile' ) ?>:</a>
</td>
<?php if ( $t_filter_cols > 8 ) {
echo '<td class="small-caption" valign="top" colspan="' . ( $t_filter_cols - 8 ) . '"> </td>';
} ?>
</tr>
<tr class="row-1">
<td class="small-caption" valign="top" id="reporter_id_filter_target">
<?php
$t_output = '';
$t_any_found = false;
if ( count( $t_filter['reporter_id'] ) == 0 ) {
PRINT lang_get( 'any' );
} else {
$t_first_flag = true;
foreach( $t_filter['reporter_id'] as $t_current ) {
$t_this_name = '';
?>
<input type="hidden" name="reporter_id[]" value="<?php echo $t_current;?>" />
<?php
if ( ( $t_current === 0 ) || ( is_blank( $t_current ) ) || ( META_FILTER_ANY == $t_current ) ) {
$t_any_found = true;
} else if ( META_FILTER_MYSELF == $t_current ) {
if ( access_has_project_level( config_get( 'report_bug_threshold' ) ) ) {
$t_this_name = '[' . lang_get( 'myself' ) . ']';
} else {
$t_any_found = true;
}
} else if ( META_FILTER_NONE == $t_current ) {
$t_this_name = lang_get( 'none' );
} else {
$t_this_name = user_get_name( $t_current );
}
if ( $t_first_flag != true ) {
$t_output = $t_output . '<br />';
} else {
$t_first_flag = false;
}
$t_output = $t_output . $t_this_name;
}
if ( true == $t_any_found ) {
PRINT lang_get( 'any' );
} else {
PRINT $t_output;
}
}
?>
</td>
<td class="small-caption" valign="top" id="user_monitor_filter_target">
<?php
$t_output = '';
$t_any_found = false;
if ( count( $t_filter['user_monitor'] ) == 0 ) {
PRINT lang_get( 'any' );
} else {
$t_first_flag = true;
foreach( $t_filter['user_monitor'] as $t_current ) {
?>
<input type="hidden" name="user_monitor[]" value="<?php echo $t_current;?>" />
<?php
$t_this_name = '';
if ( ( $t_current === 0 ) || ( is_blank( $t_current ) ) || ( META_FILTER_ANY == $t_current ) ) {
$t_any_found = true;
} else if ( META_FILTER_MYSELF == $t_current ) {
if ( access_has_project_level( config_get( 'monitor_bug_threshold' ) ) ) {
$t_this_name = '[' . lang_get( 'myself' ) . ']';
} else {
$t_any_found = true;
}
} else {
$t_this_name = user_get_name( $t_current );
}
if ( $t_first_flag != true ) {
$t_output = $t_output . '<br />';
} else {
$t_first_flag = false;
}
$t_output = $t_output . $t_this_name;
}
if ( true == $t_any_found ) {
PRINT lang_get( 'any' );
} else {
PRINT $t_output;
}
}
?>
</td>
<td class="small-caption" valign="top" id="handler_id_filter_target">
<?php
$t_output = '';
$t_any_found = false;
if ( count( $t_filter['handler_id'] ) == 0 ) {
PRINT lang_get( 'any' );
} else {
$t_first_flag = true;
foreach( $t_filter['handler_id'] as $t_current ) {
?>
<input type="hidden" name="handler_id[]" value="<?php echo $t_current;?>" />
<?php
$t_this_name = '';
if ( META_FILTER_NONE == $t_current ) {
$t_this_name = lang_get( 'none' );
} else if ( ( $t_current === 0 ) || ( is_blank( $t_current ) ) || ( META_FILTER_ANY == $t_current ) ) {
$t_any_found = true;
} else if ( META_FILTER_MYSELF == $t_current ) {
if ( access_has_project_level( config_get( 'handle_bug_threshold' ) ) ) {
$t_this_name = '[' . lang_get( 'myself' ) . ']';
} else {
$t_any_found = true;
}
} else {
$t_this_name = user_get_name( $t_current );
}
if ( $t_first_flag != true ) {
$t_output = $t_output . '<br />';
} else {
$t_first_flag = false;
}
$t_output = $t_output . $t_this_name;
}
if ( true == $t_any_found ) {
PRINT lang_get( 'any' );
} else {
PRINT $t_output;
}
}
?>
</td>
<td colspan="2" class="small-caption" valign="top" id="show_category_filter_target">
<?php
$t_output = '';
$t_any_found = false;
if ( count( $t_filter['show_category'] ) == 0 ) {
PRINT lang_get( 'any' );
} else {
$t_first_flag = true;
foreach( $t_filter['show_category'] as $t_current ) {
$t_current = stripslashes( $t_current );
?>
<input type="hidden" name="show_category[]" value="<?php echo string_display( $t_current );?>" />
<?php
$t_this_string = '';
if ( ( ( $t_current == META_FILTER_ANY ) && ( is_numeric( $t_current ) ) )
|| ( is_blank( $t_current ) ) ) {
$t_any_found = true;
} else {
$t_this_string = string_display( $t_current );
}
if ( $t_first_flag != true ) {
$t_output = $t_output . '<br />';
} else {
$t_first_flag = false;
}
$t_output = $t_output . $t_this_string;
}
if ( true == $t_any_found ) {
PRINT lang_get( 'any' );
} else {
PRINT $t_output;
}
}
?>
</td>
<td class="small-caption" valign="top" id="show_severity_filter_target">
<?php
$t_output = '';
$t_any_found = false;
if ( count( $t_filter['show_severity'] ) == 0 ) {
PRINT lang_get( 'any' );
} else {
$t_first_flag = true;
foreach( $t_filter['show_severity'] as $t_current ) {
?>
<input type="hidden" name="show_severity[]" value="<?php echo $t_current;?>" />
<?php
$t_this_string = '';
if ( ( $t_current === META_FILTER_ANY ) || ( is_blank( $t_current ) ) || ( $t_current == 0 ) ) {
$t_any_found = true;
} else {
$t_this_string = get_enum_element( 'severity', $t_current );
}
if ( $t_first_flag != true ) {
$t_output = $t_output . '<br />';
} else {
$t_first_flag = false;
}
$t_output = $t_output . $t_this_string;
}
if ( true == $t_any_found ) {
PRINT lang_get( 'any' );
} else {
PRINT $t_output;
}
}
?>
</td>
<td class="small-caption" valign="top" id="show_resolution_filter_target">
<?php
$t_output = '';
$t_any_found = false;
if ( count( $t_filter['show_resolution'] ) == 0 ) {
PRINT lang_get( 'any' );
} else {
$t_first_flag = true;
foreach( $t_filter['show_resolution'] as $t_current ) {
?>
<input type="hidden" name="show_resolution[]" value="<?php echo $t_current;?>" />
<?php
$t_this_string = '';
if ( ( $t_current === META_FILTER_ANY ) || ( is_blank( $t_current ) ) || ( $t_current === 0 ) ) {
$t_any_found = true;
} else {
$t_this_string = get_enum_element( 'resolution', $t_current );
}
if ( $t_first_flag != true ) {
$t_output = $t_output . '<br />';
} else {
$t_first_flag = false;
}
$t_output = $t_output . $t_this_string;
}
if ( true == $t_any_found ) {
PRINT lang_get( 'any' );
} else {
PRINT $t_output;
}
}
?>
</td>
<td class="small-caption" valign="top" id="show_profile_filter_target">
<?php
$t_output = '';
$t_any_found = false;
if ( count( $t_filter['show_profile'] ) == 0 ) {
PRINT lang_get( 'any' );
} else {
$t_first_flag = true;
foreach( $t_filter['show_profile'] as $t_current ) {
?>
<input type="hidden" name="show_profile[]" value="<?php echo $t_current;?>" />
<?php
$t_this_string = '';
if ( ( $t_current === META_FILTER_ANY ) || ( is_blank( $t_current ) ) || ( $t_current === 0 ) ) {
$t_any_found = true;
} else {
$t_profile = profile_get_row_direct( $t_current );
$t_this_string = "${t_profile['platform']} ${t_profile['os']} ${t_profile['os_build']}";
}
if ( $t_first_flag != true ) {
$t_output = $t_output . '<br />';
} else {
$t_first_flag = false;
}
$t_output = $t_output . $t_this_string;
}
if ( true == $t_any_found ) {
PRINT lang_get( 'any' );
} else {
PRINT $t_output;
}
}
?>
</td>
<?php if ( $t_filter_cols > 8 ) {
echo '<td class="small-caption" valign="top" colspan="' . ( $t_filter_cols - 8 ) . '"> </td>';
} ?>
</tr>
<tr <?php PRINT "class=\"" . $t_trclass . "\""; ?>>
<td class="small-caption" valign="top">
<a href="<?php PRINT $t_filters_url . 'show_status[]'; ?>" id="show_status_filter"><?php PRINT lang_get( 'status' ) ?>:</a>
</td>
<td class="small-caption" valign="top">
<?php if ( 'simple' == $t_view_type ) { ?>
<a href="<?php PRINT $t_filters_url . 'hide_status[]'; ?>" id="hide_status_filter"><?php PRINT lang_get( 'hide_status' ) ?>:</a>
<?php } ?>
</td>
<td class="small-caption" valign="top">
<a href="<?php PRINT $t_filters_url . 'show_build[]'; ?>" id="show_build_filter"><?php PRINT lang_get( 'product_build' ) ?>:</a>
</td>
<?php if ( $t_show_version ) { ?>
<td colspan="2" class="small-caption" valign="top">
<a href="<?php PRINT $t_filters_url . 'show_version[]'; ?>" id="show_version_filter"><?php PRINT lang_get( 'product_version' ) ?>:</a>
</td>
<td colspan="1" class="small-caption" valign="top">
<a href="<?php PRINT $t_filters_url . 'fixed_in_version[]'; ?>" id="show_fixed_in_version_filter"><?php PRINT lang_get( 'fixed_in_version' ) ?>:</a>
</td>
<?php } else { ?>
<td colspan="2" class="small-caption" valign="top">
</td>
<td colspan="1" class="small-caption" valign="top">
</td>
<?php } ?>
<td colspan="1" class="small-caption" valign="top">
<a href="<?php PRINT $t_filters_url . 'show_priority[]'; ?>" id="show_priority_filter"><?php PRINT lang_get( 'priority' ) ?>:</a>
</td>
<td colspan="1" class="small-caption" valign="top">
<a href="<?php echo $t_filters_url . 'target_version[]'; ?>" id="show_target_version_filter"><?php echo lang_get( 'target_version' ) ?>:</a>
</td>
<?php if ( $t_filter_cols > 8 ) {
echo '<td class="small-caption" valign="top" colspan="' . ( $t_filter_cols - 7 ) . '"> </td>';
} ?>
</tr>
<tr class="row-1">
<td class="small-caption" valign="top" id="show_status_filter_target">
<?php
$t_output = '';
$t_any_found = false;
if ( count( $t_filter['show_status'] ) == 0 ) {
PRINT lang_get( 'any' );
} else {
$t_first_flag = true;
foreach( $t_filter['show_status'] as $t_current ) {
?>
<input type="hidden" name="show_status[]" value="<?php echo $t_current;?>" />
<?php
$t_this_string = '';
if ( ( $t_current === META_FILTER_ANY ) || ( is_blank( $t_current ) ) || ( $t_current === 0 ) ) {
$t_any_found = true;
} else {
$t_this_string = get_enum_element( 'status', $t_current );
}
if ( $t_first_flag != true ) {
$t_output = $t_output . '<br />';
} else {
$t_first_flag = false;
}
$t_output = $t_output . $t_this_string;
}
if ( true == $t_any_found ) {
PRINT lang_get( 'any' );
} else {
PRINT $t_output;
}
}
?>
</td>
<td class="small-caption" valign="top" id="hide_status_filter_target">
<?php
if ( 'simple' == $t_view_type ) {
$t_output = '';
$t_none_found = false;
if ( count( $t_filter['hide_status'] ) == 0 ) {
PRINT lang_get( 'none' );
} else {
$t_first_flag = true;
foreach( $t_filter['hide_status'] as $t_current ) {
?>
<input type="hidden" name="hide_status[]" value="<?php echo $t_current;?>" />
<?php
$t_this_string = '';
if ( ( $t_current == META_FILTER_NONE ) || ( is_blank( $t_current ) ) || ( $t_current === 0 ) ) {
$t_none_found = true;
} else {
$t_this_string = get_enum_element( 'status', $t_current );
}
if ( $t_first_flag != true ) {
$t_output = $t_output . '<br />';
} else {
$t_first_flag = false;
}
$t_output = $t_output . $t_this_string;
}
$t_hide_status_post = '';
if ( count( $t_filter['hide_status'] ) == 1 ) {
$t_hide_status_post = ' (' . lang_get( 'and_above' ) . ')';
}
if ( true == $t_none_found ) {
PRINT lang_get( 'none' );
} else {
PRINT $t_output . $t_hide_status_post;
}
}
}
?>
</td>
<td class="small-caption" valign="top" id="show_build_filter_target">
<?php
$t_output = '';
$t_any_found = false;
if ( count( $t_filter['show_build'] ) == 0 ) {
PRINT lang_get( 'any' );
} else {
$t_first_flag = true;
foreach( $t_filter['show_build'] as $t_current ) {
$t_current = stripslashes( $t_current );
?>
<input type="hidden" name="show_build[]" value="<?php echo string_display( $t_current );?>" />
<?php
$t_this_string = '';
if ( ( ( $t_current == META_FILTER_ANY ) && ( is_numeric( $t_current ) ) )
|| ( is_blank( $t_current ) ) ) {
$t_any_found = true;
} else if ( META_FILTER_NONE == $t_current ) {
$t_this_string = lang_get( 'none' );
} else {
$t_this_string = string_display( $t_current );
}
if ( $t_first_flag != true ) {
$t_output = $t_output . '<br />';
} else {
$t_first_flag = false;
}
$t_output = $t_output . $t_this_string;
}
if ( true == $t_any_found ) {
PRINT lang_get( 'any' );
} else {
PRINT $t_output;
}
}
?>
</td>
<?php if ( $t_show_version ) { ?>
<td colspan="2" class="small-caption" valign="top" id="show_version_filter_target">
<?php
$t_output = '';
$t_any_found = false;
if ( count( $t_filter['show_version'] ) == 0 ) {
PRINT lang_get( 'any' );
} else {
$t_first_flag = true;
foreach( $t_filter['show_version'] as $t_current ) {
$t_current = stripslashes( $t_current );
?>
<input type="hidden" name="show_version[]" value="<?php echo string_display( $t_current );?>" />
<?php
$t_this_string = '';
if ( ( ( $t_current == META_FILTER_ANY ) && (is_numeric( $t_current ) ) )
|| ( is_blank( $t_current ) ) ) {
$t_any_found = true;
} else if ( META_FILTER_NONE == $t_current ) {
$t_this_string = lang_get( 'none' );
} else {
$t_this_string = string_display( $t_current );
}
if ( $t_first_flag != true ) {
$t_output = $t_output . '<br />';
} else {
$t_first_flag = false;
}
$t_output = $t_output . $t_this_string;
}
if ( true == $t_any_found ) {
PRINT lang_get( 'any' );
} else {
PRINT $t_output;
}
}
?>
</td>
<td colspan="1" class="small-caption" valign="top" id="show_fixed_in_version_filter_target">
<?php
$t_output = '';
$t_any_found = false;
if ( count( $t_filter['fixed_in_version'] ) == 0 ) {
PRINT lang_get( 'any' );
} else {
$t_first_flag = true;
foreach( $t_filter['fixed_in_version'] as $t_current ) {
$t_current = stripslashes( $t_current );
?>
<input type="hidden" name="fixed_in_version[]" value="<?php echo string_display( $t_current );?>" />
<?php
$t_this_string = '';
if ( ( ( $t_current == META_FILTER_ANY ) && ( is_numeric( $t_current ) ) )
|| ( is_blank( $t_current ) ) ) {
$t_any_found = true;
} else if ( META_FILTER_NONE == $t_current ) {
$t_this_string = lang_get( 'none' );
} else {
$t_this_string = string_display( $t_current );
}
if ( $t_first_flag != true ) {
$t_output = $t_output . '<br />';
} else {
$t_first_flag = false;
}
$t_output = $t_output . $t_this_string;
}
if ( true == $t_any_found ) {
PRINT lang_get( 'any' );
} else {
PRINT $t_output;
}
}
?>
</td>
<?php } else { ?>
<td colspan="2" class="small-caption" valign="top">
</td>
<td colspan="1" class="small-caption" valign="top">
</td>
<?php } ?>
<td colspan="1" class="small-caption" valign="top" id="show_priority_filter_target">
<?php
$t_output = '';
$t_any_found = false;
if ( count( $t_filter['show_priority'] ) == 0 ) {
PRINT lang_get( 'any' );
} else {
$t_first_flag = true;
foreach( $t_filter['show_priority'] as $t_current ) {
?>
<input type="hidden" name="show_priority[]" value="<?php echo $t_current;?>" />
<?php
$t_this_string = '';
if ( ( $t_current === META_FILTER_ANY ) || ( is_blank( $t_current ) ) || ( $t_current === 0 ) ) {
$t_any_found = true;
} else {
$t_this_string = get_enum_element( 'priority', $t_current );
}
if ( $t_first_flag != true ) {
$t_output = $t_output . '<br />';
} else {
$t_first_flag = false;
}
$t_output = $t_output . $t_this_string;
}
if ( true == $t_any_found ) {
PRINT lang_get( 'any' );
} else {
PRINT $t_output;
}
}
?>
</td>
<td colspan="1" class="small-caption" valign="top" id="show_target_version_filter_target">
<?php
$t_output = '';
$t_any_found = false;
if ( count( $t_filter['target_version'] ) == 0 ) {
PRINT lang_get( 'any' );
} else {
$t_first_flag = true;
foreach( $t_filter['target_version'] as $t_current ) {
$t_current = stripslashes( $t_current );
?>
<input type="hidden" name="target_version[]" value="<?php echo string_display( $t_current );?>" />
<?php
$t_this_string = '';
if ( ( ( $t_current == META_FILTER_ANY ) && ( is_numeric( $t_current ) ) )
|| ( is_blank( $t_current ) ) ) {
$t_any_found = true;
} else if ( META_FILTER_NONE == $t_current ) {
$t_this_string = lang_get( 'none' );
} else {
$t_this_string = string_display( $t_current );
}
if ( $t_first_flag != true ) {
$t_output = $t_output . '<br />';
} else {
$t_first_flag = false;
}
$t_output = $t_output . $t_this_string;
}
if ( true == $t_any_found ) {
PRINT lang_get( 'any' );
} else {
PRINT $t_output;
}
}
?>
</td>
<?php if ( $t_filter_cols > 8 ) {
echo '<td class="small-caption" valign="top" colspan="' . ( $t_filter_cols - 7 ) . '"> </td>';
} ?>
</tr>
<tr <?php PRINT "class=\"" . $t_trclass . "\""; ?>>
<td class="small-caption" valign="top">
<a href="<?php PRINT $t_filters_url . 'per_page'; ?>" id="per_page_filter"><?php PRINT lang_get( 'show' ) ?>:</a>
</td>
<td class="small-caption" valign="top">
<a href="<?php PRINT $t_filters_url . 'view_state'; ?>" id="view_state_filter"><?php PRINT lang_get( 'view_status' ) ?>:</a>
</td>
<td class="small-caption" valign="top">
<a href="<?php PRINT $t_filters_url . 'sticky_issues'; ?>" id="sticky_issues_filter"><?php PRINT lang_get( 'sticky' ) ?>:</a>
</td>
<td class="small-caption" valign="top" colspan="2">
<a href="<?php PRINT $t_filters_url . 'highlight_changed'; ?>" id="highlight_changed_filter"><?php PRINT lang_get( 'changed' ) ?>:</a>
</td>
<td class="small-caption" valign="top" >
<a href="<?php PRINT $t_filters_url . 'do_filter_by_date'; ?>" id="do_filter_by_date_filter"><?php PRINT lang_get( 'use_date_filters' ) ?>:</a>
</td>
<td class="small-caption" valign="top" colspan="2">
<a href="<?php PRINT $t_filters_url . 'relationship_type'; ?>" id="relationship_type_filter"><?php PRINT lang_get( 'bug_relationships' ) ?>:</a>
</td>
<?php if ( $t_filter_cols > 8 ) {
echo '<td class="small-caption" valign="top" colspan="' . ( $t_filter_cols - 8 ) . '"> </td>';
} ?>
</tr>
<tr class="row-1">
<td class="small-caption" valign="top" id="per_page_filter_target">
<?php echo ( $t_filter['per_page'] == 0 ) ? lang_get( 'all' ) : $t_filter['per_page']; ?>
<input type="hidden" name="per_page" value="<?php echo $t_filter['per_page'];?>" />
</td>
<td class="small-caption" valign="top" id="view_state_filter_target">
<?php
if ( VS_PUBLIC === $t_filter['view_state'] ) {
PRINT lang_get( 'public' );
} else if ( VS_PRIVATE === $t_filter['view_state'] ) {
PRINT lang_get( 'private' );
} else {
PRINT lang_get( 'any' );
$t_filter['view_state'] = META_FILTER_ANY;
}
?>
<input type="hidden" name="view_state" value="<?php echo $t_filter['view_state'];?>" />
</td>
<td class="small-caption" valign="top" id="sticky_issues_filter_target">
<?php
$t_sticky_filter_state = gpc_string_to_bool( $t_filter['sticky_issues'] ) ;
PRINT ( $t_sticky_filter_state ? lang_get( 'yes' ) : lang_get( 'no' ) );
?>
<input type="hidden" name="sticky_issues" value="<?php echo $t_sticky_filter_state ? 'on' : 'off';?>" />
</td>
<td class="small-caption" valign="top" colspan="2" id="highlight_changed_filter_target">
<?php PRINT $t_filter['highlight_changed']; ?>
<input type="hidden" name="highlight_changed" value="<?php echo $t_filter['highlight_changed'];?>" />
</td>
<td class="small-caption" valign="top" id="do_filter_by_date_filter_target">
<?php
if ( ( ON == config_get( 'dhtml_filters' ) ) && ( ON == config_get( 'use_javascript' ) ) ){
?>
<script type="text/javascript" language="JavaScript">
<!--
function SwitchDateFields() {
// All fields need to be enabled to go back to the script
document.filters_open.start_month.disabled = ! document.filters_open.do_filter_by_date.checked;
document.filters_open.start_day.disabled = ! document.filters_open.do_filter_by_date.checked;
document.filters_open.start_year.disabled = ! document.filters_open.do_filter_by_date.checked;
document.filters_open.end_month.disabled = ! document.filters_open.do_filter_by_date.checked;
document.filters_open.end_day.disabled = ! document.filters_open.do_filter_by_date.checked;
document.filters_open.end_year.disabled = ! document.filters_open.do_filter_by_date.checked;
return true;
}
// -->
</script>
<?php
} # end if dhtml_filters
if ( 'on' == $t_filter['do_filter_by_date'] ) {
?>
<input type="hidden" name="do_filter_by_date" value="<?php echo $t_filter['do_filter_by_date'];?>" />
<input type="hidden" name="start_month" value="<?php echo $t_filter['start_month'];?>" />
<input type="hidden" name="start_day" value="<?php echo $t_filter['start_day'];?>" />
<input type="hidden" name="start_year" value="<?php echo $t_filter['start_year'];?>" />
<input type="hidden" name="end_month" value="<?php echo $t_filter['end_month'];?>" />
<input type="hidden" name="end_day" value="<?php echo $t_filter['end_day'];?>" />
<input type="hidden" name="end_year" value="<?php echo $t_filter['end_year'];?>" />
<?php
$t_chars = preg_split( '//', config_get( 'short_date_format' ), -1, PREG_SPLIT_NO_EMPTY );
$t_time = mktime( 0, 0, 0, $t_filter['start_month'], $t_filter['start_day'], $t_filter['start_year'] );
foreach( $t_chars as $t_char ) {
if ( strcasecmp( $t_char, "M" ) == 0 ) {
PRINT ' ';
PRINT date( 'F', $t_time );
}
if ( strcasecmp( $t_char, "D" ) == 0 ) {
PRINT ' ';
PRINT date( 'd', $t_time );
}
if ( strcasecmp( $t_char, "Y" ) == 0 ) {
PRINT ' ';
PRINT date( 'Y', $t_time );
}
}
PRINT ' - ';
$t_time = mktime( 0, 0, 0, $t_filter['end_month'], $t_filter['end_day'], $t_filter['end_year'] );
foreach( $t_chars as $t_char ) {
if ( strcasecmp( $t_char, "M" ) == 0 ) {
PRINT ' ';
PRINT date( 'F', $t_time );
}
if ( strcasecmp( $t_char, "D" ) == 0 ) {
PRINT ' ';
PRINT date( 'd', $t_time );
}
if ( strcasecmp( $t_char, "Y" ) == 0 ) {
PRINT ' ';
PRINT date( 'Y', $t_time );
}
}
} else {
PRINT lang_get( 'no' );
}
?>
</td>
<td class="small-caption" valign="top" colspan="2" id="relationship_type_filter_target">
<input type="hidden" name="relationship_type" value="<?php echo $t_filter['relationship_type'];?>" />
<input type="hidden" name="relationship_bug" value="<?php echo $t_filter['relationship_bug'];?>" />
<?php
$c_rel_type = $t_filter['relationship_type'];
$c_rel_bug = $t_filter['relationship_bug'];
if ( -1 == $c_rel_type || 0 == $c_rel_bug ) {
PRINT lang_get( 'any' );
} else {
PRINT relationship_get_description_for_history ($c_rel_type) . ' ' . $c_rel_bug;
}
?>
</td>
<?php if ( $t_filter_cols > 8 ) {
echo '<td class="small-caption" valign="top" colspan="' . ( $t_filter_cols - 8 ) . '"> </td>';
} ?>
</tr>
<tr <?php PRINT "class=\"" . $t_trclass . "\""; ?>>
<td class="small-caption" valign="top">
<a href="<?php echo $t_filters_url . 'platform'; ?>" id="platform_filter"><?php echo lang_get( 'platform' ) ?>:</a>
</td>
<td class="small-caption" valign="top">
<a href="<?php PRINT $t_filters_url . 'os'; ?>" id="os_filter"><?php echo lang_get( 'os' ) ?>:</a>
</td>
<td class="small-caption" valign="top">
<a href="<?php PRINT $t_filters_url . 'os_build'; ?>" id="os_build_filter"><?php echo lang_get( 'os_version' ) ?>:</a>
</td>
<td class="small-caption" valign="top" colspan="5">
<a href="<?php PRINT $t_filters_url . 'tag_string'; ?>" id="tag_string_filter"><?php echo lang_get( 'tags' ) ?>:</a>
</td>
<?php if ( $t_filter_cols > 8 ) {
echo '<td class="small-caption" valign="top" colspan="' . ( $t_filter_cols - 8 ) . '"> </td>';
} ?>
</tr>
<tr class="row-1">
<td class="small-caption" valign="top" id="platform_filter_target">
<?php
print_multivalue_field( FILTER_PROPERTY_PLATFORM, $t_filter[FILTER_PROPERTY_PLATFORM] );
?>
</td>
<td class="small-caption" valign="top" id="os_filter_target">
<?php
print_multivalue_field( FILTER_PROPERTY_OS, $t_filter[FILTER_PROPERTY_OS] );
?>
</td>
<td class="small-caption" valign="top" id="os_build_filter_target">
<?php
print_multivalue_field( FILTER_PROPERTY_OS_BUILD, $t_filter[FILTER_PROPERTY_OS_BUILD] );
?>
</td>
<td class="small-caption" valign="top" id="tag_string_filter_target" colspan="5">
<?php
$t_tag_string = $t_filter['tag_string'];
if ( $t_filter['tag_select'] != 0 ) {
$t_tag_string .= ( is_blank( $t_tag_string ) ? '' : config_get( 'tag_separator' ) );
$t_tag_string .= tag_get_field( $t_filter['tag_select'], 'name' );
}
PRINT $t_tag_string
?>
<input type="hidden" name="tag_string" value="<?php echo $t_tag_string ?>"/>
</td>
</tr>
<?php
if ( ON == config_get( 'filter_by_custom_fields' ) ) {
# -- Custom Field Searching --
if ( count( $t_accessible_custom_fields_ids ) > 0 ) {
$t_per_row = config_get( 'filter_custom_fields_per_row' );
$t_num_fields = count( $t_accessible_custom_fields_ids ) ;
$t_row_idx = 0;
$t_col_idx = 0;
$t_fields = "";
$t_values = "";
for ( $i = 0; $i < $t_num_fields; $i++ ) {
if ( $t_col_idx == 0 ) {
$t_fields = '<tr class="' . $t_trclass . '">';
$t_values = '<tr class="row-1">';
}
if ( isset( $t_accessible_custom_fields_names[ $i ] ) ) {
$t_fields .= '<td class="small-caption" valign="top"> ';
$t_fields .= '<a href="' . $t_filters_url . 'custom_field_' . $t_accessible_custom_fields_ids[$i] . '[]" id="custom_field_'. $t_accessible_custom_fields_ids[$i] .'_filter">';
$t_fields .= string_display( lang_get_defaulted( $t_accessible_custom_fields_names[$i] ) );
$t_fields .= '</a> </td> ';
}
$t_output = '';
$t_any_found = false;
$t_values .= '<td class="small-caption" valign="top" id="custom_field_' . $t_accessible_custom_fields_ids[$i] . '_filter_target"> ' ;
if ( !isset( $t_filter['custom_fields'][$t_accessible_custom_fields_ids[$i]] ) ) {
$t_values .= lang_get( 'any' );
} else {
if ( $t_accessible_custom_fields_types[$i] == CUSTOM_FIELD_TYPE_DATE ) {
# @@@ moved embedded javascript here from print_filter_custom_field_date
# it appears not to load properly on Firefox and other browsers if loaded through the httpxmlreq
$t_field_id = $t_accessible_custom_fields_ids[$i];
$t_js_toggle_func = "toggle_custom_date_field_" . $t_field_id . "_controls" ;
if ( ( ON == config_get( 'dhtml_filters' ) ) && ( ON == config_get( 'use_javascript' ) ) ) {
?>
<script type="text/javascript" language="JavaScript">
<!--
function <?php echo $t_js_toggle_func . "_start" ; ?>(disable) {
document.filters_open.custom_field_<?php echo $t_field_id ; ?>_start_year.disabled = disable ;
document.filters_open.custom_field_<?php echo $t_field_id ; ?>_start_month.disabled = disable ;
document.filters_open.custom_field_<?php echo $t_field_id ; ?>_start_day.disabled = disable ;
} ;
function <?php echo $t_js_toggle_func . "_end" ; ?>(disable) {
document.filters_open.custom_field_<?php echo $t_field_id ; ?>_end_year.disabled = disable ;
document.filters_open.custom_field_<?php echo $t_field_id ; ?>_end_month.disabled = disable ;
document.filters_open.custom_field_<?php echo $t_field_id ; ?>_end_day.disabled = disable ;
} ;
function <?php echo $t_js_toggle_func ; ?>() {
switch (document.filters_open.custom_field_<?php echo $t_field_id ; ?>_control.selectedIndex) {
case <?php echo CUSTOM_FIELD_DATE_ANY ; ?>:
case <?php echo CUSTOM_FIELD_DATE_NONE ; ?>:
<?php echo $t_js_toggle_func . "_start" ; ?>(true) ;
<?php echo $t_js_toggle_func . "_end" ; ?>(true) ;
break ;
case <?php echo CUSTOM_FIELD_DATE_BETWEEN ; ?>:
<?php echo $t_js_toggle_func . "_start" ; ?>(false) ;
<?php echo $t_js_toggle_func . "_end" ; ?>(false) ;
break ;
default:
<?php echo $t_js_toggle_func . "_start" ; ?>(false) ;
<?php echo $t_js_toggle_func . "_end" ; ?>(true) ;
break ;
}
}
// -->
</script>
<?php
} # end if dhtml_filters
$t_short_date_format = config_get( 'short_date_format' );
if ( !isset( $t_filter['custom_fields'][$t_accessible_custom_fields_ids[$i]][1] ) ) {
$t_filter['custom_fields'][$t_accessible_custom_fields_ids[$i]][1] = 0;
}
$t_start = date( $t_short_date_format, $t_filter['custom_fields'][$t_accessible_custom_fields_ids[$i]][1] );
if ( !isset( $t_filter['custom_fields'][$t_accessible_custom_fields_ids[$i]][2] ) ) {
$t_filter['custom_fields'][$t_accessible_custom_fields_ids[$i]][2] = 0;
}
$t_end = date( $t_short_date_format, $t_filter['custom_fields'][$t_accessible_custom_fields_ids[$i]][2] );
switch ($t_filter['custom_fields'][$t_accessible_custom_fields_ids[$i]][0]) {
case CUSTOM_FIELD_DATE_ANY:
$t_values .= lang_get( 'any' ) ;
break;
case CUSTOM_FIELD_DATE_NONE:
$t_values .= lang_get( 'none' ) ;
break;
case CUSTOM_FIELD_DATE_BETWEEN:
$t_values .= lang_get( 'between' ) . '<br />';
$t_values .= $t_start . '<br />' . $t_end;
break;
case CUSTOM_FIELD_DATE_ONORBEFORE:
$t_values .= lang_get( 'on_or_before' ) . '<br />';
$t_values .= $t_end;
break;
case CUSTOM_FIELD_DATE_BEFORE:
$t_values .= lang_get( 'before' ) . '<br />';
$t_values .= $t_end;
break;
case CUSTOM_FIELD_DATE_ON:
$t_values .= lang_get( 'on' ) . '<br />';
$t_values .= $t_start;
break;
case CUSTOM_FIELD_DATE_AFTER:
$t_values .= lang_get( 'after' ) . '<br />';
$t_values .= $t_start;
break ;
case CUSTOM_FIELD_DATE_ONORAFTER:
$t_values .= lang_get( 'on_or_after' ) . '<br />';
$t_values .= $t_start;
break ;
}
} else {
$t_first_flag = true;
foreach( $t_filter['custom_fields'][$t_accessible_custom_fields_ids[$i]] as $t_current ) {
$t_current = stripslashes( $t_current );
$t_this_string = '';
if ( ( ( $t_current == META_FILTER_ANY ) && ( is_numeric( $t_current ) ) )
|| ( is_blank( $t_current ) ) ) {
$t_any_found = true;
} else if ( ( META_FILTER_NONE == $t_current ) && ( is_numeric( $t_current ) ) ) {
$t_this_string = lang_get( 'none' );
} else {
$t_this_string = string_display( $t_current );
}
if ( $t_first_flag != true ) {
$t_output = $t_output . '<br />';
} else {
$t_first_flag = false;
}
$t_output = $t_output . $t_this_string;
$t_values .= '<input type="hidden" name="custom_field_'.$t_accessible_custom_fields_ids[$i].'[]" value="'.string_display( $t_current ).'" />';
}
}
if ( true == $t_any_found ) {
$t_values .= lang_get( 'any' );
} else {
$t_values .= $t_output;
}
}
$t_values .= ' </td>';
$t_col_idx++;
if ( $t_col_idx == $t_per_row ) {
if ( $t_filter_cols > $t_per_row ) {
$t_fields .= '<td colspan="' . ($t_filter_cols - $t_per_row ) . '"> </td> ';
$t_values .= '<td colspan="' . ($t_filter_cols - $t_per_row) . '"> </td> ';
}
$t_fields .= '</tr>' . "\n";
$t_values .= '</tr>' . "\n";
echo $t_fields;
echo $t_values;
$t_col_idx = 0;
$t_row_idx++;
}
}
if ( $t_col_idx > 0 ) {
if ( $t_col_idx < $t_per_row ) {
$t_fields .= '<td colspan="' . ($t_per_row - $t_col_idx) . '"> </td> ';
$t_values .= '<td colspan="' . ($t_per_row - $t_col_idx) . '"> </td> ';
}
if ( $t_filter_cols > $t_per_row ) {
$t_fields .= '<td colspan="' . ($t_filter_cols - $t_per_row ) . '"> </td> ';
$t_values .= '<td colspan="' . ($t_filter_cols - $t_per_row) . '"> </td> ';
}
$t_fields .= '</tr>' . "\n";
$t_values .= '</tr>' . "\n";
echo $t_fields;
echo $t_values;
}
}
}
?>
<tr class="row-1">
<td class="small-caption" valign="top">
<a href="<?php PRINT $t_filters_url . 'show_sort'; ?>" id="show_sort_filter"><?php PRINT lang_get( 'sort' ) ?>:</a>
</td>
<td class="small-caption" valign="top" colspan="2" id="show_sort_filter_target">
<?php
$t_sort_fields = split( ',', $t_filter['sort'] );
$t_dir_fields = split( ',', $t_filter['dir'] );
for ( $i=0; $i<2; $i++ ) {
if ( isset( $t_sort_fields[$i] ) ) {
if ( 0 < $i ) {
echo ", ";
}
$t_sort = $t_sort_fields[$i];
if ( strpos( $t_sort, 'custom_' ) === 0 ) {
$t_field_name = string_display( lang_get_defaulted( substr( $t_sort, strlen( 'custom_' ) ) ) );
} else {
$t_field_name = string_get_field_name( $t_sort );
}
echo $t_field_name . " " . lang_get( 'bugnote_order_' . strtolower( $t_dir_fields[$i] ) );
echo "<input type=\"hidden\" name=\"sort_$i\" value=\"$t_sort_fields[$i]\" />";
echo "<input type=\"hidden\" name=\"dir_$i\" value=\"$t_dir_fields[$i]\" />";
}
}
?>
</td>
<?php
if ( 'advanced' == $t_view_type ) {
?>
<td class="small-caption" valign="top" colspan="2">
<a href="<?php PRINT $t_filters_url . 'project_id'; ?>" id="project_id_filter"><?php PRINT lang_get( 'email_project' ) ?>:</a>
</td>
<td class="small-caption" valign="top" id="project_id_filter_target">
<?php
$t_output = '';
if ( !is_array( $t_filter['project_id'] ) ) {
$t_filter['project_id'] = Array( $t_filter['project_id'] );
}
if ( count( $t_filter['project_id'] ) == 0 ) {
PRINT lang_get( 'current' );
} else {
$t_first_flag = true;
foreach( $t_filter['project_id'] as $t_current ) {
?>
<input type="hidden" name="project_id[]" value="<?php echo $t_current;?>" />
<?php
$t_this_name = '';
if ( META_FILTER_CURRENT == $t_current ) {
$t_this_name = lang_get( 'current' );
} else {
$t_this_name = project_get_name( $t_current );
}
if ( $t_first_flag != true ) {
$t_output = $t_output . '<br />';
} else {
$t_first_flag = false;
}
$t_output = $t_output . $t_this_name;
}
PRINT $t_output;
}
?>
</td>
<?php
if ( $t_filter_cols > 6 ) {
echo '<td class="small-caption" valign="top" colspan="' . ( $t_filter_cols - 5 ) . '"> </td>';
}
} else {
if ( $t_filter_cols > 3 ) {
echo '<td class="small-caption" valign="top" colspan="' . ( $t_filter_cols - 2 ) . '"> </td>';
}
}
?>
</tr>
<?php
} // expanded
?>
<tr>
<td colspan="2">
<?php
collapse_icon( 'filter' );
echo lang_get( 'search' );
?>:
<input type="text" size="16" name="search" value="<?php PRINT string_html_specialchars( $t_filter['search'] ); ?>" />
<input type="submit" name="filter" class="button-small" value="<?php PRINT lang_get( 'filter_button' ) ?>" />
</td>
</form>
<td class="center" colspan="<?php echo ( $t_filter_cols - 6 ) ?>"> <!-- use this label for padding -->
<?php
if ( ON == config_get( 'dhtml_filters' ) ) {
$f_switch_view_link = 'view_all_set.php?type=6&view_type=';
} else {
$f_switch_view_link = 'view_filters_page.php?view_type=';
}
if ( ( SIMPLE_ONLY != config_get( 'view_filters' ) ) && ( ADVANCED_ONLY != config_get( 'view_filters' ) ) ) {
if ( 'advanced' == $t_view_type ) {
print_bracket_link( $f_switch_view_link . 'simple', lang_get( 'simple_filters' ) );
} else {
print_bracket_link( $f_switch_view_link . 'advanced', lang_get( 'advanced_filters' ) );
}
print_bracket_link(
'permalink_page.php?url=' . urlencode( filter_get_url( $t_filter ) ),
lang_get( 'create_filter_link' ),
/* new window = */ true );
}
?>
</td>
<td class="right" colspan="4">
<?php
$t_stored_queries_arr = array();
$t_stored_queries_arr = filter_db_get_available_queries();
if ( count( $t_stored_queries_arr ) > 0 ) {
?>
<form method="get" name="list_queries<?php echo $t_form_name_suffix; ?>" action="view_all_set.php">
<input type="hidden" name="type" value="3" />
<?php
if ( ON == config_get( 'use_javascript' ) ) {
echo "<select name=\"source_query_id\" onchange=\"document.forms.list_queries$t_form_name_suffix.submit();\">";
} else {
PRINT '<select name="source_query_id">';
}
?>
<option value="-1"><?php PRINT '[' . lang_get( 'reset_query' ) . ']' ?></option>
<option value="-1"></option>
<?php
foreach( $t_stored_queries_arr as $t_query_id => $t_query_name ) {
PRINT '<option value="' . $t_query_id . '">' . $t_query_name . '</option>';
}
?>
</select>
<input type="submit" name="switch_to_query_button" class="button-small" value="<?php PRINT lang_get( 'use_query' ) ?>" />
</form>
<form method="post" name="open_queries" action="query_view_page.php">
<input type="submit" name="switch_to_query_button" class="button-small" value="<?php PRINT lang_get( 'open_queries' ) ?>" />
</form>
<?php
} else {
?>
<form method="get" name="reset_query" action="view_all_set.php">
<input type="hidden" name="type" value="3" />
<input type="hidden" name="source_query_id" value="-1" />
<input type="submit" name="reset_query_button" class="button-small" value="<?php PRINT lang_get( 'reset_query' ) ?>" />
</form>
<?php
}
if ( access_has_project_level( config_get( 'stored_query_create_threshold' ) ) ) {
?>
<form method="post" name="save_query" action="query_store_page.php">
<input type="submit" name="save_query_button" class="button-small" value="<?php PRINT lang_get( 'save_query' ) ?>" />
</form>
<?php
} else {
?>
<?php
}
?>
</td>
</tr>
</table>
<?php
}
# Add a filter to the database for the current user
function filter_db_set_for_current_user( $p_project_id, $p_is_public,
$p_name, $p_filter_string ) {
$t_user_id = auth_get_current_user_id();
$c_project_id = db_prepare_int( $p_project_id );
$c_is_public = db_prepare_bool( $p_is_public, false );
$c_name = db_prepare_string( $p_name );
$c_filter_string = db_prepare_string( $p_filter_string );
$t_filters_table = config_get( 'mantis_filters_table' );
# check that the user can save non current filters (if required)
if ( ( ALL_PROJECTS <= $c_project_id ) && ( !is_blank( $p_name ) ) &&
( !access_has_project_level( config_get( 'stored_query_create_threshold' ) ) ) ) {
return -1;
}
# ensure that we're not making this filter public if we're not allowed
if ( !access_has_project_level( config_get( 'stored_query_create_shared_threshold' ) ) ) {
$c_is_public = db_prepare_bool( false );
}
# Do I need to update or insert this value?
$query = "SELECT id FROM $t_filters_table
WHERE user_id='$t_user_id'
AND project_id='$c_project_id'
AND name='$c_name'";
$result = db_query( $query );
if ( db_num_rows( $result ) > 0 ) {
$row = db_fetch_array( $result );
$query = "UPDATE $t_filters_table
SET is_public='$c_is_public',
filter_string='$c_filter_string'
WHERE id='" . $row['id'] . "'";
db_query( $query );
return $row['id'];
} else {
$query = "INSERT INTO $t_filters_table
( user_id, project_id, is_public, name, filter_string )
VALUES
( '$t_user_id', '$c_project_id', '$c_is_public', '$c_name', '$c_filter_string' )";
db_query( $query );
# Recall the query, we want the filter ID
$query = "SELECT id
FROM $t_filters_table
WHERE user_id='$t_user_id'
AND project_id='$c_project_id'
AND name='$c_name'";
$result = db_query( $query );
if ( db_num_rows( $result ) > 0 ) {
$row = db_fetch_array( $result );
return $row['id'];
}
return -1;
}
}
# We cache filter requests to reduce the number of SQL queries
$g_cache_filter_db_filters = array();
# This function will return the filter string that is
# tied to the unique id parameter. If the user doesn't
# have permission to see this filter, the function will
# return null
function filter_db_get_filter( $p_filter_id, $p_user_id = null ) {
global $g_cache_filter_db_filters;
$t_filters_table = config_get( 'mantis_filters_table' );
$c_filter_id = db_prepare_int( $p_filter_id );
if ( isset( $g_cache_filter_db_filters[$p_filter_id] ) ) {
return $g_cache_filter_db_filters[$p_filter_id];
}
if ( null === $p_user_id ) {
$t_user_id = auth_get_current_user_id();
} else {
$t_user_id = $p_user_id;
}
$query = "SELECT *
FROM $t_filters_table
WHERE id='$c_filter_id'";
$result = db_query( $query );
if ( db_num_rows( $result ) > 0 ) {
$row = db_fetch_array( $result );
if ( $row['user_id'] != $t_user_id ) {
if ( $row['is_public'] != true ) {
return null;
}
}
# check that the user has access to non current filters
if ( ( ALL_PROJECTS <= $row['project_id'] ) && ( !is_blank( $row['name'] ) ) && ( !access_has_project_level( config_get( 'stored_query_use_threshold', $row['project_id'], $t_user_id ) ) ) ) {
return null;
}
$g_cache_filter_db_filters[$p_filter_id] = $row['filter_string'];
return $row['filter_string'];
}
return null;
}
function filter_db_get_project_current( $p_project_id, $p_user_id = null ) {
$t_filters_table = config_get( 'mantis_filters_table' );
$c_project_id = db_prepare_int( $p_project_id );
$c_project_id = $c_project_id * -1;
if ( null === $p_user_id ) {
$c_user_id = auth_get_current_user_id();
} else {
$c_user_id = db_prepare_int( $p_user_id );
}
# we store current filters for each project with a special project index
$query = "SELECT *
FROM $t_filters_table
WHERE user_id='$c_user_id'
AND project_id='$c_project_id'
AND name=''";
$result = db_query( $query );
if ( db_num_rows( $result ) > 0 ) {
$row = db_fetch_array( $result );
return $row['id'];
}
return null;
}
function filter_db_get_name( $p_filter_id ) {
$t_filters_table = config_get( 'mantis_filters_table' );
$c_filter_id = db_prepare_int( $p_filter_id );
$query = "SELECT *
FROM $t_filters_table
WHERE id='$c_filter_id'";
$result = db_query( $query );
if ( db_num_rows( $result ) > 0 ) {
$row = db_fetch_array( $result );
if ( $row['user_id'] != auth_get_current_user_id() ) {
if ( $row['is_public'] != true ) {
return null;
}
}
return $row['name'];
}
return null;
}
# Will return true if the user can delete this query
function filter_db_can_delete_filter( $p_filter_id ) {
$t_filters_table = config_get( 'mantis_filters_table' );
$c_filter_id = db_prepare_int( $p_filter_id );
$t_user_id = auth_get_current_user_id();
# Administrators can delete any filter
if ( access_has_global_level( ADMINISTRATOR ) ) {
return true;
}
$query = "SELECT id
FROM $t_filters_table
WHERE id='$c_filter_id'
AND user_id='$t_user_id'
AND project_id!='-1'";
$result = db_query( $query );
if ( db_num_rows( $result ) > 0 ) {
return true;
}
return false;
}
function filter_db_delete_filter( $p_filter_id ) {
$t_filters_table = config_get( 'mantis_filters_table' );
$c_filter_id = db_prepare_int( $p_filter_id );
$t_user_id = auth_get_current_user_id();
if ( !filter_db_can_delete_filter( $c_filter_id ) ) {
return false;
}
$query = "DELETE FROM $t_filters_table
WHERE id='$c_filter_id'";
$result = db_query( $query );
if ( db_affected_rows( $result ) > 0 ) {
return true;
}
return false;
}
function filter_db_delete_current_filters( ) {
$t_filters_table = config_get( 'mantis_filters_table' );
$t_all_id = ALL_PROJECTS;
$query = "DELETE FROM $t_filters_table
WHERE project_id<='$t_all_id'
AND name=''";
$result = db_query( $query );
}
function filter_db_get_available_queries( $p_project_id = null, $p_user_id = null ) {
$t_filters_table = config_get( 'mantis_filters_table' );
$t_overall_query_arr = array();
if ( null === $p_project_id ) {
$t_project_id = helper_get_current_project();
} else {
$t_project_id = db_prepare_int( $p_project_id );
}
if ( null === $p_user_id ) {
$t_user_id = auth_get_current_user_id();
} else {
$t_user_id = db_prepare_int( $p_user_id );
}
# If the user doesn't have access rights to stored queries, just return
if ( !access_has_project_level( config_get( 'stored_query_use_threshold' ) ) ) {
return $t_overall_query_arr;
}
# Get the list of available queries. By sorting such that public queries are
# first, we can override any query that has the same name as a private query
# with that private one
$query = "SELECT * FROM $t_filters_table
WHERE (project_id='$t_project_id'
OR project_id='0')
AND name!=''
ORDER BY is_public DESC, name ASC";
$result = db_query( $query );
$query_count = db_num_rows( $result );
for ( $i = 0; $i < $query_count; $i++ ) {
$row = db_fetch_array( $result );
if ( ( $row['user_id'] == $t_user_id ) || db_prepare_bool( $row['is_public'] ) ) {
$t_overall_query_arr[$row['id']] = $row['name'];
}
}
$t_overall_query_arr = array_unique( $t_overall_query_arr );
asort( $t_overall_query_arr );
return $t_overall_query_arr;
}
# Make sure that our filters are entirely correct and complete (it is possible that they are not).
# We need to do this to cover cases where we don't have complete control over the filters given.
function filter_ensure_valid_filter( $p_filter_arr ) {
# extend current filter to add information passed via POST
if ( !isset( $p_filter_arr['_version'] ) ) {
$p_filter_arr['_version'] = config_get( 'cookie_version' );
}
$t_cookie_vers = (int) substr( $p_filter_arr['_version'], 1 );
if ( substr( config_get( 'cookie_version' ), 1 ) > $t_cookie_vers ) { # if the version is old, update it
$p_filter_arr['_version'] = config_get( 'cookie_version' );
}
if ( !isset( $p_filter_arr['_view_type'] ) ) {
$p_filter_arr['_view_type'] = gpc_get_string( 'view_type', 'simple' );
}
if ( !isset( $p_filter_arr['per_page'] ) ) {
$p_filter_arr['per_page'] = gpc_get_int( 'per_page', config_get( 'default_limit_view' ) );
}
if ( !isset( $p_filter_arr['highlight_changed'] ) ) {
$p_filter_arr['highlight_changed'] = config_get( 'default_show_changed' );
}
if ( !isset( $p_filter_arr['sticky_issues'] ) ) {
$p_filter_arr['sticky_issues'] = config_get( 'show_sticky_issues' );
}
if ( !isset( $p_filter_arr['sort'] ) ) {
$p_filter_arr['sort'] = "last_updated";
}
if ( !isset( $p_filter_arr['dir'] ) ) {
$p_filter_arr['dir'] = "DESC";
}
if ( !isset( $p_filter_arr['platform'] ) ) {
$p_filter_arr['platform'] = array( 0 => META_FILTER_ANY );
}
if ( !isset( $p_filter_arr['os'] ) ) {
$p_filter_arr['os'] = array( 0 => META_FILTER_ANY );
}
if ( !isset( $p_filter_arr['os_build'] ) ) {
$p_filter_arr['os_build'] = array( 0 => META_FILTER_ANY );
}
if ( !isset( $p_filter_arr['project_id'] ) ) {
$p_filter_arr['project_id'] = array( 0 => META_FILTER_CURRENT );
}
if ( !isset( $p_filter_arr['start_month'] ) ) {
$p_filter_arr['start_month'] = gpc_get_string( 'start_month', date( 'm' ) );
}
if ( !isset( $p_filter_arr['start_day'] ) ) {
$p_filter_arr['start_day'] = gpc_get_string( 'start_day', 1 );
}
if ( !isset( $p_filter_arr['start_year'] ) ) {
$p_filter_arr['start_year'] = gpc_get_string( 'start_year', date( 'Y' ) );
}
if ( !isset( $p_filter_arr['end_month'] ) ) {
$p_filter_arr['end_month'] = gpc_get_string( 'end_month', date( 'm' ) );
}
if ( !isset( $p_filter_arr['end_day'] ) ) {
$p_filter_arr['end_day'] = gpc_get_string( 'end_day', date( 'd' ) );
}
if ( !isset( $p_filter_arr['end_year'] ) ) {
$p_filter_arr['end_year'] = gpc_get_string( 'end_year', date( 'Y' ) );
}
if ( !isset( $p_filter_arr['search'] ) ) {
$p_filter_arr['search'] = '';
}
if ( !isset( $p_filter_arr['and_not_assigned'] ) ) {
$p_filter_arr['and_not_assigned'] = gpc_get_bool( 'and_not_assigned', false );
}
if ( !isset( $p_filter_arr['do_filter_by_date'] ) ) {
$p_filter_arr['do_filter_by_date'] = gpc_get_bool( 'do_filter_by_date', false );
}
if ( !isset( $p_filter_arr['view_state'] ) ) {
$p_filter_arr['view_state'] = gpc_get( 'view_state', '' );
} else if ( ( $p_filter_arr['view_state'] == 'any' ) || ( $p_filter_arr['view_state'] == 0 ) ) {
$p_filter_arr['view_state'] = META_FILTER_ANY;
}
if ( !isset( $p_filter_arr['relationship_type'] ) ) {
$p_filter_arr['relationship_type'] = gpc_get_int( 'relationship_type', -1 );
}
if ( !isset( $p_filter_arr['relationship_bug'] ) ) {
$p_filter_arr['relationship_bug'] = gpc_get_int( 'relationship_bug', 0 );
}
if ( !isset( $p_filter_arr['target_version'] ) ) {
$p_filter_arr['target_version'] = META_FILTER_ANY;
}
if ( !isset( $p_filter_arr['tag_string'] ) ) {
$p_filter_arr['tag_string'] = gpc_get_string( 'tag_string', '' );
}
if ( !isset( $p_filter_arr['tag_select'] ) ) {
$p_filter_arr['tag_select'] = gpc_get_string( 'tag_select', '' );
}
$t_custom_fields = custom_field_get_ids(); # @@@ (thraxisp) This should really be the linked ids, but we don't know the project
$f_custom_fields_data = array();
if ( is_array( $t_custom_fields ) && ( sizeof( $t_custom_fields ) > 0 ) ) {
foreach( $t_custom_fields as $t_cfid ) {
if ( is_array( gpc_get( 'custom_field_' . $t_cfid, null ) ) ) {
$f_custom_fields_data[$t_cfid] = gpc_get_string_array( 'custom_field_' . $t_cfid, META_FILTER_ANY );
} else {
$f_custom_fields_data[$t_cfid] = gpc_get_string( 'custom_field_' . $t_cfid, META_FILTER_ANY );
$f_custom_fields_data[$t_cfid] = array( $f_custom_fields_data[$t_cfid] );
}
}
}
#validate sorting
$t_fields = helper_get_columns_to_view();
$t_n_fields = count( $t_fields );
for ( $i=0; $i < $t_n_fields; $i++ ) {
if ( isset( $t_fields[$i] ) && in_array( $t_fields[$i], array( 'selection', 'edit', 'bugnotes_count', 'attachment' ) ) ) {
unset( $t_fields[$i] );
}
}
$t_sort_fields = split( ',', $p_filter_arr['sort'] );
$t_dir_fields = split( ',', $p_filter_arr['dir'] );
for ( $i=0; $i<2; $i++ ) {
if ( isset( $t_sort_fields[$i] ) ) {
$t_drop = false;
$t_sort = $t_sort_fields[$i];
if ( strpos( $t_sort, 'custom_' ) === 0 ) {
if ( false === custom_field_get_id_from_name( substr( $t_sort, strlen( 'custom_' ) ) ) ) {
$t_drop = true;
}
} else {
if ( ! in_array( $t_sort, $t_fields ) ) {
$t_drop = true;
}
}
if ( ! in_array( $t_dir_fields[$i], array( "ASC", "DESC" ) ) ) {
$t_drop = true;
}
if ( $t_drop ) {
unset( $t_sort_fields[$i] );
unset( $t_dir_fields[$i] );
}
}
}
if ( count( $t_sort_fields ) > 0 ) {
$p_filter_arr['sort'] = implode( ',', $t_sort_fields );
$p_filter_arr['dir'] = implode( ',', $t_dir_fields );
} else {
$p_filter_arr['sort'] = "last_updated";
$p_filter_arr['dir'] = "DESC";
}
# validate or filter junk from other fields
$t_multi_select_list = array( 'show_category' => 'string',
'show_severity' => 'int',
'show_status' => 'int',
'reporter_id' => 'int',
'handler_id' => 'int',
'show_resolution' => 'int',
'show_priority' => 'int',
'show_build' => 'string',
'show_version' => 'string',
'hide_status' => 'int',
'fixed_in_version' => 'string',
'target_version' => 'string',
'user_monitor' => 'int',
'show_profile' => 'int'
);
foreach( $t_multi_select_list as $t_multi_field_name => $t_multi_field_type ) {
if ( !isset( $p_filter_arr[$t_multi_field_name] ) ) {
if ( 'hide_status' == $t_multi_field_name ) {
$p_filter_arr[$t_multi_field_name] = array( config_get( 'hide_status_default' ) );
} else if ( 'custom_fields' == $t_multi_field_name ) {
$p_filter_arr[$t_multi_field_name] = array( $f_custom_fields_data );
} else {
$p_filter_arr[$t_multi_field_name] = array( META_FILTER_ANY );
}
} else {
if ( !is_array( $p_filter_arr[$t_multi_field_name] ) ) {
$p_filter_arr[$t_multi_field_name] = array( $p_filter_arr[$t_multi_field_name] );
}
$t_checked_array = array();
foreach ( $p_filter_arr[$t_multi_field_name] as $t_filter_value ) {
$t_filter_value = stripslashes( $t_filter_value );
if ( ( $t_filter_value === 'any' ) || ( $t_filter_value === '[any]' ) ) {
$t_filter_value = META_FILTER_ANY;
}
if ( ( $t_filter_value === 'none' ) || ( $t_filter_value === '[none]' ) ) {
$t_filter_value = META_FILTER_NONE;
}
if ( 'string' == $t_multi_field_type ) {
$t_checked_array[] = db_prepare_string( $t_filter_value );
} else if ( 'int' == $t_multi_field_type ) {
$t_checked_array[] = db_prepare_int( $t_filter_value );
} else if ( 'array' == $t_multi_field_type ) {
$t_checked_array[] = $t_filter_value;
}
}
$p_filter_arr[$t_multi_field_name] = $t_checked_array;
}
}
if ( is_array( $t_custom_fields ) && ( sizeof( $t_custom_fields ) > 0 ) ) {
foreach( $t_custom_fields as $t_cfid ) {
if ( !isset( $p_filter_arr['custom_fields'][$t_cfid] ) ) {
$p_filter_arr['custom_fields'][$t_cfid] = array( META_FILTER_ANY );
} else {
if ( !is_array( $p_filter_arr['custom_fields'][$t_cfid] ) ) {
$p_filter_arr['custom_fields'][$t_cfid] = array( $p_filter_arr['custom_fields'][$t_cfid] );
}
$t_checked_array = array();
foreach ( $p_filter_arr['custom_fields'][$t_cfid] as $t_filter_value ) {
$t_filter_value = stripslashes( $t_filter_value );
if ( ( $t_filter_value === 'any' ) || ( $t_filter_value === '[any]' ) ) {
$t_filter_value = META_FILTER_ANY;
}
$t_checked_array[] = db_prepare_string( $t_filter_value );
}
$p_filter_arr['custom_fields'][$t_cfid] = $t_checked_array;
}
}
}
# all of our filter values are now guaranteed to be there, and correct.
return $p_filter_arr;
}
/**
* The following functions each print out an individual filter field.
* They are derived from view_filters_page.php
*
* The functions follow a strict naming convention:
*
* print_filter_[filter_name]
*
* Where [filter_name] is the same as the "name" of the form element for
* that filter. This naming convention is depended upon by the controller
* at the end of the script.
*/
/**
* I expect that this code could be made simpler by refactoring into a
* class so as to avoid all those calls to global(which are pretty ugly)
*
* These functions could also be shared by view_filters_page.php
*
*/
function print_filter_reporter_id(){
global $t_select_modifier, $t_filter;
?>
<select <?php PRINT $t_select_modifier;?> name="reporter_id[]">
<?php
# if current user is a reporter, and limited reports set to ON, only display that name
# @@@ thraxisp - access_has_project_level checks greater than or equal to,
# this assumed that there aren't any holes above REPORTER where the limit would apply
#
if ( ( ON === config_get( 'limit_reporters' ) ) && ( ! access_has_project_level( REPORTER + 1 ) ) ) {
$t_id = auth_get_current_user_id();
$t_username = user_get_field( $t_id, 'username' );
$t_realname = user_get_field( $t_id, 'realname' );
$t_display_name = string_attribute( $t_username );
if ( ( isset( $t_realname ) ) && ( $t_realname > "" ) && ( ON == config_get( 'show_realname' ) ) ){
$t_display_name = string_attribute( $t_realname );
}
PRINT '<option value="' . $t_id . '" selected="selected">' . $t_display_name . '</option>';
} else {
?>
<option value="<?php echo META_FILTER_ANY ?>" <?php check_selected( $t_filter['reporter_id'], META_FILTER_ANY ); ?>>[<?php echo lang_get( 'any' ) ?>]</option>
<?php
if ( access_has_project_level( config_get( 'report_bug_threshold' ) ) ) {
PRINT '<option value="' . META_FILTER_MYSELF . '" ';
check_selected( $t_filter['reporter_id'], META_FILTER_MYSELF );
PRINT '>[' . lang_get( 'myself' ) . ']</option>';
}
?>
<?php print_reporter_option_list( $t_filter['reporter_id'] ) ?>
<?php } ?>
</select>
<?php
}
function print_filter_user_monitor(){
global $t_select_modifier, $t_filter;
?>
<!-- Monitored by -->
<select <?php PRINT $t_select_modifier;?> name="user_monitor[]">
<option value="<?php echo META_FILTER_ANY ?>" <?php check_selected( $t_filter['user_monitor'], META_FILTER_ANY ); ?>>[<?php echo lang_get( 'any' ) ?>]</option>
<?php
if ( access_has_project_level( config_get( 'monitor_bug_threshold' ) ) ) {
PRINT '<option value="' . META_FILTER_MYSELF . '" ';
check_selected( $t_filter['user_monitor'], META_FILTER_MYSELF );
PRINT '>[' . lang_get( 'myself' ) . ']</option>';
}
$t_threshold = config_get( 'show_monitor_list_threshold' );
$t_has_project_level = access_has_project_level( $t_threshold );
if ( $t_has_project_level ) {
print_reporter_option_list( $t_filter['user_monitor'] );
}
?>
</select>
<?php
}
function print_filter_handler_id(){
global $t_select_modifier, $t_filter, $f_view_type;
?>
<!-- Handler -->
<select <?php PRINT $t_select_modifier;?> name="handler_id[]">
<option value="<?php echo META_FILTER_ANY ?>" <?php check_selected( $t_filter['handler_id'], META_FILTER_ANY ); ?>>[<?php echo lang_get( 'any' ) ?>]</option>
<?php if ( access_has_project_level( config_get( 'view_handler_threshold' ) ) ) { ?>
<option value="<?php echo META_FILTER_NONE ?>" <?php check_selected( $t_filter['handler_id'], META_FILTER_NONE ); ?>>[<?php echo lang_get( 'none' ) ?>]</option>
<?php
if ( access_has_project_level( config_get( 'handle_bug_threshold' ) ) ) {
PRINT '<option value="' . META_FILTER_MYSELF . '" ';
check_selected( $t_filter['handler_id'], META_FILTER_MYSELF );
PRINT '>[' . lang_get( 'myself' ) . ']</option>';
}
?>
<?php print_assign_to_option_list( $t_filter['handler_id'] ) ?>
<?php } ?>
</select>
<?php
}
function print_filter_show_category(){
global $t_select_modifier, $t_filter;
?>
<!-- Category -->
<select <?php PRINT $t_select_modifier;?> name="show_category[]">
<option value="<?php echo META_FILTER_ANY ?>" <?php check_selected( $t_filter['show_category'], META_FILTER_ANY ); ?>>[<?php echo lang_get( 'any' ) ?>]</option>
<?php # This shows orphaned categories as well as selectable categories ?>
<?php print_category_complete_option_list( $t_filter['show_category'] ) ?>
</select>
<?php
}
function print_filter_platform() {
global $t_select_modifier, $t_filter;
?>
<!-- Platform -->
<select <?php echo $t_select_modifier;?> name="platform[]">
<option value="<?php echo META_FILTER_ANY ?>" <?php check_selected( $t_filter['platform'], META_FILTER_ANY ); ?>>[<?php echo lang_get( 'any' ) ?>]</option>
<?php
log_event( LOG_FILTERING, 'Platform = ' . var_export( $t_filter['platform'], true ) );
print_platform_option_list( $t_filter['platform'] );
?>
</select>
<?php
}
function print_filter_os() {
global $t_select_modifier, $t_filter;
?>
<!-- OS -->
<select <?php echo $t_select_modifier;?> name="os[]">
<option value="<?php echo META_FILTER_ANY ?>" <?php check_selected( $t_filter['os'], META_FILTER_ANY ); ?>>[<?php echo lang_get( 'any' ) ?>]</option>
<?php print_os_option_list( $t_filter['os'] ) ?>
</select>
<?php
}
function print_filter_os_build() {
global $t_select_modifier, $t_filter;
?>
<!-- OS Build -->
<select <?php echo $t_select_modifier;?> name="os_build[]">
<option value="<?php echo META_FILTER_ANY ?>" <?php check_selected( $t_filter['os_build'], META_FILTER_ANY ); ?>>[<?php echo lang_get( 'any' ) ?>]</option>
<?php print_os_build_option_list( $t_filter['os_build'] ) ?>
</select>
<?php
}
function print_filter_show_severity(){
global $t_select_modifier, $t_filter;
?><!-- Severity -->
<select <?php PRINT $t_select_modifier;?> name="show_severity[]">
<option value="<?php echo META_FILTER_ANY ?>" <?php check_selected( $t_filter['show_severity'], META_FILTER_ANY ); ?>>[<?php echo lang_get( 'any' ) ?>]</option>
<?php print_enum_string_option_list( 'severity', $t_filter['show_severity'] ) ?>
</select>
<?php
}
function print_filter_show_resolution(){
global $t_select_modifier, $t_filter;
?><!-- Resolution -->
<select <?php PRINT $t_select_modifier;?> name="show_resolution[]">
<option value="<?php echo META_FILTER_ANY ?>" <?php check_selected( $t_filter['show_resolution'], META_FILTER_ANY ); ?>>[<?php echo lang_get( 'any' ) ?>]</option>
<?php print_enum_string_option_list( 'resolution', $t_filter['show_resolution'] ) ?>
</select>
<?php
}
function print_filter_show_status(){
global $t_select_modifier, $t_filter;
?> <!-- Status -->
<select <?php PRINT $t_select_modifier;?> name="show_status[]">
<option value="<?php echo META_FILTER_ANY ?>" <?php check_selected( $t_filter['show_status'], META_FILTER_ANY ); ?>>[<?php echo lang_get( 'any' ) ?>]</option>
<?php print_enum_string_option_list( 'status', $t_filter['show_status'] ) ?>
</select>
<?php
}
function print_filter_hide_status(){
global $t_select_modifier, $t_filter;
?><!-- Hide Status -->
<select <?php PRINT $t_select_modifier;?> name="hide_status[]">
<option value="<?php echo META_FILTER_NONE ?>">[<?php echo lang_get( 'none' ) ?>]</option>
<?php print_enum_string_option_list( 'status', $t_filter['hide_status'] ) ?>
</select>
<?php
}
function print_filter_show_build(){
global $t_select_modifier, $t_filter;
?><!-- Build -->
<select <?php PRINT $t_select_modifier;?> name="show_build[]">
<option value="<?php echo META_FILTER_ANY ?>" <?php check_selected( $t_filter['show_build'], META_FILTER_ANY ); ?>>[<?php echo lang_get( 'any' ) ?>]</option>
<option value="<?php echo META_FILTER_NONE ?>" <?php check_selected( $t_filter['show_build'], META_FILTER_NONE ); ?>>[<?php echo lang_get( 'none' ) ?>]</option>
<?php print_build_option_list( $t_filter['show_build'] ) ?>
</select>
<?php
}
function print_filter_show_version(){
global $t_select_modifier, $t_filter;
?><!-- Version -->
<select <?php PRINT $t_select_modifier;?> name="show_version[]">
<option value="<?php echo META_FILTER_ANY ?>" <?php check_selected( $t_filter['show_version'], META_FILTER_ANY ); ?>>[<?php echo lang_get( 'any' ) ?>]</option>
<option value="<?php echo META_FILTER_NONE ?>" <?php check_selected( $t_filter['show_version'], META_FILTER_NONE ); ?>>[<?php echo lang_get( 'none' ) ?>]</option>
<?php print_version_option_list( $t_filter['show_version'], null, VERSION_RELEASED, false, true ) ?>
</select>
<?php
}
function print_filter_show_fixed_in_version(){
global $t_select_modifier, $t_filter;
?><!-- Fixed in Version -->
<select <?php PRINT $t_select_modifier;?> name="fixed_in_version[]">
<option value="<?php echo META_FILTER_ANY ?>" <?php check_selected( $t_filter['fixed_in_version'], META_FILTER_ANY ); ?>>[<?php echo lang_get( 'any' ) ?>]</option>
<option value="<?php echo META_FILTER_NONE ?>" <?php check_selected( $t_filter['fixed_in_version'], META_FILTER_NONE ); ?>>[<?php echo lang_get( 'none' ) ?>]</option>
<?php print_version_option_list( $t_filter['fixed_in_version'], null, VERSION_ALL, false, true ) ?>
</select>
<?php
}
function print_filter_show_target_version(){
global $t_select_modifier, $t_filter;
?><!-- Fixed in Version -->
<select <?php PRINT $t_select_modifier;?> name="target_version[]">
<option value="<?php echo META_FILTER_ANY ?>" <?php check_selected( $t_filter['target_version'], META_FILTER_ANY ); ?>>[<?php echo lang_get( 'any' ) ?>]</option>
<option value="<?php echo META_FILTER_NONE ?>" <?php check_selected( $t_filter['target_version'], META_FILTER_NONE ); ?>>[<?php echo lang_get( 'none' ) ?>]</option>
<?php print_version_option_list( $t_filter['target_version'], null, VERSION_ALL, false, true ) ?>
</select>
<?php
}
function print_filter_show_priority(){
global $t_select_modifier, $t_filter;
?><!-- Priority -->
<select <?php PRINT $t_select_modifier;?> name="show_priority[]">
<option value="<?php echo META_FILTER_ANY ?>" <?php check_selected( $t_filter['show_priority'], META_FILTER_ANY ); ?>>[<?php echo lang_get( 'any' ) ?>]</option>
<?php print_enum_string_option_list( 'priority', $t_filter['show_priority'] ) ?>
</select>
<?php
}
function print_filter_show_profile() {
global $t_select_modifier, $t_filter;
?><!-- Profile -->
<select <?php PRINT $t_select_modifier;?> name="show_profile[]">
<option value="<?php echo META_FILTER_ANY ?>" <?php check_selected( $t_filter['show_profile'], META_FILTER_ANY ); ?>>[<?php echo lang_get( 'any' ) ?>]</option>
<?php print_profile_option_list_for_project( helper_get_current_project(), $t_filter['show_profile'] ); ?>
</select>
<?php
}
function print_filter_per_page(){
global $t_filter;
?><!-- Number of bugs per page -->
<input type="text" name="per_page" size="3" maxlength="7" value="<?php echo $t_filter['per_page'] ?>" />
<?php
}
function print_filter_view_state(){
global $t_select_modifier, $t_filter;
?><!-- View Status -->
<select name="view_state">
<?php
PRINT '<option value="' . META_FILTER_ANY . '" ';
check_selected( $t_filter['view_state'], META_FILTER_ANY );
PRINT '>[' . lang_get( 'any' ) . ']</option>';
PRINT '<option value="' . VS_PUBLIC . '" ';
check_selected( $t_filter['view_state'], VS_PUBLIC );
PRINT '>' . lang_get( 'public' ) . '</option>';
PRINT '<option value="' . VS_PRIVATE . '" ';
check_selected( $t_filter['view_state'], VS_PRIVATE );
PRINT '>' . lang_get( 'private' ) . '</option>';
?>
</select>
<?php
}
function print_filter_sticky_issues(){
global $t_filter;
?><!-- Show or hide sticky bugs -->
<input type="checkbox" name="sticky_issues" <?php check_checked( gpc_string_to_bool( $t_filter['sticky_issues'] ), 'on' ); ?> />
<?php
}
function print_filter_highlight_changed(){
global $t_filter;
?><!-- Highlight changed bugs -->
<input type="text" name="highlight_changed" size="3" maxlength="7" value="<?php echo $t_filter['highlight_changed'] ?>" />
<?php
}
function print_filter_do_filter_by_date( $p_hide_checkbox=false ){
global $t_filter;
?>
<table cellspacing="0" cellpadding="0">
<?php if ( ! $p_hide_checkbox ) {
?>
<tr><td colspan="2">
<input type="checkbox" name="do_filter_by_date" <?php
check_checked( $t_filter['do_filter_by_date'], 'on' );
if ( ON == config_get( 'use_javascript' ) ) {
print "onclick=\"SwitchDateFields();\""; } ?> />
<?php echo lang_get( 'use_date_filters' ) ?>
</td></tr>
<?php }
$t_menu_disabled = ( 'on' == $t_filter['do_filter_by_date'] ) ? '' : ' disabled ';
?>
<!-- Start date -->
<tr>
<td>
<?php echo lang_get( 'start_date' ) ?>:
</td>
<td nowrap="nowrap">
<?php
$t_chars = preg_split( '//', config_get( 'short_date_format' ), -1, PREG_SPLIT_NO_EMPTY );
foreach( $t_chars as $t_char ) {
if ( strcasecmp( $t_char, "M" ) == 0 ) {
print "<select name=\"start_month\" $t_menu_disabled>";
print_month_option_list( $t_filter['start_month'] );
print "</select>\n";
}
if ( strcasecmp( $t_char, "D" ) == 0 ) {
print "<select name=\"start_day\" $t_menu_disabled>";
print_day_option_list( $t_filter['start_day'] );
print "</select>\n";
}
if ( strcasecmp( $t_char, "Y" ) == 0 ) {
print "<select name=\"start_year\" $t_menu_disabled>";
print_year_option_list( $t_filter['start_year'] );
print "</select>\n";
}
}
?>
</td>
</tr>
<!-- End date -->
<tr>
<td>
<?php echo lang_get( 'end_date' ) ?>:
</td>
<td>
<?php
$t_chars = preg_split( '//', config_get( 'short_date_format' ), -1, PREG_SPLIT_NO_EMPTY );
foreach( $t_chars as $t_char ) {
if ( strcasecmp( $t_char, "M" ) == 0 ) {
print "<select name=\"end_month\" $t_menu_disabled>";
print_month_option_list( $t_filter['end_month'] );
print "</select>\n";
}
if ( strcasecmp( $t_char, "D" ) == 0 ) {
print "<select name=\"end_day\" $t_menu_disabled>";
print_day_option_list( $t_filter['end_day'] );
print "</select>\n";
}
if ( strcasecmp( $t_char, "Y" ) == 0 ) {
print "<select name=\"end_year\" $t_menu_disabled>";
print_year_option_list( $t_filter['end_year'] );
print "</select>\n";
}
}
?>
</td>
</tr>
</table>
<?php
}
function print_filter_relationship_type(){
global $t_filter;
$c_reltype_value = $t_filter['relationship_type'];
if (!$c_reltype_value) {
$c_reltype_value = -1;
}
relationship_list_box ($c_reltype_value, "relationship_type", true); ?>
<input type="text" name="relationship_bug" size="5" maxlength="10" value="<?php echo $t_filter['relationship_bug']?>" />
<?php
}
function print_filter_tag_string() {
global $t_filter;
$t_tag_string = $t_filter['tag_string'];
if ( $t_filter['tag_select'] != 0 ) {
$t_tag_string .= ( is_blank( $t_tag_string ) ? '' : config_get( 'tag_separator' ) );
$t_tag_string .= tag_get_field( $t_filter['tag_select'], 'name' );
}
?>
<input type="hidden" id="tag_separator" value="<?php echo config_get( 'tag_separator' ) ?>" />
<input type="text" name="tag_string" id="tag_string" size="40" value="<?php echo $t_tag_string ?>" />
<select <?php echo helper_get_tab_index() ?> name="tag_select" id="tag_select">
<?php print_tag_option_list(); ?>
</select>
<?php
}
function print_filter_custom_field($p_field_id){
global $t_filter, $t_accessible_custom_fields_names, $t_accessible_custom_fields_types, $t_accessible_custom_fields_values, $t_accessible_custom_fields_ids, $t_select_modifier;
$j = array_search($p_field_id, $t_accessible_custom_fields_ids);
if($j === null || $j === false){
# Note: Prior to PHP 4.2.0, array_search() returns NULL on failure instead of FALSE.
?>
<span style="color:red;weight:bold;">
unknown custom filter (custom <?php $p_field_id; ?>)
</span>
<?php
} elseif ( isset( $t_accessible_custom_fields_names[$j] ) ) {
if ($t_accessible_custom_fields_types[$j] == CUSTOM_FIELD_TYPE_DATE) {
print_filter_custom_field_date($j, $p_field_id) ;
} else {
echo '<select ' . $t_select_modifier . ' name="custom_field_' . $p_field_id .'[]">';
echo '<option value="' . META_FILTER_ANY . '" ';
check_selected( $t_filter['custom_fields'][ $p_field_id ], META_FILTER_ANY );
echo '>[' . lang_get( 'any' ) .']</option>';
# don't show META_FILTER_NONE for enumerated types as it's not possible for them to be blank
if ( ! in_array( $t_accessible_custom_fields_types[$j], array( CUSTOM_FIELD_TYPE_ENUM, CUSTOM_FIELD_TYPE_LIST, CUSTOM_FIELD_TYPE_MULTILIST ) ) ) {
echo '<option value="' . META_FILTER_NONE . '" ';
check_selected( $t_filter['custom_fields'][ $p_field_id ], META_FILTER_NONE );
echo '>[' . lang_get( 'none' ) .']</option>';
}
foreach( $t_accessible_custom_fields_values[$j] as $t_item ) {
if ( ( strtolower( $t_item ) !== META_FILTER_ANY ) && ( strtolower( $t_item ) !== META_FILTER_NONE ) ) {
echo '<option value="' . string_html_entities( $t_item ) . '" ';
if ( isset( $t_filter['custom_fields'][ $p_field_id ] ) ) {
check_selected( $t_filter['custom_fields'][ $p_field_id ], $t_item );
}
echo '>' . string_shorten( $t_item ) . '</option>' . "\n";
}
}
echo '</select>';
}
}
}
function print_filter_show_sort() {
global $t_filter;
# get all of the displayed fields for sort, then drop ones that
# are not appropriate and translate the rest
$t_fields = helper_get_columns_to_view();
$t_n_fields = count( $t_fields );
$t_shown_fields[""] = "";
for ( $i=0; $i < $t_n_fields; $i++ ) {
if ( !in_array( $t_fields[$i], array( 'selection', 'edit', 'bugnotes_count', 'attachment' ) ) ) {
if ( strpos( $t_fields[$i], 'custom_' ) === 0 ) {
$t_field_name = string_display( lang_get_defaulted( substr( $t_fields[$i], strlen( 'custom_' ) ) ) );
} else {
$t_field_name = string_get_field_name( $t_fields[$i] );
}
$t_shown_fields[$t_fields[$i]] = $t_field_name;
}
}
$t_shown_dirs[""] = "";
$t_shown_dirs["ASC"] = lang_get( 'bugnote_order_asc' );
$t_shown_dirs["DESC"] = lang_get( 'bugnote_order_desc' );
# get default values from filter structure
$t_sort_fields = split( ',', $t_filter['sort'] );
$t_dir_fields = split( ',', $t_filter['dir'] );
if ( !isset( $t_sort_fields[1] ) ) {
$t_sort_fields[1] = '';
$t_dir_fields[1] = '';
}
# if there are fields to display, show the dropdowns
if ( count( $t_fields ) > 0 ) {
# display a primary and secondary sort fields
echo '<select name="sort_0">';
foreach ( $t_shown_fields as $key => $val ) {
echo "<option value=\"$key\"";
check_selected( $key, $t_sort_fields[0] );
echo ">$val</option>";
}
echo '</select>';
echo '<select name="dir_0">';
foreach ( $t_shown_dirs as $key => $val ) {
echo "<option value=\"$key\"";
check_selected( $key, $t_dir_fields[0] );
echo ">$val</option>";
}
echo '</select>';
echo ', ';
# for secondary sort
echo '<select name="sort_1">';
foreach ( $t_shown_fields as $key => $val ) {
echo "<option value=\"$key\"";
check_selected( $key, $t_sort_fields[1] );
echo ">$val</option>";
}
echo '</select>';
echo '<select name="dir_1">';
foreach ($t_shown_dirs as $key => $val ) {
echo "<option value=\"$key\"";
check_selected( $key, $t_dir_fields[1] );
echo ">$val</option>";
}
echo '</select>';
} else {
echo lang_get_defaulted( 'last_updated' ) . lang_get( 'bugnote_order_desc' );
echo "<input type=\"hidden\" name=\"sort_1\" value=\"last_updated\" />";
echo "<input type=\"hidden\" name=\"dir_1\" value=\"DESC\" />";
}
}
function print_filter_custom_field_date($p_field_num, $p_field_id) {
global $t_filter, $t_accessible_custom_fields_names, $t_accessible_custom_fields_types, $t_accessible_custom_fields_values, $t_accessible_custom_fields_ids, $t_select_modifier;
$t_js_toggle_func = "toggle_custom_date_field_" . $p_field_id . "_controls" ;
# Resort the values so there ordered numerically, they are sorted as strings otherwise which
# may be wrong for dates before early 2001.
if (is_array($t_accessible_custom_fields_values[$p_field_num]))
{
array_multisort($t_accessible_custom_fields_values[$p_field_num], SORT_NUMERIC, SORT_ASC);
}
if (isset($t_accessible_custom_fields_values[$p_field_num][0])) {
$t_sel_start_year = date( 'Y', $t_accessible_custom_fields_values[$p_field_num][0]) ;
}
$t_count = count($t_accessible_custom_fields_values[$p_field_num]) ;
if (isset($t_accessible_custom_fields_values[$p_field_num][$t_count-1])) {
$t_sel_end_year = date( 'Y', $t_accessible_custom_fields_values[$p_field_num][$t_count-1]) ;
}
$t_start = date( 'U' ); # Default to today in filters..
$t_end = $t_start;
if ( isset( $t_filter['custom_fields'][$p_field_id][1] ) ) {
$t_start_time = $t_filter['custom_fields'][$p_field_id][1];
} else {
$t_start_time = 0;
}
if ( isset( $t_filter['custom_fields'][$p_field_id][2] ) ) {
$t_end_time = $t_filter['custom_fields'][$p_field_id][2];
} else {
$t_end_time = 0;
}
$t_start_disable = true;
$t_end_disable = true;
// if $t_filter['custom_fields'][$p_field_id][0] is not set (ie no filter), we will drop through the
// following switch and use the default values above, so no need to check if stuff is set or not.
switch ($t_filter['custom_fields'][$p_field_id][0]) {
case CUSTOM_FIELD_DATE_ANY:
case CUSTOM_FIELD_DATE_NONE:
break;
case CUSTOM_FIELD_DATE_BETWEEN:
$t_start_disable = false;
$t_end_disable = false;
$t_start = $t_start_time;
$t_end = $t_end_time;
break;
case CUSTOM_FIELD_DATE_ONORBEFORE:
$t_start_disable = false;
$t_start = $t_end_time;
break;
case CUSTOM_FIELD_DATE_BEFORE:
$t_start_disable = false;
$t_start = $t_end_time;
break;
case CUSTOM_FIELD_DATE_ON:
$t_start_disable = false;
$t_start = $t_start_time;
break;
case CUSTOM_FIELD_DATE_AFTER:
$t_start_disable = false;
$t_start = $t_start_time;
break;
case CUSTOM_FIELD_DATE_ONORAFTER:
$t_start_disable = false;
$t_start = $t_start_time;
break;
}
echo "\n<table cellspacing=\"0\" cellpadding=\"0\"><tr><td>\n" ;
echo "<select size=\"1\" name=\"custom_field_" . $p_field_id . "_control\" OnChange=\"" . $t_js_toggle_func . "();\">\n";
echo '<option value="' . CUSTOM_FIELD_DATE_ANY . '"';
check_selected( $t_filter['custom_fields'][$p_field_id][0], CUSTOM_FIELD_DATE_ANY );
echo '>' . lang_get( 'any' ) . '</option>' . "\n";
echo '<option value="' . CUSTOM_FIELD_DATE_NONE . '"';
check_selected( $t_filter['custom_fields'][$p_field_id][0], CUSTOM_FIELD_DATE_NONE );
echo '>' . lang_get( 'none' ) . '</option>' . "\n";
echo '<option value="' . CUSTOM_FIELD_DATE_BETWEEN . '"';
check_selected( $t_filter['custom_fields'][$p_field_id][0], CUSTOM_FIELD_DATE_BETWEEN );
echo '>' . lang_get( 'between' ) . '</option>' . "\n";
echo '<option value="' . CUSTOM_FIELD_DATE_ONORBEFORE . '"';
check_selected( $t_filter['custom_fields'][$p_field_id][0], CUSTOM_FIELD_DATE_ONORBEFORE );
echo '>' . lang_get( 'on_or_before' ) . '</option>' . "\n";
echo '<option value="' . CUSTOM_FIELD_DATE_BEFORE . '"';
check_selected( $t_filter['custom_fields'][$p_field_id][0], CUSTOM_FIELD_DATE_BEFORE );
echo '>' . lang_get( 'before' ) . '</option>' . "\n";
echo '<option value="' . CUSTOM_FIELD_DATE_ON . '"';
check_selected( $t_filter['custom_fields'][$p_field_id][0], CUSTOM_FIELD_DATE_ON );
echo '>' . lang_get( 'on' ) . '</option>' . "\n";
echo '<option value="' . CUSTOM_FIELD_DATE_AFTER . '"';
check_selected( $t_filter['custom_fields'][$p_field_id][0], CUSTOM_FIELD_DATE_AFTER );
echo '>' . lang_get( 'after' ) . '</option>' . "\n";
echo '<option value="' . CUSTOM_FIELD_DATE_ONORAFTER . '"';
check_selected( $t_filter['custom_fields'][$p_field_id][0], CUSTOM_FIELD_DATE_ONORAFTER );
echo '>' . lang_get( 'on_or_after' ) . '</option>' . "\n";
echo '</select>' . "\n";
echo "</td></tr>\n<tr><td>";
print_date_selection_set("custom_field_" . $p_field_id . "_start" , config_get( 'short_date_format'), $t_start, $t_start_disable, false, $t_sel_start_year, $t_sel_end_year);
print "</td></tr>\n<tr><td>";
print_date_selection_set("custom_field_" . $p_field_id . "_end" , config_get( 'short_date_format'), $t_end, $t_end_disable, false, $t_sel_start_year, $t_sel_end_year);
print "</td></tr>\n</table>";
}
function print_filter_project_id(){
global $t_select_modifier, $t_filter, $f_view_type;
?>
<!-- Project -->
<select <?php PRINT $t_select_modifier;?> name="project_id[]">
<option value="<?php echo META_FILTER_CURRENT ?>" <?php check_selected( $t_filter['project_id'], META_FILTER_CURRENT ); ?>>[<?php echo lang_get( 'current' ) ?>]</option>
<?php print_project_option_list( $t_filter['project_id'] ) ?>
</select>
<?php
}
# Prints a multi-value filter field. For example, platform, etc.
# $p_field_name - The name of the field, e.g. "platform"
# $p_field_value - an array of values.
function print_multivalue_field( $p_field_name, $p_field_value ) {
$t_output = '';
$t_any_found = false;
if ( count( $p_field_value ) == 0 ) {
echo lang_get( 'any' );
} else {
$t_first_flag = true;
$t_field_value = is_array( $p_field_value ) ? $p_field_value : array( $p_field_value );
foreach( $t_field_value as $t_current ) {
$t_current = stripslashes( $t_current );
?>
<input type="hidden" name="<?php echo $p_field_name ?>[]" value="<?php echo string_display( $t_current );?>" />
<?php
$t_this_string = '';
if ( ( ( $t_current == META_FILTER_ANY ) && ( is_numeric( $t_current ) ) )
|| ( is_blank( $t_current ) ) ) {
$t_any_found = true;
} else {
$t_this_string = string_display( $t_current );
}
if ( $t_first_flag != true ) {
$t_output .= '<br />';
} else {
$t_first_flag = false;
}
$t_output .= $t_this_string;
}
if ( true == $t_any_found ) {
echo lang_get( 'any' );
} else {
echo $t_output;
}
}
}
#===================================
# Caching
#===================================
#########################################
# SECURITY NOTE: cache globals are initialized here to prevent them
# being spoofed if register_globals is turned on
$g_cache_filter = array();
# --------------------
# Cache a filter row if necessary and return the cached copy
# If the second parameter is true (default), trigger an error
# if the filter can't be found. If the second parameter is
# false, return false if the filter can't be found.
function filter_cache_row( $p_filter_id, $p_trigger_errors=true) {
global $g_cache_filter;
$c_filter_id = db_prepare_int( $p_filter_id );
$t_filters_table = config_get( 'mantis_filters_table' );
if ( isset ( $g_cache_filter[$c_filter_id] ) ) {
return $g_cache_filter[$c_filter_id];
}
$query = "SELECT *
FROM $t_filters_table
WHERE id='$c_filter_id'";
$result = db_query( $query );
if ( 0 == db_num_rows( $result ) ) {
if ( $p_trigger_errors ) {
error_parameters( $p_filter_id );
trigger_error( ERROR_FILTER_NOT_FOUND, ERROR );
} else {
return false;
}
}
$row = db_fetch_array( $result );
$g_cache_filter[$c_filter_id] = $row;
return $row;
}
# --------------------
# Clear the filter cache (or just the given id if specified)
function filter_clear_cache( $p_filter_id = null ) {
global $g_cache_filter;
if ( null === $p_filter_id ) {
$g_cache_filter = array();
} else {
$c_filter_id = db_prepare_int( $p_filter_id );
unset( $g_cache_filter[$c_filter_id] );
}
return true;
}
# --------------------
# return a filter row
function filter_get_row( $p_filter_id ) {
return filter_cache_row( $p_filter_id );
}
# --------------------
function filter_get_field( $p_filter_id, $p_field_name ) {
$row = filter_get_row( $p_filter_id );
if ( isset( $row[$p_field_name] ) ) {
return $row[$p_field_name];
} else {
error_parameters( $p_field_name );
trigger_error( ERROR_DB_FIELD_NOT_FOUND, WARNING );
return '';
}
}
# --------------------
# Checks if a filter value is "any". Supports both single value as well as multiple value
# fields (array).
# $p_filter_value - The value which can be a simple value or an array.
function _filter_is_any( $p_filter_value ) {
if ( ( META_FILTER_ANY == $p_filter_value ) && is_numeric( $p_filter_value ) ) {
return true;
}
if ( count( $p_filter_value ) == 0 ) {
return true;
}
foreach( $p_filter_value as $t_value ) {
if ( ( META_FILTER_ANY == $t_value ) && ( is_numeric( $t_value ) ) ) {
return true;
}
}
return false;
}
?>
| ||||
|
yes, you can simple add some custom function to print title and value of real name. but the quickest way are modify 3 line as following: edit file config_default_inc.phpold line: I use 'realname' because it has a resource string and use internal mantis print functions. edit file core/filter_api.php$t_bug_table = config_get( 'mantis_bug_table' ); modify to: Modify---------- To-------------- Modify----------- To--------------- So you are done. |
|
|
Thanks for your tips. I've implemented all 3 as you've sugested in the reply above, but after that change the Mantis start to have performance problems, related to the DB (MySql). I've made a few changes to the queries involved and after a while the Mantis instance work like a charm. Here are the changes that are now in production: Change 1: OK$t_users_table = config_get( 'mantis_user_table' ); Change 2: Altered Join clause for improove query efficiency$t_select_clauses = array( "$t_bug_table.*,$t_users_table.realname" ); Change 3: Add logical condition to Where clause, to get the correct data set$t_from = 'FROM ' . $t_bug_table .",". $t_users_table; Thankyou very much for your help. |
|
|
Do not make changes to config_default_inc.php but add those changes to config_inc.php |
|
|
Thanks again. I forget to mention that I've made changes to config_inc.php. The reason is as you said preserv loss of information in future upgrade. |
|