// next we add the inactive plugins
$plugs = array_merge_recursive($rw_plugs_on, $rw_plugs_off);
$page->assign('plugins', $plugs);
+ // debugging
+ foreach ($plugs as $p_type => $p_entries)
+ {
+ $globals->plugins->log = array_merge($globals->plugins->log, $p_entries);
+ }
// values
$page->assign('show_params', $this->show_params);
if (is_array($plugentry))
$plug_h->fromArray($plugentry);
- $plug_log = $plug_h->toArray();
- //$pluglog['name'] = 'foo';
- array_push($this->log, $plug_log);
return $plug_h;
}
{
$trclass = $odd ? ' class="odd"' : '';
$out .= "<tr><th colspan=\"2\">{$val['name']} v{$val['version']}</th></tr>\n";
+ $out .= "<tr><td>status</td><td>{$val['status']}</td></tr>\n";
if (isset($val['pos'])) {
$out .= "<tr><td>position</td><td>{$val['pos']}</td></tr>\n";
}