Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117754102
Syslog.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
1 KB
Referenced Files
None
Subscribers
None
Syslog.php
View Options
<?php
/**
* Kolab 2-Factor-Authentication Logging class to log messages
* through the Roundcube logging facilities.
*
* @author Thomas Bruederli <bruederli@kolabsys.com>
*
* Copyright (C) 2015, Kolab Systems AG <contact@kolabsys.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace
Kolab2FA\Log
;
use
\rcube
;
class
Syslog
implements
Logger
{
protected
$name
=
'Kolab2FA'
;
protected
$level
=
LOG_INFO
;
public
function
set_name
(
$name
)
{
$this
->
name
=
$name
;
}
public
function
set_level
(
$name
)
{
$this
->
level
=
$level
;
}
public
function
log
(
$level
,
$message
)
{
if
(
$level
>=
$this
->
level
)
{
if
(!
is_string
(
$message
))
{
$message
=
var_export
(
$message
,
true
);
}
syslog
(
$level
,
'['
.
$this
->
name
.
'] '
.
$message
);
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Apr 4, 6:36 AM (1 w, 2 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
67/ce/e86ffc7de164d5b613f2743129de
Default Alt Text
Syslog.php (1 KB)
Attached To
Mode
rRPK roundcubemail-plugins-kolab
Attached
Detach File
Event Timeline