Jump to content

How to use application::allowOfflineAccess?


Go to solution Solved by WP V0RT3X,

Recommended Posts

Posted
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.

  • Solution
Posted (edited)
    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
Posted (edited)
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 members

    • No registered users viewing this page.
×
×
  • Create New...