<img src="<?=$article->getImageByType('Thumbnail')?>" />
</div>
<div class="post_title">
<a href="<?php echo $article->slug ?>"><?php echo $article->title ?></a>
</div>
<div class="post_info">
<span class="time"><?php $d = new DateTime($article->publishedDate); echo $d->format("D, M Y") ?></span>
<span class="dot">•</span>
<span class="category">
<a href="<?=$article->categorie->slug?>"><?=$article->categorie->name?></a>
</span>
</div>
<div class="post_text">
<p><?php echo $article->excerpt ?></p>
</div>
<div class="post_link"><a href="<?php echo $article->slug ?>">Read More <span class="read_more_arrow"></span></a></div>
</div>
<a href="<?php echo $article->slug ?>"><?php echo $article->title ?></a>
</div>
<div class="post_info">
<span class="time"><?php $d = new DateTime($article->publishedDate); echo $d->format("D, M Y") ?></span>
<span class="dot">•</span>
<span class="category">
<a href="<?=$article->categorie->slug?>"><?=$article->categorie->name?></a>
</span>
</div>
<div class="post_text">
<p><?php echo $article->excerpt ?></p>
</div>
<div class="post_link"><a href="<?php echo $article->slug ?>">Read More <span class="read_more_arrow"></span></a></div>
{
$_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.
* @param array $params the parameters (name-value pairs) that should be made available in the view.
* @return string the rendering result.
* @throws InvalidArgumentException if the view file does not exist.
*/
public function render($view, $params = [])
{
return $this->getView()->render($view, $params, $this);
}
/**
* Renders a view file.
* @param string $file the view file to be rendered. This can be either a file path or a [path alias](guide:concept-aliases).
* @param array $params the parameters (name-value pairs) that should be made available in the view.
if($this->article){
$this->registerClientScript();
return $this->render($this->view,[
"article" => $this->article,
"wrapperClass" => $this->wrapperClass,
"postClass" => $this->postClass,
]);
}
}
public function registerClientScript(){
/*$view = $this->getView();
$view->registerCssFile("@web/common-assets/css/nivo-slider-default.css");
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();
<?php foreach ($articles as $article): ?>
<?= frontend\components\PbnPost::widget(["view"=>$postView,"article"=> $article, "wrapperClass"=>$wrapperClass, "postClass" => $postClass]) ?>
<?php endforeach ?>
{
$_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.
* @param array $params the parameters (name-value pairs) that should be made available in the view.
* @return string the rendering result.
* @throws InvalidArgumentException if the view file does not exist.
*/
public function render($view, $params = [])
{
return $this->getView()->render($view, $params, $this);
}
/**
* Renders a view file.
* @param string $file the view file to be rendered. This can be either a file path or a [path alias](guide:concept-aliases).
* @param array $params the parameters (name-value pairs) that should be made available in the view.
$this->registerClientScript();
return $this->render($this->view,[
"articles" => $this->articles,
"wrapperClass" => $this->wrapperClass,
"postClass" => $this->postClass,
"postView" => $this->postView,
]);
}
}
public function registerClientScript(){
/*$view = $this->getView();
$view->registerCssFile("@web/common-assets/css/nivo-slider-default.css");
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();
use frontend\components\PbnPost;
use frontend\components\PbnCategorieList;
use frontend\components\PbnTagList;
?>
<?= PbnPostsList::widget(["articles"=>$domain->getLastArticle(100)])?>
{
$_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.
* These parameters will not be available in the layout.
* @return string the rendering result.
* @throws InvalidArgumentException if the view file or the layout file does not exist.
*/
public function render($view, $params = [])
{
$content = $this->getView()->render($view, $params, $this);
return $this->renderContent($content);
}
/**
* Renders a static string by applying a layout.
* @param string $content the static string being rendered
}else if($landingpage = LandingPage::find()
->where(['domainId'=>$this->domain->id, 'default'=>1])
->one()){
echo $this->displayLanding($landingpage,$uid);
}else{
$this->controller->layout="//pbn";
echo $this->controller->render("index",array("domain"=>$this->domain,"articles"=>$this->domain->articles, "googlebot"=>$this->googlebot));
}
}
}
die;
}
$args = $this->controller->bindActionParams($this, $params);
Yii::debug('Running action: ' . get_class($this) . '::run()', __METHOD__);
if (Yii::$app->requestedParams === null) {
Yii::$app->requestedParams = $args;
}
if ($this->beforeRun()) {
$result = call_user_func_array([$this, 'run'], $args);
$this->afterRun();
return $result;
}
return null;
if($this->customer && $this->eshop){
$this->cart = Carts::getCart($this->customer->id, $this->eshop->id);
$this->controller->cart = $this->cart;
}
return parent::runWithParams($params);
}
public function addRecaptcha(){
if($this->customer)
CustomerRecaptcha::add($this->customer->id, $this->grecaptcharesponse);
}
}
$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.php'),
require(__DIR__ . '/../config/main-local.php')
);
$application = new yii\web\Application($config);
$application->run();
$_GET = [
'domain' => 'itsournet.org',
'slug' => '/',
'googlebot' => '',
];
$_SESSION = [
'__flash' => [],
'localisationHash' => 'dc03f139bbb6e2f7691ffb24a6f13e4744cd129470e754a68a75c88f57f9cc1c7b73f4f9cf7dec06e2078a37ca1f92fa94196bbe2fafd57231582ffedbd292df',
'googlebot' => '',
];