Skip to content

Instantly share code, notes, and snippets.

View VladSavitsky's full-sized avatar

Vlad Savitsky VladSavitsky

View GitHub Profile
@VladSavitsky
VladSavitsky / Drupal Image (Media) Field
Last active August 29, 2015 14:18
Drupal Form API
$form['image'] = array(
'#type' => 'media',
'#tree' => TRUE,
'#title' => t('Image'),
'#description' => t('Allowed formats: png, jpg, jpeg, gif.'),
'#media_options' => array(
'global' => array(
'file_extensions' => 'png jpg jpeg gif',
'max_filesize' => '20 MB',
'file_directory' => '',