Exemplo n.º 1
0
 /**
  * Writes the frame raw data without the header.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     $this->setEncoding(Zend_Media_Id3_Encoding::ISO88591);
     parent::_writeData($writer);
 }
Exemplo n.º 2
0
 /**
  * Writes the frame raw data without the header.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     if ($this->getOption('version', 4) >= 4) {
         parent::_writeData($writer);
     } else {
         $this->setEncoding(Zend_Media_Id3_Encoding::ISO88591);
         parent::_writeData($writer);
     }
 }
Exemplo n.º 3
0
 /**
  * Writes the frame raw data without the header.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     $this->setText($this->_country . $this->_registrant . $this->_year . $this->_uniqueNumber, Zend_Media_Id3_Encoding::ISO88591);
     parent::_writeData($writer);
 }