M michael.s Member Aug 11, 2023 #1 Can I redirect the admin to a specific admin controller or external page once he installed the addon?
Can I redirect the admin to a specific admin controller or external page once he installed the addon?
Jeremy P XenForo developer Staff member Aug 11, 2023 #2 Yeah. Add a postInstall method to your setup class and set redirect on the state changes array: PHP: public function postInstall(array &$stateChanges): void { $router = \XF::app()->router('admin'); $stateChanges['redirect'] = $router->buildLink('your/page'); }
Yeah. Add a postInstall method to your setup class and set redirect on the state changes array: PHP: public function postInstall(array &$stateChanges): void { $router = \XF::app()->router('admin'); $stateChanges['redirect'] = $router->buildLink('your/page'); }