matecat / subfiltering
Matecat Subfiltering component
Installs: 8 716
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 2
Requires
- php: >=5.6
- ext-dom: *
- ext-libxml: *
- ext-xml: *
- matecat/emoji-to-entity-converter: ^1
- matecat/xml-dom-parser: ^1
Requires (Dev)
- phpunit/phpunit: ^5.7.27
- dev-master
- v2.2.7
- v2.2.6
- v2.2.5
- v2.2.4
- v2.2.3
- v2.2.2
- v2.2.1
- v2.2.0
- v2.1.2
- v2.0.5
- v2.0.4
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- v1.2.14-beta.2
- v1.2.14-beta
- v1.2.13
- v1.2.12
- v1.2.11
- v1.2.10-beta
- v1.2.9
- v1.2.8
- v1.2.7
- v1.2.6
- v1.2.5
- v1.2.4
- v1.2.3
- v1.2.2
- v1.2.1
- v1.2.0.1
- v1.2.0
- v1.1.17
- v1.1.16
- v1.1.15
- v1.1.14
- v1.1.13
- v1.1.12
- v1.1.11
- v1.1.10
- v1.1.9
- v1.1.8
- v1.1.7
- v1.1.6
- v1.1.5
- v1.1.4
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.16
- v1.0.15
- v1.0.14
- v1.0.13
- v1.0.12
- v1.0.11
- v1.0.10
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- dev-remove-xliff-parser-dep
- dev-equiv-text-x-tags
- dev-renovate/configure
- dev-fix-sprintf-regex
- dev-fix-apostrophe-in-simil-html
- dev-fix-nbsp-to-space
- dev-fix-variables
- dev-nbsp-double-encode
- dev-nbsp
- dev-remove-singlecurlybracketstoph
- dev-fix-square-sprintf
- dev-lokalise-tags
- dev-sprintf-update
- dev-remove-double-underscore
- dev-fix-smart-counts
- dev-html_allow_double_points
- dev-lm-placeholders
- dev-ctype
- dev-remove-skyscanner-placeholders
- dev-g-xid
- dev-skyscanner-syntax
- dev-fix-tag-g-double-encoding
- dev-sprintf-az
- dev-v.1.0.4
- dev-remove-%%
- dev-@@-syntax
- dev-fix-amp-url
- dev-ltb
- dev-revertTo1011
- dev-fix-href
- dev-fix-ph-tags-without-dataRef
- dev-HU-%-ot
- dev-fix-html
- dev-fix-dont-touch-already-parsed-ph
- dev-twig-improvements
- dev-fix-ph-no-dataref
- dev-fix-double-lt
- dev-curly-brackets
This package is auto-updated.
Last update: 2025-03-21 14:55:39 UTC
README
Subfiltering is a component used by Matecat and MyMemory) for string conversion from database to UI layer and viceversa.
How to use
There are two filters available (both are implementation of AbstractFilter
):
MateCatFilter
MyMemoryFilter
Use getInstance
method to instantiate these classes:
use Matecat\SubFiltering\MateCatFilter; $filter = MateCatFilter::getInstance(new FeatureSet(), 'it-IT', 'en-EN', []);
The first argument MUST be concrete implementation of Matecat\SubFiltering\Contracts\FeatureSetInterface
.
The other three arguments are optional:
$source
(string) - The source language$target
(string) - The target language$dataRefMap
(array) - A map used for tag replacement (only for segments from Xliff 2.0). A full documentation for dataRef replacement is available here.
dataRef replacement
Basic Usage
Once AbstractFilter
class is instantiated you can use several methods to convert strings from one layer to another one.
MateCatFilter methods
fromLayer0ToLayer2
fromLayer1ToLayer2
fromLayer2ToLayer1
fromLayer2ToLayer0
fromLayer0ToLayer1
fromLayer1ToLayer0
fromRawXliffToLayer0
fromLayer0ToRawXliff
MyMemoryFilter methods
fromLayer0ToLayer1
fromLayer1ToLayer0
Where Layer0
is the DB layer, Layer1
is the intermediate layer and Layer2
is the MateCat's UI layer.
Examples
In the tests
folder there is an fully working example of a concrete implementation of FeatureSetInterface
with a custom filter.
// tests/Mocks
.
├── Features
│ ├── AirbnbFeature.php
│ └── BaseFeature.php
└── FeatureSet.php
Support
If you found an issue or had an idea please refer to this section.
Authors
License
This project is licensed under the MIT License - see the LICENSE.md file for details