Skip to content

Instantly share code, notes, and snippets.

@leonardosapiras
Created June 9, 2011 22:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leonardosapiras/1017912 to your computer and use it in GitHub Desktop.
Save leonardosapiras/1017912 to your computer and use it in GitHub Desktop.
$navlinks = array (
array (
'attr'=> array ('href' => "views.php?action=create&{$misc->href}"),
'content' => $lang['strcreateview']
), array (
'attr'=> array ('href' => "views.php?action=wiz_create&{$misc->href}"),
'content' => $lang['strcreateviewwiz']
)
);
$misc->printNavLinks($navlinks);
should be
$navlinks = array (
array (
'attr'=> array ('href' => "views.php?action=create&{$misc->href}"),
'content' => $lang['strcreateview']
), array (
'attr'=> array ('href' => "views.php?action=wiz_create&{$misc->href}"),
'content' => $lang['strcreateviewwiz']
)
);
$misc->printNavLinks($navlinks,
/*file where this is called, like sql.php*/,
/*function used, like doDefault
because there are a lot of files that have more than one place to print navlinks, and the Plugin's hook cannot be shown in every navlinks, just where it's necessary.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment