mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	Travis tests for code conformance. Ignore warnings for now. Fixed all errors, left most warnings.
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/*
 | 
						|
 * LibreNMS global MIB viewer
 | 
						|
 *
 | 
						|
 * Copyright (c) 2015 Gear Consulting Pty Ltd <github@libertysys.com.au>
 | 
						|
 *
 | 
						|
 * Author: Paul Gear
 | 
						|
 *
 | 
						|
 * This program 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 3 of the License, or (at your
 | 
						|
 * option) any later version.  Please see LICENSE.txt at the top level of
 | 
						|
 * the source code distribution for details.
 | 
						|
 */
 | 
						|
 | 
						|
if (is_module_enabled('poller', 'mib')) {
 | 
						|
?>
 | 
						|
 | 
						|
<h4><i class="fa fa-file-text-o"></i> All MIB definitions</h4>
 | 
						|
<div class="table-responsive">
 | 
						|
    <table id="mibs" class="table table-hover table-condensed mibs">
 | 
						|
        <thead>
 | 
						|
            <tr>
 | 
						|
                <th data-column-id="module">Module</th>
 | 
						|
                <th data-column-id="mib">MIB</th>
 | 
						|
                <th data-column-id="object_type">Object Type</th>
 | 
						|
                <th data-column-id="oid">Object Id</th>
 | 
						|
                <th data-column-id="syntax">Syntax</th>
 | 
						|
                <th data-column-id="description">Description</th>
 | 
						|
                <!-- th data-column-id="max_access">Maximum Access</th>
 | 
						|
                <th data-column-id="status">Status</th -->
 | 
						|
                <th data-column-id="included_by">Included by</th>
 | 
						|
                <th data-column-id="last_modified">Last modified</th>
 | 
						|
            </tr>
 | 
						|
        </thead>
 | 
						|
    </table>
 | 
						|
</div>
 | 
						|
 | 
						|
<script>
 | 
						|
    var grid = $("#mibs").bootgrid({
 | 
						|
        ajax: true,
 | 
						|
        rowCount: [50,100,250,-1],
 | 
						|
        post: function ()
 | 
						|
        {
 | 
						|
            return {
 | 
						|
                id: "mibs",
 | 
						|
                view: '<?php echo $vars['view']; ?>'
 | 
						|
            };
 | 
						|
        },
 | 
						|
        url: "ajax_table.php",
 | 
						|
        formatters: {
 | 
						|
        },
 | 
						|
        templates: {
 | 
						|
        }
 | 
						|
    });
 | 
						|
</script>
 | 
						|
<?php
 | 
						|
} else {
 | 
						|
    print_mib_poller_disabled();
 | 
						|
}
 |