Redirect to viewtopic

Discussion forum for Extension Writers regarding Extension Development.
Post Reply
sapiro
Registered User
Posts: 29
Joined: Tue Mar 03, 2020 10:09 pm

Redirect to viewtopic

Post by sapiro »

Hi
I wanted to ask if it is possible to build a redirect into a listener php when a user is on the portal (board3) he gets redirected to a certain page.
I got it working on the index page with this code in the listener.php

Code: Select all

static public function getSubscribedEvents ()
{
return array (
'core.index_modify_page_title' => 'index_page',

);
}
public function index_page ()
{
header ('Location: viewtopic.php? t = 255 ');
}
anybody know the solution for that ?
Post Reply

Return to “Extension Writers Discussion”