public function LingotekProfile::setAppendContentTypeToTitle in Lingotek Translation 3.4.x
Same name and namespace in other branches
- 8.2 src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setAppendContentTypeToTitle()
- 4.0.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setAppendContentTypeToTitle()
- 3.0.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setAppendContentTypeToTitle()
- 3.1.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setAppendContentTypeToTitle()
- 3.2.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setAppendContentTypeToTitle()
- 3.3.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setAppendContentTypeToTitle()
- 3.5.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setAppendContentTypeToTitle()
- 3.6.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setAppendContentTypeToTitle()
- 3.7.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setAppendContentTypeToTitle()
- 3.8.x src/Entity/LingotekProfile.php \Drupal\lingotek\Entity\LingotekProfile::setAppendContentTypeToTitle()
Sets the value of append content type to title option.
Parameters
string $append_type_to_title: Values can be 'global_setting', 'yes', or 'no'
Return value
$this
Overrides LingotekProfileInterface::setAppendContentTypeToTitle
File
- src/
Entity/ LingotekProfile.php, line 664
Class
- LingotekProfile
- Defines the LingotekProfile entity.
Namespace
Drupal\lingotek\EntityCode
public function setAppendContentTypeToTitle($append_type_to_title = 'global_setting') {
$this->append_type_to_title = $append_type_to_title;
return $this;
}