Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Include loadtab.php in Core
#14
Nothing wrong with including loadtab, provided the following changes will be added also:

in loadtab.php (line 25), add:
Code:
# Set default action
if(!isset($_GET['item'])) $_GET['item'] = $plugin_info[$plugin_id]['load_data'];
(this is even better as my solution here: http://get-simple.info/forum/topic/2852/...oadtabphp/)

change function createSideMenu() to
Code:
function createSideMenu($id,$txt,$pluginid = null){
    $class=null;
    if (isset($_GET['id']) && $_GET['id'] == $id) {
        $class='class="current"';
    } else if ($pluginid && $_GET['item'] == $id) {
        $class='class="current"';
    }
    $url = is_null($pluginid) ? 'load.php?id='.$id : 'loadtab.php?id='.$pluginid.'&item='.$id;
    
    echo '<li><a href="'.$url.'" '.$class.' >'.$txt.'</a></li>';
}
(explanation of extra param $pluginid: When creating a sidemenu for a plugin that is displayed as a new tab with loadtab.php, send the $plugin_id to createSideMenu function.)

Only thing left to fix is styling for the active loadtab tab.
Reply


Messages In This Thread
Include loadtab.php in Core - by mvlcek - 2011-09-07, 23:31:47
Include loadtab.php in Core - by ccagle8 - 2011-09-07, 23:43:32
Include loadtab.php in Core - by mvlcek - 2011-09-08, 00:15:55
Include loadtab.php in Core - by ccagle8 - 2011-09-08, 03:09:02
Include loadtab.php in Core - by mvlcek - 2011-09-08, 05:28:18
Include loadtab.php in Core - by mvlcek - 2011-09-08, 06:06:03
Include loadtab.php in Core - by mvlcek - 2011-10-11, 23:38:48
Include loadtab.php in Core - by ccagle8 - 2011-10-12, 22:34:10
Include loadtab.php in Core - by mvlcek - 2011-10-12, 22:43:23
Include loadtab.php in Core - by leenm - 2011-11-13, 05:18:48
Include loadtab.php in Core - by n00dles101 - 2011-11-13, 05:57:40
Include loadtab.php in Core - by leenm - 2011-11-13, 06:10:29
Include loadtab.php in Core - by mvlcek - 2011-11-13, 06:27:34
Include loadtab.php in Core - by leenm - 2011-11-13, 06:39:56
Include loadtab.php in Core - by n00dles101 - 2011-11-13, 07:14:42
Include loadtab.php in Core - by mvlcek - 2011-11-13, 07:30:30
Include loadtab.php in Core - by n00dles101 - 2011-12-06, 19:52:37
Include loadtab.php in Core - by mvlcek - 2012-01-23, 18:06:55
Include loadtab.php in Core - by leenm - 2012-01-24, 09:41:02
Include loadtab.php in Core - by n00dles101 - 2012-01-25, 01:53:20



Users browsing this thread: 1 Guest(s)