public function getOutput($options = array())
 {
     if (!$this->isPublished()) {
         return "";
     }
     if (intval($this->value) == 0) {
         $this->setVariable('value', $this->value);
         return $this->fetch('output.php', __CLASS__);
     } else {
         return parent::getOutput();
     }
 }