├── .buildpath ├── .project ├── .settings └── org.eclipse.php.core.prefs ├── LICENSE ├── README.md ├── app ├── .buildpath ├── .project ├── .settings │ └── org.eclipse.php.core.prefs ├── _code │ ├── _config │ │ ├── acl.config.php │ │ ├── app.config.php │ │ ├── database.config.php │ │ └── init.php │ ├── cli.php │ ├── control │ │ └── pagination.php │ ├── controller │ │ ├── abstract.php │ │ ├── default.php │ │ ├── tasks.php │ │ ├── tools.php │ │ └── users.php │ ├── helper │ │ ├── curl.php │ │ └── util.php │ ├── model │ │ ├── behavior │ │ │ ├── tree.php │ │ │ └── trees.php │ │ ├── task.php │ │ └── user.php │ ├── myapp.php │ ├── view.php │ └── view │ │ ├── 403.php │ │ ├── 404.php │ │ ├── README │ │ ├── _elements │ │ └── footer_element.php │ │ ├── _layouts │ │ └── default_layout.php │ │ ├── default │ │ ├── about.php │ │ ├── community.php │ │ ├── docs.php │ │ ├── download.php │ │ ├── index.php │ │ └── news.php │ │ ├── exception.php │ │ ├── redirect_message.php │ │ ├── tasks │ │ ├── create.php │ │ ├── edit.php │ │ └── index.php │ │ ├── tools │ │ └── buildcontroller.php │ │ ├── userapp │ │ ├── bindselleruseridtoapp.php │ │ ├── index.php │ │ ├── myapplist.php │ │ └── userbuyapp.php │ │ └── users │ │ ├── changepassword.php │ │ ├── login.php │ │ └── register.php ├── _devel │ └── db │ │ └── todo_db.sql ├── _tmp │ └── log │ │ ├── devel.20130816.log │ │ ├── devel.20130923.log │ │ └── devel.20130926.log ├── index.php └── public │ ├── ZeroClipboard.swf │ ├── bootstrap │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ ├── css │ ├── base.css │ └── todc-bootstrap.css │ ├── img │ ├── header-bg2.png │ ├── nav-off-bg.png │ └── orm.png │ ├── jquery-1.8.0.min.js │ └── jquery.zclip.min.js ├── commands ├── cli │ ├── chili.php │ └── generator.php └── websetup │ ├── app │ ├── control │ │ ├── navmain.php │ │ ├── navmain_view.php │ │ ├── submenu.php │ │ └── submenu_view.php │ ├── controller │ │ ├── base.php │ │ ├── default_controller.php │ │ ├── generate_controller.php │ │ └── static_controller.php │ ├── helper │ │ └── ini.php │ ├── model │ │ ├── menu.php │ │ └── menu.yaml │ └── view │ │ ├── _layouts │ │ ├── default_layout.php │ │ └── redirect_message.php │ │ ├── default │ │ ├── index.php │ │ └── thanks.php │ │ └── generate │ │ ├── controllers.php │ │ ├── getcolumns.php │ │ └── models.php │ ├── run.php │ └── static │ ├── 403.php │ ├── 404.php │ ├── all_in_one.css │ └── jquery.js ├── docs.old.source ├── articles │ ├── 2009-03-29-sexy-orm.texy │ └── Sexy ORM.docx ├── cookbook │ ├── cover.texy │ ├── model-prop-formatting.texy │ └── toc.yaml ├── manual │ ├── assets │ │ └── images │ │ │ ├── form-states-01.png │ │ │ ├── intro-features-01.png │ │ │ ├── intro-overview-01.png │ │ │ ├── intro-overview-02.png │ │ │ ├── intro-why-01.jpg │ │ │ ├── model-whats-assoc-01.png │ │ │ ├── model-whats-assoc-02.png │ │ │ ├── mvc-flowchart-01-thumb.png │ │ │ └── mvc-flowchart-01.png │ ├── cover.texy │ ├── form-creating.texy │ ├── form-data.texy │ ├── form-dynamic.texy │ ├── form-elements.texy │ ├── form-grouping.texy │ ├── form-overview.texy │ ├── form-render.texy │ ├── form-states.texy │ ├── intro-features.texy │ ├── intro-history.texy │ ├── intro-overview.texy │ ├── intro-thanks.texy │ ├── intro-why.texy │ ├── model-basic.texy │ ├── model-create.texy │ ├── model-define-assoc.texy │ ├── model-define.texy │ ├── model-meta.texy │ ├── model-props.texy │ ├── model-protection.texy │ ├── model-query.texy │ ├── model-update.texy │ ├── model-validations.texy │ ├── model-whats-assoc.texy │ ├── mvc-flowchart.texy │ ├── sources │ │ ├── form-states-01.vsd │ │ ├── form-states-02.vsd │ │ ├── mvc-flowchart.vsd │ │ ├── orm-01.eap │ │ └── qeephp-flowchart.vst │ └── toc.yaml ├── misc │ ├── PHP templates.xml │ ├── QeePHP Framework Conventions.xml │ ├── apidoc │ │ ├── activerecord.php │ │ ├── core.php │ │ ├── database.php │ │ ├── images │ │ │ └── database-01.png │ │ ├── index.php │ │ └── mvc.php │ └── qeephp api doxygen.ini ├── quickstart │ ├── acl-do.texy │ ├── acl-why.texy │ ├── assets │ │ └── images │ │ │ ├── acl-do-01.png │ │ │ ├── acl-why-01.png │ │ │ ├── acl-why-02.png │ │ │ ├── automation-controller-01.png │ │ │ ├── automation-controller-02.png │ │ │ ├── automation-controller-03.png │ │ │ ├── automation-model-01.png │ │ │ ├── automation-model-02.png │ │ │ ├── development-database-01.png │ │ │ ├── development-database-02.png │ │ │ ├── development-database-03.png │ │ │ ├── routes-configs-01.png │ │ │ ├── routes-configs-02.png │ │ │ ├── routes-rules-01.png │ │ │ ├── start-arch-01.png │ │ │ ├── start-creating-app-01.png │ │ │ ├── start-creating-app-02.png │ │ │ ├── start-creating-app-03.png │ │ │ ├── start-dirstructure-01.png │ │ │ ├── start-dirstructure-02.png │ │ │ ├── start-environment-01.png │ │ │ ├── start-mvc-01.png │ │ │ ├── start-mvc-controller-01.png │ │ │ ├── start-mvc-controller-02.png │ │ │ ├── start-mvc-startup-01.png │ │ │ ├── start-mvc-startup-02.png │ │ │ ├── tasks-add-01.png │ │ │ ├── tasks-add-02.png │ │ │ ├── tasks-add-03.png │ │ │ ├── tasks-edit-01.png │ │ │ ├── tasks-edit-02.png │ │ │ ├── tasks-edit-03.png │ │ │ ├── tasks-pagination-01.png │ │ │ ├── tasks-pagination-02.png │ │ │ ├── thinking-analysis-01.png │ │ │ ├── thinking-analysis-02.png │ │ │ ├── thinking-analysis-03.png │ │ │ ├── thinking-analysis-04.png │ │ │ ├── thinking-analysis-05.png │ │ │ ├── thinking-creating-models-01.png │ │ │ ├── thinking-creating-models-02.png │ │ │ ├── thinking-oo-01.png │ │ │ ├── thinking-oo-02.png │ │ │ ├── thinking-oo-03.png │ │ │ ├── thinking-oo-04.png │ │ │ ├── users-changepasswd-01.png │ │ │ ├── users-changepasswd-02.png │ │ │ ├── users-login-01.png │ │ │ ├── users-login-02.png │ │ │ ├── users-login-03.png │ │ │ ├── users-login-04.png │ │ │ ├── users-register-code-01.png │ │ │ ├── users-register-code-02.png │ │ │ ├── users-register-code-03.png │ │ │ ├── users-register-ui-01.png │ │ │ ├── users-register-ui-02.png │ │ │ ├── users-register-ui-03.png │ │ │ └── users-register-ui-04.png │ ├── automation-controller.texy │ ├── automation-model.texy │ ├── cover.texy │ ├── development-configs.texy │ ├── development-database.texy │ ├── development-yaml.texy │ ├── review-improve.texy │ ├── review-readmore.texy │ ├── routes-configs.texy │ ├── routes-router.texy │ ├── routes-rules.texy │ ├── sources │ │ ├── quickstart.functions.01.vsd │ │ ├── quickstart.functions.02.vsd │ │ ├── start-mvc-01.vsd │ │ ├── start-mvc-startup-01.vsd │ │ └── 插图.docx │ ├── start-arch.texy │ ├── start-creating-app.texy │ ├── start-dirstructure.texy │ ├── start-environment.texy │ ├── start-mvc-controller.texy │ ├── start-mvc-startup.texy │ ├── start-mvc.texy │ ├── tasks-add.texy │ ├── tasks-edit.texy │ ├── tasks-pagination.texy │ ├── thinking-analysis.texy │ ├── thinking-creating-models.texy │ ├── thinking-oo.texy │ ├── toc.yaml │ ├── users-change-passwd.texy │ ├── users-login.texy │ ├── users-register-code.texy │ └── users-register-ui.texy ├── todo.txt └── tour01 │ ├── assets │ ├── start-requirement-01.png │ └── start-requirement-02.png │ ├── cover.texy │ ├── start-intro.texy │ ├── start-requirement.texy │ └── toc.yaml ├── docs.old ├── qeephp-cookbook │ ├── css │ │ ├── base.css │ │ └── table_data_bg.jpg │ ├── index.html │ ├── node-model-prop-formatting.html │ ├── node-model.html │ ├── qeephp-cookbook.hhc │ └── qeephp-cookbook.hhp ├── qeephp-manual │ ├── css │ │ ├── base.css │ │ └── table_data_bg.jpg │ ├── images │ │ ├── form-states-01.png │ │ ├── intro-features-01.png │ │ ├── intro-overview-01.png │ │ ├── intro-overview-02.png │ │ ├── intro-why-01.jpg │ │ ├── model-whats-assoc-01.png │ │ ├── model-whats-assoc-02.png │ │ ├── mvc-flowchart-01-thumb.png │ │ └── mvc-flowchart-01.png │ ├── index.html │ ├── node-cache-custom.html │ ├── node-cache-front.html │ ├── node-cache-model.html │ ├── node-cache-query.html │ ├── node-cache-services.html │ ├── node-cache-view.html │ ├── node-cache-webcontrols.html │ ├── node-cache.html │ ├── node-db-advanced-query.html │ ├── node-db-connections.html │ ├── node-db-delete.html │ ├── node-db-expression.html │ ├── node-db-insert.html │ ├── node-db-multi-servers.html │ ├── node-db-query-obj.html │ ├── node-db-query.html │ ├── node-db-schema.html │ ├── node-db-separated-databases.html │ ├── node-db-separated-read-write.html │ ├── node-db-statement.html │ ├── node-db-transactions.html │ ├── node-db-update.html │ ├── node-db-using-view.html │ ├── node-db.html │ ├── node-form-creating.html │ ├── node-form-data.html │ ├── node-form-dynamic.html │ ├── node-form-elements.html │ ├── node-form-grouping.html │ ├── node-form-overview.html │ ├── node-form-render.html │ ├── node-form-states.html │ ├── node-form.html │ ├── node-intro-features.html │ ├── node-intro-history.html │ ├── node-intro-thanks.html │ ├── node-intro-why.html │ ├── node-intro.html │ ├── node-model-basic.html │ ├── node-model-behaviors.html │ ├── node-model-belongsto-assoc.html │ ├── node-model-create.html │ ├── node-model-creating-behavior.html │ ├── node-model-dbtable.html │ ├── node-model-define-assoc.html │ ├── node-model-define.html │ ├── node-model-destroy.html │ ├── node-model-events.html │ ├── node-model-hasmany-assoc.html │ ├── node-model-hasone-assoc.html │ ├── node-model-manytomany-assoc.html │ ├── node-model-meta.html │ ├── node-model-props.html │ ├── node-model-protection.html │ ├── node-model-query-assoc.html │ ├── node-model-query.html │ ├── node-model-update.html │ ├── node-model-validations.html │ ├── node-model-whats-assoc.html │ ├── node-model.html │ ├── node-mvc-access-control.html │ ├── node-mvc-appini.html │ ├── node-mvc-appobj.html │ ├── node-mvc-bootstrap.html │ ├── node-mvc-context.html │ ├── node-mvc-controllers.html │ ├── node-mvc-entry.html │ ├── node-mvc-flowchart.html │ ├── node-mvc-helpers.html │ ├── node-mvc-inherited-views.html │ ├── node-mvc-router.html │ ├── node-mvc-view-data.html │ ├── node-mvc-view-elements.html │ ├── node-mvc-webcontrols.html │ ├── node-mvc.html │ ├── qeephp-manual.hhc │ └── qeephp-manual.hhp ├── qeephp-quickstart │ ├── css │ │ ├── base.css │ │ └── table_data_bg.jpg │ ├── images │ │ ├── acl-do-01.png │ │ ├── acl-why-01.png │ │ ├── acl-why-02.png │ │ ├── automation-controller-01.png │ │ ├── automation-controller-02.png │ │ ├── automation-controller-03.png │ │ ├── automation-model-01.png │ │ ├── automation-model-02.png │ │ ├── development-database-01.png │ │ ├── development-database-02.png │ │ ├── development-database-03.png │ │ ├── routes-configs-01.png │ │ ├── routes-configs-02.png │ │ ├── routes-rules-01.png │ │ ├── start-arch-01.png │ │ ├── start-creating-app-01.png │ │ ├── start-creating-app-02.png │ │ ├── start-creating-app-03.png │ │ ├── start-dirstructure-01.png │ │ ├── start-dirstructure-02.png │ │ ├── start-environment-01.png │ │ ├── start-mvc-01.png │ │ ├── start-mvc-controller-01.png │ │ ├── start-mvc-controller-02.png │ │ ├── start-mvc-startup-01.png │ │ ├── start-mvc-startup-02.png │ │ ├── tasks-add-01.png │ │ ├── tasks-add-02.png │ │ ├── tasks-add-03.png │ │ ├── tasks-edit-01.png │ │ ├── tasks-edit-02.png │ │ ├── tasks-edit-03.png │ │ ├── tasks-pagination-01.png │ │ ├── tasks-pagination-02.png │ │ ├── thinking-analysis-01.png │ │ ├── thinking-analysis-02.png │ │ ├── thinking-analysis-03.png │ │ ├── thinking-analysis-04.png │ │ ├── thinking-analysis-05.png │ │ ├── thinking-creating-models-01.png │ │ ├── thinking-creating-models-02.png │ │ ├── thinking-oo-01.png │ │ ├── thinking-oo-02.png │ │ ├── thinking-oo-03.png │ │ ├── thinking-oo-04.png │ │ ├── users-changepasswd-01.png │ │ ├── users-changepasswd-02.png │ │ ├── users-login-01.png │ │ ├── users-login-02.png │ │ ├── users-login-03.png │ │ ├── users-login-04.png │ │ ├── users-register-code-01.png │ │ ├── users-register-code-02.png │ │ ├── users-register-code-03.png │ │ ├── users-register-ui-01.png │ │ ├── users-register-ui-02.png │ │ ├── users-register-ui-03.png │ │ └── users-register-ui-04.png │ ├── index.html │ ├── node-acl-do.html │ ├── node-acl-why.html │ ├── node-acl.html │ ├── node-automation-controller.html │ ├── node-automation-model.html │ ├── node-automation.html │ ├── node-development-configs.html │ ├── node-development-database.html │ ├── node-development-yaml.html │ ├── node-development.html │ ├── node-review-improve.html │ ├── node-review-readmore.html │ ├── node-review.html │ ├── node-routes-configs.html │ ├── node-routes-router.html │ ├── node-routes-rules.html │ ├── node-routes.html │ ├── node-start-arch.html │ ├── node-start-creating-app.html │ ├── node-start-dirstructure.html │ ├── node-start-environment.html │ ├── node-start-mvc-controller.html │ ├── node-start-mvc-startup.html │ ├── node-start-mvc.html │ ├── node-start.html │ ├── node-tasks-add.html │ ├── node-tasks-edit.html │ ├── node-tasks-pagination.html │ ├── node-tasks.html │ ├── node-thinking-analysis.html │ ├── node-thinking-creating-models.html │ ├── node-thinking-oo.html │ ├── node-thinking.html │ ├── node-users-change-passwd.html │ ├── node-users-login.html │ ├── node-users-register-code.html │ ├── node-users-register-ui.html │ ├── node-users.html │ ├── qeephp-quickstart.hhc │ └── qeephp-quickstart.hhp └── qeephp-tour01 │ ├── css │ ├── base.css │ └── table_data_bg.jpg │ ├── index.html │ ├── node-start-creating-app.html │ ├── node-start-creating-model.html │ ├── node-start-intro.html │ ├── node-start-requirement.html │ ├── node-start-thinking.html │ ├── node-start.html │ ├── qeephp-tour01.hhc │ ├── qeephp-tour01.hhp │ ├── start-requirement-01.png │ └── start-requirement-02.png ├── docs.source ├── articles │ ├── 2009-03-29-sexy-orm.texy │ └── Sexy ORM.docx ├── cookbook │ ├── cover.texy │ ├── model-prop-formatting.texy │ └── toc.yaml ├── manual │ ├── assets │ │ └── images │ │ │ ├── form-states-01.png │ │ │ ├── intro-features-01.png │ │ │ ├── intro-overview-01.png │ │ │ ├── intro-overview-02.png │ │ │ ├── intro-why-01.jpg │ │ │ ├── model-whats-assoc-01.png │ │ │ ├── model-whats-assoc-02.png │ │ │ ├── mvc-flowchart-01-thumb.png │ │ │ └── mvc-flowchart-01.png │ ├── cover.texy │ ├── form-creating.texy │ ├── form-cusmize.texy │ ├── form-data.texy │ ├── form-dynamic.texy │ ├── form-elements.texy │ ├── form-grouping.texy │ ├── form-overview.texy │ ├── form-render.texy │ ├── form-states.texy │ ├── intro-features.texy │ ├── intro-history.texy │ ├── intro-overview.texy │ ├── intro-thanks.texy │ ├── intro-why.texy │ ├── model-basic.texy │ ├── model-create.texy │ ├── model-define-assoc.texy │ ├── model-define.texy │ ├── model-destroy.texy │ ├── model-meta.texy │ ├── model-props.texy │ ├── model-protection.texy │ ├── model-query.texy │ ├── model-update.texy │ ├── model-validations.texy │ ├── model-whats-assoc.texy │ ├── mvc-flowchart.texy │ ├── sources │ │ ├── form-states-01.vsd │ │ ├── form-states-02.vsd │ │ ├── mvc-flowchart.vsd │ │ ├── orm-01.eap │ │ └── qeephp-flowchart.vst │ └── toc.yaml ├── misc │ ├── PHP templates.xml │ ├── QeePHP Framework Conventions.xml │ ├── apidoc │ │ ├── activerecord.php │ │ ├── core.php │ │ ├── database.php │ │ ├── images │ │ │ └── database-01.png │ │ ├── index.php │ │ └── mvc.php │ └── qeephp api doxygen.ini ├── quickstart │ ├── acl-do.texy │ ├── acl-why.texy │ ├── assets │ │ └── images │ │ │ ├── acl-do-01.png │ │ │ ├── acl-why-01.png │ │ │ ├── acl-why-02.png │ │ │ ├── automation-controller-01.png │ │ │ ├── automation-controller-02.png │ │ │ ├── automation-controller-03.png │ │ │ ├── automation-model-01.png │ │ │ ├── automation-model-02.png │ │ │ ├── development-database-01.png │ │ │ ├── development-database-02.png │ │ │ ├── development-database-03.png │ │ │ ├── routes-configs-01.png │ │ │ ├── routes-configs-02.png │ │ │ ├── routes-rules-01.png │ │ │ ├── start-arch-01.png │ │ │ ├── start-creating-app-01.png │ │ │ ├── start-creating-app-02.png │ │ │ ├── start-creating-app-03.png │ │ │ ├── start-dirstructure-01.png │ │ │ ├── start-dirstructure-02.png │ │ │ ├── start-environment-01.png │ │ │ ├── start-environment-02.png │ │ │ ├── start-mvc-01.png │ │ │ ├── start-mvc-controller-01.png │ │ │ ├── start-mvc-controller-02.png │ │ │ ├── start-mvc-startup-01.png │ │ │ ├── start-mvc-startup-02.png │ │ │ ├── tasks-add-01.png │ │ │ ├── tasks-add-02.png │ │ │ ├── tasks-add-03.png │ │ │ ├── tasks-edit-01.png │ │ │ ├── tasks-edit-02.png │ │ │ ├── tasks-edit-03.png │ │ │ ├── tasks-pagination-01.png │ │ │ ├── tasks-pagination-02.png │ │ │ ├── thinking-analysis-01.png │ │ │ ├── thinking-analysis-02.png │ │ │ ├── thinking-analysis-03.png │ │ │ ├── thinking-analysis-04.png │ │ │ ├── thinking-analysis-05.png │ │ │ ├── thinking-creating-models-01.png │ │ │ ├── thinking-creating-models-02.png │ │ │ ├── thinking-oo-01.png │ │ │ ├── thinking-oo-02.png │ │ │ ├── thinking-oo-03.png │ │ │ ├── thinking-oo-04.png │ │ │ ├── users-changepasswd-01.png │ │ │ ├── users-changepasswd-02.png │ │ │ ├── users-login-01.png │ │ │ ├── users-login-02.png │ │ │ ├── users-login-03.png │ │ │ ├── users-login-04.png │ │ │ ├── users-register-code-01.png │ │ │ ├── users-register-code-02.png │ │ │ ├── users-register-code-03.png │ │ │ ├── users-register-ui-01.png │ │ │ ├── users-register-ui-02.png │ │ │ ├── users-register-ui-03.png │ │ │ ├── users-register-ui-04.png │ │ │ └── users-register-ui-05.png │ ├── cover.texy │ ├── development-configs.texy │ ├── development-controller.texy │ ├── development-database.texy │ ├── development-model.texy │ ├── development-yaml.texy │ ├── review-improve.texy │ ├── review-readmore.texy │ ├── routes-configs.texy │ ├── routes-router.texy │ ├── routes-rules.texy │ ├── sources │ │ ├── quickstart.functions.01.vsd │ │ ├── quickstart.functions.02.vsd │ │ ├── start-mvc-01.vsd │ │ ├── start-mvc-startup-01.vsd │ │ └── 插图.docx │ ├── start-arch.texy │ ├── start-creating-app.texy │ ├── start-dirstructure.texy │ ├── start-environment.texy │ ├── start-mvc-controller.texy │ ├── start-mvc-startup.texy │ ├── start-mvc.texy │ ├── tasks-add.texy │ ├── tasks-edit.texy │ ├── tasks-pagination.texy │ ├── thinking-analysis.texy │ ├── thinking-creating-models.texy │ ├── thinking-oo.texy │ ├── toc.yaml │ ├── users-change-passwd.texy │ ├── users-login.texy │ ├── users-register-code.texy │ └── users-register-ui.texy ├── todo.txt └── tour01 │ ├── assets │ ├── start-requirement-01.png │ └── start-requirement-02.png │ ├── cover.texy │ ├── start-intro.texy │ ├── start-requirement.texy │ └── toc.yaml ├── docs ├── api │ ├── book-index.html │ ├── class-acluser-duplicateusernameexception.html │ ├── class-acluser-exception.html │ ├── class-acluser-usernamenotfoundexception.html │ ├── class-acluser-wrongpasswordexception.html │ ├── class-control-button.html │ ├── class-control-checkbox-abstract.html │ ├── class-control-checkbox.html │ ├── class-control-checkboxgroup-abstract.html │ ├── class-control-checkboxgroup.html │ ├── class-control-dropdownlist.html │ ├── class-control-hidden.html │ ├── class-control-input-abstract.html │ ├── class-control-label.html │ ├── class-control-listbox.html │ ├── class-control-memo.html │ ├── class-control-password.html │ ├── class-control-radio.html │ ├── class-control-radiogroup.html │ ├── class-control-reset.html │ ├── class-control-static.html │ ├── class-control-submit.html │ ├── class-control-textbox.html │ ├── class-control-upload.html │ ├── class-helper-array.html │ ├── class-helper-filesys.html │ ├── class-helper-image.html │ ├── class-helper-imagegd.html │ ├── class-helper-imgcode.html │ ├── class-helper-imgcodesimple.html │ ├── class-helper-imgcodettf.html │ ├── class-helper-uploader-file.html │ ├── class-helper-uploader.html │ ├── class-helper-yaml.html │ ├── class-model-behavior-acluser.html │ ├── class-model-behavior-fastuuid.html │ ├── class-model-behavior-relation.html │ ├── class-model-behavior-uniqueness.html │ ├── class-q-classfileexistsexception.html │ ├── class-q-classnotdefinedexception.html │ ├── class-q-createdirfailedexception.html │ ├── class-q-createfilefailedexception.html │ ├── class-q-filenotfoundexception.html │ ├── class-q-filenotreadableexception.html │ ├── class-q-illegalclassnameexception.html │ ├── class-q-illegalfilenameexception.html │ ├── class-q-notimplementedexception.html │ ├── class-q-removedirfailedexception.html │ ├── class-q.html │ ├── class-qacl-exception.html │ ├── class-qacl.html │ ├── class-qcache-apc.html │ ├── class-qcache-exception.html │ ├── class-qcache-file.html │ ├── class-qcache-frontpage.html │ ├── class-qcache-memcached.html │ ├── class-qcache-memory.html │ ├── class-qcache-phpdatafile.html │ ├── class-qcache-xcache.html │ ├── class-qcoll.html │ ├── class-qcontext.html │ ├── class-qcontroller-abstract.html │ ├── class-qcontroller-forward.html │ ├── class-qdb-activerecord-abstract.html │ ├── class-qdb-activerecord-association-abstract.html │ ├── class-qdb-activerecord-association-belongsto.html │ ├── class-qdb-activerecord-association-coll.html │ ├── class-qdb-activerecord-association-exception.html │ ├── class-qdb-activerecord-association-hasmany.html │ ├── class-qdb-activerecord-association-hasone.html │ ├── class-qdb-activerecord-association-manytomany.html │ ├── class-qdb-activerecord-association-notdefinedexception.html │ ├── class-qdb-activerecord-association-rejectexception.html │ ├── class-qdb-activerecord-behavior-abstract.html │ ├── class-qdb-activerecord-behavior-exception.html │ ├── class-qdb-activerecord-callbacks.html │ ├── class-qdb-activerecord-calltoundefinedmethodexception.html │ ├── class-qdb-activerecord-changingreadonlypropexception.html │ ├── class-qdb-activerecord-compositepkincompatibleexception.html │ ├── class-qdb-activerecord-destroywithoutidexception.html │ ├── class-qdb-activerecord-exception.html │ ├── class-qdb-activerecord-expectsassocpropexception.html │ ├── class-qdb-activerecord-interface.html │ ├── class-qdb-activerecord-meta-exception.html │ ├── class-qdb-activerecord-meta.html │ ├── class-qdb-activerecord-settingproptypemismatchexception.html │ ├── class-qdb-activerecord-undefinedpropexception.html │ ├── class-qdb-activerecord-validatefailedexception.html │ ├── class-qdb-activerecord-view.html │ ├── class-qdb-activerecord-viewmeta.html │ ├── class-qdb-adapter-abstract.html │ ├── class-qdb-adapter-mysql.html │ ├── class-qdb-adapter-pdo-abstract.html │ ├── class-qdb-adapter-pdo-exception.html │ ├── class-qdb-adapter-pdo-pgsql.html │ ├── class-qdb-adapter-pgsql.html │ ├── class-qdb-cond.html │ ├── class-qdb-exception-duplicatekey.html │ ├── class-qdb-exception.html │ ├── class-qdb-expr.html │ ├── class-qdb-result-abstract.html │ ├── class-qdb-result-mysql.html │ ├── class-qdb-result-pdo.html │ ├── class-qdb-result-pgsql.html │ ├── class-qdb-select-exception.html │ ├── class-qdb-select.html │ ├── class-qdb-table-exception.html │ ├── class-qdb-table-lite.html │ ├── class-qdb-table.html │ ├── class-qdb.html │ ├── class-qdebug-dump.html │ ├── class-qdebug-firephp.html │ ├── class-qdebug.html │ ├── class-qdom-document.html │ ├── class-qdom-element.html │ ├── class-qdom-exception.html │ ├── class-qexception.html │ ├── class-qfilter.html │ ├── class-qform-element.html │ ├── class-qform-exception.html │ ├── class-qform-group.html │ ├── class-qform.html │ ├── class-qlog-exception.html │ ├── class-qlog.html │ ├── class-qrouter-exception.html │ ├── class-qrouter-invalidrouteexception.html │ ├── class-qrouter-routenotfoundexception.html │ ├── class-qrouter.html │ ├── class-qui-control-abstract.html │ ├── class-qui-exception.html │ ├── class-qvalidator-exception.html │ ├── class-qvalidator-validatefailedexception.html │ ├── class-qvalidator.html │ ├── class-qview-exception.html │ ├── class-qview-output.html │ ├── class-qview-redirect.html │ ├── class-qview-render-php-parser.html │ ├── class-qview-render-php.html │ └── index.html ├── qeephp-manual │ ├── css │ │ ├── base.css │ │ └── table_data_bg.jpg │ ├── images │ │ ├── form-states-01.png │ │ ├── intro-features-01.png │ │ ├── intro-overview-01.png │ │ ├── intro-overview-02.png │ │ ├── intro-why-01.jpg │ │ ├── model-whats-assoc-01.png │ │ ├── model-whats-assoc-02.png │ │ ├── mvc-flowchart-01-thumb.png │ │ └── mvc-flowchart-01.png │ ├── index.html │ ├── node-cache-custom.html │ ├── node-cache-front.html │ ├── node-cache-model.html │ ├── node-cache-query.html │ ├── node-cache-services.html │ ├── node-cache-view.html │ ├── node-cache-webcontrols.html │ ├── node-cache.html │ ├── node-db-advanced-query.html │ ├── node-db-connections.html │ ├── node-db-delete.html │ ├── node-db-expression.html │ ├── node-db-insert.html │ ├── node-db-multi-servers.html │ ├── node-db-query-obj.html │ ├── node-db-query.html │ ├── node-db-schema.html │ ├── node-db-separated-databases.html │ ├── node-db-separated-read-write.html │ ├── node-db-statement.html │ ├── node-db-transactions.html │ ├── node-db-update.html │ ├── node-db-using-view.html │ ├── node-db.html │ ├── node-form-creating.html │ ├── node-form-cusmize.html │ ├── node-form-data.html │ ├── node-form-dynamic.html │ ├── node-form-elements.html │ ├── node-form-grouping.html │ ├── node-form-overview.html │ ├── node-form-render.html │ ├── node-form-states.html │ ├── node-form-浣跨敤.html │ ├── node-form-鍩烘湰.html │ ├── node-form.html │ ├── node-intro-features.html │ ├── node-intro-history.html │ ├── node-intro-thanks.html │ ├── node-intro-why.html │ ├── node-intro.html │ ├── node-model-basic.html │ ├── node-model-behaviors.html │ ├── node-model-belongsto-assoc.html │ ├── node-model-create.html │ ├── node-model-creating-behavior.html │ ├── node-model-dbtable.html │ ├── node-model-define-assoc.html │ ├── node-model-define.html │ ├── node-model-destroy.html │ ├── node-model-events.html │ ├── node-model-hasmany-assoc.html │ ├── node-model-hasone-assoc.html │ ├── node-model-manytomany-assoc.html │ ├── node-model-meta.html │ ├── node-model-props.html │ ├── node-model-protection.html │ ├── node-model-query-assoc.html │ ├── node-model-query.html │ ├── node-model-update.html │ ├── node-model-validations.html │ ├── node-model-whats-assoc.html │ ├── node-model.html │ ├── node-mvc-access-control.html │ ├── node-mvc-appini.html │ ├── node-mvc-appobj.html │ ├── node-mvc-bootstrap.html │ ├── node-mvc-context.html │ ├── node-mvc-controllers.html │ ├── node-mvc-entry.html │ ├── node-mvc-flowchart.html │ ├── node-mvc-helpers.html │ ├── node-mvc-inherited-views.html │ ├── node-mvc-router.html │ ├── node-mvc-view-data.html │ ├── node-mvc-view-elements.html │ ├── node-mvc-webcontrols.html │ ├── node-mvc.html │ ├── qeephp-manual.hhc │ └── qeephp-manual.hhp └── qeephp-quickstart │ ├── css │ ├── base.css │ └── table_data_bg.jpg │ ├── images │ ├── acl-do-01.png │ ├── acl-why-01.png │ ├── acl-why-02.png │ ├── automation-controller-01.png │ ├── automation-controller-02.png │ ├── automation-controller-03.png │ ├── automation-model-01.png │ ├── automation-model-02.png │ ├── development-database-01.png │ ├── development-database-02.png │ ├── development-database-03.png │ ├── routes-configs-01.png │ ├── routes-configs-02.png │ ├── routes-rules-01.png │ ├── start-arch-01.png │ ├── start-creating-app-01.png │ ├── start-creating-app-02.png │ ├── start-creating-app-03.png │ ├── start-dirstructure-01.png │ ├── start-dirstructure-02.png │ ├── start-environment-01.png │ ├── start-environment-02.png │ ├── start-mvc-01.png │ ├── start-mvc-controller-01.png │ ├── start-mvc-controller-02.png │ ├── start-mvc-startup-01.png │ ├── start-mvc-startup-02.png │ ├── tasks-add-01.png │ ├── tasks-add-02.png │ ├── tasks-add-03.png │ ├── tasks-edit-01.png │ ├── tasks-edit-02.png │ ├── tasks-edit-03.png │ ├── tasks-pagination-01.png │ ├── tasks-pagination-02.png │ ├── thinking-analysis-01.png │ ├── thinking-analysis-02.png │ ├── thinking-analysis-03.png │ ├── thinking-analysis-04.png │ ├── thinking-analysis-05.png │ ├── thinking-creating-models-01.png │ ├── thinking-creating-models-02.png │ ├── thinking-oo-01.png │ ├── thinking-oo-02.png │ ├── thinking-oo-03.png │ ├── thinking-oo-04.png │ ├── users-changepasswd-01.png │ ├── users-changepasswd-02.png │ ├── users-login-01.png │ ├── users-login-02.png │ ├── users-login-03.png │ ├── users-login-04.png │ ├── users-register-code-01.png │ ├── users-register-code-02.png │ ├── users-register-code-03.png │ ├── users-register-ui-01.png │ ├── users-register-ui-02.png │ ├── users-register-ui-03.png │ ├── users-register-ui-04.png │ └── users-register-ui-05.png │ ├── index.html │ ├── node-acl-do.html │ ├── node-acl-why.html │ ├── node-acl.html │ ├── node-development-configs.html │ ├── node-development-controller.html │ ├── node-development-database.html │ ├── node-development-model.html │ ├── node-development.html │ ├── node-review-improve.html │ ├── node-review-readmore.html │ ├── node-review.html │ ├── node-routes-configs.html │ ├── node-routes-router.html │ ├── node-routes-rules.html │ ├── node-routes.html │ ├── node-start-arch.html │ ├── node-start-creating-app.html │ ├── node-start-dirstructure.html │ ├── node-start-environment.html │ ├── node-start-mvc-controller.html │ ├── node-start-mvc-startup.html │ ├── node-start-mvc.html │ ├── node-start.html │ ├── node-tasks-add.html │ ├── node-tasks-edit.html │ ├── node-tasks-pagination.html │ ├── node-tasks.html │ ├── node-thinking-analysis.html │ ├── node-thinking-creating-models.html │ ├── node-thinking.html │ ├── node-users-change-passwd.html │ ├── node-users-login.html │ ├── node-users-register-code.html │ ├── node-users-register-ui.html │ ├── node-users.html │ ├── qeephp-quickstart.hhc │ └── qeephp-quickstart.hhp ├── extended ├── qgenerator │ ├── _templates │ │ └── code │ │ │ ├── controller.php │ │ │ └── model.php │ ├── abstract.php │ ├── application.php │ ├── controller.php │ ├── exception.php │ └── model.php └── qreflection │ ├── _descriptions │ └── zh_CN.yaml │ ├── application.php │ ├── controller.php │ ├── model.php │ ├── module.php │ └── undefinedmodule.php ├── index.php ├── library ├── LICENSE.txt ├── _config │ ├── default_config.php │ └── qeephp_class_files.php ├── _resources │ └── alpha_thin.ttf ├── _vendor │ ├── firephp │ │ ├── FirePHP.class.php │ │ └── LICENSE │ └── yaml │ │ ├── sfYamlDumper.class.php │ │ ├── sfYamlInline.class.php │ │ └── sfYamlParser.class.php ├── cache │ ├── apc.php │ ├── exception │ │ └── exception.php │ ├── file.php │ ├── frontpage.php │ ├── memcached.php │ ├── memory.php │ ├── phpdatafile.php │ └── xcache.php ├── core │ ├── coll.php │ ├── context.php │ ├── exception.php │ ├── exception │ │ ├── classfileexists_exception.php │ │ ├── classnotdefined_exception.php │ │ ├── createdirfailed_exception.php │ │ ├── createfilefailed_exception.php │ │ ├── filenotfound_exception.php │ │ ├── filenotreadable_exception.php │ │ ├── illegalclassname_exception.php │ │ ├── illegalfilename_exception.php │ │ ├── log_exception.php │ │ ├── notimplemented_exception.php │ │ └── removedirfailed_exception.php │ └── log.php ├── db │ ├── adapter │ │ ├── abstract.php │ │ ├── mongodb.php │ │ ├── mongodb │ │ │ ├── PHPSQLCreator.php │ │ │ ├── PHPSQLParser.php │ │ │ ├── builders │ │ │ │ ├── AliasBuilder.php │ │ │ │ ├── CharacterSetBuilder.php │ │ │ │ ├── CheckBuilder.php │ │ │ │ ├── CollationBuilder.php │ │ │ │ ├── ColumnDefinitionBuilder.php │ │ │ │ ├── ColumnListBuilder.php │ │ │ │ ├── ColumnReferenceBuilder.php │ │ │ │ ├── ColumnTypeBracketExpressionBuilder.php │ │ │ │ ├── ColumnTypeBuilder.php │ │ │ │ ├── ConstantBuilder.php │ │ │ │ ├── ConstraintBuilder.php │ │ │ │ ├── CreateBuilder.php │ │ │ │ ├── CreateStatementBuilder.php │ │ │ │ ├── CreateTableBuilder.php │ │ │ │ ├── CreateTableDefinitionBuilder.php │ │ │ │ ├── CreateTableOptionsBuilder.php │ │ │ │ ├── CreateTableSelectOptionBuilder.php │ │ │ │ ├── DataTypeBuilder.php │ │ │ │ ├── DatabaseBuilder.php │ │ │ │ ├── DeleteBuilder.php │ │ │ │ ├── DeleteStatementBuilder.php │ │ │ │ ├── DirectionBuilder.php │ │ │ │ ├── EngineBuilder.php │ │ │ │ ├── ForeignKeyBuilder.php │ │ │ │ ├── ForeignRefBuilder.php │ │ │ │ ├── FromBuilder.php │ │ │ │ ├── FunctionBuilder.php │ │ │ │ ├── GroupByBuilder.php │ │ │ │ ├── InListBuilder.php │ │ │ │ ├── IndexColumnBuilder.php │ │ │ │ ├── IndexParserBuilder.php │ │ │ │ ├── IndexSizeBuilder.php │ │ │ │ ├── IndexTypeBuilder.php │ │ │ │ ├── InsertBuilder.php │ │ │ │ ├── InsertStatementBuilder.php │ │ │ │ ├── JoinBuilder.php │ │ │ │ ├── LikeBuilder.php │ │ │ │ ├── LikeExpressionBuilder.php │ │ │ │ ├── LimitBuilder.php │ │ │ │ ├── OperatorBuilder.php │ │ │ │ ├── OrderByAliasBuilder.php │ │ │ │ ├── OrderByBuilder.php │ │ │ │ ├── PositionBuilder.php │ │ │ │ ├── PrimaryKeyBuilder.php │ │ │ │ ├── ProcedureBuilder.php │ │ │ │ ├── RecordBuilder.php │ │ │ │ ├── RefClauseBuilder.php │ │ │ │ ├── RefTypeBuilder.php │ │ │ │ ├── ReservedBuilder.php │ │ │ │ ├── SelectBracketExpressionBuilder.php │ │ │ │ ├── SelectBuilder.php │ │ │ │ ├── SelectExpressionBuilder.php │ │ │ │ ├── SelectStatementBuilder.php │ │ │ │ ├── SetBuilder.php │ │ │ │ ├── SetExpressionBuilder.php │ │ │ │ ├── ShowBuilder.php │ │ │ │ ├── ShowStatementBuilder.php │ │ │ │ ├── SubQueryBuilder.php │ │ │ │ ├── SubTreeBuilder.php │ │ │ │ ├── TableBracketExpressionBuilder.php │ │ │ │ ├── TableBuilder.php │ │ │ │ ├── TableExpressionBuilder.php │ │ │ │ ├── UpdateBuilder.php │ │ │ │ ├── UpdateStatementBuilder.php │ │ │ │ ├── UserVariableBuilder.php │ │ │ │ ├── ValuesBuilder.php │ │ │ │ ├── WhereBracketExpressionBuilder.php │ │ │ │ ├── WhereBuilder.php │ │ │ │ └── WhereExpressionBuilder.php │ │ │ ├── exceptions │ │ │ │ ├── InvalidParameterException.php │ │ │ │ ├── UnableToCalculatePositionException.php │ │ │ │ ├── UnableToCreateSQLException.php │ │ │ │ └── UnsupportedFeatureException.php │ │ │ ├── lexer │ │ │ │ ├── LexerSplitter.php │ │ │ │ └── PHPSQLLexer.php │ │ │ ├── positions │ │ │ │ └── PositionCalculator.php │ │ │ ├── processors │ │ │ │ ├── AbstractProcessor.php │ │ │ │ ├── ColumnDefinitionProcessor.php │ │ │ │ ├── ColumnListProcessor.php │ │ │ │ ├── CreateDefinitionProcessor.php │ │ │ │ ├── CreateProcessor.php │ │ │ │ ├── DefaultProcessor.php │ │ │ │ ├── DeleteProcessor.php │ │ │ │ ├── DescProcessor.php │ │ │ │ ├── DescribeProcessor.php │ │ │ │ ├── DropProcessor.php │ │ │ │ ├── DuplicateProcessor.php │ │ │ │ ├── ExplainProcessor.php │ │ │ │ ├── ExpressionListProcessor.php │ │ │ │ ├── FromProcessor.php │ │ │ │ ├── GroupByProcessor.php │ │ │ │ ├── HavingProcessor.php │ │ │ │ ├── IndexColumnListProcessor.php │ │ │ │ ├── InsertProcessor.php │ │ │ │ ├── IntoProcessor.php │ │ │ │ ├── LimitProcessor.php │ │ │ │ ├── OrderByProcessor.php │ │ │ │ ├── RecordProcessor.php │ │ │ │ ├── ReferenceDefinitionProcessor.php │ │ │ │ ├── RenameProcessor.php │ │ │ │ ├── ReplaceProcessor.php │ │ │ │ ├── SQLChunkProcessor.php │ │ │ │ ├── SQLProcessor.php │ │ │ │ ├── SelectExpressionProcessor.php │ │ │ │ ├── SelectProcessor.php │ │ │ │ ├── SetProcessor.php │ │ │ │ ├── ShowProcessor.php │ │ │ │ ├── TableProcessor.php │ │ │ │ ├── UnionProcessor.php │ │ │ │ ├── UpdateProcessor.php │ │ │ │ ├── UsingProcessor.php │ │ │ │ ├── ValuesProcessor.php │ │ │ │ └── WhereProcessor.php │ │ │ └── utils │ │ │ │ ├── ExpressionToken.php │ │ │ │ ├── ExpressionType.php │ │ │ │ ├── PHPSQLParserConstants.php │ │ │ │ └── PHPSQLParserUtils.php │ │ ├── mysql.php │ │ ├── mysqli.php │ │ ├── pdo │ │ │ ├── abstract.php │ │ │ └── pgsql.php │ │ └── pgsql.php │ ├── cond.php │ ├── db.php │ ├── exception │ │ ├── duplicatekey_exception.php │ │ ├── exception.php │ │ ├── select_exception.php │ │ └── table_exception.php │ ├── expr.php │ ├── result │ │ ├── abstract.php │ │ ├── mysql.php │ │ ├── mysqli.php │ │ ├── pdo.php │ │ └── pgsql.php │ ├── select.php │ ├── table.php │ └── table │ │ └── lite.php ├── debug │ ├── debug.php │ └── debug_firephp.php ├── extend │ └── behavior │ │ ├── acluser.php │ │ ├── acluser │ │ ├── duplicateusername_exception.php │ │ ├── exception.php │ │ ├── usernamenotfound_exception.php │ │ └── wrongpassword_exception.php │ │ ├── fastuuid.php │ │ ├── relation.php │ │ └── uniqueness.php ├── form │ ├── element.php │ ├── exception │ │ └── form_exception.php │ ├── form.php │ └── group.php ├── helper │ ├── array.php │ ├── dom_document.php │ ├── dom_element.php │ ├── exception │ │ ├── dom_exception.php │ │ ├── validator_exception.php │ │ └── validator_validatefailed_exception.php │ ├── filesys.php │ ├── filter.php │ ├── image.php │ ├── imgcode.php │ ├── json.php │ ├── uploader.php │ ├── validator.php │ └── yaml.php ├── orm │ ├── activerecord.php │ └── activerecord │ │ ├── association │ │ ├── abstract.php │ │ ├── belongsto.php │ │ ├── coll.php │ │ ├── hasmany.php │ │ ├── hasone.php │ │ └── manytomany.php │ │ ├── behavior_abstract.php │ │ ├── callbacks.php │ │ ├── exception │ │ ├── association_exception.php │ │ ├── association_notdefined_exception.php │ │ ├── association_reject_exception.php │ │ ├── behavior_exception.php │ │ ├── calltoundefinedmethod_exception.php │ │ ├── changereadonlyprop_exception.php │ │ ├── compositepkincompatible_exception.php │ │ ├── destroywithoutid_exception.php │ │ ├── exception.php │ │ ├── expectsassocprop_exception.php │ │ ├── meta_exception.php │ │ ├── settingproptype_mismatch.php │ │ ├── undefinedprop_exception.php │ │ └── validatefailed_exception.php │ │ ├── interface.php │ │ ├── meta.php │ │ ├── view.php │ │ └── viewmeta.php ├── q.func.php ├── q.php ├── web │ ├── acl.php │ ├── controller_abstract.php │ ├── controller_forward.php │ ├── exception │ │ ├── acl_exception.php │ │ ├── router_exception.php │ │ ├── router_invalidroute_exception.php │ │ ├── router_routenotfound_exception.php │ │ └── view_exception.php │ ├── router.php │ ├── view_output.php │ ├── view_redirect.php │ └── view_render_php.php └── webcontrols │ ├── button.php │ ├── checkbox.php │ ├── checkbox_abstract.php │ ├── checkboxgroup.php │ ├── checkboxgroup_abstract.php │ ├── control_abstract.php │ ├── dropdownlist.php │ ├── exception │ └── ui_exception.php │ ├── hidden.php │ ├── input_abstract.php │ ├── label.php │ ├── listbox.php │ ├── memo.php │ ├── password.php │ ├── radio.php │ ├── radiogroup.php │ ├── reset.php │ ├── static.php │ ├── submit.php │ ├── textbox.php │ └── upload.php ├── nbproject ├── private │ ├── private.properties │ └── private.xml ├── project.properties └── project.xml └── test.txt /.buildpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firzen/QeePHP/HEAD/.buildpath -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firzen/QeePHP/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.php.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firzen/QeePHP/HEAD/.settings/org.eclipse.php.core.prefs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firzen/QeePHP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firzen/QeePHP/HEAD/README.md -------------------------------------------------------------------------------- /app/.buildpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firzen/QeePHP/HEAD/app/.buildpath -------------------------------------------------------------------------------- /app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firzen/QeePHP/HEAD/app/.project -------------------------------------------------------------------------------- /app/.settings/org.eclipse.php.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firzen/QeePHP/HEAD/app/.settings/org.eclipse.php.core.prefs -------------------------------------------------------------------------------- /app/_code/_config/acl.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firzen/QeePHP/HEAD/app/_code/_config/acl.config.php -------------------------------------------------------------------------------- /app/_code/_config/app.config.php: -------------------------------------------------------------------------------- 1 |