0byt3m1n1
Path:
/
data
/
applications
/
aps
/
mantis
/
1.1.1-6
/
standard
/
htdocs
/
core
/
[
Home
]
File: prepare_api.php
<?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: prepare_api.php,v 1.2.2.1 2007-10-13 22:35:38 giallu Exp $ # -------------------------------------------------------- $t_core_dir = dirname( __FILE__ ).DIRECTORY_SEPARATOR; ### Prepare API ### # this file handles preparing of strings like to be printed # or stored. print_api.php will gradually be replaced by # think calls to echo the results of functions implemented here. # -------------------- # return the mailto: href string link function prepare_email_link( $p_email, $p_text ) { if ( !access_has_project_level( config_get( 'show_user_email_threshold' ) ) ) { return $p_text; } # If we apply string_url() to the whole mailto: link then the @ # gets turned into a %40 and you can't right click in browsers to # do Copy Email Address. $t_mailto = string_attribute( "mailto:$p_email" ); $p_text = string_display( $p_text ); return "<a href=\"$t_mailto\">$p_text</a>"; } # -------------------- # prepares the name of the user given the id. also makes it an email link. function prepare_user_name( $p_user_id ) { # Catch a user_id of NO_USER (like when a handler hasn't been assigned) if ( NO_USER == $p_user_id ) { return ''; } $t_username = user_get_name( $p_user_id ); if ( user_exists( $p_user_id ) && user_get_field( $p_user_id, 'enabled' ) ) { $t_email = user_get_email( $p_user_id ); if ( !is_blank( $t_email ) ) { return prepare_email_link( $t_email, $t_username ); } else { return string_display( $t_username ); } } else { $t_result = '<font STYLE="text-decoration: line-through">'; $t_result .= string_display( $t_username ); $t_result .= '</font>'; return $t_result; } }