├── .htaccess ├── README.md ├── application ├── admin │ ├── controller │ │ ├── Common.php │ │ └── Index.php │ ├── model │ │ └── User.php │ └── view │ │ └── index.html ├── common │ ├── 404 │ │ ├── images │ │ │ ├── 404.png │ │ │ └── 404_bg.jpg │ │ └── index.php │ └── Helper.php ├── config │ └── Config.php ├── home │ ├── controller │ │ ├── Common.php │ │ └── Index.php │ ├── model │ │ └── User.php │ └── view │ │ └── default │ │ └── index │ │ └── index.php └── log │ └── php.error.log ├── composer.json ├── index.php └── system ├── Init.php ├── common └── Helper.php └── core ├── Config.php ├── Database.php ├── Exception.php ├── Loader.php ├── Model.php └── Route.php /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/README.md -------------------------------------------------------------------------------- /application/admin/controller/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/application/admin/controller/Common.php -------------------------------------------------------------------------------- /application/admin/controller/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/application/admin/controller/Index.php -------------------------------------------------------------------------------- /application/admin/model/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/application/admin/model/User.php -------------------------------------------------------------------------------- /application/admin/view/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/application/admin/view/index.html -------------------------------------------------------------------------------- /application/common/404/images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/application/common/404/images/404.png -------------------------------------------------------------------------------- /application/common/404/images/404_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/application/common/404/images/404_bg.jpg -------------------------------------------------------------------------------- /application/common/404/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/application/common/404/index.php -------------------------------------------------------------------------------- /application/common/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/application/common/Helper.php -------------------------------------------------------------------------------- /application/config/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/application/config/Config.php -------------------------------------------------------------------------------- /application/home/controller/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/application/home/controller/Common.php -------------------------------------------------------------------------------- /application/home/controller/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/application/home/controller/Index.php -------------------------------------------------------------------------------- /application/home/model/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/application/home/model/User.php -------------------------------------------------------------------------------- /application/home/view/default/index/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/application/home/view/default/index/index.php -------------------------------------------------------------------------------- /application/log/php.error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/composer.json -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/index.php -------------------------------------------------------------------------------- /system/Init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/system/Init.php -------------------------------------------------------------------------------- /system/common/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/system/common/Helper.php -------------------------------------------------------------------------------- /system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/system/core/Config.php -------------------------------------------------------------------------------- /system/core/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/system/core/Database.php -------------------------------------------------------------------------------- /system/core/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/system/core/Exception.php -------------------------------------------------------------------------------- /system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/system/core/Loader.php -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/system/core/Model.php -------------------------------------------------------------------------------- /system/core/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingcn/Idea-framework/HEAD/system/core/Route.php --------------------------------------------------------------------------------