2008-08-04 Esteban Sánchez <estebans@artica.es>
* extensions/hello.php: Fixed old function name. Activate the extension by default. Style correction. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@999 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
f0db43b8fe
commit
8f3b244e66
|
@ -1,3 +1,8 @@
|
||||||
|
2008-08-04 Esteban Sánchez <estebans@artica.es>
|
||||||
|
|
||||||
|
* extensions/hello.php: Fixed old function name. Activate the
|
||||||
|
extension by default. Style correction.
|
||||||
|
|
||||||
2008-08-04 Esteban Sánchez <estebans@artica.es>
|
2008-08-04 Esteban Sánchez <estebans@artica.es>
|
||||||
|
|
||||||
* godmode/extensions.php, operation/extensions.php: Added to
|
* godmode/extensions.php, operation/extensions.php: Added to
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
/* Remove this statement to enabled the extension */
|
/* You can safely delete this file */
|
||||||
return;
|
|
||||||
|
|
||||||
function hello_extension_main () {
|
function hello_extension_main () {
|
||||||
/* Here you can do almost all you want! */
|
/* Here you can do almost all you want! */
|
||||||
|
@ -12,5 +11,5 @@ function hello_extension_main () {
|
||||||
add_operation_menu_option ('Hello plugin!');
|
add_operation_menu_option ('Hello plugin!');
|
||||||
|
|
||||||
/* This sets the function to be called when the extension is selected in the operation menu */
|
/* This sets the function to be called when the extension is selected in the operation menu */
|
||||||
add_plugin_main_function ('hello_extension_main');
|
add_extension_main_function ('hello_extension_main');
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in New Issue