/**
  * {@inheritdoc}
  */
 public static function defaultStorageSettings()
 {
     $settings = parent::defaultStorageSettings();
     // The target bundle is handled by the 'target_bundles' property in the
     // 'handler_settings' instance setting.
     unset($settings['target_bundle']);
     return $settings;
 }
 /**
  * {@inheritdoc}
  */
 public static function defaultStorageSettings()
 {
     return array('target_type' => 'file', 'display_field' => FALSE, 'display_default' => FALSE, 'uri_scheme' => file_default_scheme()) + parent::defaultStorageSettings();
 }
 /**
  * {@inheritdoc}
  */
 public static function defaultStorageSettings()
 {
     return array('target_type' => 'taxonomy_term', 'options_list_callback' => NULL, 'allowed_values' => array(array('vocabulary' => '', 'parent' => 0))) + parent::defaultStorageSettings();
 }
Esempio n. 4
0
 /**
  * {@inheritdoc}
  */
 public static function defaultStorageSettings()
 {
     return ['target_type' => 'feeds_feed'] + parent::defaultStorageSettings();
 }
Esempio n. 5
0
  /**
   * {@inheritdoc}
   */

  public static function defaultStorageSettings() {
    return array(
      'target_type' => 'view',
    ) + parent::defaultStorageSettings();
  }
Esempio n. 6
0
 /**
  * {@inheritdoc}
  */
 public static function defaultStorageSettings()
 {
     return array('target_type' => 'field_collection_item') + parent::defaultStorageSettings();
 }