mirror of
				https://github.com/Alamantus/Lexiconga.git
				synced 2025-11-04 10:17:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			No EOL
		
	
	
		
			286 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			No EOL
		
	
	
		
			286 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
function Show_Dictionary_Function($prevent_edit) {
 | 
						|
    // Used to determine which JavaScript display function to use.
 | 
						|
    // $prevent_edit is a boolean value.
 | 
						|
    if ($prevent_edit) {
 | 
						|
        echo "ShowPublicDictionary()";
 | 
						|
    } else { 
 | 
						|
        echo "ShowDictionary()";
 | 
						|
    }
 | 
						|
}
 | 
						|
?>
 |