Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
90a31b13
Commit
90a31b13
authored
May 03, 2016
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(dashboard, widgets) replace thermal_sensors.widget.php
parent
53f6dace
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
201 additions
and
579 deletions
+201
-579
temperature.inc
src/www/widgets/api/plugins/temperature.inc
+52
-0
thermal_sensors.inc
src/www/widgets/include/thermal_sensors.inc
+0
-24
thermal_sensors.js
src/www/widgets/javascript/thermal_sensors.js
+0
-295
thermal_sensors.widget.php
src/www/widgets/widgets/thermal_sensors.widget.php
+149
-260
No files found.
src/www/widgets/api/plugins/temperature.inc
0 → 100644
View file @
90a31b13
<?php
/*
Copyright (C) 2016 Deciso B.V.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
/**
* widget temperature data
*/
function
temperature_api
()
{
$result
=
array
();
exec
(
"/sbin/sysctl -a | grep temperature"
,
$sysctlOutput
);
foreach
(
$sysctlOutput
as
$sysctl
)
{
$parts
=
explode
(
':'
,
$sysctl
);
if
(
count
(
$parts
)
>=
2
)
{
$tempItem
=
array
();
$tempItem
[
'device'
]
=
$parts
[
0
];
$tempItem
[
'device_seq'
]
=
filter_var
(
$tempItem
[
'device'
],
FILTER_SANITIZE_NUMBER_INT
);
$tempItem
[
'temperature'
]
=
trim
(
str_replace
(
'C'
,
''
,
$parts
[
1
]));
$tempItem
[
'type'
]
=
strpos
(
$tempItem
[
'device'
],
'hw.acpi'
)
!==
false
?
"zone"
:
"core"
;
$tempItem
[
'type_translated'
]
=
$tempItem
[
'type'
]
==
"zone"
?
gettext
(
"Zone"
)
:
gettext
(
"Core"
);
$result
[]
=
$tempItem
;
}
}
usort
(
$result
,
function
(
$item1
,
$item2
)
{
return
strcmp
(
strtolower
(
$item1
[
'device'
]),
strtolower
(
$item2
[
'device'
]));
});
return
$result
;
}
src/www/widgets/include/thermal_sensors.inc
View file @
90a31b13
<?php
/*
$Id: thermal_sensors.inc
File location:
\usr\local\www\widgets\include\
Used by:
\usr\local\www\widgets\widgets\thermal_sensors.widget.php
*/
//set variable for custom title
$thermal_sensors_widget_title
=
"Thermal Sensors"
;
//$thermal_sensors_widget_link = "thermal_sensors.php";
//returns core temp data (from coretemp.ko or amdtemp.ko driver) as "|"-delimited string.
//NOTE: depends on proper cofing in System >> Advanced >> Miscellaneous tab >> Thermal Sensors section.
function
getThermalSensorsData
()
{
$_gb
=
exec
(
"/sbin/sysctl -a | grep temperature"
,
$dfout
);
$thermalSensorsData
=
join
(
"|"
,
$dfout
);
return
$thermalSensorsData
;
}
src/www/widgets/javascript/thermal_sensors.js
deleted
100644 → 0
View file @
53f6dace
This diff is collapsed.
Click to expand it.
src/www/widgets/widgets/thermal_sensors.widget.php
View file @
90a31b13
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment