public function LingotekProfile::isNodeBased in Lingotek Translation 7.7
File
- lib/
Drupal/ lingotek/ LingotekProfile.php, line 394 - Defines LingotekProfile
Class
- LingotekProfile
- A class wrapper for Lingotek Profiles
Code
public function isNodeBased() {
$node_based = $this
->getAttribute('lingotek_nodes_translation_method');
if ($node_based == 'node') {
return TRUE;
}
return FALSE;
}