LingotekFilterProviderInterface.php in Lingotek Translation 3.6.x
Same filename and directory in other branches
- 8.2 src/LingotekFilterProviderInterface.php
- 4.0.x src/LingotekFilterProviderInterface.php
- 3.0.x src/LingotekFilterProviderInterface.php
- 3.1.x src/LingotekFilterProviderInterface.php
- 3.2.x src/LingotekFilterProviderInterface.php
- 3.3.x src/LingotekFilterProviderInterface.php
- 3.4.x src/LingotekFilterProviderInterface.php
- 3.5.x src/LingotekFilterProviderInterface.php
- 3.7.x src/LingotekFilterProviderInterface.php
- 3.8.x src/LingotekFilterProviderInterface.php
Namespace
Drupal\lingotekFile
src/LingotekFilterProviderInterface.phpView source
<?php
namespace Drupal\lingotek;
/**
* Contract for classes providing filter information.
*
* @package Drupal\lingotek
*/
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);
}
Interfaces
Name | Description |
---|---|
LingotekFilterProviderInterface | Contract for classes providing filter information. |