Example #1
0
 /**
  * {@inheritdoc}
  */
 public static function defaultStorageSettings()
 {
     $storage_settings = parent::defaultStorageSettings();
     // is_ascii doesn't make sense for URIs.
     unset($storage_settings['is_ascii']);
     $storage_settings['max_length'] = 2048;
     return $storage_settings;
 }
Example #2
0
 /**
  * {@inheritdoc}
  */
 public static function defaultStorageSettings()
 {
     return array('max_length' => 128, 'is_ascii' => TRUE) + parent::defaultStorageSettings();
 }
Example #3
0
 /**
  * {@inheritdoc}
  */
 public static function defaultStorageSettings()
 {
     return array('max_length' => 2048) + parent::defaultStorageSettings();
 }