/src/Zend/Media/Id3/Frame/Tlan.php
http://php-reader.googlecode.com/ · PHP · 43 lines · 4 code · 2 blank · 37 comment · 0 complexity · 41ad95b557212a60ac8c03ee110d68f9 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: Tlan.php 177 2010-03-09 13:13:34Z svollbehr $
- */
- /**#@+ @ignore */
- require_once 'Zend/Media/Id3/TextFrame.php';
- /**#@-*/
- /**
- * The <i>Language</i> frame should contain the languages of the text or lyrics
- * spoken or sung in the audio. The language is represented with three
- * characters according to {@link http://www.loc.gov/standards/iso639-2/
- * ISO-639-2}. If more than one language is used in the text their language
- * codes should follow according to the amount of their usage.
- *
- * @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: Tlan.php 177 2010-03-09 13:13:34Z svollbehr $
- */
- final class Zend_Media_Id3_Frame_Tlan extends Zend_Media_Id3_TextFrame
- {}