Create a new file field.

Parameters

string $name: The name of the new field (all lowercase), exclude the "field_" prefix.

string $type_name: The node type that this field will be added to.

array $field_settings: A list of field settings that will be added to the defaults.

array $instance_settings: A list of instance settings that will be added to the instance defaults.

array $widget_settings: A list of widget settings that will be added to the widget defaults.

File

./exif_functionaltests.php, line 29

Class

ExifFunctionalTestCase
Base class for functional tests for this module.

Code

public function createFileField($name, $type_name, array $field_settings = array(), array $instance_settings = array(), array $widget_settings = array()) {
    $field = array(
        'field_name' => $name,
        'type' => 'file',
        'settings' => array(),
        'cardinality' => !empty($field_settings['cardinality']) ? $field_settings['cardinality'] : 1,
    );
    $field['settings'] = array_merge($field['settings'], $field_settings);
    field_create_field($field);
    $this->attachFileField($name, 'node', $type_name, $instance_settings, $widget_settings);
}