示例#1
0
 /**
  * Adds the default label.
  */
 protected function addDefaultLabel()
 {
     if ($this->isDefaultEanLabelEnabled()) {
         $isbn = $this->createISBNText();
         $font = $this->font;
         $topLabel = new BCGLabel($isbn, $font, BCGLabel::POSITION_TOP, BCGLabel::ALIGN_CENTER);
         $this->addLabel($topLabel);
     }
     parent::addDefaultLabel();
 }