public NodeType::isLocked()
Determines whether the node type is locked.
Return value
string|false The module name that locks the type or FALSE.
Overrides NodeTypeInterface::isLocked
File
- core/modules/node/src/Entity/NodeType.php, line 112
Class
- NodeType
- Defines the Node type configuration entity.
Namespace
Drupal\node\Entity
Code
public function isLocked() { $locked = \Drupal::state()->get('node.type.locked'); return isset($locked[$this->id()]) ? $locked[$this->id()] : FALSE; }
Please login to continue.