/**
  * Magical function to check the setting of an element.
  *
  * @param string $var the name of the element
  *
  * @return boolean Returns TRUE if $var is element
  * @codeCoverageIgnore
  */
 public function __isset($var)
 {
     return null !== $this->getDraft() ? $this->getDraft()->__isset($var) : parent::__isset($var);
 }