1 <?php
2 /**
3 * @package FrameworkOnFramework
4 * @subpackage form
5 * @copyright Copyright (C) 2010-2016 Nicholas K. Dionysopoulos / Akeeba Ltd. All rights reserved.
6 * @license GNU General Public License version 2 or later; see LICENSE.txt
7 */
8 // Protect from unauthorized access
9 defined('FOF_INCLUDED') or die;
10
11 /**
12 * Form Field class for the FOF framework
13 * Media selection field. This is an alias of the "media" field type.
14 *
15 * @package FrameworkOnFramework
16 * @since 2.0
17 */
18 class FOFFormFieldImage extends FOFFormFieldMedia
19 {
20 }
21