Populair

Phalcon\Image\Exception: Installed GD does not support image/webp images
Phalcon Framework 4.1.2

Phalcon\Image\Exception: Installed GD does not support image/webp images

/var/www/html/hettapijthuis.nl/src/app/Lib/Helper/Image.php (59)
#0Phalcon\Image\Adapter\Gd->__construct(/var/www/html/hettapijthuis.nl/public/upload/801790Ø55.webp)
/var/www/html/hettapijthuis.nl/src/app/Lib/Helper/Image.php (59)
<?php
 
namespace CLSystems\PhalCMS\Lib\Helper;
 
use Phalcon\Image\Adapter\Gd;
use Phalcon\Image\Enum;
use function CLSystems\PhalCMS\Lib\debugVar;
 
class Image
{
  protected $imageUri;
  protected $imageFile;
  protected $imageThumbUri;
 
  public function __construct($imageFile)
  {
    if (strpos($imageFile, BASE_PATH . '/public/upload/') !== 0)
    {
      $imageFile = BASE_PATH . '/public/upload/' . $imageFile;
    }
 
    $this->imageFile     = $imageFile;
    $this->imageUri      = str_replace(BASE_PATH . '/public', DOMAIN, $this->imageFile);
    $this->imageThumbUri = dirname($this->imageUri) . '/thumbs';
  }
 
  public function getResize($width = null, $height = null)
  {
    if (null === $width && null === $height)
    {
      $width = 100;
    }
 
    preg_match('#^.*(\.[^.]*)$#', $this->imageFile, $matches);
    $extension = $matches[1];
    $thumbName = basename($this->imageFile, $extension) . '_' . ($width ?: 0) . 'x' . ($height ?: 0) . $extension;
    $thumbPath = dirname($this->imageFile) . '/thumbs';
 
    if (!is_file($thumbPath . '/' . $thumbName))
    {
      if (!is_dir($thumbPath))
      {
        mkdir($thumbPath, 0755, true);
      }
 
      if ($width && $height)
      {
        $master = Enum::AUTO;
      }
      elseif ($width)
      {
        $master = Enum::WIDTH;
      }
      else
      {
        $master = Enum::HEIGHT;
      }
 
      $handler = new Gd($this->imageFile);
      $handler->resize($width, $height, $master);
      $handler->save($thumbPath . '/' . $thumbName, 100);
    }
 
    return $this->imageThumbUri . '/' . $thumbName;
  }
 
  public function getUri()
  {
    return $this->imageUri;
  }
 
  public function exists()
  {
    return is_file($this->imageFile);
  }
 
  public static function loadImage($imageString, $returnFirst = true)
  {
    $imageString = trim($imageString);
    $imageList   = [];
 
    if (strpos($imageString, '[') === 0
      || strpos($imageString, '{') === 0
    )
    {
      $images = json_decode($imageString, true) ?: [];
    }
    else
    {
      $images = [$imageString];
    }
 
    if ($images)
    {
      foreach ($images as $image)
      {
        $handler = new Image($image);
 
        if ($handler->exists())
        {
          $imageList[] = $handler;
        }
      }
 
      if ($imageList)
      {
        return $returnFirst ? $imageList[0] : $imageList;
      }
    }
 
    return false;
  }
}
#1CLSystems\PhalCMS\Lib\Helper\Image->getResize(850)
/var/www/html/hettapijthuis.nl/cache/volt/Widget_FlashNews_Tmpl_Content_BlogList.volt.php (27)
<div class="blog-list">
    <?php foreach ($posts as $post) { ?>
        <article class="uk-section uk-section-small uk-padding-remove-top">
            <header>
                <h3 class="uk-margin-remove-adjacent uk-text-bold uk-margin-small-bottom">
                    <a class="uk-link-reset" href="<?= $post->link ?>">
                        <?= $post->t('title') ?>
                    </a>
                </h3>
                <p class="uk-article-meta">
                    <!--<?= CLSystems\PhalCMS\Lib\Helper\Text::_('written-on', ['date' => CLSystems\PhalCMS\Lib\Helper\Date::relative($post->createdAt)]) ?>-->
 
                    <?php $category = $post->category; ?>
                    <?php if (!empty($category)) { ?>
                        <?= CLSystems\PhalCMS\Lib\Helper\Text::_('posted-in') . ' ' ?>
                        <a href="<?= $category->link ?>">
                            <?= $category->t('title') . ' | ' ?>
                        </a>
                    <?php } ?>
                    <?= CLSystems\PhalCMS\Lib\Helper\IconSvg::render('eye') . ' ' . CLSystems\PhalCMS\Lib\Helper\Text::plural('hits',$post->hits,['hits' => $post->hits]) . '.' ?>
                </p>
            </header>
 
            <?php $image = CLSystems\PhalCMS\Lib\Helper\Image::loadImage($post->image); ?>
            <?php if (!empty($image)) { ?>
                <a href="<?= $post->link ?>">
                    <img data-src="<?= $image->getResize(850) ?>"
                         alt="<?= $this->escaper->escapeHtmlAttr(html_entity_decode($post->t('title'))) ?>" uk-img/>
                </a>
            <?php } ?>
 
            <?php $summary = trim($post->summary()); ?>
            <?php if (!empty($summary)) { ?>
                <div class="post-summary uk-text-meta uk-margin">
                    <?= $summary ?>
                </div>
            <?php } ?>
 
            <a href="<?= $post->link ?>"
               class="uk-button uk-button-default uk-button-small uk-margin">
                <?= CLSystems\PhalCMS\Lib\Helper\Text::_('read-more') ?>
            </a>
            <hr/>
        </article>
    <?php } ?>
    <?= $pagination ?>
</div>
#2unknown
#3Phalcon\Mvc\View\Engine\Volt->render(/var/www/html/hettapijthuis.nl/src/app/Widget/FlashNews/Tmpl/Content/BlogList.volt, Array([posts] => Object(Phalcon\Mvc\Model\Resultset\Simple), [pagination] => \n <nav class="uk-margin">\n <ul class="uk-pagination uk-flex-center">\n\n <li>\n <a href="/?page=1">\n <span uk-pagination-previous></span><span uk-pagination-previous></span>\n </a>\n </li>\n <li>\n <a href="/?page=4">\n <span uk-pagination-previous></span>\n </a>\n </li>\n \n <li class="uk-disabled"><span>&hellip;</span></li>\n <li>\n <a href="/?page=3">3</a>\n </li>\n <li>\n <a href="/?page=4">4</a>\n </li>\n <li class="uk-active"><span class="uk-text-emphasis"><strong>5</strong></span></li>\n <li>\n <a href="/?page=6">6</a>\n </li>\n <li>\n <a href="/?page=7">7</a>\n </li>\n <li class="uk-disabled"><span>&hellip;</span></li>\n \n <li>\n <a href="/?page=6">\n <span uk-pagination-next></span>\n </a>\n </li>\n <li>\n <a href="/?page=8">\n <span uk-pagination-next></span><span uk-pagination-next></span>\n </a>\n </li>\n \n </ul>\n </nav>\n), false)
#4Phalcon\Mvc\View->engineRender(Array([.volt] => Object(Phalcon\Mvc\View\Engine\Volt)), Content/BlogList, false, false)
#5Phalcon\Mvc\View->partial(Content/BlogList, Array([posts] => Object(Phalcon\Mvc\Model\Resultset\Simple), [pagination] => \n <nav class="uk-margin">\n <ul class="uk-pagination uk-flex-center">\n\n <li>\n <a href="/?page=1">\n <span uk-pagination-previous></span><span uk-pagination-previous></span>\n </a>\n </li>\n <li>\n <a href="/?page=4">\n <span uk-pagination-previous></span>\n </a>\n </li>\n \n <li class="uk-disabled"><span>&hellip;</span></li>\n <li>\n <a href="/?page=3">3</a>\n </li>\n <li>\n <a href="/?page=4">4</a>\n </li>\n <li class="uk-active"><span class="uk-text-emphasis"><strong>5</strong></span></li>\n <li>\n <a href="/?page=6">6</a>\n </li>\n <li>\n <a href="/?page=7">7</a>\n </li>\n <li class="uk-disabled"><span>&hellip;</span></li>\n \n <li>\n <a href="/?page=6">\n <span uk-pagination-next></span>\n </a>\n </li>\n <li>\n <a href="/?page=8">\n <span uk-pagination-next></span><span uk-pagination-next></span>\n </a>\n </li>\n \n </ul>\n </nav>\n))
#6Phalcon\Mvc\View->getPartial(Content/BlogList, Array([posts] => Object(Phalcon\Mvc\Model\Resultset\Simple), [pagination] => \n <nav class="uk-margin">\n <ul class="uk-pagination uk-flex-center">\n\n <li>\n <a href="/?page=1">\n <span uk-pagination-previous></span><span uk-pagination-previous></span>\n </a>\n </li>\n <li>\n <a href="/?page=4">\n <span uk-pagination-previous></span>\n </a>\n </li>\n \n <li class="uk-disabled"><span>&hellip;</span></li>\n <li>\n <a href="/?page=3">3</a>\n </li>\n <li>\n <a href="/?page=4">4</a>\n </li>\n <li class="uk-active"><span class="uk-text-emphasis"><strong>5</strong></span></li>\n <li>\n <a href="/?page=6">6</a>\n </li>\n <li>\n <a href="/?page=7">7</a>\n </li>\n <li class="uk-disabled"><span>&hellip;</span></li>\n \n <li>\n <a href="/?page=6">\n <span uk-pagination-next></span>\n </a>\n </li>\n <li>\n <a href="/?page=8">\n <span uk-pagination-next></span><span uk-pagination-next></span>\n </a>\n </li>\n \n </ul>\n </nav>\n))
/var/www/html/hettapijthuis.nl/src/app/Widget/FlashNews/FlashNews.php (86)
<?php
 
namespace CLSystems\PhalCMS\Widget\FlashNews;
 
use Phalcon\Paginator\Adapter\QueryBuilder as Paginator;
use CLSystems\PhalCMS\Lib\Factory;
use CLSystems\PhalCMS\Lib\Widget;
use CLSystems\PhalCMS\Lib\Mvc\Model\Post;
use CLSystems\PhalCMS\Lib\Mvc\Model\PostCategory;
 
class FlashNews extends Widget
{
    public function getContent()
    {
        $cid = $this->widget->get('params.categoryIds', []);
        $postsNum = $this->widget->get('params.postsNum', 5, 'uint');
 
        if (count($cid)) {
            $bindIds = [];
            $nested = new PostCategory;
 
            foreach ($cid as $id) {
                if ($tree = $nested->getTree((int)$id)) {
                    foreach ($tree as $node) {
                        $bindIds[] = (int)$node->id;
                    }
                }
            }
 
            if (empty($bindIds)) {
                return null;
            }
 
            $queryBuilder = Post::query()
                ->createBuilder()
                ->from(['post' => Post::class])
                ->where('post.parentId IN ({cid:array})', ['cid' => array_unique($bindIds)])
        ->andWhere('post.state = :state:', ['state' => 'P'])
        ->andWhere('post.context = :context:', ['context' => 'post']);
 
            switch ($this->widget->get('params.orderBy', 'latest')) {
                case 'random':
                    $queryBuilder->orderBy('RAND()');
                    break;
 
                case 'views':
                    $queryBuilder->orderBy('hits desc');
                    break;
 
                case 'titleAsc':
                    $queryBuilder->orderBy('title asc');
                    break;
 
                case 'titleDesc':
                    $queryBuilder->orderBy('title desc');
                    break;
 
                default:
                    $queryBuilder->orderBy('createdAt desc');
                    break;
            }
 
            // Init renderer
            $renderer = $this->getRenderer();
            $partial = 'Content/' . $this->getPartialId();
 
            if ('BlogList' === $this->widget->get('params.displayLayout', 'FlashNews')) {
                $paginator = new Paginator(
                    [
                        'builder' => $queryBuilder,
                        'limit'   => $postsNum,
                        'page'    => Factory::getService('request')->get('page', ['absint'], 0),
                    ]
                );
 
                $paginate = $paginator->paginate();
 
                if ($paginate->getTotalItems()) {
                    return $renderer->getPartial(
                        $partial,
                        [
                            'posts'      => $paginate->getItems(),
                            'pagination' => Factory::getService('view')->getPartial(
                                'Pagination/Pagination',
                                [
                                    'paginator' => $paginator,
                                ]
                            ),
                        ]
                    );
                }
            } else {
                $posts = $queryBuilder->limit($postsNum, 0)->getQuery()->execute();
 
                if ($posts->count()) {
                    return $renderer->getPartial($partial, ['posts' => $posts]);
                }
            }
        }
 
        return null;
    }
}
#7CLSystems\PhalCMS\Widget\FlashNews\FlashNews->getContent()
/var/www/html/hettapijthuis.nl/src/app/Lib/Widget.php (84)
<?php
 
namespace CLSystems\PhalCMS\Lib;
 
use CLSystems\PhalCMS\Lib\Mvc\View\ViewBase;
use CLSystems\Php\Registry;
use ReflectionClass;
 
class Widget
{
  /** @var Registry */
  protected $widget;
 
  final public function __construct(Registry $widget)
  {
    $this->widget = $widget;
    $this->onConstruct();
  }
 
  public function onConstruct()
  {
 
  }
 
  public function getTitle()
  {
    return $this->widget->get('title');
  }
 
  public function getRenderData()
  {
    return [
      'widget' => $this->widget,
    ];
  }
 
  public function getPartialId()
  {
    return $this->widget->get('params.displayLayout', $this->widget->get('manifest.name'));
  }
 
  public function getContent()
  {
    $content = $this->widget->get('params.content', null);
 
    if (null !== $content && is_string($content))
    {
      return $content;
    }
 
    return $this->getRenderer()
      ->getPartial('Content/' . $this->getPartialId(), $this->getRenderData());
  }
 
  public function getRenderer()
  {
    static $renderers = [];
    $class = get_class($this);
 
    if (isset($renderers[$class]))
    {
      return $renderers[$class];
    }
 
    $renderers[$class] = ViewBase::getInstance();
    $reflectionClass   = new ReflectionClass($this);
    $renderers[$class]->setViewsDir(
      [
        TPL_SITE_PATH . '/Tmpl/Widget',
        TPL_SITE_PATH . '/Widget',
        dirname($reflectionClass->getFileName()) . '/Tmpl/',
        TPL_SYSTEM_PATH . '/Widget/',
      ]
    );
 
    $renderers[$class]->disable();
 
    return $renderers[$class];
  }
 
  public function render($wrapper = null)
  {
    $title   = $this->getTitle();
    $content = $this->getContent();
 
    if ($title || $content)
    {
      $widgetData = [
        'widget'  => $this->widget,
        'title'   => $title,
        'content' => $content,
      ];
 
      if (null === $wrapper)
      {
        $wrapper = 'Wrapper';
      }
 
      return $this->getRenderer()
        ->getPartial('Wrapper/' . $wrapper, $widgetData);
    }
 
    return null;
  }
}
#8CLSystems\PhalCMS\Lib\Widget->render(HeadingLine)
/var/www/html/hettapijthuis.nl/src/app/Lib/Helper/Widget.php (144)
<?php
 
namespace CLSystems\PhalCMS\Lib\Helper;
 
use Phalcon\Loader;
use CLSystems\PhalCMS\Lib\Mvc\Model\Translation;
use CLSystems\PhalCMS\Lib\Widget as CmsWidget;
use CLSystems\PhalCMS\Lib\Mvc\Model\Config as ConfigModel;
use CLSystems\PhalCMS\Lib\Form\Form;
use CLSystems\PhalCMS\Lib\Form\Field;
use CLSystems\Php\Registry;
 
class Widget
{
  /** @var array */
  protected static $widgets = null;
 
  protected static function appendWidget($widgetPath, $coreWidgets)
  {
    $widgetName  = basename($widgetPath);
    $widgetClass = 'CLSystems\\PhalCMS\\Widget\\' . $widgetName . '\\' . $widgetName;
    $configFile  = $widgetPath . '/Config.php';
 
    if (class_exists($widgetClass)
      && is_file($configFile)
    )
    {
      $widgetConfig = new Registry;
      $widgetConfig->set('isCmsCore', in_array($widgetClass, $coreWidgets));
      $widgetConfig->set('manifest', $widgetConfig->parse($configFile));
      self::$widgets[$widgetClass] = $widgetConfig;
    }
  }
 
  public static function getWidgets()
  {
    if (null === self::$widgets)
    {
      self::$widgets   = [];
      $coreWidgets     = Config::get('core.widgets', []);
      $template        = Config::getTemplate()->name;
      $widgetTmplPaths = [
        APP_PATH . '/Tmpl/Site/' . $template . '/Tmpl/Widget',
        APP_PATH . '/Tmpl/Site/' . $template . '/Widget',
      ];
 
      foreach ($widgetTmplPaths as $widgetTmplPath)
      {
        if (is_dir($widgetTmplPath))
        {
          (new Loader)
            ->registerNamespaces(
              [
                'CLSystems\\PhalCMS\\Widget' => $widgetTmplPath,
              ]
            )
            ->register();
 
          foreach (FileSystem::scanDirs($widgetTmplPath) as $widgetPath)
          {
            self::appendWidget($widgetPath, $coreWidgets);
          }
        }
      }
 
      foreach (FileSystem::scanDirs(WIDGET_PATH) as $widgetPath)
      {
        self::appendWidget($widgetPath, $coreWidgets);
      }
 
      $plugins = Event::getPlugins();
 
      if (!empty($plugins['Cms']))
      {
        /** @var Registry $pluginConfig */
        foreach ($plugins['Cms'] as $pluginConfig)
        {
          $widgetPluginPath = PLUGIN_PATH . '/Cms/' . $pluginConfig->get('manifest.name') . '/Widget';
 
          if (is_dir($widgetPluginPath))
          {
            foreach (FileSystem::scanDirs($widgetPluginPath) as $widgetPath)
            {
              self::appendWidget($widgetPath, $coreWidgets);
            }
          }
        }
      }
    }
 
    return self::$widgets;
  }
 
  public static function renderPosition($position, $wrapper = null)
  {
    $results     = '';
    $widgetItems = self::getWidgetItems();
 
    if (isset($widgetItems[$position]))
    {
      foreach ($widgetItems[$position] as $widget)
      {
        $results .= self::render($widget, $wrapper);
      }
    }
 
    return $results;
  }
 
  public static function createWidget($widgetName, $params = [], $render = true, $wrapper = null)
  {
    $widgets     = self::getWidgets();
    $widgetClass = 'CLSystems\\PhalCMS\\Widget\\' . $widgetName . '\\' . $widgetName;
 
    if (!isset($widgets[$widgetClass]))
    {
      return false;
    }
 
    $widgetConfig = clone $widgets[$widgetClass];
    $widgetConfig->set('params', $widgetConfig->parse($params));
    $widgetConfig->set('id', null);
 
    if ($render)
    {
      return self::render($widgetConfig, $wrapper);
    }
 
    return $widgetConfig;
  }
 
  public static function render(Registry $widgetConfig, $wrapper = null)
  {
    $widgets     = self::getWidgets();
    $name        = $widgetConfig->get('manifest.name');
    $widgetClass = 'CLSystems\\PhalCMS\\Widget\\' . $name . '\\' . $name;
 
    if (isset($widgets[$widgetClass]))
    {
      $widget = new $widgetClass($widgetConfig);
 
      if ($widget instanceof CmsWidget)
      {
        return $widget->render($wrapper);
      }
    }
 
    return null;
  }
 
  public static function getWidgetItems()
  {
    static $widgetItems = null;
 
    if (null === $widgetItems)
    {
      $widgetItems = [];
      $widgets     = self::getWidgets();
      $entities    = ConfigModel::find(
        [
          'conditions' => 'context LIKE :context:',
          'bind'       => [
            'context' => 'cms.config.widget.item.%',
          ],
          'order'      => 'ordering ASC',
        ]
      );
 
      $translate = Language::isMultilingual() && Uri::isClient('site');
 
      foreach ($entities as $widget)
      {
        /** @var ConfigModel $widget */
        $widgetConfig = new Registry($widget->data);
        $widgetConfig->set('id', $widget->id);
        $name        = $widgetConfig->get('manifest.name');
        $widgetClass = 'CLSystems\\PhalCMS\\Widget\\' . $name . '\\' . $name;
 
        if (isset($widgets[$widgetClass]))
        {
          if ($translate)
          {
            $translations = $widget->getTranslations();
 
            if (isset($translations['data']))
            {
              $widgetConfig->merge($translations['data']);
            }
          }
 
          // Merge manifest and some global data
          $widgetConfig->merge($widgets[$widgetClass]);
          $widgetItems[$widgetConfig->get('position')][] = $widgetConfig;
        }
      }
    }
 
    return $widgetItems;
  }
 
  public static function renderForm(Registry $widgetData)
  {
    $widgetId   = $widgetData->get('id', 0, 'uint');
    $idIndex    = $widgetId ?: uniqid();
    $configForm = '<div class="widget-params">';
    $form       = new Form('FormData',
      [
        [
          'name'    => 'id',
          'type'    => 'Hidden',
          'value'   => $widgetId,
          'id'      => 'FormData-id' . $idIndex,
          'filters' => ['uint'],
        ],
        [
          'name'     => 'name',
          'type'     => 'Hidden',
          'required' => true,
          'value'    => $widgetData->get('manifest.name'),
          'id'       => 'FormData-name' . $idIndex,
          'filters'  => ['string', 'trim'],
        ],
        [
          'name'      => 'title',
          'type'      => 'Text',
          'label'     => 'title',
          'translate' => true,
          'value'     => $widgetData->get('title'),
          'id'        => 'FormData-title' . $idIndex,
          'filters'   => ['string', 'trim'],
        ],
        [
          'name'     => 'position',
          'type'     => 'Hidden',
          'required' => true,
          'value'    => $widgetData->get('position'),
          'id'       => 'FormData-position' . $idIndex,
          'filters'  => ['string', 'trim'],
        ],
      ]
    );
 
    $transParamsData = [];
 
    if ($widgetId && Language::isMultilingual())
    {
      $transData = Translation::find(
        [
          'conditions' => 'translationId LIKE :translationId:',
          'bind'       => [
            'translationId' => '%.config_data.id=' . $widgetId . '.data',
          ],
        ]
      );
 
      if ($transData->count())
      {
        $titleField = $form->getField('title');
 
        foreach ($transData as $transDatum)
        {
          $registry = new Registry($transDatum->translatedValue);
          $parts    = explode('.', $transDatum->translationId);
          $language = $parts[0];
          $titleField->setTranslationData($registry->get('title'), $language);
 
          foreach ($registry->get('params', []) as $name => $value)
          {
            $transParamsData[$name][$language] = $value;
          }
        }
      }
    }
 
    $configForm .= $form->renderFields();
 
    if ($widgetData->has('manifest.params'))
    {
      $form = new Form('FormData.params', $widgetData->get('manifest.params', []));
      $form->bind($widgetData->get('params', []), $transParamsData);
 
      foreach ($form->getFields() as $field)
      {
        /** @var Field $field */
        $field->setId($field->getId() . $idIndex);
        $configForm .= $field->render();
      }
    }
 
    $configForm .= '</div>';
 
    return $configForm;
  }
}
#9CLSystems\PhalCMS\Lib\Helper\Widget::render(Object(CLSystems\Php\Registry), HeadingLine)
/var/www/html/hettapijthuis.nl/src/app/Lib/Helper/Widget.php (103)
<?php
 
namespace CLSystems\PhalCMS\Lib\Helper;
 
use Phalcon\Loader;
use CLSystems\PhalCMS\Lib\Mvc\Model\Translation;
use CLSystems\PhalCMS\Lib\Widget as CmsWidget;
use CLSystems\PhalCMS\Lib\Mvc\Model\Config as ConfigModel;
use CLSystems\PhalCMS\Lib\Form\Form;
use CLSystems\PhalCMS\Lib\Form\Field;
use CLSystems\Php\Registry;
 
class Widget
{
  /** @var array */
  protected static $widgets = null;
 
  protected static function appendWidget($widgetPath, $coreWidgets)
  {
    $widgetName  = basename($widgetPath);
    $widgetClass = 'CLSystems\\PhalCMS\\Widget\\' . $widgetName . '\\' . $widgetName;
    $configFile  = $widgetPath . '/Config.php';
 
    if (class_exists($widgetClass)
      && is_file($configFile)
    )
    {
      $widgetConfig = new Registry;
      $widgetConfig->set('isCmsCore', in_array($widgetClass, $coreWidgets));
      $widgetConfig->set('manifest', $widgetConfig->parse($configFile));
      self::$widgets[$widgetClass] = $widgetConfig;
    }
  }
 
  public static function getWidgets()
  {
    if (null === self::$widgets)
    {
      self::$widgets   = [];
      $coreWidgets     = Config::get('core.widgets', []);
      $template        = Config::getTemplate()->name;
      $widgetTmplPaths = [
        APP_PATH . '/Tmpl/Site/' . $template . '/Tmpl/Widget',
        APP_PATH . '/Tmpl/Site/' . $template . '/Widget',
      ];
 
      foreach ($widgetTmplPaths as $widgetTmplPath)
      {
        if (is_dir($widgetTmplPath))
        {
          (new Loader)
            ->registerNamespaces(
              [
                'CLSystems\\PhalCMS\\Widget' => $widgetTmplPath,
              ]
            )
            ->register();
 
          foreach (FileSystem::scanDirs($widgetTmplPath) as $widgetPath)
          {
            self::appendWidget($widgetPath, $coreWidgets);
          }
        }
      }
 
      foreach (FileSystem::scanDirs(WIDGET_PATH) as $widgetPath)
      {
        self::appendWidget($widgetPath, $coreWidgets);
      }
 
      $plugins = Event::getPlugins();
 
      if (!empty($plugins['Cms']))
      {
        /** @var Registry $pluginConfig */
        foreach ($plugins['Cms'] as $pluginConfig)
        {
          $widgetPluginPath = PLUGIN_PATH . '/Cms/' . $pluginConfig->get('manifest.name') . '/Widget';
 
          if (is_dir($widgetPluginPath))
          {
            foreach (FileSystem::scanDirs($widgetPluginPath) as $widgetPath)
            {
              self::appendWidget($widgetPath, $coreWidgets);
            }
          }
        }
      }
    }
 
    return self::$widgets;
  }
 
  public static function renderPosition($position, $wrapper = null)
  {
    $results     = '';
    $widgetItems = self::getWidgetItems();
 
    if (isset($widgetItems[$position]))
    {
      foreach ($widgetItems[$position] as $widget)
      {
        $results .= self::render($widget, $wrapper);
      }
    }
 
    return $results;
  }
 
  public static function createWidget($widgetName, $params = [], $render = true, $wrapper = null)
  {
    $widgets     = self::getWidgets();
    $widgetClass = 'CLSystems\\PhalCMS\\Widget\\' . $widgetName . '\\' . $widgetName;
 
    if (!isset($widgets[$widgetClass]))
    {
      return false;
    }
 
    $widgetConfig = clone $widgets[$widgetClass];
    $widgetConfig->set('params', $widgetConfig->parse($params));
    $widgetConfig->set('id', null);
 
    if ($render)
    {
      return self::render($widgetConfig, $wrapper);
    }
 
    return $widgetConfig;
  }
 
  public static function render(Registry $widgetConfig, $wrapper = null)
  {
    $widgets     = self::getWidgets();
    $name        = $widgetConfig->get('manifest.name');
    $widgetClass = 'CLSystems\\PhalCMS\\Widget\\' . $name . '\\' . $name;
 
    if (isset($widgets[$widgetClass]))
    {
      $widget = new $widgetClass($widgetConfig);
 
      if ($widget instanceof CmsWidget)
      {
        return $widget->render($wrapper);
      }
    }
 
    return null;
  }
 
  public static function getWidgetItems()
  {
    static $widgetItems = null;
 
    if (null === $widgetItems)
    {
      $widgetItems = [];
      $widgets     = self::getWidgets();
      $entities    = ConfigModel::find(
        [
          'conditions' => 'context LIKE :context:',
          'bind'       => [
            'context' => 'cms.config.widget.item.%',
          ],
          'order'      => 'ordering ASC',
        ]
      );
 
      $translate = Language::isMultilingual() && Uri::isClient('site');
 
      foreach ($entities as $widget)
      {
        /** @var ConfigModel $widget */
        $widgetConfig = new Registry($widget->data);
        $widgetConfig->set('id', $widget->id);
        $name        = $widgetConfig->get('manifest.name');
        $widgetClass = 'CLSystems\\PhalCMS\\Widget\\' . $name . '\\' . $name;
 
        if (isset($widgets[$widgetClass]))
        {
          if ($translate)
          {
            $translations = $widget->getTranslations();
 
            if (isset($translations['data']))
            {
              $widgetConfig->merge($translations['data']);
            }
          }
 
          // Merge manifest and some global data
          $widgetConfig->merge($widgets[$widgetClass]);
          $widgetItems[$widgetConfig->get('position')][] = $widgetConfig;
        }
      }
    }
 
    return $widgetItems;
  }
 
  public static function renderForm(Registry $widgetData)
  {
    $widgetId   = $widgetData->get('id', 0, 'uint');
    $idIndex    = $widgetId ?: uniqid();
    $configForm = '<div class="widget-params">';
    $form       = new Form('FormData',
      [
        [
          'name'    => 'id',
          'type'    => 'Hidden',
          'value'   => $widgetId,
          'id'      => 'FormData-id' . $idIndex,
          'filters' => ['uint'],
        ],
        [
          'name'     => 'name',
          'type'     => 'Hidden',
          'required' => true,
          'value'    => $widgetData->get('manifest.name'),
          'id'       => 'FormData-name' . $idIndex,
          'filters'  => ['string', 'trim'],
        ],
        [
          'name'      => 'title',
          'type'      => 'Text',
          'label'     => 'title',
          'translate' => true,
          'value'     => $widgetData->get('title'),
          'id'        => 'FormData-title' . $idIndex,
          'filters'   => ['string', 'trim'],
        ],
        [
          'name'     => 'position',
          'type'     => 'Hidden',
          'required' => true,
          'value'    => $widgetData->get('position'),
          'id'       => 'FormData-position' . $idIndex,
          'filters'  => ['string', 'trim'],
        ],
      ]
    );
 
    $transParamsData = [];
 
    if ($widgetId && Language::isMultilingual())
    {
      $transData = Translation::find(
        [
          'conditions' => 'translationId LIKE :translationId:',
          'bind'       => [
            'translationId' => '%.config_data.id=' . $widgetId . '.data',
          ],
        ]
      );
 
      if ($transData->count())
      {
        $titleField = $form->getField('title');
 
        foreach ($transData as $transDatum)
        {
          $registry = new Registry($transDatum->translatedValue);
          $parts    = explode('.', $transDatum->translationId);
          $language = $parts[0];
          $titleField->setTranslationData($registry->get('title'), $language);
 
          foreach ($registry->get('params', []) as $name => $value)
          {
            $transParamsData[$name][$language] = $value;
          }
        }
      }
    }
 
    $configForm .= $form->renderFields();
 
    if ($widgetData->has('manifest.params'))
    {
      $form = new Form('FormData.params', $widgetData->get('manifest.params', []));
      $form->bind($widgetData->get('params', []), $transParamsData);
 
      foreach ($form->getFields() as $field)
      {
        /** @var Field $field */
        $field->setId($field->getId() . $idIndex);
        $configForm .= $field->render();
      }
    }
 
    $configForm .= '</div>';
 
    return $configForm;
  }
}
#10CLSystems\PhalCMS\Lib\Helper\Widget::renderPosition(LatestNews, HeadingLine)
/var/www/html/hettapijthuis.nl/cache/volt/Tmpl_Site_PhalCMS_Block_Content.volt.php (15)
<div class="uk-section uk-section-small uk-section-default">
    <div class="uk-container">
 
        <?php if (CLSystems\PhalCMS\Lib\Helper\Uri::isHome()) { ?>
            <div class="uk-margin">
                <?= CLSystems\PhalCMS\Lib\Helper\Widget::renderPosition('FlashNews', 'Raw') ?>
            </div>
            <div class="uk-margin">
                <?= CLSystems\PhalCMS\Lib\Helper\Widget::renderPosition('Trending', 'HeadingLine') ?>
            </div>
            <div class="uk-margin">
                <div uk-grid>
                    <div class="uk-width-2-3@m">
                        <div uk-margin>
                            <?= CLSystems\PhalCMS\Lib\Helper\Widget::renderPosition('LatestNews', 'HeadingLine') ?>
                        </div>
                    </div>
                    <div class="uk-width-1-3@m">
                        <div uk-margin>
                            <?= CLSystems\PhalCMS\Lib\Helper\Widget::renderPosition('Aside', 'HeadingLine') ?>
                        </div>
                    </div>
                </div>
            </div>
        <?php } else { ?>
            <div uk-grid>
                <div class="uk-width-2-3@m">
                    <main id="main-content">
                        <?= $this->getContent() ?>
                    </main>
                </div>
                <div class="uk-width-1-3@m">
                    <aside id="aside">
                        <?= CLSystems\PhalCMS\Lib\Helper\Widget::renderPosition('Aside', 'HeadingLine') ?>
                    </aside>
                </div>
            </div>
        <?php } ?>
    </div>
</div>
#11unknown
#12Phalcon\Mvc\View\Engine\Volt->render(/var/www/html/hettapijthuis.nl/src/app/Tmpl/Site/PhalCMS/Block/Content.volt, Array([siteName] => Het Tapijthuis, [cmsConfig] => Object(CLSystems\Php\Registry), [user] => Object(CLSystems\PhalCMS\Lib\Helper\User), [metadata] => Object(stdClass)), false)
#13Phalcon\Mvc\View->engineRender(Array([.volt] => Object(Phalcon\Mvc\View\Engine\Volt)), Block/Content, false, false)
#14Phalcon\Mvc\View->partial(Block/Content, null)
#15Phalcon\Mvc\View\Engine\AbstractEngine->partial(Block/Content)
/var/www/html/hettapijthuis.nl/cache/volt/Tmpl_Site_PhalCMS_Index.volt.php (84)
<!DOCTYPE html>
<html lang="<?= CLSystems\PhalCMS\Lib\Helper\Text::_('locale.code') ?>"
      dir="<?= CLSystems\PhalCMS\Lib\Helper\Text::_('locale.direction') ?>"
      data-uri-home="<?= (CLSystems\PhalCMS\Lib\Helper\Uri::isHome() ? 'true' : 'false') ?>"
      data-uri-root="<?= constant('DOMAIN') ?>"
      data-uri-base="<?= CLSystems\PhalCMS\Lib\Helper\Uri::getBaseUriPrefix() ?>">
<head>
    <meta charset="utf-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1"/>
    <?php if (isset($metadata)) { ?>
 
        <?php if (!empty($metadata->metaKeys)) { ?>
            <meta name="keywords" content="<?= $metadata->metaKeys ?>"/>
        <?php } ?>
 
        <?php if (!empty($metadata->metaDesc)) { ?>
            <meta name="description" content="<?= $metadata->metaDesc ?>"/>
        <?php } ?>
 
        <?php if (!empty($metadata->contentRights)) { ?>
            <meta name="rights" content="<?= $metadata->contentRights ?>"/>
        <?php } ?>
 
        <?php if (!empty($metadata->metaRobots)) { ?>
            <meta name="robots" content="<?= $metadata->metaRobots ?>"/>
        <?php } ?>
 
        <?php if (!empty($metadata->metaTitle)) { ?>
            <?php if ($metadata->metaTitle == $siteName) { ?>
                <title><?= $metadata->metaTitle ?> - Fashion for Home</title>
            <?php } else { ?>
                <title><?= $metadata->metaTitle ?> - <?= $this->escaper->escapeHtml($siteName) ?></title>
            <?php } ?>
        <?php } ?>
 
    <?php } ?>
 
    <link rel="canonical" href="<?= CLSystems\PhalCMS\Lib\Helper\Uri::fromServer() ?>" />
 
    
    <link rel="shortcut icon" type="image/x-icon" href="<?= constant('DOMAIN') . '/assets/images/logo.png' ?>"/>
    <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/uikit@3.6.21/dist/css/uikit.min.css"/>
    <link rel="stylesheet" type="text/css" href="<?= constant('DOMAIN') . '/assets/css/custom.css' ?>"/>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/uikit@3.6.21/dist/js/uikit.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/uikit@3.6.21/dist/js/uikit-icons.min.js"></script>
    <?= implode(PHP_EOL, CLSystems\PhalCMS\Lib\Helper\Event::trigger('onSiteHead', ['System', 'Cms'])) ?>
 
    <script type="application/ld+json">
        {
            "@context": "https://schema.org",
            "@type": "WebSite",
            "name": "Het Tapijthuis",
            "url": "https://hettapijthuis.nl",
            "potentialAction": {
                "@type": "SearchAction",
                "query-input": "required name=query",
                "target": "https://hettapijthuis.nl/search?q={query}"
            }
        }
    </script>
    <!-- Global site tag (gtag.js) - Google Analytics -->
    <script async src="https://www.googletagmanager.com/gtag/js?id=UA-37596127-1"></script>
    <script>
        window.dataLayer = window.dataLayer || [];
        function gtag(){dataLayer.push(arguments);}
        gtag('js', new Date());
 
        gtag('config', 'UA-37596127-1');
    </script>
 
</head>
<body>
 
<?= implode(PHP_EOL, CLSystems\PhalCMS\Lib\Helper\Event::trigger('onSiteBeforeContent', [], ['System', 'Cms'])) ?>
 
 
 
    <?= $this->partial('Block/BeforeContent') ?>
 
 
 
 
    <?= $this->partial('Block/Content') ?>
 
 
 
 
    <?= $this->partial('Block/AfterContent') ?>
 
 
 
<?= implode(PHP_EOL, CLSystems\PhalCMS\Lib\Helper\Event::trigger('onSiteAfterContent', [], ['System', 'Cms'])) ?>
 
 
 
 
<?= implode(PHP_EOL, CLSystems\PhalCMS\Lib\Helper\Event::trigger('onSiteAfterRender', [], ['System', 'Cms'])) ?>
</body>
</html>
#16unknown
#17Phalcon\Mvc\View\Engine\Volt->render(/var/www/html/hettapijthuis.nl/src/app/Tmpl/Site/PhalCMS/Index.volt, Array([siteName] => Het Tapijthuis, [cmsConfig] => Object(CLSystems\Php\Registry), [user] => Object(CLSystems\PhalCMS\Lib\Helper\User), [metadata] => Object(stdClass)), true)
#18Phalcon\Mvc\View->engineRender(Array([.volt] => Object(Phalcon\Mvc\View\Engine\Volt)), Index, true)
#19Phalcon\Mvc\View->processRender(index, index, Array())
#20Phalcon\Mvc\View->render(index, index)
#21Phalcon\Mvc\Application->handle(/?page=5)
/var/www/html/hettapijthuis.nl/src/app/Lib/CmsApplication.php (117)
<?php
 
namespace CLSystems\PhalCMS\Lib;
 
use Phalcon\Loader;
use Phalcon\Http\Response;
use Phalcon\Events\Event;
use Phalcon\Mvc\Application;
use Phalcon\Mvc\Dispatcher;
use Phalcon\Mvc\View;
use CLSystems\PhalCMS\Lib\Helper\Asset;
use CLSystems\PhalCMS\Lib\Helper\Config;
use CLSystems\PhalCMS\Lib\Helper\Uri;
use CLSystems\PhalCMS\Lib\Helper\State;
use CLSystems\PhalCMS\Lib\Helper\User;
use CLSystems\PhalCMS\Lib\Helper\Event as EventHelper;
use CLSystems\PhalCMS\Lib\Mvc\View\ViewBase;
use CLSystems\Php\Registry;
use MatthiasMullie\Minify;
use Exception;
 
class CmsApplication extends Application
{
    public function execute()
    {
        try {
            $eventsManager = $this->di->getShared('eventsManager');
            $eventsManager->attach('application:beforeSendResponse', $this);
            $plugins = EventHelper::getPlugins();
            $systemEvents = [
                'application:beforeSendResponse',
                'dispatch:beforeExecuteRoute',
                'dispatch:beforeException',
                'dispatch:beforeDispatch',
                'dispatch:afterDispatch',
                'dispatch:afterInitialize',
            ];
 
            foreach ($plugins['System'] as $className => $config) {
                $handler = EventHelper::getHandler($className, $config);
 
                foreach ($systemEvents as $systemEvent) {
                    $eventsManager->attach($systemEvent, $handler);
                }
            }
 
            // Update view dirs
            define('TPL_SITE_PATH', APP_PATH . '/Tmpl/Site/' . Config::get('siteTemplate', 'PhalCMS'));
            define('TPL_ADMINISTRATOR_PATH', APP_PATH . '/Tmpl/Administrator');
            define('TPL_SYSTEM_PATH', APP_PATH . '/Tmpl/System');
 
            if (Uri::isClient('site')) {
                $viewDirs = [
                    TPL_SITE_PATH . '/Tmpl/',
                    TPL_SITE_PATH . '/',
                ];
            } else {
                $viewDirs = [
                    TPL_ADMINISTRATOR_PATH . '/',
                ];
            }
 
            foreach (['System', 'Cms'] as $plgGroup) {
                if (isset($plugins[$plgGroup])) {
                    /**
                     * @var string $pluginClass
                     * @var Registry $pluginConfig
                     */
 
 
                    foreach ($plugins[$plgGroup] as $pluginClass => $pluginConfig) {
                        $pluginName = $pluginConfig->get('manifest.name');
                        $pluginPath = PLUGIN_PATH . '/' . $plgGroup . '/' . $pluginName;
                        $psrPaths = [];
 
                        if (is_dir($pluginPath . '/Tmpl')) {
                            $viewDirs[] = $pluginPath . '/Tmpl/';
                        }
 
                        if (is_dir($pluginPath . '/Lib')) {
                            $psrPaths['CLSystems\\PhalCMS\\Lib'] = $pluginPath . '/Lib';
                        }
 
                        if (is_dir($pluginPath . '/Widget')) {
                            $psrPaths['CLSystems\\PhalCMS\\Widget'] = $pluginPath . '/Widget';
                        }
 
                        if ($psrPaths) {
                            (new Loader)
                                ->registerNamespaces($psrPaths, true)
                                ->register();
                        }
                    }
                }
            }
 
            $viewDirs[] = TPL_SYSTEM_PATH . '/';
 
            /** @var ViewBase $view */
            $view = $this->di->getShared('view');
            $requestUri = $_SERVER['REQUEST_URI'];
 
            if (Config::get('siteOffline') === 'Y'
                && !User::getInstance()->access('super')
            ) {
                $this->view->setMainView('Offline/Index');
 
                if (strpos($requestUri, '/user/') !== 0) {
                    $requestUri = '';
                }
            } else {
                $view->setMainView('Index');
            }
 
            $view->setViewsDir($viewDirs);
            $this->setEventsManager($eventsManager);
            $this->handle($requestUri)->send();
        } catch (Exception $e) {
            if (true === DEVELOPMENT_MODE) {
                // Let Phalcon Debug catch this
                throw $e;
            }
 
            try {
                if (User::getInstance()->access('super')) {
                    State::setMark('exception', $e);
                }
 
                /**
                 * @var Dispatcher $dispatcher
                 * @var View $view
                 */
                $dispatcher = $this->getDI()->getShared('dispatcher');
                $dispatcher->setControllerName(Uri::isClient('administrator') ? 'admin_error' : 'error');
                $dispatcher->setActionName('show');
                $dispatcher->setParams(
                    [
                        'code'    => $e->getCode(),
                        'message' => $e->getMessage(),
                    ]
                );
 
                $view = $this->getDI()->getShared('view');
                $view->start();
                $dispatcher->dispatch();
                $view->render(
                    $dispatcher->getControllerName(),
                    $dispatcher->getActionName(),
                    $dispatcher->getParams()
                );
                $view->finish();
                echo $view->getContent();
            } catch (Exception $e2) {
                debugVar($e2->getMessage());
            }
        }
    }
 
    protected function getCompressor($type)
    {
        if ('css' === $type) {
            $compressor = new Minify\CSS;
            $compressor->setImportExtensions(
                [
                    'gif' => 'data:image/gif',
                    'png' => 'data:image/png',
                    'svg' => 'data:image/svg+xml',
                ]
            );
        } else {
            $compressor = new Minify\JS;
        }
 
        return $compressor;
    }
 
    protected function compressAssets()
    {
        $basePath = PUBLIC_PATH . '/assets';
        $assets = Factory::getService('assets');
 
        foreach (Asset::getFiles() as $type => $files) {
            $fileName = md5(implode(':', $files)) . '.' . $type;
            $filePath = $basePath . '/compressed/' . $fileName;
            $fileUri = DOMAIN . '/assets/compressed/' . $fileName . (DEVELOPMENT_MODE ? '?' . time() : '');
            $hasAsset = is_file($filePath);
            $ucType = ucfirst($type);
            $addFunc = 'add' . $ucType;
 
            if ($hasAsset && !DEVELOPMENT_MODE) {
                call_user_func_array([$assets, $addFunc], [$fileUri, false]);
                continue;
            }
 
            $compressor = self::getCompressor($type);
 
            foreach ($files as $file) {
                $compressor->add($file);
            }
 
            if (!is_dir($basePath . '/compressed/')) {
                mkdir($basePath . '/compressed/', 0777, true);
            }
 
            if ($compressor->minify($filePath)) {
                chmod($filePath, 0777);
                call_user_func_array([$assets, $addFunc], [$fileUri, false]);
            }
 
            unset($compressor);
        }
    }
 
    public function beforeSendResponse(Event $event, CmsApplication $app, Response $response)
    {
        $request = $this->di->getShared('request');
 
        if ($request->isAjax()) {
            return;
        }
 
        /** @var Asset $assets */
        $this->compressAssets();
        $assets = $this->di->getShared('assets');
 
        // Compress CSS
        ob_start();
        $assets->outputCss();
        $assets->outputInlineCss();
        $content = str_replace('</head>', ob_get_clean() . '</head>', $response->getContent());
 
        // Compress JS
        ob_start();
        $assets->outputJs();
        $assets->outputInlineJs();
        $code = Asset::getCode() . ob_get_clean();
 
        // Extra code (in the footer)
        $content = str_replace('</body>', $code . '</body>', $content);
        $response->setContent($content);
    }
}
#22CLSystems\PhalCMS\Lib\CmsApplication->execute()
/var/www/html/hettapijthuis.nl/public/index.php (14)
<?php
declare(strict_types=1);
 
error_reporting(E_ALL);
ini_set('display_errors', 'true');
 
use CLSystems\PhalCMS\Lib\Factory;
 
define('BASE_PATH', dirname(__DIR__));
 
require_once BASE_PATH . '/src/app/Lib/Factory.php';
 
// Execute application
Factory::getApplication()->execute();
KeyValue
page5
KeyValue
TMPDIR/var/www/clients/client3/web21/tmp
PHPRC/etc/
TEMP/var/www/clients/client3/web21/tmp
PHP_DOCUMENT_ROOT/var/www/clients/client3/web21
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
PWD/var/www/php-fcgi-scripts/web21
SHLVL0
TMP/var/www/clients/client3/web21/tmp
PHP_FCGI_MAX_REQUESTS5000
HTTP_CONNECTIONclose
SCRIPT_NAME/index.php
REQUEST_URI/?page=5
QUERY_STRINGpage=5
REQUEST_METHODGET
SERVER_PROTOCOLHTTP/1.1
GATEWAY_INTERFACECGI/1.1
REMOTE_PORT50728
SCRIPT_FILENAME/var/www/hettapijthuis.nl/web/index.php
SERVER_ADMINwebmaster@hettapijthuis.nl
CONTEXT_DOCUMENT_ROOT/var/www/hettapijthuis.nl/web
CONTEXT_PREFIX
REQUEST_SCHEMEhttps
DOCUMENT_ROOT/var/www/hettapijthuis.nl/web
REMOTE_ADDR35.171.22.220
SERVER_PORT443
SERVER_ADDR213.136.83.230
SERVER_NAMEhettapijthuis.nl
SERVER_SOFTWAREApache
SERVER_SIGNATURE
HTTP_HOSThettapijthuis.nl
HTTP_USER_AGENTclaudebot
HTTP_ACCEPT*/*
SSL_TLS_SNIhettapijthuis.nl
HTTPSon
PERL5LIB/usr/share/awstats/lib:/usr/share/awstats/plugins
UNIQUE_IDZgWRBq2r7wN7Y6xYYY10eQAAAAY
FCGI_ROLERESPONDER
PHP_SELF/index.php
REQUEST_TIME_FLOAT1711640838,0833
REQUEST_TIME1711640838
#Path
0/var/www/html/hettapijthuis.nl/public/index.php
1/var/www/html/hettapijthuis.nl/src/app/Lib/Factory.php
2/var/www/html/hettapijthuis.nl/src/app/Config/Define.php
3/var/www/html/hettapijthuis.nl/src/app/Config/Loader.php
4/var/www/html/hettapijthuis.nl/vendor/autoload.php
5/var/www/html/hettapijthuis.nl/vendor/composer/autoload_real.php
6/var/www/html/hettapijthuis.nl/vendor/composer/ClassLoader.php
7/var/www/html/hettapijthuis.nl/vendor/composer/autoload_static.php
8/var/www/html/hettapijthuis.nl/vendor/phpunit/phpunit/src/Framework/Assert/Functions.php
9/var/www/html/hettapijthuis.nl/vendor/symfony/polyfill-mbstring/bootstrap.php
10/var/www/html/hettapijthuis.nl/vendor/symfony/polyfill-php80/bootstrap.php
11/var/www/html/hettapijthuis.nl/vendor/symfony/polyfill-php72/bootstrap.php
12/var/www/html/hettapijthuis.nl/vendor/symfony/polyfill-ctype/bootstrap.php
13/var/www/html/hettapijthuis.nl/vendor/symfony/polyfill-intl-idn/bootstrap.php
14/var/www/html/hettapijthuis.nl/vendor/symfony/deprecation-contracts/function.php
15/var/www/html/hettapijthuis.nl/vendor/ralouphie/getallheaders/src/getallheaders.php
16/var/www/html/hettapijthuis.nl/vendor/guzzlehttp/psr7/src/functions_include.php
17/var/www/html/hettapijthuis.nl/vendor/guzzlehttp/psr7/src/functions.php
18/var/www/html/hettapijthuis.nl/vendor/symfony/polyfill-intl-grapheme/bootstrap.php
19/var/www/html/hettapijthuis.nl/vendor/symfony/polyfill-intl-normalizer/bootstrap.php
20/var/www/html/hettapijthuis.nl/vendor/guzzlehttp/promises/src/functions_include.php
21/var/www/html/hettapijthuis.nl/vendor/guzzlehttp/promises/src/functions.php
22/var/www/html/hettapijthuis.nl/vendor/symfony/polyfill-php73/bootstrap.php
23/var/www/html/hettapijthuis.nl/vendor/symfony/string/Resources/functions.php
24/var/www/html/hettapijthuis.nl/vendor/guzzlehttp/guzzle/src/functions_include.php
25/var/www/html/hettapijthuis.nl/vendor/guzzlehttp/guzzle/src/functions.php
26/var/www/html/hettapijthuis.nl/vendor/symfony/polyfill-iconv/bootstrap.php
27/var/www/html/hettapijthuis.nl/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php
28/var/www/html/hettapijthuis.nl/vendor/swiftmailer/swiftmailer/lib/swift_required.php
29/var/www/html/hettapijthuis.nl/vendor/swiftmailer/swiftmailer/lib/classes/Swift.php
30/var/www/html/hettapijthuis.nl/vendor/myclabs/deep-copy/src/DeepCopy/deep_copy.php
31/var/www/html/hettapijthuis.nl/vendor/facebook/graph-sdk/src/Facebook/polyfills.php
32/var/www/html/hettapijthuis.nl/vendor/phalcon/dd/src/helper.php
33/var/www/html/hettapijthuis.nl/vendor/clsystems/php-registry/src/Registry.php
34/var/www/html/hettapijthuis.nl/src/app/Lib/Helper/Config.php
35/var/www/html/hettapijthuis.nl/src/app/Lib/Helper/Asset.php
36/var/www/html/hettapijthuis.nl/src/app/Lib/Mvc/View/ViewBase.php
37/var/www/html/hettapijthuis.nl/src/app/Lib/Helper/Volt.php
38/var/www/html/hettapijthuis.nl/src/app/Lib/CmsApplication.php
39/var/www/html/hettapijthuis.nl/src/app/Lib/Helper/Language.php
40/var/www/html/hettapijthuis.nl/src/app/Lib/Helper/FileSystem.php
41/var/www/html/hettapijthuis.nl/src/app/Language/nl-NL/Locale.php
42/var/www/html/hettapijthuis.nl/src/app/Lib/Helper/Uri.php
43/var/www/html/hettapijthuis.nl/src/app/Language/nl-NL/nl-NL.php
44/var/www/html/hettapijthuis.nl/src/app/Lib/Helper/Event.php
45/var/www/html/hettapijthuis.nl/src/app/Lib/Mvc/Model/Config.php
46/var/www/html/hettapijthuis.nl/src/app/Lib/Mvc/Model/ModelBase.php
47/var/www/html/hettapijthuis.nl/src/app/Plugin/Cms/SiteMap/SiteMap.php
48/var/www/html/hettapijthuis.nl/src/app/Lib/Plugin.php
49/var/www/html/hettapijthuis.nl/src/app/Plugin/Cms/SiteMap/Language/nl-NL.php
50/var/www/html/hettapijthuis.nl/src/app/Plugin/Cms/SocialLogin/SocialLogin.php
51/var/www/html/hettapijthuis.nl/src/app/Plugin/System/Backup/Backup.php
52/var/www/html/hettapijthuis.nl/src/app/Plugin/System/Backup/Language/nl-NL.php
53/var/www/html/hettapijthuis.nl/src/app/Plugin/System/Cms/Cms.php
54/var/www/html/hettapijthuis.nl/src/app/Config/Router.php
55/var/www/html/hettapijthuis.nl/src/app/Config/Router/Site.php
56/var/www/html/hettapijthuis.nl/src/app/Lib/Mvc/Controller/IndexController.php
57/var/www/html/hettapijthuis.nl/src/app/Lib/Mvc/Controller/ControllerBase.php
58/var/www/html/hettapijthuis.nl/src/app/Lib/Helper/User.php
59/var/www/html/hettapijthuis.nl/src/app/Lib/Helper/State.php
60/var/www/html/hettapijthuis.nl/src/app/Lib/Mvc/Model/User.php
61/var/www/html/hettapijthuis.nl/cache/volt/Tmpl_Site_PhalCMS_Index.volt.php
62/var/www/html/hettapijthuis.nl/src/app/Lib/Helper/Text.php
63/var/www/html/hettapijthuis.nl/cache/volt/Tmpl_Site_PhalCMS_Block_BeforeContent.volt.php
64/var/www/html/hettapijthuis.nl/src/app/Lib/Helper/Menu.php
65/var/www/html/hettapijthuis.nl/src/app/Lib/Helper/Widget.php
66/var/www/html/hettapijthuis.nl/src/app/Tmpl/Site/PhalCMS/Config.php
67/var/www/html/hettapijthuis.nl/src/app/Widget/Code/Code.php
68/var/www/html/hettapijthuis.nl/src/app/Lib/Widget.php
69/var/www/html/hettapijthuis.nl/src/app/Widget/Code/Config.php
70/var/www/html/hettapijthuis.nl/src/app/Widget/Content/Content.php
71/var/www/html/hettapijthuis.nl/src/app/Widget/Content/Config.php
72/var/www/html/hettapijthuis.nl/src/app/Widget/FlashNews/FlashNews.php
73/var/www/html/hettapijthuis.nl/src/app/Widget/FlashNews/Config.php
74/var/www/html/hettapijthuis.nl/src/app/Widget/Homepage/Homepage.php
75/var/www/html/hettapijthuis.nl/src/app/Widget/Homepage/Config.php
76/var/www/html/hettapijthuis.nl/src/app/Widget/LanguageSwitcher/LanguageSwitcher.php
77/var/www/html/hettapijthuis.nl/src/app/Widget/LanguageSwitcher/Config.php
78/var/www/html/hettapijthuis.nl/src/app/Widget/Login/Login.php
79/var/www/html/hettapijthuis.nl/src/app/Widget/Login/Config.php
80/var/www/html/hettapijthuis.nl/src/app/Widget/Menu/Menu.php
81/var/www/html/hettapijthuis.nl/src/app/Widget/Menu/Config.php
82/var/www/html/hettapijthuis.nl/src/app/Widget/SocialShare/SocialShare.php
83/var/www/html/hettapijthuis.nl/src/app/Widget/SocialShare/Config.php
84/var/www/html/hettapijthuis.nl/src/app/Lib/Mvc/Model/PostCategory.php
85/var/www/html/hettapijthuis.nl/src/app/Lib/Mvc/Model/Nested.php
86/var/www/html/hettapijthuis.nl/src/app/Lib/Mvc/Model/UcmItem.php
87/var/www/html/hettapijthuis.nl/cache/volt/Widget_Menu_Tmpl_Content_Navbar.volt.php
88/var/www/html/hettapijthuis.nl/cache/volt/Widget_Menu_Tmpl_Content_NavItem.volt.php
89/var/www/html/hettapijthuis.nl/cache/volt/Widget_Menu_Tmpl_Content_NavbarSub.volt.php
90/var/www/html/hettapijthuis.nl/cache/volt/Tmpl_System_Widget_Wrapper_Raw.volt.php
91/var/www/html/hettapijthuis.nl/cache/volt/Tmpl_Site_PhalCMS_Block_Content.volt.php
92/var/www/html/hettapijthuis.nl/vendor/clsystems/php-filter/src/Filter.php
93/var/www/html/hettapijthuis.nl/src/app/Lib/Mvc/Model/Post.php
94/var/www/html/hettapijthuis.nl/cache/volt/Widget_FlashNews_Tmpl_Content_SliderNews.volt.php
95/var/www/html/hettapijthuis.nl/src/app/Lib/Helper/Image.php
96/var/www/html/hettapijthuis.nl/src/app/Lib/Helper/Date.php
97/var/www/html/hettapijthuis.nl/cache/volt/Tmpl_Site_PhalCMS_Widget_Wrapper_HeadingLine.volt.php
98/var/www/html/hettapijthuis.nl/cache/volt/Tmpl_System_Pagination_Pagination.volt.php
99/var/www/html/hettapijthuis.nl/cache/volt/Widget_FlashNews_Tmpl_Content_BlogList.volt.php
100/var/www/html/hettapijthuis.nl/src/app/Lib/Helper/IconSvg.php
Memory
Usage4194304