forked from jleyva/moodle-block_configurablereports
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bfe6976
commit 45f1938
Showing
6 changed files
with
33 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,8 +26,10 @@ | |
/** | ||
* Class component_base | ||
* | ||
* @package block_configurable_reports | ||
* @author Juan leyva <http://www.twitter.com/jleyvadelgado> | ||
* @copyright 2020 Juan Leyva <[email protected]> | ||
* @package block_configurable_reports | ||
* @author Juan leyva <http://www.twitter.com/jleyvadelgado> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
abstract class component_base { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,16 @@ | |
* @copyright 2020 Juan Leyva <[email protected]> | ||
* @package block_configurable_reports | ||
* @author Juan leyva <http://www.twitter.com/jleyvadelgado> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
|
||
/** | ||
* Class component_conditions | ||
* | ||
* @copyright 2020 Juan Leyva <[email protected]> | ||
* @package block_configurable_reports | ||
* @author Juan leyva <http://www.twitter.com/jleyvadelgado> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
class component_conditions extends component_base { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -152,4 +152,4 @@ | |
ob_clean(); // Hack to clear output and send only IMAGE data to browser. | ||
$test->Stroke(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,16 @@ | |
* @copyright 2020 Juan Leyva <[email protected]> | ||
* @package block_configurable_reports | ||
* @author Juan leyva <http://www.twitter.com/jleyvadelgado> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
|
||
/** | ||
* Class report_timeline | ||
* | ||
* @copyright 2020 Juan Leyva <[email protected]> | ||
* @package block_configurable_reports | ||
* @author Juan leyva <http://www.twitter.com/jleyvadelgado> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
class report_timeline extends report_base { | ||
|
||
|