source: branches/feature-module-update/data/class_extends/SC_Initial_Ex.php @ 16506

Revision 16506, 554 bytes checked in by nanasess, 17 years ago (diff)

リファクタリング

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id Revision Date
  • Property svn:mime-type set to text/x-httpd-php
Line 
1<?php
2/*
3 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
4 *
5 * http://www.lockon.co.jp/
6 */
7
8// {{{ requires
9require_once(CLASS_PATH . "SC_Initial.php");
10
11/**
12 * アプリケーションの初期設定クラス(拡張).
13 *
14 * SC_Initial をカスタマイズする場合はこのクラスを編集する.
15 *
16 * @author LOCKON CO.,LTD.
17 * @version $Id$
18 */
19class SC_Initial_Ex extends SC_Initial {
20
21    // {{{ constructor
22
23    /**
24     * コンストラクタ
25     */
26    function SC_Initial_Ex() {
27        parent::SC_Initial();
28    }
29}
30?>
Note: See TracBrowser for help on using the repository browser.