function scald_gallery_installed_fields in Scald: Gallery 7
Same name and namespace in other branches
- 7.2 scald_gallery.install \scald_gallery_installed_fields()
List of initially installed fields on gallery bundle.
1 call to scald_gallery_installed_fields()
- scald_gallery_install in ./
scald_gallery.install - Implements hook_install().
File
- ./
scald_gallery.install, line 46 - Scald Gallery Installation.
Code
function scald_gallery_installed_fields() {
$fields = array(
'gallery_items' => array(
'field_name' => 'gallery_items',
'type' => 'atom_reference',
'cardinality' => -1,
),
);
return $fields;
}