├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── core-handlers ├── cache │ ├── global_cache.php │ ├── redis_db.php │ └── session_cache.php ├── connectors │ ├── folder_conn.php │ ├── url_conn.php │ └── wp_conn.php ├── controllers │ ├── d_controller.php │ ├── t2_controller.php │ └── ticket_controller.php ├── database │ ├── dbconn.php │ └── mysqli.php ├── front-end │ ├── css.php │ ├── html.php │ ├── js.php │ ├── register_less.php │ └── validate.php ├── lang │ ├── arr.has.php │ ├── arr.is.php │ ├── arr.join.php │ ├── arr.php │ ├── arr.to.php │ ├── arr_each.build.php │ ├── arr_each.filter.php │ ├── arr_each.map.php │ ├── arr_each.reduce.php │ ├── arr_items.php │ ├── aw2.php │ ├── aw2_error.php │ ├── aw2_service.php │ ├── bool.php │ ├── c.php │ ├── c_colon.php │ ├── call_stack.php │ ├── code.php │ ├── code_sample.php │ ├── common.php │ ├── common_env.php │ ├── cond.block.php │ ├── cond.php │ ├── cond.switch.php │ ├── content.php │ ├── currency.php │ ├── datatypes.php │ ├── date.comp.php │ ├── date.php │ ├── do.php │ ├── email_id.php │ ├── enum.php │ ├── env.php │ ├── func.php │ ├── funcstack.php │ ├── gutenberg.php │ ├── if.php │ ├── int.comp.php │ ├── int.php │ ├── json.php │ ├── loop.php │ ├── loopv2.php │ ├── m.php │ ├── math.php │ ├── num.comp.php │ ├── num.php │ ├── o.php │ ├── obj.php │ ├── out_colon.php │ ├── package.php │ ├── php.php │ ├── pipe_colon.php │ ├── ref.php │ ├── regex.php │ ├── service.php │ ├── services.php │ ├── str.case.php │ ├── str.comp.php │ ├── str.needle.php │ ├── str.pad.php │ ├── str.php │ ├── str.slice.php │ ├── str.split.php │ ├── str.trim.php │ ├── taxonomy.php │ ├── when_colon.php │ ├── while.arr.php │ ├── while.build.php │ └── while.scalar.php ├── session │ ├── if.user_can_access.php │ ├── session_ticket.php │ └── vsession_handler.php ├── structure │ ├── @collection.php │ ├── @content_type.php │ ├── @template.php │ ├── app.php │ ├── collections.php │ ├── content_type_def.php │ ├── content_types.php │ ├── module.php │ ├── template.php │ ├── templates.php │ └── this_collection.php └── utils │ ├── async_tickets.php │ ├── async_urls.php │ ├── clean.php │ ├── cookie.php │ ├── encode.php │ ├── esc.php │ ├── file_manipulation.php │ ├── file_upload.php │ ├── hashids.php │ ├── request.php │ ├── request2.php │ ├── timer.php │ └── util.php ├── extra-handlers └── deprecated │ ├── @shared.php │ ├── elastic_email.php │ └── subscribe.php ├── includes ├── aw2_library.php ├── awesome-controllers.php ├── awesome-enterprise.code-workspace ├── awesome_app.php ├── awesome_auth.php ├── awesome_flow.php ├── error_log.php ├── usage_log.php ├── util.php └── utilphp │ └── util.php └── sample-indexes ├── awesome_exception.sql ├── log_problems.sql ├── notification_log.sql ├── sample-config.php └── sample-index-boostrap.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/composer.lock -------------------------------------------------------------------------------- /core-handlers/cache/global_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/cache/global_cache.php -------------------------------------------------------------------------------- /core-handlers/cache/redis_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/cache/redis_db.php -------------------------------------------------------------------------------- /core-handlers/cache/session_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/cache/session_cache.php -------------------------------------------------------------------------------- /core-handlers/connectors/folder_conn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/connectors/folder_conn.php -------------------------------------------------------------------------------- /core-handlers/connectors/url_conn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/connectors/url_conn.php -------------------------------------------------------------------------------- /core-handlers/connectors/wp_conn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/connectors/wp_conn.php -------------------------------------------------------------------------------- /core-handlers/controllers/d_controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/controllers/d_controller.php -------------------------------------------------------------------------------- /core-handlers/controllers/t2_controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/controllers/t2_controller.php -------------------------------------------------------------------------------- /core-handlers/controllers/ticket_controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/controllers/ticket_controller.php -------------------------------------------------------------------------------- /core-handlers/database/dbconn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/database/dbconn.php -------------------------------------------------------------------------------- /core-handlers/database/mysqli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/database/mysqli.php -------------------------------------------------------------------------------- /core-handlers/front-end/css.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/front-end/css.php -------------------------------------------------------------------------------- /core-handlers/front-end/html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/front-end/html.php -------------------------------------------------------------------------------- /core-handlers/front-end/js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/front-end/js.php -------------------------------------------------------------------------------- /core-handlers/front-end/register_less.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/front-end/register_less.php -------------------------------------------------------------------------------- /core-handlers/front-end/validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/front-end/validate.php -------------------------------------------------------------------------------- /core-handlers/lang/arr.has.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/arr.has.php -------------------------------------------------------------------------------- /core-handlers/lang/arr.is.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/arr.is.php -------------------------------------------------------------------------------- /core-handlers/lang/arr.join.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/arr.join.php -------------------------------------------------------------------------------- /core-handlers/lang/arr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/arr.php -------------------------------------------------------------------------------- /core-handlers/lang/arr.to.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/arr.to.php -------------------------------------------------------------------------------- /core-handlers/lang/arr_each.build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/arr_each.build.php -------------------------------------------------------------------------------- /core-handlers/lang/arr_each.filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/arr_each.filter.php -------------------------------------------------------------------------------- /core-handlers/lang/arr_each.map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/arr_each.map.php -------------------------------------------------------------------------------- /core-handlers/lang/arr_each.reduce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/arr_each.reduce.php -------------------------------------------------------------------------------- /core-handlers/lang/arr_items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/arr_items.php -------------------------------------------------------------------------------- /core-handlers/lang/aw2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/aw2.php -------------------------------------------------------------------------------- /core-handlers/lang/aw2_error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/aw2_error.php -------------------------------------------------------------------------------- /core-handlers/lang/aw2_service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/aw2_service.php -------------------------------------------------------------------------------- /core-handlers/lang/bool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/bool.php -------------------------------------------------------------------------------- /core-handlers/lang/c.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/c.php -------------------------------------------------------------------------------- /core-handlers/lang/c_colon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/c_colon.php -------------------------------------------------------------------------------- /core-handlers/lang/call_stack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/call_stack.php -------------------------------------------------------------------------------- /core-handlers/lang/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/code.php -------------------------------------------------------------------------------- /core-handlers/lang/code_sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/code_sample.php -------------------------------------------------------------------------------- /core-handlers/lang/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/common.php -------------------------------------------------------------------------------- /core-handlers/lang/common_env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/common_env.php -------------------------------------------------------------------------------- /core-handlers/lang/cond.block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/cond.block.php -------------------------------------------------------------------------------- /core-handlers/lang/cond.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/cond.php -------------------------------------------------------------------------------- /core-handlers/lang/cond.switch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/cond.switch.php -------------------------------------------------------------------------------- /core-handlers/lang/content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/content.php -------------------------------------------------------------------------------- /core-handlers/lang/currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/currency.php -------------------------------------------------------------------------------- /core-handlers/lang/datatypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/datatypes.php -------------------------------------------------------------------------------- /core-handlers/lang/date.comp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/date.comp.php -------------------------------------------------------------------------------- /core-handlers/lang/date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/date.php -------------------------------------------------------------------------------- /core-handlers/lang/do.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/do.php -------------------------------------------------------------------------------- /core-handlers/lang/email_id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/email_id.php -------------------------------------------------------------------------------- /core-handlers/lang/enum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/enum.php -------------------------------------------------------------------------------- /core-handlers/lang/env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/env.php -------------------------------------------------------------------------------- /core-handlers/lang/func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/func.php -------------------------------------------------------------------------------- /core-handlers/lang/funcstack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/funcstack.php -------------------------------------------------------------------------------- /core-handlers/lang/gutenberg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/gutenberg.php -------------------------------------------------------------------------------- /core-handlers/lang/if.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/if.php -------------------------------------------------------------------------------- /core-handlers/lang/int.comp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/int.comp.php -------------------------------------------------------------------------------- /core-handlers/lang/int.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/int.php -------------------------------------------------------------------------------- /core-handlers/lang/json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/json.php -------------------------------------------------------------------------------- /core-handlers/lang/loop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/loop.php -------------------------------------------------------------------------------- /core-handlers/lang/loopv2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/loopv2.php -------------------------------------------------------------------------------- /core-handlers/lang/m.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/m.php -------------------------------------------------------------------------------- /core-handlers/lang/math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/math.php -------------------------------------------------------------------------------- /core-handlers/lang/num.comp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/num.comp.php -------------------------------------------------------------------------------- /core-handlers/lang/num.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/num.php -------------------------------------------------------------------------------- /core-handlers/lang/o.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/o.php -------------------------------------------------------------------------------- /core-handlers/lang/obj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/obj.php -------------------------------------------------------------------------------- /core-handlers/lang/out_colon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/out_colon.php -------------------------------------------------------------------------------- /core-handlers/lang/package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/package.php -------------------------------------------------------------------------------- /core-handlers/lang/php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/php.php -------------------------------------------------------------------------------- /core-handlers/lang/pipe_colon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/pipe_colon.php -------------------------------------------------------------------------------- /core-handlers/lang/ref.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/ref.php -------------------------------------------------------------------------------- /core-handlers/lang/regex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/regex.php -------------------------------------------------------------------------------- /core-handlers/lang/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/service.php -------------------------------------------------------------------------------- /core-handlers/lang/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/services.php -------------------------------------------------------------------------------- /core-handlers/lang/str.case.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/str.case.php -------------------------------------------------------------------------------- /core-handlers/lang/str.comp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/str.comp.php -------------------------------------------------------------------------------- /core-handlers/lang/str.needle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/str.needle.php -------------------------------------------------------------------------------- /core-handlers/lang/str.pad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/str.pad.php -------------------------------------------------------------------------------- /core-handlers/lang/str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/str.php -------------------------------------------------------------------------------- /core-handlers/lang/str.slice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/str.slice.php -------------------------------------------------------------------------------- /core-handlers/lang/str.split.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/str.split.php -------------------------------------------------------------------------------- /core-handlers/lang/str.trim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/str.trim.php -------------------------------------------------------------------------------- /core-handlers/lang/taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/taxonomy.php -------------------------------------------------------------------------------- /core-handlers/lang/when_colon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/when_colon.php -------------------------------------------------------------------------------- /core-handlers/lang/while.arr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/while.arr.php -------------------------------------------------------------------------------- /core-handlers/lang/while.build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/while.build.php -------------------------------------------------------------------------------- /core-handlers/lang/while.scalar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/lang/while.scalar.php -------------------------------------------------------------------------------- /core-handlers/session/if.user_can_access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/session/if.user_can_access.php -------------------------------------------------------------------------------- /core-handlers/session/session_ticket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/session/session_ticket.php -------------------------------------------------------------------------------- /core-handlers/session/vsession_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/session/vsession_handler.php -------------------------------------------------------------------------------- /core-handlers/structure/@collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/structure/@collection.php -------------------------------------------------------------------------------- /core-handlers/structure/@content_type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/structure/@content_type.php -------------------------------------------------------------------------------- /core-handlers/structure/@template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/structure/@template.php -------------------------------------------------------------------------------- /core-handlers/structure/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/structure/app.php -------------------------------------------------------------------------------- /core-handlers/structure/collections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/structure/collections.php -------------------------------------------------------------------------------- /core-handlers/structure/content_type_def.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/structure/content_type_def.php -------------------------------------------------------------------------------- /core-handlers/structure/content_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/structure/content_types.php -------------------------------------------------------------------------------- /core-handlers/structure/module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/structure/module.php -------------------------------------------------------------------------------- /core-handlers/structure/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/structure/template.php -------------------------------------------------------------------------------- /core-handlers/structure/templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/structure/templates.php -------------------------------------------------------------------------------- /core-handlers/structure/this_collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/structure/this_collection.php -------------------------------------------------------------------------------- /core-handlers/utils/async_tickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/utils/async_tickets.php -------------------------------------------------------------------------------- /core-handlers/utils/async_urls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/utils/async_urls.php -------------------------------------------------------------------------------- /core-handlers/utils/clean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/utils/clean.php -------------------------------------------------------------------------------- /core-handlers/utils/cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/utils/cookie.php -------------------------------------------------------------------------------- /core-handlers/utils/encode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/utils/encode.php -------------------------------------------------------------------------------- /core-handlers/utils/esc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/utils/esc.php -------------------------------------------------------------------------------- /core-handlers/utils/file_manipulation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/utils/file_manipulation.php -------------------------------------------------------------------------------- /core-handlers/utils/file_upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/utils/file_upload.php -------------------------------------------------------------------------------- /core-handlers/utils/hashids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/utils/hashids.php -------------------------------------------------------------------------------- /core-handlers/utils/request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/utils/request.php -------------------------------------------------------------------------------- /core-handlers/utils/request2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/utils/request2.php -------------------------------------------------------------------------------- /core-handlers/utils/timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/utils/timer.php -------------------------------------------------------------------------------- /core-handlers/utils/util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/core-handlers/utils/util.php -------------------------------------------------------------------------------- /extra-handlers/deprecated/@shared.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/extra-handlers/deprecated/@shared.php -------------------------------------------------------------------------------- /extra-handlers/deprecated/elastic_email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/extra-handlers/deprecated/elastic_email.php -------------------------------------------------------------------------------- /extra-handlers/deprecated/subscribe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/extra-handlers/deprecated/subscribe.php -------------------------------------------------------------------------------- /includes/aw2_library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/includes/aw2_library.php -------------------------------------------------------------------------------- /includes/awesome-controllers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/includes/awesome-controllers.php -------------------------------------------------------------------------------- /includes/awesome-enterprise.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/includes/awesome-enterprise.code-workspace -------------------------------------------------------------------------------- /includes/awesome_app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/includes/awesome_app.php -------------------------------------------------------------------------------- /includes/awesome_auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/includes/awesome_auth.php -------------------------------------------------------------------------------- /includes/awesome_flow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/includes/awesome_flow.php -------------------------------------------------------------------------------- /includes/error_log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/includes/error_log.php -------------------------------------------------------------------------------- /includes/usage_log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/includes/usage_log.php -------------------------------------------------------------------------------- /includes/util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/includes/util.php -------------------------------------------------------------------------------- /includes/utilphp/util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/includes/utilphp/util.php -------------------------------------------------------------------------------- /sample-indexes/awesome_exception.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/sample-indexes/awesome_exception.sql -------------------------------------------------------------------------------- /sample-indexes/log_problems.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/sample-indexes/log_problems.sql -------------------------------------------------------------------------------- /sample-indexes/notification_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/sample-indexes/notification_log.sql -------------------------------------------------------------------------------- /sample-indexes/sample-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/sample-indexes/sample-config.php -------------------------------------------------------------------------------- /sample-indexes/sample-index-boostrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPoets/awesome-enterprise/HEAD/sample-indexes/sample-index-boostrap.php --------------------------------------------------------------------------------