├── README.md ├── cligeneratedefaults.php ├── flavours.class.php ├── flavours_deployment.class.php ├── flavours_generatedefaults.class.php ├── flavours_packaging.class.php ├── flavours_xml_transformer.class.php ├── flavours_xml_writer.class.php ├── forms ├── flavours_deployment_form.php ├── flavours_deployment_upload_form.php ├── flavours_generatedefaults_form.php └── flavours_packaging_form.php ├── index.php ├── ingredient ├── flavours_ingredient.class.php ├── flavours_ingredient_customlang.class.php ├── flavours_ingredient_lang.class.php ├── flavours_ingredient_plugin.class.php └── flavours_ingredient_setting.class.php ├── lang ├── ca │ └── local_flavours.php ├── en │ └── local_flavours.php └── es │ └── local_flavours.php ├── lib.php ├── module.js ├── pix ├── check0.gif ├── check1.gif └── check2.gif ├── renderer.php ├── settings.php ├── styles.css └── version.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/README.md -------------------------------------------------------------------------------- /cligeneratedefaults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/cligeneratedefaults.php -------------------------------------------------------------------------------- /flavours.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/flavours.class.php -------------------------------------------------------------------------------- /flavours_deployment.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/flavours_deployment.class.php -------------------------------------------------------------------------------- /flavours_generatedefaults.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/flavours_generatedefaults.class.php -------------------------------------------------------------------------------- /flavours_packaging.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/flavours_packaging.class.php -------------------------------------------------------------------------------- /flavours_xml_transformer.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/flavours_xml_transformer.class.php -------------------------------------------------------------------------------- /flavours_xml_writer.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/flavours_xml_writer.class.php -------------------------------------------------------------------------------- /forms/flavours_deployment_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/forms/flavours_deployment_form.php -------------------------------------------------------------------------------- /forms/flavours_deployment_upload_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/forms/flavours_deployment_upload_form.php -------------------------------------------------------------------------------- /forms/flavours_generatedefaults_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/forms/flavours_generatedefaults_form.php -------------------------------------------------------------------------------- /forms/flavours_packaging_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/forms/flavours_packaging_form.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/index.php -------------------------------------------------------------------------------- /ingredient/flavours_ingredient.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/ingredient/flavours_ingredient.class.php -------------------------------------------------------------------------------- /ingredient/flavours_ingredient_customlang.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/ingredient/flavours_ingredient_customlang.class.php -------------------------------------------------------------------------------- /ingredient/flavours_ingredient_lang.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/ingredient/flavours_ingredient_lang.class.php -------------------------------------------------------------------------------- /ingredient/flavours_ingredient_plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/ingredient/flavours_ingredient_plugin.class.php -------------------------------------------------------------------------------- /ingredient/flavours_ingredient_setting.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/ingredient/flavours_ingredient_setting.class.php -------------------------------------------------------------------------------- /lang/ca/local_flavours.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/lang/ca/local_flavours.php -------------------------------------------------------------------------------- /lang/en/local_flavours.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/lang/en/local_flavours.php -------------------------------------------------------------------------------- /lang/es/local_flavours.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/lang/es/local_flavours.php -------------------------------------------------------------------------------- /lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/lib.php -------------------------------------------------------------------------------- /module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/module.js -------------------------------------------------------------------------------- /pix/check0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/pix/check0.gif -------------------------------------------------------------------------------- /pix/check1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/pix/check1.gif -------------------------------------------------------------------------------- /pix/check2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/pix/check2.gif -------------------------------------------------------------------------------- /renderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/renderer.php -------------------------------------------------------------------------------- /settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/settings.php -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/styles.css -------------------------------------------------------------------------------- /version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmonllao/moodle-local_flavours/HEAD/version.php --------------------------------------------------------------------------------