WidgetContext::getWidgets PHP Method

getWidgets() public method

Get context widgets
public getWidgets ( ) : array
return array of IWidget
    public function getWidgets()
    {
        if ($this->widgets === NULL) {
            $this->widgets = WidgetManager::GetWidgetsByContext($this);
        }
        return $this->widgets;
    }