简体   繁体   English

如何在 Mantis 错误跟踪器中自定义“我的视图”?

[英]How to customise “My View” in Mantis bug tracker?

The "My View" in Mantis shows the following sections: Mantis 中的“我的视图”显示以下部分:

  1. Unassigned未分配
  2. Resolved解决
  3. Monitored by Me被我监控
  4. Reported by Me由我举报
  5. Recently Modified最近修改

Which PHP file in Mantis generates this view? Mantis 中的哪个 PHP 文件生成此视图?

你的问题的答案是:my_view_page.php

Old question but still the same answer.老问题,但仍然是相同的答案。 If someone wants to know, you can add this array in your config_inc.php file :如果有人想知道,你可以在你的 config_inc.php 文件中添加这个数组:

  $g_my_view_boxes = array(
            'assigned'      => '1',
            'unassigned'    => '2',
            'reported'      => '3',
            'resolved'      => '10',
            'recent_mod'    => '7',
            'monitored'     => '6',
            'feedback'      => '0',
            'verify'        => '0',
            'my_comments'   => '0',
    );

You should change integer to give the order you want.您应该更改整数以给出您想要的顺序。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM