public function Webform::isTemplate in Webform 8.5
Same name and namespace in other branches
- 6.x src/Entity/Webform.php \Drupal\webform\Entity\Webform::isTemplate()
Returns the webform template indicator.
Return value
bool TRUE if the webform is a template and available for duplication.
Overrides WebformInterface::isTemplate
1 call to Webform::isTemplate()
- Webform::preSave in src/
Entity/ Webform.php - Acts on an entity before the presave hook is invoked.
File
- src/
Entity/ Webform.php, line 691
Class
- Webform
- Defines the webform entity.
Namespace
Drupal\webform\EntityCode
public function isTemplate() {
return $this->template ? TRUE : FALSE;
}