mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* use Blade view and Eloquent models for plugins * move views * fix style * fix style * revert mistake * Update Plugin.php delete test property "name" * rename plugin function to settings * last but not least - rename in Test.php * Rename Test to Example * fix typo * fix style * fix style * fix style * fix style - I hate tabs... * Extract view calls * fix method calls and style * Move Models the the abstract class * fix style * Convert to traits * Change the Example description * Fix style * Fix style * Fix style * Convert plugin function to Model static methods and delete .inc.php * fix style * fix style * Use scope * final methods blows up legacy code * Config > \LibreNMS\Config * convert the static string to a static method * Correct placement in the page * fix tabs * fix style * Rename from tait to hook to make it easier to understand and be complient * rename file * Typo * Started to change the docu * change to a more usefully Device_Overview example * and activate of course * PluginManager * fix .gitignore * only php files in the root folder * corrected .gitignore with all files :) * Rename the Hooks and ExampleClass for better readability * Fix style * Fix style * Exception handling (especially if DB is not present) * Fix style and update schema * fix indentation * actually correct indent * fix migration collation check include utf8mb4_bin * stop phpstan whining * A view lines documentation * add typeHints * Allow return null on handle * lint * fix return types * fix logic of column collation check * Fix MenuEntryHook * switch to longtext instead of json type for now :D * try phpstan on PHP 7.3 * set phpstan target version to 7.3 * all the typehints * optional * more * Use namespace to prevent view collisions disambiguate plugin and hook no magic guessing of names in PluginManager, bad assumptions remove unused plugins from the DB * cleanup plugin menu * cleanup on shutdown and ignore but log query error on cleanup * instanceof must be called against an instance * Allow multiple hooks per plugin * Port plugin ui code to Laravel * page instead of settings for v1 plugins * actually working settings pages a little url cleanup plugin/admin -> plugin/settings * fix style * Add page hook * PHPstan * Try to fix Illuminate\Http\RedirectResponse * typehint * Rewrite the doc * Fix style Co-authored-by: PipoCanaja <38363551+PipoCanaja@users.noreply.github.com> Co-authored-by: Tony Murray <murraytony@gmail.com>
86 lines
2.6 KiB
PHP
86 lines
2.6 KiB
PHP
<?php
|
|
|
|
use App\Plugins\Hooks\DeviceOverviewHook;
|
|
|
|
$overview = 1;
|
|
|
|
echo '
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
';
|
|
require 'includes/html/dev-overview-data.inc.php';
|
|
require 'includes/html/dev-groups-overview-data.inc.php';
|
|
require 'overview/puppet_agent.inc.php';
|
|
require 'overview/tracepath.inc.php';
|
|
|
|
echo LibreNMS\Plugins::call('device_overview_container', [$device]);
|
|
PluginManager::call(DeviceOverviewHook::class, ['device' => DeviceCache::getPrimary()])->each(function ($view) {
|
|
echo $view;
|
|
});
|
|
|
|
require 'overview/ports.inc.php';
|
|
|
|
if ($device['os'] == 'cimc') {
|
|
require 'overview/cimc.inc.php';
|
|
}
|
|
|
|
echo '
|
|
</div>
|
|
<div class="col-md-6">
|
|
';
|
|
// Right Pane
|
|
require 'overview/processors.inc.php';
|
|
require 'overview/mempools.inc.php';
|
|
require 'overview/storage.inc.php';
|
|
|
|
if (! isset($entity_state)) {
|
|
$entity_state = get_dev_entity_state($device['device_id']);
|
|
}
|
|
if (is_array($entity_state['group']['c6kxbar'])) {
|
|
require 'overview/c6kxbar.inc.php';
|
|
}
|
|
|
|
require 'overview/toner.inc.php';
|
|
require 'overview/sensors/charge.inc.php';
|
|
require 'overview/sensors/temperature.inc.php';
|
|
require 'overview/sensors/humidity.inc.php';
|
|
require 'overview/sensors/fanspeed.inc.php';
|
|
require 'overview/sensors/dbm.inc.php';
|
|
require 'overview/sensors/voltage.inc.php';
|
|
require 'overview/sensors/current.inc.php';
|
|
require 'overview/sensors/runtime.inc.php';
|
|
require 'overview/sensors/power.inc.php';
|
|
require 'overview/sensors/power_consumed.inc.php';
|
|
require 'overview/sensors/power_factor.inc.php';
|
|
require 'overview/sensors/frequency.inc.php';
|
|
require 'overview/sensors/load.inc.php';
|
|
require 'overview/sensors/state.inc.php';
|
|
require 'overview/sensors/count.inc.php';
|
|
require 'overview/sensors/percent.inc.php';
|
|
require 'overview/sensors/signal.inc.php';
|
|
require 'overview/sensors/tv_signal.inc.php';
|
|
require 'overview/sensors/airflow.inc.php';
|
|
require 'overview/sensors/snr.inc.php';
|
|
require 'overview/sensors/pressure.inc.php';
|
|
require 'overview/sensors/cooling.inc.php';
|
|
require 'overview/sensors/delay.inc.php';
|
|
require 'overview/sensors/quality_factor.inc.php';
|
|
require 'overview/sensors/chromatic_dispersion.inc.php';
|
|
require 'overview/sensors/ber.inc.php';
|
|
require 'overview/sensors/eer.inc.php';
|
|
require 'overview/sensors/waterflow.inc.php';
|
|
require 'overview/sensors/loss.inc.php';
|
|
require 'overview/eventlog.inc.php';
|
|
require 'overview/services.inc.php';
|
|
require 'overview/syslog.inc.php';
|
|
require 'overview/graylog.inc.php';
|
|
echo '</div></div></div>';
|
|
|
|
//require 'overview/current.inc.php");
|