├── .github └── workflows │ └── tests.yml ├── README.md ├── acp ├── main_info.php └── main_module.php ├── adm └── style │ └── demo_body.html ├── composer.json ├── config ├── routing.yml └── services.yml ├── controller └── main.php ├── event └── main_listener.php ├── ext.php ├── language └── en │ └── common.php ├── license.txt ├── migrations ├── release_1_0_0.php └── release_1_0_1.php ├── phpunit.xml.dist ├── styles └── prosilver │ └── template │ ├── demo_body.html │ └── event │ └── overall_header_navigation_prepend.html └── tests ├── controller └── main_test.php ├── dbal ├── fixtures │ └── config.xml └── simple_test.php └── functional └── demo_test.php /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/README.md -------------------------------------------------------------------------------- /acp/main_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/acp/main_info.php -------------------------------------------------------------------------------- /acp/main_module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/acp/main_module.php -------------------------------------------------------------------------------- /adm/style/demo_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/adm/style/demo_body.html -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/composer.json -------------------------------------------------------------------------------- /config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/config/routing.yml -------------------------------------------------------------------------------- /config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/config/services.yml -------------------------------------------------------------------------------- /controller/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/controller/main.php -------------------------------------------------------------------------------- /event/main_listener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/event/main_listener.php -------------------------------------------------------------------------------- /ext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/ext.php -------------------------------------------------------------------------------- /language/en/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/language/en/common.php -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/license.txt -------------------------------------------------------------------------------- /migrations/release_1_0_0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/migrations/release_1_0_0.php -------------------------------------------------------------------------------- /migrations/release_1_0_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/migrations/release_1_0_1.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /styles/prosilver/template/demo_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/styles/prosilver/template/demo_body.html -------------------------------------------------------------------------------- /styles/prosilver/template/event/overall_header_navigation_prepend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/styles/prosilver/template/event/overall_header_navigation_prepend.html -------------------------------------------------------------------------------- /tests/controller/main_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/tests/controller/main_test.php -------------------------------------------------------------------------------- /tests/dbal/fixtures/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/tests/dbal/fixtures/config.xml -------------------------------------------------------------------------------- /tests/dbal/simple_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/tests/dbal/simple_test.php -------------------------------------------------------------------------------- /tests/functional/demo_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-ext-acme-demo/HEAD/tests/functional/demo_test.php --------------------------------------------------------------------------------