echo helper_alternate_class();
    ?>
>
			<td>
				<?php 
    echo string_display($t_name);
    ?>
			</td>
			<td class="center">
				<?php 
    echo trans_bool($t_released);
    ?>
			</td>
			<td class="center">
				<?php 
    echo trans_bool($t_obsolete);
    ?>
			</td>
			<td class="center">
				<?php 
    echo $t_date_formatted;
    ?>
			</td>
			<td class="center">
				<?php 
    $t_version_id = version_get_id($t_name, $f_project_id);
    if (!$t_inherited) {
        print_button('manage_proj_ver_edit_page.php?version_id=' . $t_version_id, lang_get('edit_link'));
        echo '&nbsp;';
        print_button('manage_proj_ver_delete.php?version_id=' . $t_version_id, lang_get('delete_link'));
    }
		<a href="manage_proj_edit_page.php?project_id=<?php 
        echo $t_project['id'];
        ?>
"><?php 
        echo str_repeat("&raquo; ", $t_level) . string_display($t_project['name']);
        ?>
</a>
	</td>
	<td>
		<?php 
        echo get_enum_element('project_status', $t_project['status']);
        ?>
	</td>
	<td>
		<?php 
        echo trans_bool($t_project['enabled']);
        ?>
	</td>
	<td>
		<?php 
        echo get_enum_element('project_view_state', $t_project['view_state']);
        ?>
	</td>
	<td>
		<?php 
        echo string_display_links($t_project['description']);
        ?>
	</td>
</tr>
<?php 
    }
    $t_date_order = $t_version['date_order'];
    $t_date_formatted = string_format_complete_date($t_version['date_order']);
    ?>
<!-- Repeated Info Rows -->
		<tr <?php 
    echo helper_alternate_class();
    ?>
>
			<td>
				<?php 
    echo string_display($t_name);
    ?>
			</td>
			<td class="center">
				<?php 
    echo trans_bool($t_released);
    ?>
			</td>
			<td class="center">
				<?php 
    echo $t_date_formatted;
    ?>
			</td>
			<td class="center">
				<?php 
    $t_version_id = version_get_id($t_name, $f_project_id);
    print_button('manage_proj_ver_edit_page.php?version_id=' . $t_version_id, lang_get('edit_link'));
    echo '&nbsp;';
    print_button('manage_proj_ver_delete.php?version_id=' . $t_version_id . form_security_param('manage_proj_ver_delete'), lang_get('delete_link'));
    ?>
			</td>
</a>
	</td>
	<td><?php 
    echo string_display($u_realname);
    ?>
</td>
	<td><?php 
    print_email_link($u_email, $u_email);
    ?>
</td>
	<td><?php 
    echo get_enum_element('access_levels', $u_access_level);
    ?>
</td>
	<td><?php 
    echo trans_bool($u_enabled);
    ?>
</td>
	<td class="center">
          <?php 
    if ($u_protected) {
        echo " {$t_lock_image}";
    } else {
        echo '&nbsp;';
    }
    ?>
        </td>
	<td><?php 
    echo $u_date_created;
    ?>
</td>
		if( !isset( $t_access_level[$u_access_level] ) ) {
			$t_access_level[$u_access_level] = get_enum_element( 'access_levels', $u_access_level );
		} ?>
			<tr>
				<td><?php
					if( access_has_global_level( $u_access_level ) ) { ?>
						<a href="manage_user_edit_page.php?user_id=<?php echo $u_id ?>"><?php echo string_display_line( $u_username ) ?></a><?php
					} else {
						echo string_display_line( $u_username );
					} ?>
				</td>
				<td><?php echo string_display_line( $u_realname ) ?></td>
				<td><?php print_email_link( $u_email, $u_email ) ?></td>
				<td><?php echo $t_access_level[$u_access_level] ?></td>
				<td class="center"><?php echo trans_bool( $u_enabled ) ?></td>
				<td class="center"><?php
					if( $u_protected ) {
						echo ' ' . $t_lock_image;
					} else {
						echo '&#160;';
					} ?>
				</td>
				<td><?php echo $u_date_created ?></td>
				<td><?php echo $u_last_visit ?></td>
			</tr>
<?php
	}  # end for
?>
		</tbody>
	</table>
function print_released($edit_page, $version_index, $version)
{
    echo '<td class="center">';
    if ($edit_page) {
        ?>
      <label for="proj-version-released-<?php 
        echo $version_index;
        ?>
">
      <span class="checkbox"><input type="checkbox" id="proj-version-released-<?php 
        echo $version_index;
        ?>
"
                                    name="released<?php 
        echo $version_index;
        ?>
" <?php 
        check_checked((int) $version['released'], ON);
        ?>
 /></span>
      </label>
      <?php 
    } else {
        echo trans_bool($version['released']);
    }
    echo '</td>';
}
function print_duration($edit_page, $type_index, $option_show_duration)
{
    echo '<td class="center">';
    if ($edit_page) {
        ?>
      <label for="show-duration"></label>
      <span class="checkbox"><input type="checkbox" id="show-duration"
                                    name="showpt<?php 
        echo $type_index;
        ?>
" <?php 
        check_checked((int) $option_show_duration, ON);
        ?>
 /></span>
      <?php 
    } else {
        echo trans_bool($option_show_duration);
    }
    echo '</td>';
}
		foreach ( $t_versions as $t_version ) {
			$t_inherited = ( $t_version['project_id'] != $f_project_id ?  true : false );
			$t_name = version_full_name( $t_version['id'], /* showProject */ $t_inherited, $f_project_id );
			$t_released = $t_version['released'];
			$t_obsolete = $t_version['obsolete'];
			if( !date_is_null( $t_version['date_order'] ) ) {
				$t_date_formatted = date( config_get( 'complete_date_format' ), $t_version['date_order'] );
			} else {
				$t_date_formatted = ' ';
			} ?>

		<tr <?php echo helper_alternate_class() ?>>
			<td><?php echo string_display( $t_name ) ?></td>
			<td><?php echo trans_bool( $t_released ) ?></td>
			<td><?php echo trans_bool( $t_obsolete ) ?></td>
			<td><?php echo $t_date_formatted ?></td>
			<td><?php
				$t_version_id = version_get_id( $t_name, $f_project_id );
				if ( !$t_inherited ) {
					print_button( 'manage_proj_ver_edit_page.php?version_id=' . $t_version_id, lang_get( 'edit_link' ) );
				} ?>
			</td>
			<td><?php
				if ( !$t_inherited ) {
					print_button( 'manage_proj_ver_delete.php?version_id=' . $t_version_id, lang_get( 'delete_link' ) );
				} ?>
			</td>
		</tr><?php
		} # end for loop ?>
	</table><?php
    echo get_enum_element('custom_field_type', $t_desc['type']);
    ?>
			</td>
			<td>
				<?php 
    echo string_display($t_desc['possible_values']);
    ?>
			</td>
			<td>
				<?php 
    echo string_display($t_desc['default_value']);
    ?>
			</td>
			<td align="center">
				<?php 
    echo trans_bool($t_desc['advanced']);
    ?>
			</td>
		</tr>
	<?php 
}
# Create Form END
?>
</table>

<br />

<form method="post" action="manage_custom_field_create.php">
<?php 
echo form_security_field('manage_custom_field_create');
?>
Beispiel #10
0
		if( !isset( $t_access_level[$u_access_level] ) ) {
			$t_access_level[$u_access_level] = get_enum_element( 'access_levels', $u_access_level );
		} ?>
		<tr <?php echo helper_alternate_class( $i ) ?>>
			<td><?php
				if ( access_has_global_level( $u_access_level ) ) { ?>
					<a href="manage_user_edit_page.php?user_id=<?php echo $u_id ?>"><?php echo string_display_line( $u_username ) ?></a><?php
				} else {
					echo string_display_line( $u_username );
				} ?>
			</td>
			<td><?php echo string_display_line( $u_realname ) ?></td>
			<td><?php print_email_link( $u_email, $u_email ) ?></td>
			<td><?php echo $t_access_level[$u_access_level] ?></td>
			<td><?php echo trans_bool( $u_enabled ) ?></td>
			<td class="center"><?php
				if ( $u_protected ) {
					echo " $t_lock_image";
				} else {
					echo '&#160;';
				} ?>
			</td>
			<td><?php echo $u_date_created ?></td>
			<td><?php echo $u_last_visit ?></td>
		</tr><?php
	}  # end for ?>
	</table>
	<div class="pager-links">
		<?php
		/* @todo hack - pass in the hide inactive filter via cheating the actual filter value */
    }
    ?>
		</td>
	<td><?php 
    echo $u_date_created;
    ?>
</td>
	<td><?php 
    echo $u_last_visit;
    ?>
</td>
	<td><?php 
    if (config_get("show_avatar_in_manage_user_list")) {
        print_avatar($u_id, null, $t_class = "manage_avatar");
    } else {
        echo trans_bool($has_avatar);
    }
    ?>
	</td>	
</tr>
<?php 
}
# end for
# -- Page number links --
?>
	<tr>
		<td class="right" colspan="8">
			<span class="small">
				<?php 
/* @todo hack - pass in the page filter via cheating the actual filter value */
print_page_links('manage_user_page.php', 1, $t_page_count, (int) $f_page_number, $c_filter . $t_hide_inactive_filter . $t_show_disabled_filter . "&sort={$c_sort}&dir={$c_dir}");