Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
Daniel F Posted October 19, 2021 Posted October 19, 2021 What have you tried till yet? It's a simple method which returns true/false depending on your condition in this method.
OctoDev Posted October 19, 2021 Author Posted October 19, 2021 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.
OctoDev Posted October 20, 2021 Author Posted October 20, 2021 To be more specific; /applications/applicationname/modules/front/app.php How can I allow offline access on my script?
Solution WP V0RT3X Posted October 20, 2021 Solution Posted October 20, 2021 (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 October 20, 2021 by Darth Vortex
OctoDev Posted October 21, 2021 Author Posted October 21, 2021 (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 October 21, 2021 by OctoDev
Recommended Posts