/**
  * Creates a new node of this type
  * @return \ride\library\cms\node\Node
  */
 public function createNode()
 {
     $node = new Node($this->getName());
     $node->setDefaultInherit($this->getDefaultInherit());
     return $node;
 }