Skip to content

Instantly share code, notes, and snippets.

@VladSavitsky
Last active August 29, 2015 14:18
Show Gist options
  • Save VladSavitsky/89e5aad80080c44a3325 to your computer and use it in GitHub Desktop.
Save VladSavitsky/89e5aad80080c44a3325 to your computer and use it in GitHub Desktop.
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' => '',
'types' => array('image'),
),
),
'#default_value' => $conf['image'],
'#required' => FALSE,
);
ctools_form_include($form_state, 'content');
ctools_form_include($form_state, 'gc_locations', 'gc_panes', 'plugins/content_types/gc_locations');
@VladSavitsky
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment