primo commit
This commit is contained in:
		
							
								
								
									
										25
									
								
								plugins/fields/integer/tmpl/integer.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								plugins/fields/integer/tmpl/integer.php
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,25 @@ | ||||
| <?php | ||||
|  | ||||
| /** | ||||
|  * @package     Joomla.Plugin | ||||
|  * @subpackage  Fields.Integer | ||||
|  * | ||||
|  * @copyright   (C) 2016 Open Source Matters, Inc. <https://www.joomla.org> | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
|  | ||||
| $value = $field->value; | ||||
|  | ||||
| if ($value == '') { | ||||
|     return; | ||||
| } | ||||
|  | ||||
| if (is_array($value)) { | ||||
|     $value = implode(', ', array_map('intval', $value)); | ||||
| } else { | ||||
|     $value = (int) $value; | ||||
| } | ||||
|  | ||||
| echo $value; | ||||
		Reference in New Issue
	
	Block a user