Try following
But you should realize few things
Code:
Tabs Group == (collection of modules or tabs if you want)
Code:
Tab == module == Module
Code:
(inside module resides) Action == View
about tabs you can find more HERE
if after review the post about tabs you are sure tabs are not the way for you,than try this(not tested)
create
Code:
custom/module/<packageKey_module>/controller.php
PHP Code:
class packageKey_moduleController extends SugarController
{
function action_myphppage()
{
$this->view = 'myphppage';
}
function action_myphppage2()
{
$this->view = 'myphppage2';
}
function action_index()
{
$this->view = 'index';
}
}
after that maybe create this
Code:
custom/module/<packageKey_module>/views/view.index.php
or this(but this maybe overrides controller)
Code:
custom/module/<packageKey_module>/index.php
inside put this
PHP Code:
$page = '<h1>Navigation page</h1>
<a href="index.php?module=packageKey_module&action=myphppage">My Page</a>
<a href="index.php?module=packageKey_module&action=myphppage2">My Page2</a>';
echo $page;
and than create these pages(from navigation)
Code:
custom/module/<packageKey_module>/views/view.myphppage.php
Code:
custom/module/<packageKey_module>/views/view.myphppage2.php
if this isn't working be polite and share your solution
Bookmarks