Ignore:
Timestamp:
2012/02/12 11:28:48 (14 years ago)
Author:
Seasoft
Message:

#1637 (クラスのオートローディング)

File:
1 moved

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/graph/SC_Graph_Line.php

    r21441 r21490  
    2222 */ 
    2323 
    24 $ownDir = realpath(dirname(__FILE__)) . '/'; 
    25 require_once $ownDir . 'SC_GraphBase.php'; 
    26  
    2724// 折れ線グラフ生成クラス 
    28 class SC_GraphLine extends SC_GraphBase{ 
     25class SC_Graph_Line extends SC_Graph_Base{ 
    2926    var $area_width; 
    3027    var $area_height; 
     
    4340 
    4441    // コンストラクタ 
    45     function SC_GraphLine( 
     42    function SC_Graph_Line( 
    4643        $bgw = BG_WIDTH, $bgh = BG_HEIGHT, $left = LINE_LEFT, $top = LINE_TOP, 
    4744        $area_width = LINE_AREA_WIDTH, $area_height = LINE_AREA_HEIGHT) { 
    48         parent::SC_GraphBase($bgw, $bgh, $left, $top); 
     45        parent::SC_Graph_Base($bgw, $bgh, $left, $top); 
    4946        $this->area_width = $area_width; 
    5047        $this->area_height = $area_height; 
Note: See TracChangeset for help on using the changeset viewer.