interface LingotekFilterProviderInterface in Lingotek Translation 3.6.x
Same name and namespace in other branches
- 8.2 src/LingotekFilterProviderInterface.php \Drupal\lingotek\LingotekFilterProviderInterface
- 4.0.x src/LingotekFilterProviderInterface.php \Drupal\lingotek\LingotekFilterProviderInterface
- 3.0.x src/LingotekFilterProviderInterface.php \Drupal\lingotek\LingotekFilterProviderInterface
- 3.1.x src/LingotekFilterProviderInterface.php \Drupal\lingotek\LingotekFilterProviderInterface
- 3.2.x src/LingotekFilterProviderInterface.php \Drupal\lingotek\LingotekFilterProviderInterface
- 3.3.x src/LingotekFilterProviderInterface.php \Drupal\lingotek\LingotekFilterProviderInterface
- 3.4.x src/LingotekFilterProviderInterface.php \Drupal\lingotek\LingotekFilterProviderInterface
- 3.5.x src/LingotekFilterProviderInterface.php \Drupal\lingotek\LingotekFilterProviderInterface
- 3.7.x src/LingotekFilterProviderInterface.php \Drupal\lingotek\LingotekFilterProviderInterface
- 3.8.x src/LingotekFilterProviderInterface.php \Drupal\lingotek\LingotekFilterProviderInterface
Contract for classes providing filter information.
@package Drupal\lingotek
Hierarchy
- interface \Drupal\lingotek\LingotekFilterProviderInterface
Expanded class hierarchy of LingotekFilterProviderInterface
All classes that implement LingotekFilterProviderInterface
File
- src/
LingotekFilterProviderInterface.php, line 10
Namespace
Drupal\lingotekView source
interface LingotekFilterProviderInterface {
/**
* Gets the FPRM filter of the profile.
*
* @return string
* The fprm filter identifier, used to upload documents. If the value is
* 'drupal_default', the default site FRPM filter should be used.
*/
public function getFilter();
/**
* Sets the FPRM filter of the profile.
*
* @param string $filter
* The FPRM filter identifier, used to upload documents. If the value is
* 'drupal_default', the default site FPRM filter should be used.
*
* @return $this
*/
public function setFilter($filter);
/**
* Gets the FPRM subfilter of the profile.
*
* @return string
* The FPRM filter identifier, used to upload documents. If the value is
* 'drupal_default', the default site FPRM subfilter should be used.
*/
public function getSubfilter();
/**
* Sets the FPRM subfilter of the profile.
*
* @param string $filter
* The FPRM filter identifier, used to upload documents. If the value is
* 'drupal_default', the default site FPRM subfilter should be used.
*
* @return $this
*/
public function setSubfilter($filter);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
LingotekFilterProviderInterface:: |
public | function | Gets the FPRM filter of the profile. | 2 |
LingotekFilterProviderInterface:: |
public | function | Gets the FPRM subfilter of the profile. | 2 |
LingotekFilterProviderInterface:: |
public | function | Sets the FPRM filter of the profile. | 2 |
LingotekFilterProviderInterface:: |
public | function | Sets the FPRM subfilter of the profile. | 2 |