/**
  * 
  * @param int $id
  * @param string $label
  * @param string $description
  * @param int $rank
  * @param bool $is_hidden
  */
 public function __construct()
 {
     $id = self::VALUE_ID;
     $label = $GLOBALS['Language']->getText('global', 'none');
     $description = '';
     $rank = 0;
     $is_hidden = false;
     parent::__construct($id, $label, $description, $rank, $is_hidden);
 }