You are here

public static function LanguagePropertyType::schema in Entity Construction Kit (ECK) 7.3

Schema.

Overrides TextPropertyType::schema

File

./eck.property_type.inc, line 362
Property types.

Class

LanguagePropertyType
SPECIAL PROPERTY TYPES

Code

public static function schema() {
  $schema = parent::schema();
  $schema['default'] = LANGUAGE_NONE;
  $schema['description'] = "Language";
  $schema['length'] = 12;
  return $schema;
}