MDL-61657 block_myoverview: implement course images for the myoverview block

This commit is contained in:
Bas Brands
2018-04-23 23:21:06 +02:00
committed by Eloy Lafuente (stronk7)
parent 4450d19ae1
commit c8cc25caba
24 changed files with 1825 additions and 31 deletions
@@ -0,0 +1,17 @@
<?php namespace RedeyeVentures\GeoPattern\SVGElements;
class Rectangle extends Base
{
protected $tag = 'rect';
function __construct($x, $y, $width, $height, $args=array())
{
$this->elements = [
'x' => $x,
'y' => $y,
'width' => $width,
'height' => $height,
];
parent::__construct($args);
}
}