' . "\n"
. '' . "\n"
. ' ' . "\n"
. '' . "\n"
. '' . __('Storage Engine') . ' ' . "\n"
. ' ' . __('Description') . ' ' . "\n"
. '
' . "\n" . ' ' . "\n" . ' ' . htmlspecialchars($engine_plugin->getComment()) . "\n" . ' ' . "\n" . '
' . "\n\n"; $infoPages = $engine_plugin->getInfoPages(); if (! empty($infoPages) && is_array($infoPages)) { $html .= '' . "\n" . ' [' . "\n"; if (empty($_REQUEST['page'])) { $html .= ' ' . __('Variables') . '' . "\n"; } else { $html .= ' ' . __('Variables') . '' . "\n"; } foreach ($infoPages as $current => $label) { $html .= ' |' . "\n"; if (isset($_REQUEST['page']) && $_REQUEST['page'] == $current) { $html .= ' ' . $label . '' . "\n"; } else { $html .= ' ' . htmlspecialchars($label) . '' . "\n"; } } unset($current, $label); $html .= ' ]' . "\n" . '
' . "\n\n"; } unset($infoPages, $page_output); if (! empty($_REQUEST['page'])) { $page_output = $engine_plugin->getPage($_REQUEST['page']); } if (! empty($page_output)) { $html .= $page_output; } else { $html .= '' . $engine_plugin->getSupportInformationMessage() . "\n" . '
' . "\n" . $engine_plugin->getHtmlVariables(); } return $html; } ?>