├── .github └── workflows │ ├── moodle-plugin-ci.yml │ └── moodle-release.yml ├── CHANGES.md ├── COPYING.txt ├── README.md ├── UPGRADE.md ├── classes └── privacy │ └── provider.php ├── cli ├── check_opcache.php ├── check_opcache_web.php ├── reset_opcache.php └── reset_opcache_web.php ├── index.php ├── lang └── en │ └── tool_opcache.php ├── lib └── opcache-gui │ ├── LICENSE │ └── index.php.inc ├── settings.php ├── styles.css ├── tests └── behat │ └── tool_opcache.feature ├── thirdpartylibs.xml └── version.php /.github/workflows/moodle-plugin-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/.github/workflows/moodle-plugin-ci.yml -------------------------------------------------------------------------------- /.github/workflows/moodle-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/.github/workflows/moodle-release.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/CHANGES.md -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/COPYING.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/UPGRADE.md -------------------------------------------------------------------------------- /classes/privacy/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/classes/privacy/provider.php -------------------------------------------------------------------------------- /cli/check_opcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/cli/check_opcache.php -------------------------------------------------------------------------------- /cli/check_opcache_web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/cli/check_opcache_web.php -------------------------------------------------------------------------------- /cli/reset_opcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/cli/reset_opcache.php -------------------------------------------------------------------------------- /cli/reset_opcache_web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/cli/reset_opcache_web.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/index.php -------------------------------------------------------------------------------- /lang/en/tool_opcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/lang/en/tool_opcache.php -------------------------------------------------------------------------------- /lib/opcache-gui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/lib/opcache-gui/LICENSE -------------------------------------------------------------------------------- /lib/opcache-gui/index.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/lib/opcache-gui/index.php.inc -------------------------------------------------------------------------------- /settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/settings.php -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/styles.css -------------------------------------------------------------------------------- /tests/behat/tool_opcache.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/tests/behat/tool_opcache.feature -------------------------------------------------------------------------------- /thirdpartylibs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/thirdpartylibs.xml -------------------------------------------------------------------------------- /version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodle-an-hochschulen/moodle-tool_opcache/HEAD/version.php --------------------------------------------------------------------------------