├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── config.json │ ├── moodle-ci.yml │ └── moodle-release.yml ├── CHANGES.md ├── README.md ├── amd ├── build │ ├── radiobuttondeselect.min.js │ └── radiobuttondeselect.min.js.map └── src │ └── radiobuttondeselect.js ├── backup └── moodle2 │ ├── backup_ratingallocate_activity_stepslib.php │ ├── backup_ratingallocate_activity_task.class.php │ ├── backup_restore_helper.php │ ├── restore_ratingallocate_activity_stepslib.php │ └── restore_ratingallocate_activity_task.class.php ├── classes ├── algorithm_status.php ├── allocations_table.php ├── choice │ ├── ratingallocate_choice.php │ └── ratingallocate_group_choices.php ├── choice_importer.php ├── completion │ └── custom_completion.php ├── dates.php ├── event │ ├── all_ratings_deleted.php │ ├── allocation_published.php │ ├── allocation_statistics_viewed.php │ ├── allocation_table_viewed.php │ ├── distribution_triggered.php │ ├── index_viewed.php │ ├── manual_allocation_saved.php │ ├── rating_deleted.php │ ├── rating_saved.php │ ├── rating_viewed.php │ ├── ratingallocate_viewed.php │ └── ratings_and_allocation_table_viewed.php ├── manager │ └── strategymanager.php ├── privacy │ └── provider.php ├── ratingallocate.php ├── ratingallocate_observer.php ├── ratings_and_allocations_table.php ├── task │ ├── cron_task.php │ ├── distribute_unallocated_task.php │ └── send_distribution_notification.php └── wrapper │ └── ratingallocate_db_wrapper.php ├── db ├── access.php ├── db_structure.php ├── events.php ├── install.php ├── install.xml ├── log.php ├── messages.php ├── tasks.php ├── uninstall.php └── upgrade.php ├── form_manual_allocation.php ├── form_modify_choice.php ├── form_upload_choices.php ├── grade.php ├── index.php ├── lang └── en │ └── ratingallocate.php ├── lib.php ├── locallib.php ├── mod_form.php ├── pix ├── checkbox-selected.svg ├── checkbox.svg ├── icon.png ├── icon.svg └── monologo.svg ├── renderable.php ├── renderer.php ├── settings.php ├── solver ├── edmonds-karp.php ├── export_lp_solve.php ├── ford-fulkerson-koegel.php └── solver-template.php ├── strategy ├── strategy01_yes_no.php ├── strategy02_yes_maybe_no.php ├── strategy03_lickert.php ├── strategy04_points.php ├── strategy05_order.php ├── strategy06_tickyes.php ├── strategy_template.php └── strategy_template_options.php ├── styles.css ├── tests ├── backup_restore_test.php ├── behat │ ├── allocation_status.feature │ ├── behat_mod_ratingallocate.php │ ├── completion_condition_allocation.feature │ ├── completion_condition_vote.feature │ ├── completion_manual.feature │ ├── defaultratings.feature │ ├── manual_allocation.feature │ ├── mod_form.feature │ ├── ratings.feature │ ├── select_strategy.feature │ ├── validate_rating.feature │ └── visibile_calendar_events.feature ├── cron_test.php ├── generator │ └── lib.php ├── locallib_test.php ├── mod_generator_test.php ├── mod_ratingallocate_allocate_unrated_test.php ├── mod_ratingallocate_choice_groups_test.php ├── mod_ratingallocate_choice_importer_test.php ├── mod_ratingallocate_notification_test.php ├── mod_ratingallocate_privacy_provider_test.php ├── mod_ratingallocate_processor_test.php ├── mod_ratingallocate_solver_test.php ├── mod_ratingallocate_status_test.php ├── mod_ratingallocate_strategy_test.php └── phpunit.xml ├── version.php └── view.php /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/.github/workflows/config.json -------------------------------------------------------------------------------- /.github/workflows/moodle-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/.github/workflows/moodle-ci.yml -------------------------------------------------------------------------------- /.github/workflows/moodle-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/.github/workflows/moodle-release.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/CHANGES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/README.md -------------------------------------------------------------------------------- /amd/build/radiobuttondeselect.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/amd/build/radiobuttondeselect.min.js -------------------------------------------------------------------------------- /amd/build/radiobuttondeselect.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/amd/build/radiobuttondeselect.min.js.map -------------------------------------------------------------------------------- /amd/src/radiobuttondeselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/amd/src/radiobuttondeselect.js -------------------------------------------------------------------------------- /backup/moodle2/backup_ratingallocate_activity_stepslib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/backup/moodle2/backup_ratingallocate_activity_stepslib.php -------------------------------------------------------------------------------- /backup/moodle2/backup_ratingallocate_activity_task.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/backup/moodle2/backup_ratingallocate_activity_task.class.php -------------------------------------------------------------------------------- /backup/moodle2/backup_restore_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/backup/moodle2/backup_restore_helper.php -------------------------------------------------------------------------------- /backup/moodle2/restore_ratingallocate_activity_stepslib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/backup/moodle2/restore_ratingallocate_activity_stepslib.php -------------------------------------------------------------------------------- /backup/moodle2/restore_ratingallocate_activity_task.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/backup/moodle2/restore_ratingallocate_activity_task.class.php -------------------------------------------------------------------------------- /classes/algorithm_status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/algorithm_status.php -------------------------------------------------------------------------------- /classes/allocations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/allocations_table.php -------------------------------------------------------------------------------- /classes/choice/ratingallocate_choice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/choice/ratingallocate_choice.php -------------------------------------------------------------------------------- /classes/choice/ratingallocate_group_choices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/choice/ratingallocate_group_choices.php -------------------------------------------------------------------------------- /classes/choice_importer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/choice_importer.php -------------------------------------------------------------------------------- /classes/completion/custom_completion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/completion/custom_completion.php -------------------------------------------------------------------------------- /classes/dates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/dates.php -------------------------------------------------------------------------------- /classes/event/all_ratings_deleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/event/all_ratings_deleted.php -------------------------------------------------------------------------------- /classes/event/allocation_published.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/event/allocation_published.php -------------------------------------------------------------------------------- /classes/event/allocation_statistics_viewed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/event/allocation_statistics_viewed.php -------------------------------------------------------------------------------- /classes/event/allocation_table_viewed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/event/allocation_table_viewed.php -------------------------------------------------------------------------------- /classes/event/distribution_triggered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/event/distribution_triggered.php -------------------------------------------------------------------------------- /classes/event/index_viewed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/event/index_viewed.php -------------------------------------------------------------------------------- /classes/event/manual_allocation_saved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/event/manual_allocation_saved.php -------------------------------------------------------------------------------- /classes/event/rating_deleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/event/rating_deleted.php -------------------------------------------------------------------------------- /classes/event/rating_saved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/event/rating_saved.php -------------------------------------------------------------------------------- /classes/event/rating_viewed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/event/rating_viewed.php -------------------------------------------------------------------------------- /classes/event/ratingallocate_viewed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/event/ratingallocate_viewed.php -------------------------------------------------------------------------------- /classes/event/ratings_and_allocation_table_viewed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/event/ratings_and_allocation_table_viewed.php -------------------------------------------------------------------------------- /classes/manager/strategymanager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/manager/strategymanager.php -------------------------------------------------------------------------------- /classes/privacy/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/privacy/provider.php -------------------------------------------------------------------------------- /classes/ratingallocate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/ratingallocate.php -------------------------------------------------------------------------------- /classes/ratingallocate_observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/ratingallocate_observer.php -------------------------------------------------------------------------------- /classes/ratings_and_allocations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/ratings_and_allocations_table.php -------------------------------------------------------------------------------- /classes/task/cron_task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/task/cron_task.php -------------------------------------------------------------------------------- /classes/task/distribute_unallocated_task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/task/distribute_unallocated_task.php -------------------------------------------------------------------------------- /classes/task/send_distribution_notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/task/send_distribution_notification.php -------------------------------------------------------------------------------- /classes/wrapper/ratingallocate_db_wrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/classes/wrapper/ratingallocate_db_wrapper.php -------------------------------------------------------------------------------- /db/access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/db/access.php -------------------------------------------------------------------------------- /db/db_structure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/db/db_structure.php -------------------------------------------------------------------------------- /db/events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/db/events.php -------------------------------------------------------------------------------- /db/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/db/install.php -------------------------------------------------------------------------------- /db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/db/install.xml -------------------------------------------------------------------------------- /db/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/db/log.php -------------------------------------------------------------------------------- /db/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/db/messages.php -------------------------------------------------------------------------------- /db/tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/db/tasks.php -------------------------------------------------------------------------------- /db/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/db/uninstall.php -------------------------------------------------------------------------------- /db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/db/upgrade.php -------------------------------------------------------------------------------- /form_manual_allocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/form_manual_allocation.php -------------------------------------------------------------------------------- /form_modify_choice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/form_modify_choice.php -------------------------------------------------------------------------------- /form_upload_choices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/form_upload_choices.php -------------------------------------------------------------------------------- /grade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/grade.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/index.php -------------------------------------------------------------------------------- /lang/en/ratingallocate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/lang/en/ratingallocate.php -------------------------------------------------------------------------------- /lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/lib.php -------------------------------------------------------------------------------- /locallib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/locallib.php -------------------------------------------------------------------------------- /mod_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/mod_form.php -------------------------------------------------------------------------------- /pix/checkbox-selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/pix/checkbox-selected.svg -------------------------------------------------------------------------------- /pix/checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/pix/checkbox.svg -------------------------------------------------------------------------------- /pix/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/pix/icon.png -------------------------------------------------------------------------------- /pix/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/pix/icon.svg -------------------------------------------------------------------------------- /pix/monologo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/pix/monologo.svg -------------------------------------------------------------------------------- /renderable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/renderable.php -------------------------------------------------------------------------------- /renderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/renderer.php -------------------------------------------------------------------------------- /settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/settings.php -------------------------------------------------------------------------------- /solver/edmonds-karp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/solver/edmonds-karp.php -------------------------------------------------------------------------------- /solver/export_lp_solve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/solver/export_lp_solve.php -------------------------------------------------------------------------------- /solver/ford-fulkerson-koegel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/solver/ford-fulkerson-koegel.php -------------------------------------------------------------------------------- /solver/solver-template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/solver/solver-template.php -------------------------------------------------------------------------------- /strategy/strategy01_yes_no.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/strategy/strategy01_yes_no.php -------------------------------------------------------------------------------- /strategy/strategy02_yes_maybe_no.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/strategy/strategy02_yes_maybe_no.php -------------------------------------------------------------------------------- /strategy/strategy03_lickert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/strategy/strategy03_lickert.php -------------------------------------------------------------------------------- /strategy/strategy04_points.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/strategy/strategy04_points.php -------------------------------------------------------------------------------- /strategy/strategy05_order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/strategy/strategy05_order.php -------------------------------------------------------------------------------- /strategy/strategy06_tickyes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/strategy/strategy06_tickyes.php -------------------------------------------------------------------------------- /strategy/strategy_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/strategy/strategy_template.php -------------------------------------------------------------------------------- /strategy/strategy_template_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/strategy/strategy_template_options.php -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/styles.css -------------------------------------------------------------------------------- /tests/backup_restore_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/backup_restore_test.php -------------------------------------------------------------------------------- /tests/behat/allocation_status.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/behat/allocation_status.feature -------------------------------------------------------------------------------- /tests/behat/behat_mod_ratingallocate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/behat/behat_mod_ratingallocate.php -------------------------------------------------------------------------------- /tests/behat/completion_condition_allocation.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/behat/completion_condition_allocation.feature -------------------------------------------------------------------------------- /tests/behat/completion_condition_vote.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/behat/completion_condition_vote.feature -------------------------------------------------------------------------------- /tests/behat/completion_manual.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/behat/completion_manual.feature -------------------------------------------------------------------------------- /tests/behat/defaultratings.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/behat/defaultratings.feature -------------------------------------------------------------------------------- /tests/behat/manual_allocation.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/behat/manual_allocation.feature -------------------------------------------------------------------------------- /tests/behat/mod_form.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/behat/mod_form.feature -------------------------------------------------------------------------------- /tests/behat/ratings.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/behat/ratings.feature -------------------------------------------------------------------------------- /tests/behat/select_strategy.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/behat/select_strategy.feature -------------------------------------------------------------------------------- /tests/behat/validate_rating.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/behat/validate_rating.feature -------------------------------------------------------------------------------- /tests/behat/visibile_calendar_events.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/behat/visibile_calendar_events.feature -------------------------------------------------------------------------------- /tests/cron_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/cron_test.php -------------------------------------------------------------------------------- /tests/generator/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/generator/lib.php -------------------------------------------------------------------------------- /tests/locallib_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/locallib_test.php -------------------------------------------------------------------------------- /tests/mod_generator_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/mod_generator_test.php -------------------------------------------------------------------------------- /tests/mod_ratingallocate_allocate_unrated_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/mod_ratingallocate_allocate_unrated_test.php -------------------------------------------------------------------------------- /tests/mod_ratingallocate_choice_groups_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/mod_ratingallocate_choice_groups_test.php -------------------------------------------------------------------------------- /tests/mod_ratingallocate_choice_importer_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/mod_ratingallocate_choice_importer_test.php -------------------------------------------------------------------------------- /tests/mod_ratingallocate_notification_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/mod_ratingallocate_notification_test.php -------------------------------------------------------------------------------- /tests/mod_ratingallocate_privacy_provider_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/mod_ratingallocate_privacy_provider_test.php -------------------------------------------------------------------------------- /tests/mod_ratingallocate_processor_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/mod_ratingallocate_processor_test.php -------------------------------------------------------------------------------- /tests/mod_ratingallocate_solver_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/mod_ratingallocate_solver_test.php -------------------------------------------------------------------------------- /tests/mod_ratingallocate_status_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/mod_ratingallocate_status_test.php -------------------------------------------------------------------------------- /tests/mod_ratingallocate_strategy_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/mod_ratingallocate_strategy_test.php -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/tests/phpunit.xml -------------------------------------------------------------------------------- /version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/version.php -------------------------------------------------------------------------------- /view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnweb/moodle-mod_ratingallocate/HEAD/view.php --------------------------------------------------------------------------------