├── .github └── workflows │ └── ci.yml ├── blocks └── example.php ├── changes.md ├── classes ├── event │ └── report_viewed.php └── privacy │ └── provider.php ├── db ├── access.php └── install.php ├── form.php ├── index.php ├── internaldoc └── testcase.txt ├── lang └── en │ └── report_editdates.php ├── lib.php ├── mod ├── assigndates.php ├── chatdates.php ├── choicedates.php ├── datadates.php ├── dataplusdates.php ├── externalquizdates.php ├── feedbackdates.php ├── forumdates.php ├── forumngdates.php ├── glossarydates.php ├── lessondates.php ├── nanogongdates.php ├── ouwikidates.php ├── pcastdates.php ├── questionnairedates.php ├── quizdates.php ├── scormdates.php ├── turnitintooltwodates.php ├── workshopdates.php └── zoomdates.php ├── readme.md ├── settings.php ├── styles.css ├── tests └── behat │ ├── basic.feature │ ├── course_report_editdates.feature │ └── timeline.feature └── version.php /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /blocks/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/blocks/example.php -------------------------------------------------------------------------------- /changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/changes.md -------------------------------------------------------------------------------- /classes/event/report_viewed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/classes/event/report_viewed.php -------------------------------------------------------------------------------- /classes/privacy/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/classes/privacy/provider.php -------------------------------------------------------------------------------- /db/access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/db/access.php -------------------------------------------------------------------------------- /db/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/db/install.php -------------------------------------------------------------------------------- /form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/form.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/index.php -------------------------------------------------------------------------------- /internaldoc/testcase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/internaldoc/testcase.txt -------------------------------------------------------------------------------- /lang/en/report_editdates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/lang/en/report_editdates.php -------------------------------------------------------------------------------- /lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/lib.php -------------------------------------------------------------------------------- /mod/assigndates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/assigndates.php -------------------------------------------------------------------------------- /mod/chatdates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/chatdates.php -------------------------------------------------------------------------------- /mod/choicedates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/choicedates.php -------------------------------------------------------------------------------- /mod/datadates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/datadates.php -------------------------------------------------------------------------------- /mod/dataplusdates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/dataplusdates.php -------------------------------------------------------------------------------- /mod/externalquizdates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/externalquizdates.php -------------------------------------------------------------------------------- /mod/feedbackdates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/feedbackdates.php -------------------------------------------------------------------------------- /mod/forumdates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/forumdates.php -------------------------------------------------------------------------------- /mod/forumngdates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/forumngdates.php -------------------------------------------------------------------------------- /mod/glossarydates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/glossarydates.php -------------------------------------------------------------------------------- /mod/lessondates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/lessondates.php -------------------------------------------------------------------------------- /mod/nanogongdates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/nanogongdates.php -------------------------------------------------------------------------------- /mod/ouwikidates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/ouwikidates.php -------------------------------------------------------------------------------- /mod/pcastdates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/pcastdates.php -------------------------------------------------------------------------------- /mod/questionnairedates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/questionnairedates.php -------------------------------------------------------------------------------- /mod/quizdates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/quizdates.php -------------------------------------------------------------------------------- /mod/scormdates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/scormdates.php -------------------------------------------------------------------------------- /mod/turnitintooltwodates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/turnitintooltwodates.php -------------------------------------------------------------------------------- /mod/workshopdates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/workshopdates.php -------------------------------------------------------------------------------- /mod/zoomdates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/mod/zoomdates.php -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/readme.md -------------------------------------------------------------------------------- /settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/settings.php -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/styles.css -------------------------------------------------------------------------------- /tests/behat/basic.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/tests/behat/basic.feature -------------------------------------------------------------------------------- /tests/behat/course_report_editdates.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/tests/behat/course_report_editdates.feature -------------------------------------------------------------------------------- /tests/behat/timeline.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/tests/behat/timeline.feature -------------------------------------------------------------------------------- /version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodleou/moodle-report_editdates/HEAD/version.php --------------------------------------------------------------------------------