Call to undefined function

Status
This content is read-only, or is not open for further replies.

Ozzy47

Guest
offline
I'm trying to extend XF\Service\User with something like the following.

Code:

Code:
<?php

namespace OzzModz\LoginLogX\XF\Service\User;

use XF\Entity\User;

use function strlen;

class Login extends XFCP_Login
{
    public function validate($password, &$error = null)
    {
        // Set Parent
          $parent = validate($password, $error);
            
          // Let's Get The User's IP
        if (!empty($_SERVER['HTTP_CLIENT_IP']))
        {
            $ip =...

Read more

Continue reading...
 
Liked by:
Status
This content is read-only, or is not open for further replies.
Top Bottom