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
24e38355
Commit
24e38355
authored
Jul 14, 2015
by
Sascha Linke
Committed by
Franco Fichtner
Jul 15, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added hide/show feature for settings Widget now translatable
parent
5529302e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
79 additions
and
40 deletions
+79
-40
system_log.widget.php
src/www/widgets/widgets/system_log.widget.php
+79
-40
No files found.
src/www/widgets/widgets/system_log.widget.php
View file @
24e38355
<?php
<?php
require_once
(
"functions.inc"
);
/*
Copyright (C) 2015 S. Linke <dev@devsash.de>
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.
*/
require_once
(
"guiconfig.inc"
);
require_once
(
"guiconfig.inc"
);
require_once
(
'notices.inc'
);
require_once
(
"pfsense-utils.inc"
);
include_once
(
"includes/functions.inc.php"
);
require_once
(
"functions.inc"
);;
require_once
(
"script/load_phalcon.php"
);
$system_logfile
=
'/var/log/system.log'
;
$system_logfile
=
'/var/log/system.log'
;
if
(
!
$config
[
'widgets'
][
'systemlogfiltercount'
])
{
$syslogEntriesToFetch
=
$config
[
'syslog'
][
'nentries'
];
if
(
!
$syslogEntriesToFetch
)
{
$syslogEntriesToFetch
=
20
;
}
}
else
{
$syslogEntriesToFetch
=
$config
[
'widgets'
][
'systemlogfiltercount'
];
}
if
(
is_numeric
(
$_POST
[
'logfiltercount'
]))
if
(
!
$config
[
'widgets'
][
'systemlogfiltercount'
]){
{
$syslogEntriesToFetch
=
$config
[
'syslog'
][
'nentries'
];
$countReceived
=
$_POST
[
'logfiltercount'
];
if
(
!
$syslogEntriesToFetch
)
{
$config
[
'widgets'
][
'systemlogfiltercount'
]
=
$countReceived
;
$syslogEntriesToFetch
=
20
;
write_config
(
"Saved Widget System Log Filter Setting"
);
}
Header
(
"Location: /"
);
}
else
{
exit
(
0
)
;
$syslogEntriesToFetch
=
$config
[
'widgets'
][
'systemlogfiltercount'
]
;
}
}
if
(
is_numeric
(
$_POST
[
'logfiltercount'
]))
{
$countReceived
=
$_POST
[
'logfiltercount'
];
$config
[
'widgets'
][
'systemlogfiltercount'
]
=
$countReceived
;
write_config
(
"Saved Widget System Log Filter Setting"
);
Header
(
"Location: /index.php"
);
exit
(
0
);
}
?>
?>
<div
class=
"table-responsive"
>
<input
type=
"hidden"
id=
"system_log-config"
name=
"system_log-config"
value=
""
/>
<table
class=
"table table-striped table-sort"
cellspacing=
"0"
cellpadding=
"0"
>
<?
dump_clog
(
$system_logfile
,
$syslogEntriesToFetch
,
true
,
array
(),
array
(
"ppp"
));
?>
<div
id=
"system_log-settings"
class=
"widgetconfigdiv"
style=
"display:none;"
>
</table>
<form
action=
"/widgets/widgets/system_log.widget.php"
method=
"post"
name=
"iform"
>
<table
class=
"table"
style=
"margin-bottom:0px;text-align:center;"
>
<table
class=
"table table-striped"
summary=
"syslog widget"
>
<tr>
<tr
class=
"formselect"
>
<td>
<?=
gettext
(
"Number of Log lines to display"
);
?>
:
</td>
<td>
Number of Log lines to display:
</td>
<td>
<td>
<select
name=
"logfiltercount"
id=
"logfiltercount"
>
<form
action=
"/widgets/widgets/system_log.widget.php"
method=
"post"
name=
"iform"
>
<?php
for
(
$i
=
1
;
$i
<=
50
;
$i
++
)
{
?>
<select
name=
"logfiltercount"
id=
"logfiltercount"
>
<option
value=
"
<?php
echo
$i
;
?>
"
<?php
if
(
$syslogEntriesToFetch
==
$i
)
{
echo
"selected=
\"
selected
\"
"
;}
?>
>
<?php
echo
$i
;
?>
</option>
<?php
for
(
$i
=
1
;
$i
<=
50
;
$i
++
)
{
?>
<?php
}
?>
<option
value=
"
<?php
echo
$i
;
?>
"
<?php
if
(
$syslogEntriesToFetch
==
$i
)
{
echo
"selected=
\"
selected
\"
"
;}
?>
>
<?php
echo
$i
;
?>
</option>
</td>
<?php
}
?>
</td>
<td>
<td>
<input
id=
"submit"
name=
"submit"
type=
"submit"
class=
"btn btn-primary formbtn"
value=
"Save"
autocomplete=
"off"
>
<input
id=
"submit"
name=
"submit"
type=
"submit"
class=
"btn btn-primary formbtn"
value=
"Save"
autocomplete=
"off"
>
</td>
</form>
</td>
</tr>
</tr>
</table>
</table>
</form>
</div>
</div>
<div
id=
"syslog-widgets"
style=
"padding: 5px; overflow:scroll;"
>
<table
class=
"table table-striped"
cellspacing=
"0"
cellpadding=
"0"
>
<?php
dump_clog
(
$system_logfile
,
$syslogEntriesToFetch
,
true
,
array
(),
array
(
"ppp"
));
?>
</table>
</div>
<!-- needed to display the widget settings menu -->
<script
type=
"text/javascript"
>
//
<!
[
CDATA
[
selectIntLink
=
"
system_log-configure
"
;
textlink
=
document
.
getElementById
(
selectIntLink
);
textlink
.
style
.
display
=
"
inline
"
;
//]]>
</script>
\ No newline at end of file
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