コード例 #1
0
ファイル: Dispatcher.php プロジェクト: umisoft/umi.framework
 /**
  * Возвращает информацию о контексте вызова виджета.
  * @param string $widgetUri путь виджета
  * @throws RuntimeException если контекст не существует
  * @return array
  */
 protected function resolveWidgetContext(&$widgetUri)
 {
     if (strpos($widgetUri, self::WIDGET_URI_SEPARATOR) !== 0) {
         if (!$this->currentContext) {
             throw new RuntimeException($this->translate('Context for executing widget "{widget}" is unknown.', ['widget' => $widgetUri]));
         }
         $widgetUri = self::WIDGET_URI_SEPARATOR . $widgetUri;
         return [$this->currentContext->getComponent(), clone $this->currentContext->getCallStack(), $this->currentContext->getBaseUrl()];
     }
     return [$this->getInitialComponent(), $this->createCallStack(), ''];
 }