├── .github └── workflows │ └── ci.yml ├── .gitignore ├── README.txt ├── amd ├── build │ ├── codemirror.min.js │ ├── codemirror.min.js.map │ ├── jquery.dataTables.min.js │ ├── jquery.dataTables.min.js.map │ ├── jquery.tablesorter.min.js │ ├── jquery.tablesorter.min.js.map │ ├── main.min.js │ ├── main.min.js.map │ ├── sql.min.js │ └── sql.min.js.map └── src │ ├── codemirror.js │ ├── jquery.dataTables.js │ ├── jquery.tablesorter.js │ ├── main.js │ └── sql.js ├── block_configurable_reports.php ├── classes ├── check │ └── sql_execution.php ├── external.php ├── github.php └── privacy │ └── provider.php ├── component.class.php ├── components ├── calcs │ ├── average │ │ ├── form.php │ │ └── plugin.class.php │ ├── component.class.php │ ├── max │ │ ├── form.php │ │ └── plugin.class.php │ ├── min │ │ ├── form.php │ │ └── plugin.class.php │ ├── percent │ │ ├── form.php │ │ └── plugin.class.php │ └── sum │ │ ├── form.php │ │ └── plugin.class.php ├── cohorts │ └── plugin.class.php ├── columns │ ├── categoryfield │ │ ├── form.php │ │ └── plugin.class.php │ ├── component.class.php │ ├── coursefield │ │ ├── form.php │ │ └── plugin.class.php │ ├── coursestats │ │ ├── form.php │ │ └── plugin.class.php │ ├── currentuserfinalgrade │ │ ├── form.php │ │ └── plugin.class.php │ ├── date │ │ ├── form.php │ │ └── plugin.class.php │ ├── finalgradeincurrentcourse │ │ ├── form.php │ │ └── plugin.class.php │ ├── form.php │ ├── reportcolumn │ │ ├── form.php │ │ └── plugin.class.php │ ├── roleusersn │ │ ├── form.php │ │ └── plugin.class.php │ ├── usercompletion │ │ ├── form.php │ │ └── plugin.class.php │ ├── userfield │ │ ├── form.php │ │ └── plugin.class.php │ ├── usermodactions │ │ ├── form.php │ │ └── plugin.class.php │ ├── usermodoutline │ │ ├── form.php │ │ └── plugin.class.php │ └── userstats │ │ ├── form.php │ │ └── plugin.class.php ├── competencyframeworks │ └── plugin.class.php ├── competencytemplates │ └── plugin.class.php ├── conditions │ ├── ccoursefield │ │ ├── form.php │ │ └── plugin.class.php │ ├── component.class.php │ ├── coursecategory │ │ ├── form.php │ │ └── plugin.class.php │ ├── coursechild │ │ ├── form.php │ │ └── plugin.class.php │ ├── courseparent │ │ ├── form.php │ │ └── plugin.class.php │ ├── currentreportcourse │ │ └── plugin.class.php │ ├── currentuser │ │ └── plugin.class.php │ ├── currentusercourses │ │ └── plugin.class.php │ ├── cuserfield │ │ ├── form.php │ │ └── plugin.class.php │ ├── form.php │ ├── parentcategory │ │ ├── form.php │ │ └── plugin.class.php │ ├── usersincohorts │ │ ├── form.php │ │ └── plugin.class.php │ └── usersincurrentcourse │ │ ├── form.php │ │ └── plugin.class.php ├── customsql │ ├── component.class.php │ └── form.php ├── filters │ ├── categories │ │ └── plugin.class.php │ ├── component.class.php │ ├── coursecategories │ │ └── plugin.class.php │ ├── coursemodules │ │ └── plugin.class.php │ ├── courses │ │ └── plugin.class.php │ ├── enrolledstudents │ │ └── plugin.class.php │ ├── fcoursefield │ │ ├── form.php │ │ └── plugin.class.php │ ├── fsearchuserfield │ │ ├── form.php │ │ └── plugin.class.php │ ├── fuserfield │ │ ├── form.php │ │ └── plugin.class.php │ ├── role │ │ └── plugin.class.php │ ├── searchtext │ │ ├── form.php │ │ └── plugin.class.php │ ├── semester │ │ └── plugin.class.php │ ├── startendtime │ │ └── plugin.class.php │ ├── subcategories │ │ └── plugin.class.php │ ├── user │ │ └── plugin.class.php │ ├── users │ │ └── plugin.class.php │ ├── yearhebrew │ │ └── plugin.class.php │ └── yearnumeric │ │ └── plugin.class.php ├── ordering │ ├── categoryfieldorder │ │ ├── form.php │ │ └── plugin.class.php │ ├── component.class.php │ ├── coursefieldorder │ │ ├── form.php │ │ └── plugin.class.php │ └── userfieldorder │ │ ├── form.php │ │ └── plugin.class.php ├── permissions │ ├── anyone │ │ └── plugin.class.php │ ├── component.class.php │ ├── form.php │ ├── puserfield │ │ ├── form.php │ │ └── plugin.class.php │ ├── reportscapabilities │ │ └── plugin.class.php │ ├── roleincourse │ │ ├── form.php │ │ └── plugin.class.php │ └── usersincoursereport │ │ └── plugin.class.php ├── plot │ ├── bar │ │ ├── form.php │ │ ├── graph.php │ │ └── plugin.class.php │ ├── component.class.php │ ├── line │ │ ├── form.php │ │ ├── graph.php │ │ └── plugin.class.php │ └── pie │ │ ├── form.php │ │ ├── graph.php │ │ └── plugin.class.php ├── template │ ├── component.class.php │ └── form.php └── timeline │ ├── component.class.php │ └── form.php ├── composer.json ├── db ├── access.php ├── install.xml ├── services.php └── upgrade.php ├── edit_form.php ├── editcomp.php ├── editplugin.php ├── editreport.php ├── editreport_form.php ├── environment.xml ├── export.php ├── export ├── csv │ ├── export.php │ └── pix.gif ├── json │ ├── export.php │ └── pix.gif ├── ods │ ├── export.php │ └── pix.gif ├── slk │ ├── export.php │ └── pix.gif └── xls │ ├── export.php │ └── pix.gif ├── filter_form.php ├── get_remote_report.php ├── import_form.php ├── js └── configurable_reports.js ├── lang └── en │ └── block_configurable_reports.php ├── lib.php ├── lib ├── Fonts │ ├── GeosansLight.ttf │ ├── MankSans.ttf │ └── tahoma.ttf ├── pChart │ ├── pChart.class.php │ └── pData.class.php └── pChart2 │ ├── LICENSE │ ├── README.md │ ├── change.log │ ├── class │ ├── Barcodes │ │ ├── Aztec │ │ │ ├── Binary.php │ │ │ ├── Dynamic.php │ │ │ ├── Encoder.php │ │ │ ├── ReedSolomon.php │ │ │ └── Token.php │ │ ├── DMTX │ │ │ └── Encoder.php │ │ ├── Linear │ │ │ ├── Codabar.php │ │ │ ├── Code11.php │ │ │ ├── Code128.php │ │ │ ├── Code39.php │ │ │ ├── Code93.php │ │ │ ├── Eanext.php │ │ │ ├── IMB.php │ │ │ ├── ITF.php │ │ │ ├── MSI.php │ │ │ ├── Pharmacode.php │ │ │ ├── Postnet.php │ │ │ ├── Rms4cc.php │ │ │ ├── UPC.php │ │ │ └── b2of5.php │ │ ├── PDF417 │ │ │ ├── Codes.php │ │ │ ├── Encoder.php │ │ │ ├── EncoderByte.php │ │ │ ├── EncoderNumber.php │ │ │ ├── EncoderText.php │ │ │ └── ReedSolomon.php │ │ ├── QRCode │ │ │ ├── Encoder.php │ │ │ ├── Frame.php │ │ │ ├── Mask.php │ │ │ └── ReedSolomon.php │ │ └── pConf.php │ ├── pBarcodes1D.php │ ├── pBarcodes2D.php │ ├── pBubble.php │ ├── pCharts.php │ ├── pColor.php │ ├── pColorGradient.php │ ├── pData.php │ ├── pDraw.php │ ├── pException.php │ ├── pIndicator.php │ ├── pPie.php │ ├── pPyramid.php │ ├── pRadar.php │ ├── pScatter.php │ ├── pSpring.php │ ├── pStock.php │ └── pSurface.php │ ├── composer.json │ ├── fonts │ ├── Abel-Regular.ttf │ ├── Cairo-Regular.ttf │ ├── Dosis-Light.ttf │ ├── Gayathri-Regular.ttf │ ├── PressStart2P-Regular.ttf │ └── Signika-Regular.ttf │ └── readme.txt ├── list_reports_in_category.php ├── locallib.php ├── managereport.php ├── pix ├── asc.gif ├── datatable │ ├── back_disabled.png │ ├── back_enabled.png │ ├── back_enabled_hover.png │ ├── forward_disabled.png │ ├── forward_enabled.png │ ├── forward_enabled_hover.png │ ├── sort_asc.png │ ├── sort_asc_disabled.png │ ├── sort_both.png │ ├── sort_desc.png │ └── sort_desc_disabled.png ├── desc.gif ├── normal.gif └── print.png ├── plugin.class.php ├── readme_moodle.txt ├── report.class.php ├── reports ├── categories │ └── report.class.php ├── courses │ └── report.class.php ├── evalwise.class.php ├── sql │ └── report.class.php ├── timeline │ └── report.class.php └── users │ └── report.class.php ├── repository.php ├── send_emails.php ├── settings.php ├── styles.css ├── tabs.php ├── thirdpartylibs.xml ├── version.php └── viewreport.php /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/README.txt -------------------------------------------------------------------------------- /amd/build/codemirror.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/amd/build/codemirror.min.js -------------------------------------------------------------------------------- /amd/build/codemirror.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/amd/build/codemirror.min.js.map -------------------------------------------------------------------------------- /amd/build/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/amd/build/jquery.dataTables.min.js -------------------------------------------------------------------------------- /amd/build/jquery.dataTables.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/amd/build/jquery.dataTables.min.js.map -------------------------------------------------------------------------------- /amd/build/jquery.tablesorter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/amd/build/jquery.tablesorter.min.js -------------------------------------------------------------------------------- /amd/build/jquery.tablesorter.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/amd/build/jquery.tablesorter.min.js.map -------------------------------------------------------------------------------- /amd/build/main.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/amd/build/main.min.js -------------------------------------------------------------------------------- /amd/build/main.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/amd/build/main.min.js.map -------------------------------------------------------------------------------- /amd/build/sql.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/amd/build/sql.min.js -------------------------------------------------------------------------------- /amd/build/sql.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/amd/build/sql.min.js.map -------------------------------------------------------------------------------- /amd/src/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/amd/src/codemirror.js -------------------------------------------------------------------------------- /amd/src/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/amd/src/jquery.dataTables.js -------------------------------------------------------------------------------- /amd/src/jquery.tablesorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/amd/src/jquery.tablesorter.js -------------------------------------------------------------------------------- /amd/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/amd/src/main.js -------------------------------------------------------------------------------- /amd/src/sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/amd/src/sql.js -------------------------------------------------------------------------------- /block_configurable_reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/block_configurable_reports.php -------------------------------------------------------------------------------- /classes/check/sql_execution.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/classes/check/sql_execution.php -------------------------------------------------------------------------------- /classes/external.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/classes/external.php -------------------------------------------------------------------------------- /classes/github.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/classes/github.php -------------------------------------------------------------------------------- /classes/privacy/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/classes/privacy/provider.php -------------------------------------------------------------------------------- /component.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/component.class.php -------------------------------------------------------------------------------- /components/calcs/average/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/calcs/average/form.php -------------------------------------------------------------------------------- /components/calcs/average/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/calcs/average/plugin.class.php -------------------------------------------------------------------------------- /components/calcs/component.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/calcs/component.class.php -------------------------------------------------------------------------------- /components/calcs/max/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/calcs/max/form.php -------------------------------------------------------------------------------- /components/calcs/max/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/calcs/max/plugin.class.php -------------------------------------------------------------------------------- /components/calcs/min/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/calcs/min/form.php -------------------------------------------------------------------------------- /components/calcs/min/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/calcs/min/plugin.class.php -------------------------------------------------------------------------------- /components/calcs/percent/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/calcs/percent/form.php -------------------------------------------------------------------------------- /components/calcs/percent/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/calcs/percent/plugin.class.php -------------------------------------------------------------------------------- /components/calcs/sum/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/calcs/sum/form.php -------------------------------------------------------------------------------- /components/calcs/sum/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/calcs/sum/plugin.class.php -------------------------------------------------------------------------------- /components/cohorts/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/cohorts/plugin.class.php -------------------------------------------------------------------------------- /components/columns/categoryfield/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/categoryfield/form.php -------------------------------------------------------------------------------- /components/columns/categoryfield/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/categoryfield/plugin.class.php -------------------------------------------------------------------------------- /components/columns/component.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/component.class.php -------------------------------------------------------------------------------- /components/columns/coursefield/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/coursefield/form.php -------------------------------------------------------------------------------- /components/columns/coursefield/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/coursefield/plugin.class.php -------------------------------------------------------------------------------- /components/columns/coursestats/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/coursestats/form.php -------------------------------------------------------------------------------- /components/columns/coursestats/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/coursestats/plugin.class.php -------------------------------------------------------------------------------- /components/columns/currentuserfinalgrade/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/currentuserfinalgrade/form.php -------------------------------------------------------------------------------- /components/columns/currentuserfinalgrade/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/currentuserfinalgrade/plugin.class.php -------------------------------------------------------------------------------- /components/columns/date/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/date/form.php -------------------------------------------------------------------------------- /components/columns/date/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/date/plugin.class.php -------------------------------------------------------------------------------- /components/columns/finalgradeincurrentcourse/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/finalgradeincurrentcourse/form.php -------------------------------------------------------------------------------- /components/columns/finalgradeincurrentcourse/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/finalgradeincurrentcourse/plugin.class.php -------------------------------------------------------------------------------- /components/columns/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/form.php -------------------------------------------------------------------------------- /components/columns/reportcolumn/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/reportcolumn/form.php -------------------------------------------------------------------------------- /components/columns/reportcolumn/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/reportcolumn/plugin.class.php -------------------------------------------------------------------------------- /components/columns/roleusersn/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/roleusersn/form.php -------------------------------------------------------------------------------- /components/columns/roleusersn/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/roleusersn/plugin.class.php -------------------------------------------------------------------------------- /components/columns/usercompletion/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/usercompletion/form.php -------------------------------------------------------------------------------- /components/columns/usercompletion/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/usercompletion/plugin.class.php -------------------------------------------------------------------------------- /components/columns/userfield/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/userfield/form.php -------------------------------------------------------------------------------- /components/columns/userfield/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/userfield/plugin.class.php -------------------------------------------------------------------------------- /components/columns/usermodactions/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/usermodactions/form.php -------------------------------------------------------------------------------- /components/columns/usermodactions/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/usermodactions/plugin.class.php -------------------------------------------------------------------------------- /components/columns/usermodoutline/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/usermodoutline/form.php -------------------------------------------------------------------------------- /components/columns/usermodoutline/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/usermodoutline/plugin.class.php -------------------------------------------------------------------------------- /components/columns/userstats/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/userstats/form.php -------------------------------------------------------------------------------- /components/columns/userstats/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/columns/userstats/plugin.class.php -------------------------------------------------------------------------------- /components/competencyframeworks/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/competencyframeworks/plugin.class.php -------------------------------------------------------------------------------- /components/competencytemplates/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/competencytemplates/plugin.class.php -------------------------------------------------------------------------------- /components/conditions/ccoursefield/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/ccoursefield/form.php -------------------------------------------------------------------------------- /components/conditions/ccoursefield/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/ccoursefield/plugin.class.php -------------------------------------------------------------------------------- /components/conditions/component.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/component.class.php -------------------------------------------------------------------------------- /components/conditions/coursecategory/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/coursecategory/form.php -------------------------------------------------------------------------------- /components/conditions/coursecategory/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/coursecategory/plugin.class.php -------------------------------------------------------------------------------- /components/conditions/coursechild/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/coursechild/form.php -------------------------------------------------------------------------------- /components/conditions/coursechild/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/coursechild/plugin.class.php -------------------------------------------------------------------------------- /components/conditions/courseparent/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/courseparent/form.php -------------------------------------------------------------------------------- /components/conditions/courseparent/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/courseparent/plugin.class.php -------------------------------------------------------------------------------- /components/conditions/currentreportcourse/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/currentreportcourse/plugin.class.php -------------------------------------------------------------------------------- /components/conditions/currentuser/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/currentuser/plugin.class.php -------------------------------------------------------------------------------- /components/conditions/currentusercourses/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/currentusercourses/plugin.class.php -------------------------------------------------------------------------------- /components/conditions/cuserfield/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/cuserfield/form.php -------------------------------------------------------------------------------- /components/conditions/cuserfield/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/cuserfield/plugin.class.php -------------------------------------------------------------------------------- /components/conditions/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/form.php -------------------------------------------------------------------------------- /components/conditions/parentcategory/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/parentcategory/form.php -------------------------------------------------------------------------------- /components/conditions/parentcategory/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/parentcategory/plugin.class.php -------------------------------------------------------------------------------- /components/conditions/usersincohorts/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/usersincohorts/form.php -------------------------------------------------------------------------------- /components/conditions/usersincohorts/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/usersincohorts/plugin.class.php -------------------------------------------------------------------------------- /components/conditions/usersincurrentcourse/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/usersincurrentcourse/form.php -------------------------------------------------------------------------------- /components/conditions/usersincurrentcourse/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/conditions/usersincurrentcourse/plugin.class.php -------------------------------------------------------------------------------- /components/customsql/component.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/customsql/component.class.php -------------------------------------------------------------------------------- /components/customsql/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/customsql/form.php -------------------------------------------------------------------------------- /components/filters/categories/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/categories/plugin.class.php -------------------------------------------------------------------------------- /components/filters/component.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/component.class.php -------------------------------------------------------------------------------- /components/filters/coursecategories/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/coursecategories/plugin.class.php -------------------------------------------------------------------------------- /components/filters/coursemodules/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/coursemodules/plugin.class.php -------------------------------------------------------------------------------- /components/filters/courses/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/courses/plugin.class.php -------------------------------------------------------------------------------- /components/filters/enrolledstudents/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/enrolledstudents/plugin.class.php -------------------------------------------------------------------------------- /components/filters/fcoursefield/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/fcoursefield/form.php -------------------------------------------------------------------------------- /components/filters/fcoursefield/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/fcoursefield/plugin.class.php -------------------------------------------------------------------------------- /components/filters/fsearchuserfield/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/fsearchuserfield/form.php -------------------------------------------------------------------------------- /components/filters/fsearchuserfield/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/fsearchuserfield/plugin.class.php -------------------------------------------------------------------------------- /components/filters/fuserfield/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/fuserfield/form.php -------------------------------------------------------------------------------- /components/filters/fuserfield/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/fuserfield/plugin.class.php -------------------------------------------------------------------------------- /components/filters/role/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/role/plugin.class.php -------------------------------------------------------------------------------- /components/filters/searchtext/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/searchtext/form.php -------------------------------------------------------------------------------- /components/filters/searchtext/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/searchtext/plugin.class.php -------------------------------------------------------------------------------- /components/filters/semester/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/semester/plugin.class.php -------------------------------------------------------------------------------- /components/filters/startendtime/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/startendtime/plugin.class.php -------------------------------------------------------------------------------- /components/filters/subcategories/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/subcategories/plugin.class.php -------------------------------------------------------------------------------- /components/filters/user/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/user/plugin.class.php -------------------------------------------------------------------------------- /components/filters/users/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/users/plugin.class.php -------------------------------------------------------------------------------- /components/filters/yearhebrew/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/yearhebrew/plugin.class.php -------------------------------------------------------------------------------- /components/filters/yearnumeric/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/filters/yearnumeric/plugin.class.php -------------------------------------------------------------------------------- /components/ordering/categoryfieldorder/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/ordering/categoryfieldorder/form.php -------------------------------------------------------------------------------- /components/ordering/categoryfieldorder/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/ordering/categoryfieldorder/plugin.class.php -------------------------------------------------------------------------------- /components/ordering/component.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/ordering/component.class.php -------------------------------------------------------------------------------- /components/ordering/coursefieldorder/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/ordering/coursefieldorder/form.php -------------------------------------------------------------------------------- /components/ordering/coursefieldorder/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/ordering/coursefieldorder/plugin.class.php -------------------------------------------------------------------------------- /components/ordering/userfieldorder/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/ordering/userfieldorder/form.php -------------------------------------------------------------------------------- /components/ordering/userfieldorder/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/ordering/userfieldorder/plugin.class.php -------------------------------------------------------------------------------- /components/permissions/anyone/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/permissions/anyone/plugin.class.php -------------------------------------------------------------------------------- /components/permissions/component.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/permissions/component.class.php -------------------------------------------------------------------------------- /components/permissions/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/permissions/form.php -------------------------------------------------------------------------------- /components/permissions/puserfield/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/permissions/puserfield/form.php -------------------------------------------------------------------------------- /components/permissions/puserfield/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/permissions/puserfield/plugin.class.php -------------------------------------------------------------------------------- /components/permissions/reportscapabilities/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/permissions/reportscapabilities/plugin.class.php -------------------------------------------------------------------------------- /components/permissions/roleincourse/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/permissions/roleincourse/form.php -------------------------------------------------------------------------------- /components/permissions/roleincourse/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/permissions/roleincourse/plugin.class.php -------------------------------------------------------------------------------- /components/permissions/usersincoursereport/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/permissions/usersincoursereport/plugin.class.php -------------------------------------------------------------------------------- /components/plot/bar/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/plot/bar/form.php -------------------------------------------------------------------------------- /components/plot/bar/graph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/plot/bar/graph.php -------------------------------------------------------------------------------- /components/plot/bar/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/plot/bar/plugin.class.php -------------------------------------------------------------------------------- /components/plot/component.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/plot/component.class.php -------------------------------------------------------------------------------- /components/plot/line/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/plot/line/form.php -------------------------------------------------------------------------------- /components/plot/line/graph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/plot/line/graph.php -------------------------------------------------------------------------------- /components/plot/line/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/plot/line/plugin.class.php -------------------------------------------------------------------------------- /components/plot/pie/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/plot/pie/form.php -------------------------------------------------------------------------------- /components/plot/pie/graph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/plot/pie/graph.php -------------------------------------------------------------------------------- /components/plot/pie/plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/plot/pie/plugin.class.php -------------------------------------------------------------------------------- /components/template/component.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/template/component.class.php -------------------------------------------------------------------------------- /components/template/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/template/form.php -------------------------------------------------------------------------------- /components/timeline/component.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/timeline/component.class.php -------------------------------------------------------------------------------- /components/timeline/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/components/timeline/form.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/composer.json -------------------------------------------------------------------------------- /db/access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/db/access.php -------------------------------------------------------------------------------- /db/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/db/install.xml -------------------------------------------------------------------------------- /db/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/db/services.php -------------------------------------------------------------------------------- /db/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/db/upgrade.php -------------------------------------------------------------------------------- /edit_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/edit_form.php -------------------------------------------------------------------------------- /editcomp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/editcomp.php -------------------------------------------------------------------------------- /editplugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/editplugin.php -------------------------------------------------------------------------------- /editreport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/editreport.php -------------------------------------------------------------------------------- /editreport_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/editreport_form.php -------------------------------------------------------------------------------- /environment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/environment.xml -------------------------------------------------------------------------------- /export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/export.php -------------------------------------------------------------------------------- /export/csv/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/export/csv/export.php -------------------------------------------------------------------------------- /export/csv/pix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/export/csv/pix.gif -------------------------------------------------------------------------------- /export/json/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/export/json/export.php -------------------------------------------------------------------------------- /export/json/pix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/export/json/pix.gif -------------------------------------------------------------------------------- /export/ods/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/export/ods/export.php -------------------------------------------------------------------------------- /export/ods/pix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/export/ods/pix.gif -------------------------------------------------------------------------------- /export/slk/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/export/slk/export.php -------------------------------------------------------------------------------- /export/slk/pix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/export/slk/pix.gif -------------------------------------------------------------------------------- /export/xls/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/export/xls/export.php -------------------------------------------------------------------------------- /export/xls/pix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/export/xls/pix.gif -------------------------------------------------------------------------------- /filter_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/filter_form.php -------------------------------------------------------------------------------- /get_remote_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/get_remote_report.php -------------------------------------------------------------------------------- /import_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/import_form.php -------------------------------------------------------------------------------- /js/configurable_reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/js/configurable_reports.js -------------------------------------------------------------------------------- /lang/en/block_configurable_reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lang/en/block_configurable_reports.php -------------------------------------------------------------------------------- /lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib.php -------------------------------------------------------------------------------- /lib/Fonts/GeosansLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/Fonts/GeosansLight.ttf -------------------------------------------------------------------------------- /lib/Fonts/MankSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/Fonts/MankSans.ttf -------------------------------------------------------------------------------- /lib/Fonts/tahoma.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/Fonts/tahoma.ttf -------------------------------------------------------------------------------- /lib/pChart/pChart.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart/pChart.class.php -------------------------------------------------------------------------------- /lib/pChart/pData.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart/pData.class.php -------------------------------------------------------------------------------- /lib/pChart2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/LICENSE -------------------------------------------------------------------------------- /lib/pChart2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/README.md -------------------------------------------------------------------------------- /lib/pChart2/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/change.log -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/Aztec/Binary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/Aztec/Binary.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/Aztec/Dynamic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/Aztec/Dynamic.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/Aztec/Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/Aztec/Encoder.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/Aztec/ReedSolomon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/Aztec/ReedSolomon.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/Aztec/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/Aztec/Token.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/DMTX/Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/DMTX/Encoder.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/Linear/Codabar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/Linear/Codabar.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/Linear/Code11.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/Linear/Code11.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/Linear/Code128.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/Linear/Code128.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/Linear/Code39.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/Linear/Code39.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/Linear/Code93.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/Linear/Code93.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/Linear/Eanext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/Linear/Eanext.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/Linear/IMB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/Linear/IMB.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/Linear/ITF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/Linear/ITF.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/Linear/MSI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/Linear/MSI.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/Linear/Pharmacode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/Linear/Pharmacode.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/Linear/Postnet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/Linear/Postnet.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/Linear/Rms4cc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/Linear/Rms4cc.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/Linear/UPC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/Linear/UPC.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/Linear/b2of5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/Linear/b2of5.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/PDF417/Codes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/PDF417/Codes.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/PDF417/Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/PDF417/Encoder.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/PDF417/EncoderByte.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/PDF417/EncoderByte.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/PDF417/EncoderNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/PDF417/EncoderNumber.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/PDF417/EncoderText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/PDF417/EncoderText.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/PDF417/ReedSolomon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/PDF417/ReedSolomon.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/QRCode/Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/QRCode/Encoder.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/QRCode/Frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/QRCode/Frame.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/QRCode/Mask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/QRCode/Mask.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/QRCode/ReedSolomon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/QRCode/ReedSolomon.php -------------------------------------------------------------------------------- /lib/pChart2/class/Barcodes/pConf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/Barcodes/pConf.php -------------------------------------------------------------------------------- /lib/pChart2/class/pBarcodes1D.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/pBarcodes1D.php -------------------------------------------------------------------------------- /lib/pChart2/class/pBarcodes2D.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/pBarcodes2D.php -------------------------------------------------------------------------------- /lib/pChart2/class/pBubble.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/pBubble.php -------------------------------------------------------------------------------- /lib/pChart2/class/pCharts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/pCharts.php -------------------------------------------------------------------------------- /lib/pChart2/class/pColor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/pColor.php -------------------------------------------------------------------------------- /lib/pChart2/class/pColorGradient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/pColorGradient.php -------------------------------------------------------------------------------- /lib/pChart2/class/pData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/pData.php -------------------------------------------------------------------------------- /lib/pChart2/class/pDraw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/pDraw.php -------------------------------------------------------------------------------- /lib/pChart2/class/pException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/pException.php -------------------------------------------------------------------------------- /lib/pChart2/class/pIndicator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/pIndicator.php -------------------------------------------------------------------------------- /lib/pChart2/class/pPie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/pPie.php -------------------------------------------------------------------------------- /lib/pChart2/class/pPyramid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/pPyramid.php -------------------------------------------------------------------------------- /lib/pChart2/class/pRadar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/pRadar.php -------------------------------------------------------------------------------- /lib/pChart2/class/pScatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/pScatter.php -------------------------------------------------------------------------------- /lib/pChart2/class/pSpring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/pSpring.php -------------------------------------------------------------------------------- /lib/pChart2/class/pStock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/pStock.php -------------------------------------------------------------------------------- /lib/pChart2/class/pSurface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/class/pSurface.php -------------------------------------------------------------------------------- /lib/pChart2/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/composer.json -------------------------------------------------------------------------------- /lib/pChart2/fonts/Abel-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/fonts/Abel-Regular.ttf -------------------------------------------------------------------------------- /lib/pChart2/fonts/Cairo-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/fonts/Cairo-Regular.ttf -------------------------------------------------------------------------------- /lib/pChart2/fonts/Dosis-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/fonts/Dosis-Light.ttf -------------------------------------------------------------------------------- /lib/pChart2/fonts/Gayathri-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/fonts/Gayathri-Regular.ttf -------------------------------------------------------------------------------- /lib/pChart2/fonts/PressStart2P-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/fonts/PressStart2P-Regular.ttf -------------------------------------------------------------------------------- /lib/pChart2/fonts/Signika-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/fonts/Signika-Regular.ttf -------------------------------------------------------------------------------- /lib/pChart2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/lib/pChart2/readme.txt -------------------------------------------------------------------------------- /list_reports_in_category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/list_reports_in_category.php -------------------------------------------------------------------------------- /locallib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/locallib.php -------------------------------------------------------------------------------- /managereport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/managereport.php -------------------------------------------------------------------------------- /pix/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/pix/asc.gif -------------------------------------------------------------------------------- /pix/datatable/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/pix/datatable/back_disabled.png -------------------------------------------------------------------------------- /pix/datatable/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/pix/datatable/back_enabled.png -------------------------------------------------------------------------------- /pix/datatable/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/pix/datatable/back_enabled_hover.png -------------------------------------------------------------------------------- /pix/datatable/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/pix/datatable/forward_disabled.png -------------------------------------------------------------------------------- /pix/datatable/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/pix/datatable/forward_enabled.png -------------------------------------------------------------------------------- /pix/datatable/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/pix/datatable/forward_enabled_hover.png -------------------------------------------------------------------------------- /pix/datatable/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/pix/datatable/sort_asc.png -------------------------------------------------------------------------------- /pix/datatable/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/pix/datatable/sort_asc_disabled.png -------------------------------------------------------------------------------- /pix/datatable/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/pix/datatable/sort_both.png -------------------------------------------------------------------------------- /pix/datatable/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/pix/datatable/sort_desc.png -------------------------------------------------------------------------------- /pix/datatable/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/pix/datatable/sort_desc_disabled.png -------------------------------------------------------------------------------- /pix/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/pix/desc.gif -------------------------------------------------------------------------------- /pix/normal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/pix/normal.gif -------------------------------------------------------------------------------- /pix/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/pix/print.png -------------------------------------------------------------------------------- /plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/plugin.class.php -------------------------------------------------------------------------------- /readme_moodle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/readme_moodle.txt -------------------------------------------------------------------------------- /report.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/report.class.php -------------------------------------------------------------------------------- /reports/categories/report.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/reports/categories/report.class.php -------------------------------------------------------------------------------- /reports/courses/report.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/reports/courses/report.class.php -------------------------------------------------------------------------------- /reports/evalwise.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/reports/evalwise.class.php -------------------------------------------------------------------------------- /reports/sql/report.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/reports/sql/report.class.php -------------------------------------------------------------------------------- /reports/timeline/report.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/reports/timeline/report.class.php -------------------------------------------------------------------------------- /reports/users/report.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/reports/users/report.class.php -------------------------------------------------------------------------------- /repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/repository.php -------------------------------------------------------------------------------- /send_emails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/send_emails.php -------------------------------------------------------------------------------- /settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/settings.php -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/styles.css -------------------------------------------------------------------------------- /tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/tabs.php -------------------------------------------------------------------------------- /thirdpartylibs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/thirdpartylibs.xml -------------------------------------------------------------------------------- /version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/version.php -------------------------------------------------------------------------------- /viewreport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleyva/moodle-block_configurablereports/HEAD/viewreport.php --------------------------------------------------------------------------------