If you want to change the default output of the logs, you can use an override file to create your own output:

  1. Navigate into the directory "/modules/addons/loginhistory/"
  2. Create the file modalOutput.override.php
  3. Put following code into your file:

    <?php
    
    function loginhistory_modalOutput ($userid) {
        return "This will be shown in the modal";
    }

After you have adjusted the content of the function "loginhistory_modalOutput" accordingly, the returned text will be displayed in the modal.

  • No labels