├── LICENSE.md ├── README.md ├── assign.php ├── block_analytics_graphs.php ├── classes ├── event │ ├── block_analytics_graphs_event_send_email.php │ └── block_analytics_graphs_event_view_graph.php └── privacy │ └── provider.php ├── composer.json ├── db ├── access.php ├── install.xml └── upgrade.php ├── edit_form.php ├── email.php ├── externalref ├── export-csv-master │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── export-csv.js │ ├── manifest.json │ └── package.json ├── exporting.js ├── highcharts-3d.js ├── highcharts-more.js ├── highcharts.js ├── highstock.js ├── jquery-1.12.2.js ├── jquery-3.1.1.js ├── jquery-3.1.1.min.js ├── jquery-ui-1.12.1 │ ├── AUTHORS.txt │ ├── LICENSE.txt │ ├── external │ │ └── jquery │ │ │ └── jquery.js │ ├── images │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── index.html │ ├── jquery-ui.css │ ├── jquery-ui.js │ ├── jquery-ui.min.css │ ├── jquery-ui.min.js │ ├── jquery-ui.structure.css │ ├── jquery-ui.structure.min.css │ ├── jquery-ui.theme.css │ ├── jquery-ui.theme.min.css │ └── package.json └── no-data-to-display.js ├── grades_chart.php ├── graph_submission.php ├── graphresourcestartup.php ├── graphresourceurl.php ├── groupjavascript.php ├── highslide ├── graphics │ ├── close.png │ ├── closeX.png │ ├── controlbar-black-border.gif │ ├── controlbar-text-buttons.png │ ├── controlbar-white-small.gif │ ├── controlbar-white.gif │ ├── controlbar2.gif │ ├── controlbar3.gif │ ├── controlbar4-hover.gif │ ├── controlbar4.gif │ ├── fullexpand.gif │ ├── geckodimmer.png │ ├── icon.gif │ ├── loader.gif │ ├── loader.white.gif │ ├── outlines │ │ ├── Outlines.psd │ │ ├── beveled.png │ │ ├── drop-shadow.png │ │ ├── glossy-dark.png │ │ ├── outer-glow.png │ │ ├── rounded-black.png │ │ └── rounded-white.png │ ├── resize.gif │ ├── scrollarrows.png │ ├── zoomin.cur │ └── zoomout.cur ├── highslide-full.js ├── highslide-full.min.js ├── highslide-full.packed.js ├── highslide-ie6.css ├── highslide-with-gallery.js ├── highslide-with-gallery.min.js ├── highslide-with-gallery.packed.js ├── highslide-with-html.js ├── highslide-with-html.min.js ├── highslide-with-html.packed.js ├── highslide.css ├── highslide.js ├── highslide.min.js └── highslide.packed.js ├── hits.php ├── hotpot.php ├── images ├── exclamation_sign.png └── warning-attention-road-sign-exclamation-mark.png ├── javascriptfunctions.php ├── lang ├── en │ └── block_analytics_graphs.php ├── pt_br │ └── block_analytics_graphs.php └── zh_cn │ └── block_analytics_graphs.php ├── lib.php ├── query_grades.php ├── query_messages.php ├── query_resources_access.php ├── quiz.php ├── settings.php ├── thirdpartylibs.xml ├── timeaccesseschart.php ├── turnitin.php └── version.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/README.md -------------------------------------------------------------------------------- /assign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/assign.php -------------------------------------------------------------------------------- /block_analytics_graphs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/block_analytics_graphs.php -------------------------------------------------------------------------------- /classes/event/block_analytics_graphs_event_send_email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/classes/event/block_analytics_graphs_event_send_email.php -------------------------------------------------------------------------------- /classes/event/block_analytics_graphs_event_view_graph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/classes/event/block_analytics_graphs_event_view_graph.php -------------------------------------------------------------------------------- /classes/privacy/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/classes/privacy/provider.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/composer.json -------------------------------------------------------------------------------- /db/access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/db/access.php -------------------------------------------------------------------------------- /db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/db/install.xml -------------------------------------------------------------------------------- /db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/db/upgrade.php -------------------------------------------------------------------------------- /edit_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/edit_form.php -------------------------------------------------------------------------------- /email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/email.php -------------------------------------------------------------------------------- /externalref/export-csv-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/export-csv-master/LICENSE -------------------------------------------------------------------------------- /externalref/export-csv-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/export-csv-master/README.md -------------------------------------------------------------------------------- /externalref/export-csv-master/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/export-csv-master/bower.json -------------------------------------------------------------------------------- /externalref/export-csv-master/export-csv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/export-csv-master/export-csv.js -------------------------------------------------------------------------------- /externalref/export-csv-master/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/export-csv-master/manifest.json -------------------------------------------------------------------------------- /externalref/export-csv-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/export-csv-master/package.json -------------------------------------------------------------------------------- /externalref/exporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/exporting.js -------------------------------------------------------------------------------- /externalref/highcharts-3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/highcharts-3d.js -------------------------------------------------------------------------------- /externalref/highcharts-more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/highcharts-more.js -------------------------------------------------------------------------------- /externalref/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/highcharts.js -------------------------------------------------------------------------------- /externalref/highstock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/highstock.js -------------------------------------------------------------------------------- /externalref/jquery-1.12.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-1.12.2.js -------------------------------------------------------------------------------- /externalref/jquery-3.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-3.1.1.js -------------------------------------------------------------------------------- /externalref/jquery-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-3.1.1.min.js -------------------------------------------------------------------------------- /externalref/jquery-ui-1.12.1/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-ui-1.12.1/AUTHORS.txt -------------------------------------------------------------------------------- /externalref/jquery-ui-1.12.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-ui-1.12.1/LICENSE.txt -------------------------------------------------------------------------------- /externalref/jquery-ui-1.12.1/external/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-ui-1.12.1/external/jquery/jquery.js -------------------------------------------------------------------------------- /externalref/jquery-ui-1.12.1/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-ui-1.12.1/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /externalref/jquery-ui-1.12.1/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-ui-1.12.1/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /externalref/jquery-ui-1.12.1/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-ui-1.12.1/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /externalref/jquery-ui-1.12.1/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-ui-1.12.1/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /externalref/jquery-ui-1.12.1/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-ui-1.12.1/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /externalref/jquery-ui-1.12.1/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-ui-1.12.1/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /externalref/jquery-ui-1.12.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-ui-1.12.1/index.html -------------------------------------------------------------------------------- /externalref/jquery-ui-1.12.1/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-ui-1.12.1/jquery-ui.css -------------------------------------------------------------------------------- /externalref/jquery-ui-1.12.1/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-ui-1.12.1/jquery-ui.js -------------------------------------------------------------------------------- /externalref/jquery-ui-1.12.1/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-ui-1.12.1/jquery-ui.min.css -------------------------------------------------------------------------------- /externalref/jquery-ui-1.12.1/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-ui-1.12.1/jquery-ui.min.js -------------------------------------------------------------------------------- /externalref/jquery-ui-1.12.1/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-ui-1.12.1/jquery-ui.structure.css -------------------------------------------------------------------------------- /externalref/jquery-ui-1.12.1/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-ui-1.12.1/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /externalref/jquery-ui-1.12.1/jquery-ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-ui-1.12.1/jquery-ui.theme.css -------------------------------------------------------------------------------- /externalref/jquery-ui-1.12.1/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-ui-1.12.1/jquery-ui.theme.min.css -------------------------------------------------------------------------------- /externalref/jquery-ui-1.12.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/jquery-ui-1.12.1/package.json -------------------------------------------------------------------------------- /externalref/no-data-to-display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/externalref/no-data-to-display.js -------------------------------------------------------------------------------- /grades_chart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/grades_chart.php -------------------------------------------------------------------------------- /graph_submission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/graph_submission.php -------------------------------------------------------------------------------- /graphresourcestartup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/graphresourcestartup.php -------------------------------------------------------------------------------- /graphresourceurl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/graphresourceurl.php -------------------------------------------------------------------------------- /groupjavascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/groupjavascript.php -------------------------------------------------------------------------------- /highslide/graphics/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/close.png -------------------------------------------------------------------------------- /highslide/graphics/closeX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/closeX.png -------------------------------------------------------------------------------- /highslide/graphics/controlbar-black-border.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/controlbar-black-border.gif -------------------------------------------------------------------------------- /highslide/graphics/controlbar-text-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/controlbar-text-buttons.png -------------------------------------------------------------------------------- /highslide/graphics/controlbar-white-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/controlbar-white-small.gif -------------------------------------------------------------------------------- /highslide/graphics/controlbar-white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/controlbar-white.gif -------------------------------------------------------------------------------- /highslide/graphics/controlbar2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/controlbar2.gif -------------------------------------------------------------------------------- /highslide/graphics/controlbar3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/controlbar3.gif -------------------------------------------------------------------------------- /highslide/graphics/controlbar4-hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/controlbar4-hover.gif -------------------------------------------------------------------------------- /highslide/graphics/controlbar4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/controlbar4.gif -------------------------------------------------------------------------------- /highslide/graphics/fullexpand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/fullexpand.gif -------------------------------------------------------------------------------- /highslide/graphics/geckodimmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/geckodimmer.png -------------------------------------------------------------------------------- /highslide/graphics/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/icon.gif -------------------------------------------------------------------------------- /highslide/graphics/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/loader.gif -------------------------------------------------------------------------------- /highslide/graphics/loader.white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/loader.white.gif -------------------------------------------------------------------------------- /highslide/graphics/outlines/Outlines.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/outlines/Outlines.psd -------------------------------------------------------------------------------- /highslide/graphics/outlines/beveled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/outlines/beveled.png -------------------------------------------------------------------------------- /highslide/graphics/outlines/drop-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/outlines/drop-shadow.png -------------------------------------------------------------------------------- /highslide/graphics/outlines/glossy-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/outlines/glossy-dark.png -------------------------------------------------------------------------------- /highslide/graphics/outlines/outer-glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/outlines/outer-glow.png -------------------------------------------------------------------------------- /highslide/graphics/outlines/rounded-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/outlines/rounded-black.png -------------------------------------------------------------------------------- /highslide/graphics/outlines/rounded-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/outlines/rounded-white.png -------------------------------------------------------------------------------- /highslide/graphics/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/resize.gif -------------------------------------------------------------------------------- /highslide/graphics/scrollarrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/scrollarrows.png -------------------------------------------------------------------------------- /highslide/graphics/zoomin.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/zoomin.cur -------------------------------------------------------------------------------- /highslide/graphics/zoomout.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/graphics/zoomout.cur -------------------------------------------------------------------------------- /highslide/highslide-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/highslide-full.js -------------------------------------------------------------------------------- /highslide/highslide-full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/highslide-full.min.js -------------------------------------------------------------------------------- /highslide/highslide-full.packed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/highslide-full.packed.js -------------------------------------------------------------------------------- /highslide/highslide-ie6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/highslide-ie6.css -------------------------------------------------------------------------------- /highslide/highslide-with-gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/highslide-with-gallery.js -------------------------------------------------------------------------------- /highslide/highslide-with-gallery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/highslide-with-gallery.min.js -------------------------------------------------------------------------------- /highslide/highslide-with-gallery.packed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/highslide-with-gallery.packed.js -------------------------------------------------------------------------------- /highslide/highslide-with-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/highslide-with-html.js -------------------------------------------------------------------------------- /highslide/highslide-with-html.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/highslide-with-html.min.js -------------------------------------------------------------------------------- /highslide/highslide-with-html.packed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/highslide-with-html.packed.js -------------------------------------------------------------------------------- /highslide/highslide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/highslide.css -------------------------------------------------------------------------------- /highslide/highslide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/highslide.js -------------------------------------------------------------------------------- /highslide/highslide.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/highslide.min.js -------------------------------------------------------------------------------- /highslide/highslide.packed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/highslide/highslide.packed.js -------------------------------------------------------------------------------- /hits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/hits.php -------------------------------------------------------------------------------- /hotpot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/hotpot.php -------------------------------------------------------------------------------- /images/exclamation_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/images/exclamation_sign.png -------------------------------------------------------------------------------- /images/warning-attention-road-sign-exclamation-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/images/warning-attention-road-sign-exclamation-mark.png -------------------------------------------------------------------------------- /javascriptfunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/javascriptfunctions.php -------------------------------------------------------------------------------- /lang/en/block_analytics_graphs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/lang/en/block_analytics_graphs.php -------------------------------------------------------------------------------- /lang/pt_br/block_analytics_graphs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/lang/pt_br/block_analytics_graphs.php -------------------------------------------------------------------------------- /lang/zh_cn/block_analytics_graphs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/lang/zh_cn/block_analytics_graphs.php -------------------------------------------------------------------------------- /lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/lib.php -------------------------------------------------------------------------------- /query_grades.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/query_grades.php -------------------------------------------------------------------------------- /query_messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/query_messages.php -------------------------------------------------------------------------------- /query_resources_access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/query_resources_access.php -------------------------------------------------------------------------------- /quiz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/quiz.php -------------------------------------------------------------------------------- /settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/settings.php -------------------------------------------------------------------------------- /thirdpartylibs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/thirdpartylibs.xml -------------------------------------------------------------------------------- /timeaccesseschart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/timeaccesseschart.php -------------------------------------------------------------------------------- /turnitin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/turnitin.php -------------------------------------------------------------------------------- /version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloschmitt/moodle-block_analytics_graphs/HEAD/version.php --------------------------------------------------------------------------------