ORIENT/modules/backend/traits/WidgetMaker.php

40 lines
1.0 KiB
PHP
Raw Normal View History

2014-05-14 13:24:20 +00:00
<?php namespace Backend\Traits;
use Lang;
2014-05-14 13:24:20 +00:00
use Backend\Classes\WidgetManager;
use System\Classes\SystemException;
/**
* Config Maker Trait
*
* Adds widget based methods to a controller class, or a class that contains a
* $controller property referencing a controller.
*
* @package october\backend
* @author Alexey Bobkov, Samuel Georges
*/
trait WidgetMaker
{
/**
* Makes a widget object with the supplied configuration file.
* @param string $class Widget class name
* @param array $configuration An array of config.
* @return WidgetBase The widget object
2014-05-14 13:24:20 +00:00
*/
public function makeWidget($class, $configuration = [])
2014-05-14 13:24:20 +00:00
{
$controller = property_exists($this, 'controller') && $this->controller
? $this->controller
: $this;
2014-05-14 13:24:20 +00:00
if (!class_exists($class)) {
throw new SystemException(Lang::get('backend::lang.widget.not_registered', [
'name' => $class
]));
}
return new $class($controller, $configuration);
2014-05-14 13:24:20 +00:00
}
2014-10-10 22:07:30 +00:00
}