/src/Zend/Media/Id3/Frame/Tpro.php
http://php-reader.googlecode.com/ · PHP · 48 lines · 4 code · 2 blank · 42 comment · 0 complexity · 0d272ff60c509fc544d3f5d850310e31 MD5 · raw file
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Media
- * @subpackage ID3
- * @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id: Tpro.php 177 2010-03-09 13:13:34Z svollbehr $
- * @since ID3v2.4.0
- */
- /**#@+ @ignore */
- require_once 'Zend/Media/Id3/TextFrame.php';
- /**#@-*/
- /**
- * The <i>Produced notice</i> frame, in which the string must begin with a year
- * and a space character (making five characters), is intended for the
- * production copyright holder of the original sound, not the audio file itself.
- * The absence of this frame means only that the production copyright
- * information is unavailable or has been removed, and must not be interpreted
- * to mean that the audio is public domain. Every time this field is displayed
- * the field must be preceded with 'Produced ' (P) ' ', where (P) is one
- * character showing a P in a circle.
- *
- * @category Zend
- * @package Zend_Media
- * @subpackage ID3
- * @author Sven Vollbehr <sven@vollbehr.eu>
- * @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id: Tpro.php 177 2010-03-09 13:13:34Z svollbehr $
- * @since ID3v2.4.0
- */
- final class Zend_Media_Id3_Frame_Tpro extends Zend_Media_Id3_TextFrame
- {}