Piwik\Widget\WidgetsList::checkIsValidWidget PHP Метод

checkIsValidWidget() приватный Метод

private checkIsValidWidget ( WidgetConfig $widget )
$widget WidgetConfig
    private function checkIsValidWidget(WidgetConfig $widget)
    {
        if (!$widget->getModule()) {
            Development::error('No module is defined for added widget having name "' . $widget->getName());
        }
        if (!$widget->getAction()) {
            Development::error('No action is defined for added widget having name "' . $widget->getName());
        }
    }