Beispiel #1
0
 /**
  * Parses the text before displaying it.
  *
  * @param mixed $text
  */
 public function parse($text)
 {
     // Not .NET Compatible
     BCGBarcode1D::parse(str_replace(array('-', ' '), '', $text));
     $this->createISBNText();
     $this->setLabelOffset();
 }
 /**
  * Parses the text before displaying it.
  *
  * @param mixed $text
  */
 public function parse($text)
 {
     parent::parse(strtoupper($text));
     // Only Capital Letters are Allowed
 }
 public function parse($text)
 {
     parent::parse($text);
     $this->setLabelOffset();
 }
 /**
  * Parses the text before displaying it.
  *
  * @param mixed $text
  */
 public function parse($text)
 {
     parent::parse($text);
     $number = self::executeStep1($this->text, $this->barcodeIdentifier, $this->serviceTypeIdentifier, $this->mailerIdentifier, $this->serialNumber);
     $crc = self::executeStep2($number);
     $codewords = self::executeStep3($number);
     $codewords = self::executeStep4($codewords, $crc);
     $characters = self::executeStep5($codewords, $crc);
     $this->data = self::executeStep6($characters);
 }
 /**
  * Saves Text
  *
  * @param string $text
  */
 function parse($text)
 {
     BCGBarcode1D::parse(str_replace(array('-', ' '), '', $text));
     $this->createISBNText();
     $this->setLabelOffset();
 }
 /**
  * Saves Text
  *
  * @param string $text
  */
 function parse($text)
 {
     BCGBarcode1D::parse(strtoupper($text));
     // Only Capital Letters are Allowed
 }
 function parse($text)
 {
     BCGBarcode1D::parse($text);
     $this->setLabelOffset();
 }