15 lines
		
	
	
		
			245 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			245 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * @file
 | |
|  * Install, update and uninstall functions for the block_example module.
 | |
|  */
 | |
| 
 | |
| /**
 | |
|  * Implements hook_uninstall().
 | |
|  *
 | |
|  * @ingroup block_example
 | |
|  */
 | |
| function block_example_uninstall() {
 | |
|   variable_del('block_example_string');
 | |
| }
 |