My-view bloks details

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
Grnaze
Posts: 6
Joined: 28 Jan 2011, 14:55

My-view bloks details

Post by Grnaze »

Good morning,

Firstly, I did no write/speak in english since a long time, so sorry about the mistakes.

I'm looking for the way to customize the block's contents in my-view page.

In a block, for example the Unassigned one or the others, we got one or further bug.

the content is the folowing one :
Number, category, the short description....

I'd like to add the platform, the one we write while we declare the global profil.

I hope that you undertood what I want.

If not, I'll try to put an image.

Thank's in advance.

Mantis V1.2.4
Lapinkiller
Posts: 408
Joined: 28 Jan 2011, 18:47
Location: France
Contact:

Re: My-view bloks details

Post by Lapinkiller »

Hi,

i re-post my response to your french to topic here for the non-french users ^^


file my_view_inc.php modified :

Code: Select all

<?php
# MantisBT - a php based bugtracking system

# MantisBT 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.
#
# MantisBT 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 MantisBT.  If not, see <http://www.gnu.org/licenses/>.

/**
 * @copyright Copyright (C) 2000 - 2002  Kenzaburo Ito - kenito@300baud.org
 * @copyright Copyright (C) 2002 - 2010  MantisBT Team - mantisbt-dev@lists.sourceforge.net
 * @link http://www.mantisbt.org
 * @package MantisBT
 */

/**
 * requires current_user_api
 */
require_once( 'current_user_api.php' );
/**
 * requires bug_api
 */
 require_once( 'bug_api.php' );
/**
 * requires string_api
 */
require_once( 'string_api.php' );
/**
 * requires date_api
 */
require_once( 'date_api.php' );
/**
 * requires icon_api
 */
require_once( 'icon_api.php' );

$t_filter = current_user_get_bug_filter();
if( $t_filter === false ) {
    $t_filter = filter_get_default();
}

$t_sort = $t_filter['sort'];
$t_dir = $t_filter['dir'];

$t_checkboxes_exist = false;

$t_icon_path = config_get( 'icon_path' );
$t_update_bug_threshold = config_get( 'update_bug_threshold' );
$t_bug_resolved_status_threshold = config_get( 'bug_resolved_status_threshold' );
$t_hide_status_default = config_get( 'hide_status_default' );
$t_default_show_changed = config_get( 'default_show_changed' );

$c_filter['assigned'] = array(
    FILTER_PROPERTY_CATEGORY => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_SEVERITY_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_STATUS_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HIGHLIGHT_CHANGED => $t_default_show_changed,
    FILTER_PROPERTY_REPORTER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HANDLER_ID => Array(
        '0' => $t_current_user_id,
    ),
    FILTER_PROPERTY_RESOLUTION_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_PRODUCT_BUILD => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_PRODUCT_VERSION => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HIDE_STATUS_ID => Array(
        '0' => $t_bug_resolved_status_threshold,
    ),
    FILTER_PROPERTY_MONITOR_USER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
);
$url_link_parameters['assigned'] = FILTER_PROPERTY_HANDLER_ID . '=' . $t_current_user_id . '&' . FILTER_PROPERTY_HIDE_STATUS_ID . '=' . $t_bug_resolved_status_threshold;

$c_filter['recent_mod'] = array(
    FILTER_PROPERTY_CATEGORY => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_SEVERITY_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_STATUS_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HIGHLIGHT_CHANGED => $t_default_show_changed,
    FILTER_PROPERTY_REPORTER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HANDLER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_RESOLUTION_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_PRODUCT_BUILD => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_PRODUCT_VERSION => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HIDE_STATUS_ID => Array(
        '0' => META_FILTER_NONE,
    ),
    FILTER_PROPERTY_MONITOR_USER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
);
$url_link_parameters['recent_mod'] = FILTER_PROPERTY_HIDE_STATUS_ID . '=none';

$c_filter['reported'] = array(
    FILTER_PROPERTY_CATEGORY => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_SEVERITY_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_STATUS_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HIGHLIGHT_CHANGED => $t_default_show_changed,
    FILTER_PROPERTY_REPORTER_ID => Array(
        '0' => $t_current_user_id,
    ),
    FILTER_PROPERTY_HANDLER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_SORT_FIELD_NAME => 'last_updated',
    FILTER_PROPERTY_RESOLUTION_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_PRODUCT_BUILD => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_PRODUCT_VERSION => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HIDE_STATUS_ID => Array(
        '0' => $t_hide_status_default,
    ),
    FILTER_PROPERTY_MONITOR_USER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
);
$url_link_parameters['reported'] = FILTER_PROPERTY_REPORTER_ID . '=' . $t_current_user_id . '&' . FILTER_PROPERTY_HIDE_STATUS_ID . '=' . $t_hide_status_default;

$c_filter['resolved'] = array(
    FILTER_PROPERTY_CATEGORY => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_SEVERITY_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_STATUS_ID => Array(
        '0' => $t_bug_resolved_status_threshold,
    ),
    FILTER_PROPERTY_HIGHLIGHT_CHANGED => $t_default_show_changed,
    FILTER_PROPERTY_REPORTER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HANDLER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_RESOLUTION_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_PRODUCT_BUILD => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_PRODUCT_VERSION => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HIDE_STATUS_ID => Array(
        '0' => $t_hide_status_default,
    ),
    FILTER_PROPERTY_MONITOR_USER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
);
$url_link_parameters['resolved'] = FILTER_PROPERTY_STATUS_ID . '=' . $t_bug_resolved_status_threshold . '&' . FILTER_PROPERTY_HIDE_STATUS_ID . '=' . $t_bug_resolved_status_threshold;

$c_filter['unassigned'] = array(
    FILTER_PROPERTY_CATEGORY => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_SEVERITY_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_STATUS_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HIGHLIGHT_CHANGED => $t_default_show_changed,
    FILTER_PROPERTY_REPORTER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HANDLER_ID => Array(
        '0' => META_FILTER_NONE,
    ),
    FILTER_PROPERTY_RESOLUTION_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_PRODUCT_BUILD => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_PRODUCT_VERSION => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HIDE_STATUS_ID => Array(
        '0' => $t_hide_status_default,
    ),
    FILTER_PROPERTY_MONITOR_USER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
);
$url_link_parameters['unassigned'] = FILTER_PROPERTY_HANDLER_ID . '=[none]' . '&' . FILTER_PROPERTY_HIDE_STATUS_ID . '=' . $t_hide_status_default;

# TODO: check. handler value looks wrong

$c_filter['monitored'] = array(
    FILTER_PROPERTY_CATEGORY => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_SEVERITY_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_STATUS_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HIGHLIGHT_CHANGED => $t_default_show_changed,
    FILTER_PROPERTY_REPORTER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HANDLER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_RESOLUTION_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_PRODUCT_BUILD => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_PRODUCT_VERSION => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HIDE_STATUS_ID => Array(
        '0' => $t_hide_status_default,
    ),
    FILTER_PROPERTY_MONITOR_USER_ID => Array(
        '0' => $t_current_user_id,
    ),
);
$url_link_parameters['monitored'] = FILTER_PROPERTY_MONITOR_USER_ID . '=' . $t_current_user_id . '&' . FILTER_PROPERTY_HIDE_STATUS_ID . '=' . $t_hide_status_default;


$c_filter['feedback'] = array(
    FILTER_PROPERTY_CATEGORY => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_SEVERITY_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_STATUS_ID => Array(
        '0' => config_get( 'bug_feedback_status' ),
    ),
    FILTER_PROPERTY_HIGHLIGHT_CHANGED => $t_default_show_changed,
    FILTER_PROPERTY_REPORTER_ID => Array(
        '0' => $t_current_user_id,
    ),
    FILTER_PROPERTY_HANDLER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_RESOLUTION_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_PRODUCT_BUILD => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_PRODUCT_VERSION => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HIDE_STATUS_ID => Array(
        '0' => $t_hide_status_default,
    ),
    FILTER_PROPERTY_MONITOR_USER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
);
$url_link_parameters['feedback'] = FILTER_PROPERTY_REPORTER_ID . '=' . $t_current_user_id . '&' . FILTER_PROPERTY_STATUS_ID . '=' . config_get( 'bug_feedback_status' ) . '&' . FILTER_PROPERTY_HIDE_STATUS_ID . '=' . $t_hide_status_default;

$c_filter['verify'] = array(
    FILTER_PROPERTY_CATEGORY => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_SEVERITY_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_STATUS_ID => Array(
        '0' => $t_bug_resolved_status_threshold,
    ),
    FILTER_PROPERTY_HIGHLIGHT_CHANGED => $t_default_show_changed,
    FILTER_PROPERTY_REPORTER_ID => Array(
        '0' => $t_current_user_id,
    ),
    FILTER_PROPERTY_HANDLER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_RESOLUTION_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_PRODUCT_BUILD => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_PRODUCT_VERSION => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HIDE_STATUS_ID => Array(
        '0' => $t_hide_status_default,
    ),
    FILTER_PROPERTY_MONITOR_USER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
);
$url_link_parameters['verify'] = FILTER_PROPERTY_REPORTER_ID . '=' . $t_current_user_id . '&' . FILTER_PROPERTY_STATUS_ID . '=' . $t_bug_resolved_status_threshold;

$c_filter['my_comments'] = array(
    FILTER_PROPERTY_CATEGORY => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_SEVERITY_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_STATUS_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HIGHLIGHT_CHANGED => $t_default_show_changed,
    FILTER_PROPERTY_REPORTER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HANDLER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_RESOLUTION_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_PRODUCT_BUILD => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_PRODUCT_VERSION => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_HIDE_STATUS_ID => Array(
        '0' => $t_hide_status_default,
    ),
    FILTER_PROPERTY_MONITOR_USER_ID => Array(
        '0' => META_FILTER_ANY,
    ),
    FILTER_PROPERTY_NOTE_USER_ID=> Array(
        '0' => META_FILTER_MYSELF,
    ),
);

$url_link_parameters['my_comments'] = FILTER_PROPERTY_NOTE_USER_ID. '=' . META_FILTER_MYSELF . '&' . FILTER_PROPERTY_HIDE_STATUS_ID . '=' . $t_hide_status_default;
$rows = filter_get_bug_rows( $f_page_number, $t_per_page, $t_page_count, $t_bug_count, $c_filter[$t_box_title] );

# Improve performance by caching category data in one pass
if( helper_get_current_project() == 0 ) {
    $t_categories = array();
    foreach( $rows as $t_row ) {
        $t_categories[] = $t_row->category_id;
    }

    category_cache_array_rows( array_unique( $t_categories ) );
}

$t_filter = array_merge( $c_filter[$t_box_title], $t_filter );

$box_title = lang_get( 'my_view_title_' . $t_box_title );

# -- ====================== BUG LIST ========================= --
?>

<table class="width100" cellspacing="1">
<?php
# -- Navigation header row --?>
<tr>
<?php
# -- Viewing range info --

/** colspan changed to 3, for adding a column which show plaform
 * @author Lapinkiller
 */

?>
    <td class="form-title" colspan="3">
<?php
print_link( 'view_all_set.php?type=1&temporary=y&' . $url_link_parameters[$t_box_title], $box_title, false, 'subtle' );
echo '&#160;';
print_bracket_link( 'view_all_set.php?type=1&temporary=y&' . $url_link_parameters[$t_box_title], '^', true, 'subtle' );

if( count( $rows ) > 0 ) {
    $v_start = $t_filter[FILTER_PROPERTY_ISSUES_PER_PAGE] * ( $f_page_number - 1 ) + 1;
    $v_end = $v_start + count( $rows ) - 1;
}
else {
    $v_start = 0;
    $v_end = 0;
}
echo "($v_start - $v_end / $t_bug_count)";
?>
    </td>
</tr>

<?php
# -- Loop over bug rows and create $v_* variables --
    $t_count = count( $rows );
    for( $i = 0;$i < $t_count; $i++ ) {
        $t_bug = $rows[$i];

        $t_summary = string_display_line_links( $t_bug->summary );
        $t_last_updated = date( config_get( 'normal_date_format' ), $t_bug->last_updated );

        # choose color based on status
        $status_color = get_status_color( $t_bug->status );

        # Check for attachments
        $t_attachment_count = 0;
        if(( file_can_view_bug_attachments( $t_bug->id ) ) ) {
            $t_attachment_count = file_bug_attachment_count( $t_bug->id );
        }

        # grab the project name
        $project_name = project_get_field( $t_bug->project_id, 'name' );
      ?>

<tr bgcolor="<?php echo $status_color?>">
    <?php
    # -- Bug ID and details link + Pencil shortcut --?>
    <td class="center" valign="top" width ="0" nowrap="nowrap">
        <span class="small">
        <?php
            print_bug_link( $t_bug->id );

    echo '<br />';

    if( !bug_is_readonly( $t_bug->id ) && access_has_bug_level( $t_update_bug_threshold, $t_bug->id ) ) {
        echo '<a href="' . string_get_bug_update_url( $t_bug->id ) . '"><img border="0" src="' . $t_icon_path . 'update.png' . '" alt="' . lang_get( 'update_bug_button' ) . '" /></a>';
    }

    if( ON == config_get( 'show_priority_text' ) ) {
        print_formatted_priority_string( $t_bug->status, $t_bug->priority );
    } else {
        print_status_icon( $t_bug->priority );
    }

    if ( $t_attachment_count > 0 ) {
        $t_href = string_get_bug_view_url( $t_bug->id ) . '#attachments';
        $t_href_title = sprintf( lang_get( 'view_attachments_for_issue' ), $t_attachment_count, $t_bug->id );
        $t_alt_text = $t_attachment_count . lang_get( 'word_separator' ) . lang_get( 'attachments' );
        echo "<a href=\"$t_href\" title=\"$t_href_title\"><img src=\"${t_icon_path}attachment.png\" alt=\"$t_alt_text\" title=\"$t_alt_text\" /></a>";
    }

    if( VS_PRIVATE == $t_bug->view_state ) {
        echo '<img src="' . $t_icon_path . 'protected.gif" width="8" height="15" alt="' . lang_get( 'private' ) . '" />';
    }
    ?>
        </span>
    </td>
<?php
/** Ajout de la plateforme sous forme d'une colonne
 * @author Lapinkiller
 */
?>
<td class="center" valign="top" width ="0" nowrap="nowrap">
<?php
echo string_display_line($t_bug->platform);
?>
</td>
<?php //------ FIN AJOUT PLATEFORME ?>

    <?php
    # -- Summary --?>
    <td class="left" valign="top" width="100%">
        <span class="small">
        <?php
             if( ON == config_get( 'show_bug_project_links' ) && helper_get_current_project() != $t_bug->project_id ) {
                echo '[', string_display_line( project_get_name( $t_bug->project_id ) ), '] ';
            }
            echo $t_summary;
    ?>
        <br />
        <?php
    # type project name if viewing 'all projects' or bug is in subproject
    echo string_display_line( category_full_name( $t_bug->category_id, true, $t_bug->project_id ) );

    if( $t_bug->last_updated > strtotime( '-' . $t_filter[FILTER_PROPERTY_HIGHLIGHT_CHANGED] . ' hours' ) ) {
        echo ' - <b>' . $t_last_updated . '</b>';
    } else {
        echo ' - ' . $t_last_updated;
    }
    ?>
        </span>
    </td>
</tr>
<?php
    # -- end of Repeating bug row --
}

# -- ====================== end of BUG LIST ========================= --
?>
</table>
<?php
// Free the memory allocated for the rows in this box since it is not longer needed.
unset( $rows );

Lapinkiller,
French PHP developer
New look for your mantis : http://www.mantisbt.org/forums/viewtopi ... =4&t=20055
Grnaze
Posts: 6
Joined: 28 Jan 2011, 14:55

Re: My-view bloks details

Post by Grnaze »

Hi,

It's working

Image

Thank's
Post Reply