24 lines
621 B
PHP
24 lines
621 B
PHP
<?php
|
|
/**
|
|
* ZenTaoPHP的control类。
|
|
* The control class file of ZenTaoPHP framework.
|
|
*
|
|
* The author disclaims copyright to this source code. In place of
|
|
* a legal notice, here is a blessing:
|
|
*
|
|
* May you do good and not evil.
|
|
* May you find forgiveness for yourself and forgive others.
|
|
* May you share freely, never taking more than you give.
|
|
*/
|
|
|
|
/**
|
|
* control基类继承与baseControl,所有模块的control类都派生于它。
|
|
* The base class of control extends baseControl.
|
|
*
|
|
* @package framework
|
|
*/
|
|
include dirname(__FILE__) . '/base/control.class.php';
|
|
class control extends baseControl
|
|
{
|
|
}
|