Jump to content

Featured Replies

Posted

Where would I use this, any sample code?

Solved by WP V0RT3X

Go to solution

What have you tried till yet?

It's a simple method which returns true/false depending on your condition in this method.

  • Author
2 hours ago, Daniel F said:

What have you tried till yet?

It's a simple method which returns true/false depending on your condition in this method.

 

I want to allow offline access to my applicstion. It's a gateway that. Webhook. Placed in frontend.

  • Author

To be more specific;

 

/applications/applicationname/modules/front/app.php

 

How can I allow offline access on my script?

  • Solution
    public function allowOfflineAccess( \IPS\Application\Module $module, $controller, $do )
    {
        if ( $module->key == 'imprint' AND $controller == 'imprintpage' )
        {
            return TRUE;
        }
        return parent::allowOfflineAccess( $module, $controller, $do );
    }

I am using this on my Imprint application.

Edited by Darth Vortex

  • Author
On 10/20/2021 at 2:20 PM, Darth Vortex said:
    public function allowOfflineAccess( \IPS\Application\Module $module, $controller, $do )
    {
        if ( $module->key == 'imprint' AND $controller == 'imprintpage' )
        {
            return TRUE;
        }
        return parent::allowOfflineAccess( $module, $controller, $do );
    }

I am using this on my Imprint application.

Thank you!

Edited by OctoDev

Recently Browsing 0

  • No registered users viewing this page.