* Security::set_login_recording(true); * * * Caution: Please make sure that enabling logging * complies with your privacy standards. We're logging * username and IP. * * @package sapphire * @subpackage security */ class LoginAttempt extends DataObject { static $db = array( 'Email' => 'Varchar(255)', 'Status' => "Enum('Success,Failure')", 'IP' => 'Varchar(255)', ); static $has_one = array( 'Member' => 'Member', // only linked if the member actually exists ); static $has_many = array(); static $many_many = array(); static $belongs_many_many = array(); /** * * @param boolean $includerelations a boolean value to indicate if the labels returned include relation fields * */ function fieldLabels($includerelations = true) { $labels = parent::fieldLabels($includerelations); $labels['Email'] = _t('LoginAttempt.Email', 'Email Address'); $labels['Status'] = _t('LoginAttempt.Status', 'Status'); $labels['IP'] = _t('LoginAttempt.IP', 'IP Address'); return $labels; } } ?>