birzha/modules/backend/classes/ReportWidgetBase.php

21 lines
472 B
PHP
Raw Normal View History

2014-05-14 13:24:20 +00:00
<?php namespace Backend\Classes;
/**
* Report Widget base class
* Report widgets are used inside the ReportContainer.
*
* @package october\backend
* @author Alexey Bobkov, Samuel Georges
*/
class ReportWidgetBase extends WidgetBase
{
use \System\Traits\PropertyContainer;
public function __construct($controller, $properties = [])
{
$this->properties = $this->validateProperties($properties);
parent::__construct($controller);
}
2014-10-10 21:12:50 +00:00
}