Skip to content

Commit

Permalink
OOP_ORM 独立为模块
Browse files Browse the repository at this point in the history
  • Loading branch information
breath-co2 committed Sep 11, 2013
1 parent 4b7a191 commit f03b681
Show file tree
Hide file tree
Showing 8 changed files with 39 additions and 28 deletions.
18 changes: 18 additions & 0 deletions modules/oop/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "myqee/oop",
"description": "MyQEE OOP ORM Module",
"keywords": ["MyQEE", "Module"],
"homepage": "http://www.myqee.com/",
"type": "myqee-module",
"license": "Apache-2.0",
"authors": [
{
"name": "jonwang",
"email": "[email protected]",
"homepage": "http://www.queyang.com/"
}
],
"autoload": {
"psr-0": {"MyQEE\\Module\\OOP": "src/"}
}
}
7 changes: 3 additions & 4 deletions modules/oop/orm.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@
* MyQEE ORM 核心类
*
* @author 呼吸二氧化碳 <[email protected]>
* @category MyQEE
* @package System
* @subpackage Core
* @category Module
* @package ORM
* @copyright Copyright (c) 2008-2013 myqee.com
* @license http://www.myqee.com/license.html
*/
abstract class Core_OOP_ORM
abstract class Module_OOP_ORM
{

/**
Expand Down
7 changes: 3 additions & 4 deletions modules/oop/orm/data.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@
* MyQEE ORM 核心类
*
* @author 呼吸二氧化碳 <[email protected]>
* @category MyQEE
* @package System
* @subpackage Core
* @category Module
* @package ORM
* @copyright Copyright (c) 2008-2013 myqee.com
* @license http://www.myqee.com/license.html
*/
class Core_OOP_ORM_Data
class Module_OOP_ORM_Data
{
/**
* ID 字段名
Expand Down
7 changes: 3 additions & 4 deletions modules/oop/orm/finder/db.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@
* ORM 数据库核心类
*
* @author 呼吸二氧化碳 <[email protected]>
* @category MyQEE
* @package System
* @subpackage Core
* @category Module
* @package ORM
* @copyright Copyright (c) 2008-2013 myqee.com
* @license http://www.myqee.com/license.html
*/
class Core_OOP_ORM_Finder_DB extends OOP_ORM
class Module_OOP_ORM_Finder_DB extends OOP_ORM
{

/**
Expand Down
7 changes: 3 additions & 4 deletions modules/oop/orm/finder/rest.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@
* MyQEE ORM REST核心类
*
* @author 呼吸二氧化碳 <[email protected]>
* @category MyQEE
* @package System
* @subpackage Core
* @category Module
* @package ORM
* @copyright Copyright (c) 2008-2013 myqee.com
* @license http://www.myqee.com/license.html
*/
class Core_OOP_ORM_Finder_REST extends OOP_ORM
class Module_OOP_ORM_Finder_REST extends OOP_ORM
{
/**
* API接口地址
Expand Down
7 changes: 3 additions & 4 deletions modules/oop/orm/index.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@
* MyQEE ORM 索引核心类
*
* @author 呼吸二氧化碳 <[email protected]>
* @category MyQEE
* @package System
* @subpackage Core
* @category Module
* @package ORM
* @copyright Copyright (c) 2008-2013 myqee.com
* @license http://www.myqee.com/license.html
*/
abstract class Core_OOP_ORM_Index
abstract class Module_OOP_ORM_Index
{

/**
Expand Down
7 changes: 3 additions & 4 deletions modules/oop/orm/parse.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@
* ORM 字段解析器
*
* @author 呼吸二氧化碳 <[email protected]>
* @category MyQEE
* @package System
* @subpackage Core
* @category Module
* @package ORM
* @copyright Copyright (c) 2008-2013 myqee.com
* @license http://www.myqee.com/license.html
*/
abstract class Core_OOP_ORM_Parse
abstract class Module_OOP_ORM_Parse
{

public function __construct()
Expand Down
7 changes: 3 additions & 4 deletions modules/oop/orm/result.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@
* MyQEE ORM 核心类
*
* @author 呼吸二氧化碳 <[email protected]>
* @category MyQEE
* @package System
* @subpackage Core
* @category Module
* @package ORM
* @copyright Copyright (c) 2008-2013 myqee.com
* @license http://www.myqee.com/license.html
*/
class Core_OOP_ORM_Result extends ArrayIterator
class Module_OOP_ORM_Result extends ArrayIterator
{

/**
Expand Down

0 comments on commit f03b681

Please sign in to comment.