22 lines
		
	
	
		
			479 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			479 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * @file
 | 
						|
 * Install, update and uninstall hooks for the figli starter kit install profile.
 | 
						|
 */
 | 
						|
 | 
						|
/**
 | 
						|
 * Implements hook_install().
 | 
						|
 *
 | 
						|
 * Perform actions to set up the site for this profile.
 | 
						|
 *
 | 
						|
 * @see system_install()
 | 
						|
 */
 | 
						|
function figli_starter_kit_install() {
 | 
						|
  // First, do everything that is done in the standard profile.
 | 
						|
  include_once DRUPAL_ROOT . '/core/profiles/standard/standard.install';
 | 
						|
  standard_install();
 | 
						|
 | 
						|
  // Add code here to make nodes, terms, etc.
 | 
						|
}
 |