} } else { $this->image = Yii::$app->urlManager->getBaseUrl(true) . $this->image; } } try{ $imageSize = getimagesize($this->image); } catch(\Exception $e) { $path = '/frontend/web' . StringHelper::explode($this->image, $_SERVER['HTTP_HOST'])[1]; $imageSize = getimagesize(ROOT_PATH . $path); } $this->imageWidth = $imageSize[0]; $this->imageHeight = $imageSize[1]; $this->imageType = $imageSize['mime']; $this->view->registerMetaTag(['name' => 'twitter:image', 'content' => $this->image]); $this->view->registerMetaTag(['name' => 'twitter:image:src', 'content' => $this->image]);
} } try{ $imageSize = getimagesize($this->image); } catch(\Exception $e) { $path = '/frontend/web' . StringHelper::explode($this->image, $_SERVER['HTTP_HOST'])[1]; $imageSize = getimagesize(ROOT_PATH . $path); } $this->imageWidth = $imageSize[0]; $this->imageHeight = $imageSize[1]; $this->imageType = $imageSize['mime'];
try { /* @var $widget Widget */ $config['class'] = get_called_class(); $widget = Yii::createObject($config); $out = ''; if ($widget->beforeRun()) { $result = $widget->run(); $out = $widget->afterRun($result); } } catch (\Exception $e) { // close the output buffer opened above if it has not been closed already if (ob_get_level() > 0) { ob_end_clean();
if($webConfig->findLang->title){ $this->title = ucfirst($this->context->module->lang . ' | ' . $webConfig->company); } else { $this->title = ucfirst($this->context->module->lang); } MetaTags::widget(); $this->registerJs('$(".new-box").SameHeight()', View::POS_LOAD); ?> <!--news--> <div class="section"> <div class="container fluid-md-less"> <div class="row">
{ $_obInitialLevel_ = ob_get_level(); ob_start(); ob_implicit_flush(false); extract($_params_, EXTR_OVERWRITE); try { require $_file_; return ob_get_clean(); } catch (\Exception $e) { while (ob_get_level() > $_obInitialLevel_) { if (!@ob_end_clean()) { ob_clean(); }
$this->renderers[$ext] = Yii::createObject($this->renderers[$ext]); } /* @var $renderer ViewRenderer */ $renderer = $this->renderers[$ext]; $output = $renderer->render($this, $viewFile, $params); } else { $output = $this->renderPhpFile($viewFile, $params); } $this->afterRender($viewFile, $params, $output); } array_pop($this->_viewFiles); $this->context = $oldContext;
* @throws InvalidCallException if the view cannot be resolved. * @see renderFile() */ public function render($view, $params = [], $context = null) { $viewFile = $this->findViewFile($view, $context); return $this->renderFile($viewFile, $params, $context); } /** * Finds the view file based on the given view name. * @param string $view the view name or the [path alias](guide:concept-aliases) of the view file. Please refer to [[render()]] * on how to specify this parameter.
and $this->module->id != 'frontend' and $this->module->id != 'backend' and $this->module->id != 'api'){ $view = '//' . $this->module->id . '/' . $this->id . '/' . $view; } $content = $this->getView()->render($view, $params, $this); return $this->renderContent($content); } }
$sectionsList[] = $section->findLang->name; } if(!Modules::config('wNews', 'blogMode', 0)){ return $this->render('index', [ 'dataProvider' => $dataProvider, 'sectionsList' => $sectionsList, ]); } return $this->blog($dataProvider, $sectionsList); }
$args = $this->controller->bindActionParams($this, $params); Yii::debug('Running action: ' . get_class($this->controller) . '::' . $this->actionMethod . '()', __METHOD__); if (Yii::$app->requestedParams === null) { Yii::$app->requestedParams = $args; } return call_user_func_array([$this->controller, $this->actionMethod], $args); } }
} $result = null; if ($runAction && $this->beforeAction($action)) { // run the action $result = $action->runWithParams($params); $result = $this->afterAction($action, $result); // call afterAction on modules foreach ($modules as $module) { /* @var $module Module */
$parts = $this->createController($route); if (is_array($parts)) { /* @var $controller Controller */ list($controller, $actionID) = $parts; $oldController = Yii::$app->controller; Yii::$app->controller = $controller; $result = $controller->runAction($actionID, $params); if ($oldController !== null) { Yii::$app->controller = $oldController; } return $result; }
$params = $this->catchAll; unset($params[0]); } try { Yii::debug("Route requested: '$route'", __METHOD__); $this->requestedRoute = $route; $result = $this->runAction($route, $params); if ($result instanceof Response) { return $result; } $response = $this->getResponse(); if ($result !== null) {
{ try { $this->state = self::STATE_BEFORE_REQUEST; $this->trigger(self::EVENT_BEFORE_REQUEST); $this->state = self::STATE_HANDLING_REQUEST; $response = $this->handleRequest($this->getRequest()); $this->state = self::STATE_AFTER_REQUEST; $this->trigger(self::EVENT_AFTER_REQUEST); $this->state = self::STATE_SENDING_RESPONSE; $response->send();
require(__DIR__ . '/../../common/config/main-local.php'), require(__DIR__ . '/../config/main-local.php') ); } $application = new common\yii2\web\Application($appConf); $application->run();
$_GET = [ 'language' => 'es', ];