
Originally Posted by
mrdon
Currently when "Campaigns" is clicked it displays the module Campaigns
I would like it to display the page/module "Targets" which looks to be called module Prospects
Any idea on how to do this? I don't want to use Campaigns but I do want to use Targets which seems to be a sub module of Campaigns.
Thanks,
Brandon
You need to copy the script modules/Campaigns/controller.php to custom/modules/Campaigns/controller.php and implement the method action_listview.
The function should looks like that:
PHP Code:
function action_listview() {
$this->view = 'list';
$_REQUEST['module'] = 'Prospects';
$_REQUEST['action'] = 'index';
}
Regards
Bookmarks