11 lines
		
	
	
		
			313 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			313 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
interface InterfaceConfig {
 | 
						|
  //URLs & paths kernel
 | 
						|
  const PATH_ROOT = "/var/www/html/aiibi/";
 | 
						|
  const URL_ROOT = "/aiibi/";
 | 
						|
  const URL_SCRIPT = "/aiibi/scripts/";
 | 
						|
  
 | 
						|
  // URLs & paths customs
 | 
						|
  const PATH_CUSTOM = "/var/www/customs/aiibi-custom-wefra/"; // <== CONFIG the path to your custom directory
 | 
						|
}
 |