Example #1
0
 public static function getIndexFieldTypesMap()
 {
     if (!self::$typesMap) {
         self::$typesMap = array('created_at' => IIndexable::FIELD_TYPE_DATETIME, 'updated_at' => IIndexable::FIELD_TYPE_DATETIME, 'version' => IIndexable::FIELD_TYPE_INTEGER, 'metadata_profile_id' => IIndexable::FIELD_TYPE_INTEGER, 'metadata_profile_version' => IIndexable::FIELD_TYPE_INTEGER, 'partner_id' => IIndexable::FIELD_TYPE_INTEGER, 'object_id' => IIndexable::FIELD_TYPE_STRING, 'object_type' => IIndexable::FIELD_TYPE_INTEGER, 'metadata_status' => IIndexable::FIELD_TYPE_INTEGER, 'plugins_data' => IIndexable::FIELD_TYPE_STRING, 'sphinx_match_optimizations' => IIndexable::FIELD_TYPE_STRING);
     }
     return self::$typesMap;
 }