	function get_capability_row( $p_caption, $p_access_level ) {
		$t_access_levels = explode_enum_string( config_get( 'access_levels_enum_string' ) );
		$t_output = '<tr ' . helper_alternate_class() . '><td>' . string_display( $p_caption ) . '</td>';
	
		if( is_array($p_access_level ) ) {
  		foreach( $t_access_levels as $t_access_level ) {
  			$t_entry_array = explode_enum_arr( $t_access_level );
				$t_value = '&nbsp;';
        foreach( $p_access_level as $access_level ) { 
  				if ( (int)$t_entry_array[0] == (int)$access_level ) {
  					$t_value = '<img src="images/ok.gif" width="20" height="15" alt="X" title="X" />';
  				}
        }

  			$t_output .= '<td class="center">' . $t_value . '</td>';
  		}
		}else {
  		foreach( $t_access_levels as $t_access_level ) {
  			$t_entry_array = explode_enum_arr( $t_access_level );
        if ( (int)$t_entry_array[0] >= (int)$p_access_level ) {
  					$t_value = '<img src="images/ok.gif" width="20" height="15" alt="X" title="X" />';
  			} else {
  					$t_value = '&nbsp;';
  			}
        
  			$t_output .= '<td class="center">' . $t_value . '</td>';
  		}
		}
		

		$t_output .= '</tr>' . "\n";

		return $t_output;
	}
