[ Index ]

PHP Cross Reference of MantisBT

title

Body

[close]

/api/soap/ -> mc_config_defaults_inc.php (source)

   1  <?php
   2  # MantisConnect - A webservice interface to Mantis Bug Tracker
   3  # Copyright (C) 2004-2011  Victor Boctor - vboctor@users.sourceforge.net
   4  # This program is distributed under dual licensing.  These include
   5  # GPL and a commercial licenses.  Victor Boctor reserves the right to
   6  # change the license of future releases.
   7  # See docs/ folder for more details
   8  
   9  # Minimum global access level required to access webservice for readonly operations.
  10  $g_mc_readonly_access_level_threshold = REPORTER;
  11  
  12  # Minimum global access level required to access webservice for read/write operations.
  13  $g_mc_readwrite_access_level_threshold = REPORTER;
  14  
  15  # Minimum global access level required to access the administrator webservices
  16  $g_mc_admin_access_level_threshold = MANAGER;
  17  
  18  # Minimum project access level required to be able to specify a reporter name when
  19  # adding an issue.  Otherwise, the current user is used as the reporter.  Users
  20  # who don't have this access level can always do another step to modify the issue
  21  # and specify a different name, but in this case it will be logged in the history
  22  # who original reported the issue.
  23  $g_mc_specify_reporter_on_add_access_level_threshold = DEVELOPER;
  24  
  25  # The following enum ids are used when the webservices get enum labels that are not
  26  # defined in the associated MantisBT installation.  In this case, the enum id is set
  27  # to the value specified by the corresponding configuration option.
  28  $g_mc_priority_enum_default_when_not_found = 0;
  29  $g_mc_severity_enum_default_when_not_found = 0;
  30  $g_mc_status_enum_default_when_not_found = 0;
  31  $g_mc_resolution_enum_default_when_not_found = 0;
  32  $g_mc_projection_enum_default_when_not_found = 0;
  33  $g_mc_eta_enum_default_when_not_found = 0;
  34  
  35  # If ON and the supplied category is not found, then a SoapException will be raised.
  36  # (at the moment this value does not depend on the project).
  37  $g_mc_error_when_category_not_found = ON;
  38  
  39  # Default category to be used if the specified category is not found and $g_mc_error_when_category_not_found == OFF.
  40  $g_mc_category_when_not_found = '';
  41  
  42  # If ON and the supplied version is not found, then a SoapException will be raised.
  43  $g_mc_error_when_version_not_found = ON;
  44  
  45  # Default version to be used if the specified version is not found and $g_mc_error_when_version_not_found == OFF.
  46  # (at the moment this value does not depend on the project).
  47  $g_mc_version_when_not_found = '';


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