pandorafms/pandora_console/extensions/hello.php

17 lines
422 B
PHP
Raw Normal View History

<?php
/* Remove this statement to enabled the extension */
return;
function hello_extension_main () {
/* Here you can do almost all you want! */
echo 'Hello world!';
}
/* This adds a option in the operation menu */
add_operation_menu_option ('Hello plugin!');
/* This sets the function to be called when the extension is selected in the operation menu */
add_plugin_main_function ('hello_extension_main');
?>