improve example for display_central and display_login hooks

This commit is contained in:
Alexandre Delaunay 2015-11-20 17:35:19 +01:00
parent d0e0fdcebf
commit 946224b913

View File

@ -646,11 +646,17 @@ function plugin_example_Status($param) {
}
function plugin_example_display_central() {
echo "<tr><th colspan='2'>";
echo "<div style='text-align:center; font-size:2em'>";
echo __("Plugin example displays on central page", "example");
echo "</div>";
echo "</th></tr>";
}
function plugin_example_display_login() {
echo "<div style='text-align:center; font-size:2em'>";
echo __("Plugin example displays on login page", "example");
echo "</div>";
}
?>