silverstripe-framework/src/Security/LoginAttempt.php

54 lines
1.6 KiB
PHP
Raw Normal View History

<?php
2016-06-23 01:37:22 +02:00
namespace SilverStripe\Security;
use SilverStripe\ORM\DataObject;
2016-06-23 01:37:22 +02:00
/**
* Record all login attempts through the {@link LoginForm} object.
* This behaviour is disabled by default.
*
* Enable through {@link Security::$login_recording}.
2014-08-15 08:53:05 +02:00
*
* Caution: Please make sure that enabling logging
* complies with your privacy standards. We're logging
* username and IP.
2014-08-15 08:53:05 +02:00
*
* @property string Email Email address used for login attempt
* @property string Status Status of the login attempt, either 'Success' or 'Failure'
* @property string IP IP address of user attempting to login
*
* @property int MemberID ID of the Member, only if Member with Email exists
*
* @method Member Member() Member object of the user trying to log in, only if Member with Email exists
*/
2016-11-29 00:31:16 +01:00
class LoginAttempt extends DataObject
{
private static $db = array(
'Email' => 'Varchar(255)',
'Status' => "Enum('Success,Failure')",
'IP' => 'Varchar(255)',
);
private static $has_one = array(
'Member' => 'SilverStripe\\Security\\Member', // only linked if the member actually exists
);
private static $table_name = "LoginAttempt";
/**
* @param bool $includerelations Indicate if the labels returned include relation fields
* @return array
*/
public function fieldLabels($includerelations = true)
{
$labels = parent::fieldLabels($includerelations);
2017-05-08 13:34:39 +02:00
$labels['Email'] = _t(__CLASS__.'.LoginAttempt.Email', 'Email Address');
$labels['Status'] = _t(__CLASS__.'.Status', 'Status');
$labels['IP'] = _t(__CLASS__.'.IP', 'IP Address');
2016-11-29 00:31:16 +01:00
return $labels;
}
}