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_Pie.php

    r21441 r21490  
    2222 */ 
    2323 
    24 $ownDir = realpath(dirname(__FILE__)) . '/'; 
    25 require_once $ownDir . 'SC_GraphBase.php'; 
    26  
    2724// 円グラフ生成クラス 
    28 class SC_GraphPie extends SC_GraphBase{ 
     25class SC_Graph_Pie extends SC_Graph_Base{ 
    2926    var $cw; 
    3027    var $ch; 
     
    3633 
    3734    // コンストラクタ 
    38     function SC_GraphPie($bgw = BG_WIDTH, $bgh = BG_HEIGHT, $left = PIE_LEFT, $top = PIE_TOP) { 
    39         parent::SC_GraphBase($bgw, $bgh, $left, $top); 
     35    function SC_Graph_Pie($bgw = BG_WIDTH, $bgh = BG_HEIGHT, $left = PIE_LEFT, $top = PIE_TOP) { 
     36        parent::SC_Graph_Base($bgw, $bgh, $left, $top); 
    4037        // サイズ設定 
    4138        $this->setSize(PIE_WIDTH, PIE_HEIGHT, PIE_THICK); 
Note: See TracChangeset for help on using the changeset viewer.