* @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2013 PradoSoft * @license http://www.pradosoft.com/license/ * @version $Id: THeader3.php 2590 2008-12-10 11:34:24Z carlgmathisen $ * @package System.Web.UI.WebControls */ /** * THeader3 class * * This is a simple class to enable your application to have headers but then have your * theme be able to redefine the TagName * This is also useful for the {@link TWebControlDecorator} (used by themes). * * @author Brad Anderson * @version $Id: THeader3.php 2541 2008-10-21 15:05:13Z javalizard $ * @package System.Web.UI.WebControls * @since 3.2a */ class THeader3 extends THtmlElement { /** * @return string tag name */ public function getDefaultTagName() { return 'h3'; } }