Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
October 19, 20213 yr What have you tried till yet? It's a simple method which returns true/false depending on your condition in this method.
October 19, 20213 yr 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.
October 20, 20213 yr Author To be more specific; /applications/applicationname/modules/front/app.php How can I allow offline access on my script?
October 20, 20213 yr 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 October 20, 20213 yr by Darth Vortex
October 21, 20213 yr 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 October 21, 20213 yr by OctoDev