13 lines
		
	
	
		
			1006 B
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			1006 B
		
	
	
	
		
			INI
		
	
	
	
	
	
| ; @package      Advanced Custom Fields
 | |
| ; @version      2.8.8 Pro
 | |
| ;
 | |
| ; @author		Tassos Marinos - http://www.tassos.gr/joomla-extensions
 | |
| ; @copyright	Copyright (c) 2016 Tassos Marinos. All rights reserved.
 | |
| ; @license		http://www.tassos.gr
 | |
| 
 | |
| PLG_FIELDS_ACFPHP_LABEL="ACF - PHP"
 | |
| ACF_PHP="Fields - ACF PHP"
 | |
| ACF_PHP_DESC="Execute PHP in a Joomla! Custom Field and display a dynamic value in the front-end."
 | |
| ACF_PHP_VALUE_DESC="The PHP code added here is executed just before the field is rendered in the front-end and must return a value using the return; statement.<br><br><b>Example 1:</b><br>$name = 'John Doe';<br>return $name;<br><br><b>Example 2:</b><br>return ($user->guest) ? 'Guest' : $user->name;<br><br>To access field settings use $field (Object) variable."
 | |
| ACF_PHP_FORBIDDEN_PHP_FUNCTIONS="Forbidden PHP Functions"
 | |
| ACF_PHP_FORBIDDEN_PHP_FUNCTIONS_DESC="A comma separated list of PHP functions that are forbidden. The whole PHP block of code will not be executed if it contains any of these functions." |