HtmlTemplateFramework
[ class tree: HtmlTemplateFramework ] [ index: HtmlTemplateFramework ] [ all elements ]

Source for file htf_tag_td.phl

Documentation is available at htf_tag_td.phl

  1. <?php
  2. /**
  3.  * htf_tag_tdクラス
  4.  *
  5.  * htmlのtdタグ情報を保有・生成するクラス
  6.  *
  7.  * @package HtmlTemplateFramework
  8.  * @subpackage htmltagbase
  9.  * @access  public
  10.  * @author    Yamauchi Shogo <htf@as-prj.com>
  11.  * @version $Id: htf_tag_td.phl ,v 1.0 $
  12.  ***/
  13. require_once("htf_com_define.inc");    //共通定数
  14. require_once("htf_com_func.inc");    //共通関数
  15. require_once("htf_tag_element.phl");    //エレメントクラス
  16.  
  17. /**
  18.  * htmlのtdタグ情報を保有・生成するクラス
  19.  * 
  20.  * htmlのtdタグを保有し、保有している内容でhtmlのtdタグ記述を生成します。
  21.  *
  22.  * @access  public
  23.  * @author    Yamauchi Shogo <htf@as-prj.com>
  24.  ***/
  25. class htf_tag_td extends htf_tag_element {
  26.  
  27.     /**
  28.      * コンストラクタ
  29.      *
  30.      * 引数の大文字小文字出力指定を参照し、htf_tag_tdを生成します。
  31.      *
  32.      * @param     int    $strelement_case  大文字・小文字出力(デフォルトは小文字)
  33.      * @return    void 
  34.      ***/
  35.     function htf_tag_td($strelement_case=HTF_CASE_LOWER{
  36.         parent::htf_tag_element("td"TRUE$strelement_case);
  37.     }
  38. }
  39.  
  40. ?>

Documentation generated on Tue, 19 Sep 2006 06:21:23 +0900 by phpDocumentor 1.3.0