query($sql);
echo '
ActionCodes Widget
NUR DIE ALPHA(1.0) VERSION UNSERES NEUEN WP_PLUGINS ACTIONCODE
Bitte führe vor der Benutzung und Konfiguration die install.php aus! Und ändere in der conf.inc.php die Datenbank-Daten
Aktionscodes
| Code Name |
Internetadresse |
';
while ($row = $result->fetch_array())
{
echo '| '.$row[0].' | '.$row[1].' | ';
}
$db->close();
echo '
';
}
function widget_sidebar_init() {
if ( !function_exists("register_sidebar_widget") )
return;
function widget_sidebar() {
// Hier kann man eigenen Code einfuegen
$widget_html = '
Sonderaktionen
NUR DIE ALPHA(1.0) VERSION UNSERES NEUEN WP_PLUGINS ACTIONCODE
';
echo $widget_html;
}
register_sidebar_widget("WP_Sonderaktionen", "widget_sidebar");
}
add_action("plugins_loaded", "widget_sidebar_init");
function ActionCodes_addAdminMenu() {
add_option("ActionCodes","1");
add_submenu_page('plugins.php','ActionCodes Property','ActionCodes Property',get_option('ActionCodes'),__FILE__,'displayProperty');
}
add_action('admin_menu', 'ActionCodes_addAdminMenu');
?>