Parent Directory
|
Revision Log
|
Revision Graph
A lots of implementations : - specifies the button type (theme) - specifies the position of the button - when to display the button in the node (teaser, full page or both) - uninstall hook to delete variables
| 1 | <?php |
| 2 | // $Id$ |
| 3 | |
| 4 | /** |
| 5 | * Implementation of hook_uninstall(). |
| 6 | */ |
| 7 | function scooperceci_uninstall() { |
| 8 | variable_del('scooperceci_button_type'); |
| 9 | variable_del('scooperceci_button_weight'); |
| 10 | variable_del('scooperceci_node_types'); |
| 11 | variable_del('scooperceci_in_node'); |
| 12 | } |
| 13 | ?> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |