| #0 | Phalcon\Mvc\View\Engine\Volt->render |
| #1 | Phalcon\Mvc\View->engineRender |
| #2 | Phalcon\Mvc\View->partial |
| #3 | Phalcon\Mvc\View\Engine\AbstractEngine->partial /var/www/html/discounts-n-coupons.com/cache/volt/Tmpl_Site_PhalCMS_Post_Show.volt.php (114) <div class="uk-container" itemscope itemtype="http://schema.org/Brand">
<article class="uk-article">
<div class="uk-text-left">
<?= $this->partial('Breadcrumb/Breadcrumb') ?>
</div>
<h1 class="uk-article-title" itemprop="name">
<?= html_entity_decode($post->t('title')) ?>
</h1>
<p class="uk-article-meta">
<?= CLSystems\PhalCMS\Lib\Helper\Text::_('posted-in') . ' ' ?>
<a href="<?= $post->category->link ?>">
<?= $post->category->t('title') ?>
</a>
<?= ' | ' . CLSystems\PhalCMS\Lib\Helper\IconSvg::render('eye') . ' ' . CLSystems\PhalCMS\Lib\Helper\Text::plural('hits',$post->hits,['hits' => $post->hits]) ?>
</p>
<?php $vouchers = $post->vouchers(); ?>
<?php if (!empty($vouchers)) { ?>
<h2><?= CLSystems\PhalCMS\Lib\Helper\Text::_('discounts-at') ?> <?= $this->escaper->attributes(html_entity_decode($post->t('title'))) ?></h2>
<?= $this->partial('UcmItem/VouchersSlider') ?>
<?php } ?>
<?php if ($post->parentId == 118) { ?>
<h2><?= CLSystems\PhalCMS\Lib\Helper\Text::_('info-about') ?> <?= lcfirst(html_entity_decode(html_entity_decode($post->t('title')))) ?></h2>
<?php } else { ?>
<h2><?= CLSystems\PhalCMS\Lib\Helper\Text::_('info-about') ?> <?= html_entity_decode(html_entity_decode($post->t('title'))) ?></h2>
<?php } ?>
<?php $images = CLSystems\PhalCMS\Lib\Helper\Image::loadImage($post->t('image'),false); ?>
<?php $rating = $post->rating(); ?>
<?php if (!empty($rating)) { ?>
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Organization",
"brand": {
"@type": "Brand",
"name": "<?= $this->escaper->attributes($rating->merchantName) ?>"
},
"description": "<?= strip_tags(html_entity_decode($post->t('summary'))) ?>",
"image": "<?= $images[0]->getUri() ?>",
"name": "<?= $this->escaper->attributes($post->t('title')) ?>",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "<?= $rating->ratingValue ?>",
"bestRating": "100",
"ratingCount": "<?= $rating->ratingCount ?>"
}
}
</script>
<div class="post-rating uk-text-muted uk-margin"><?= $rating->ratingCount ?> <?= CLSystems\PhalCMS\Lib\Helper\Text::_('reviews') ?><br/>
<?= CLSystems\PhalCMS\Lib\Helper\Text::_('score') ?>: <a href="<?= $rating->externalRatingUrl ?>" target="_blank" rel="noreferrer noopener">
<?= $rating->ratingValue ?> <?= CLSystems\PhalCMS\Lib\Helper\Text::_('out-of') ?> 100
</a>
</div>
<?php } ?>
<?php $summary = trim($post->t('summary')); ?>
<?php if (!empty($summary)) { ?>
<div class="post-summary uk-text-lead uk-margin">
<?= strip_tags(html_entity_decode($summary)) ?>
</div>
<?php } ?>
<?php if ($this->length($images) > 0) { ?>
<?php if ($this->length($images) > 1) { ?>
<div class="post-images">
<div class="uk-position-relative" uk-slideshow>
<ul class="uk-slideshow-items" uk-lightbox>
<?php $thumbNav = ''; ?>
<?php foreach ($images as $i => $image) { ?>
<?php $ratio = $image->getRatio(); ?>
<li>
<a href="<?= $image->getUri() ?>">
<div style="--aspect-ratio: <?= $ratio ?>/1">
<img data-src="<?= $image->getUri() ?>" alt="<?= $this->escaper->attributes($post->t('title')) ?>" uk-img />
</div>
</a>
</li>
<?php $thumbNav = $thumbNav . '<li uk-slideshow-item="' . $i . '"><a href="#"><img src="' . $image->getResize(100) . '" width="100" alt=""></a></li>'; ?>
<?php } ?>
</ul>
<div class="uk-position-bottom-center uk-position-small">
<ul class="uk-thumbnav">
<?= $thumbNav ?>
</ul>
</div>
</div>
</div>
<?php } else { ?>
<?php $ratio = $images[0]->getRatio(); ?>
<div class="post-image" uk-lightbox>
<div style="--aspect-ratio: <?= $ratio ?>; --size: 100%; width: var(--size); height: calc(var(--size) / var(--aspect-ratio));">
<a href="<?= $images[0]->getUri() ?>">
<img itemprop="logo" data-src="<?= $images[0]->getUri() ?>" alt="<?= $this->escaper->attributes($post->t('title')) ?>" uk-img
/> <!-- style="--aspect-ratio: <?= $ratio ?>; --size: 100%; width: var(--size); height: calc(var(--size) / var(--aspect-ratio));" -->
</a>
</div>
</div>
<?php } ?>
<?php } ?>
<span itemprop="description"><?= $this->partial('UcmItem/Description') ?></span>
<?php if ($post->parentId == 118) { ?>
<?php if (!empty($brandlink)) { ?>
<a href="<?= $brandlink ?>"><?= CLSystems\PhalCMS\Lib\Helper\Text::_('click-here-for-brand') ?></a>
<?php } ?>
<?php } ?>
</article>
<?= $this->partial('Comment/Comment') ?>
</div> |
| #4 | Phalcon\Mvc\View\Engine\Volt->render |
| #5 | Phalcon\Mvc\View->engineRender |
| #6 | Phalcon\Mvc\View->processRender |
| #7 | Phalcon\Mvc\View->render |
| #8 | Phalcon\Mvc\Application->handle /var/www/html/discounts-n-coupons.com/src/app/Lib/CmsApplication.php (117) <?php
namespace CLSystems\PhalCMS\Lib;
use Phalcon\Autoload\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)
->setNamespaces($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)) {
// echo $filePath;
$chmodFile = chmod($filePath, 0777);
if (false === $chmodFile)
{
touch($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);
}
}
|
| #9 | CLSystems\PhalCMS\Lib\CmsApplication->execute /var/www/html/discounts-n-coupons.com/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(); |
| Key | Value |
|---|---|
| _url | /discount-codes/49-percent-discount-sk-503-16gb-zinc-alloy-recording-bracelet-recording-watch-voice-activated-recorder-24-17-at-tomtop-technology-co-ltd |
| Key | Value |
|---|---|
| PATH | /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| TEMP | /var/www/clients/client1/web1/tmp |
| TMPDIR | /var/www/clients/client1/web1/tmp |
| TMP | /var/www/clients/client1/web1/tmp |
| HOSTNAME | |
| USER | web1 |
| HOME | /var/www/clients/client1/web1 |
| SCRIPT_NAME | /index.php |
| REQUEST_URI | /discount-codes/49-percent-discount-sk-503-16gb-zinc-alloy-recording-bracelet-recording-watch-voice-activated-recorder-24-17-at-tomtop-technology-co-ltd |
| QUERY_STRING | _url=/discount-codes/49-percent-discount-sk-503-16gb-zinc-alloy-recording-bracelet-recording-watch-voice-activated-recorder-24-17-at-tomtop-technology-co-ltd |
| REQUEST_METHOD | GET |
| SERVER_PROTOCOL | HTTP/2.0 |
| GATEWAY_INTERFACE | CGI/1.1 |
| REDIRECT_QUERY_STRING | _url=/discount-codes/49-percent-discount-sk-503-16gb-zinc-alloy-recording-bracelet-recording-watch-voice-activated-recorder-24-17-at-tomtop-technology-co-ltd |
| REDIRECT_URL | /discount-codes/49-percent-discount-sk-503-16gb-zinc-alloy-recording-bracelet-recording-watch-voice-activated-recorder-24-17-at-tomtop-technology-co-ltd |
| REMOTE_PORT | 34961 |
| SCRIPT_FILENAME | /var/www/clients/client1/web1/web/index.php |
| SERVER_ADMIN | webmaster@discounts-n-coupons.com |
| CONTEXT_DOCUMENT_ROOT | /var/www/clients/client1/web1/web |
| CONTEXT_PREFIX | |
| REQUEST_SCHEME | https |
| DOCUMENT_ROOT | /var/www/clients/client1/web1/web |
| REMOTE_ADDR | 216.73.216.113 |
| SERVER_PORT | 443 |
| SERVER_ADDR | 207.244.255.14 |
| SERVER_NAME | discounts-n-coupons.com |
| SERVER_SOFTWARE | Apache |
| SERVER_SIGNATURE | |
| HTTP_HOST | discounts-n-coupons.com |
| HTTP_ACCEPT_ENCODING | gzip, br, zstd, deflate |
| HTTP_COOKIE | cms.site.language=g5HD08Fv3SkqEMgcavLJKuhDN1SzB5igh5YKlekI6CYYAHID%2FR4TvAUEppgIqYuDO%2BAF%2FI8%3D; PHPSESSID=v8s7reppau9ctpgdnfocc7e5ko |
| HTTP_USER_AGENT | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com) |
| HTTP_ACCEPT | */* |
| proxy-nokeepalive | 1 |
| SSL_TLS_SNI | discounts-n-coupons.com |
| HTTPS | on |
| H2_STREAM_TAG | 1889211-1286-215 |
| H2_STREAM_ID | 215 |
| H2_PUSHED_ON | |
| H2_PUSHED | |
| H2_PUSH | off |
| H2PUSH | off |
| HTTP2 | on |
| REDIRECT_STATUS | 200 |
| REDIRECT_SSL_TLS_SNI | discounts-n-coupons.com |
| REDIRECT_HTTPS | on |
| REDIRECT_H2_STREAM_TAG | 1889211-1286-215 |
| REDIRECT_H2_STREAM_ID | 215 |
| REDIRECT_H2_PUSHED_ON | |
| REDIRECT_H2_PUSHED | |
| REDIRECT_H2_PUSH | off |
| REDIRECT_H2PUSH | off |
| REDIRECT_HTTP2 | on |
| FCGI_ROLE | RESPONDER |
| PHP_SELF | /index.php |
| REQUEST_TIME_FLOAT | 1761698023.4074 |
| REQUEST_TIME | 1761698023 |
| # | Path |
|---|---|
| 0 | /var/www/html/discounts-n-coupons.com/public/index.php |
| 1 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Factory.php |
| 2 | /var/www/html/discounts-n-coupons.com/src/app/Config/Define.php |
| 3 | /var/www/html/discounts-n-coupons.com/src/app/Config/Loader.php |
| 4 | /var/www/html/discounts-n-coupons.com/vendor/autoload.php |
| 5 | /var/www/html/discounts-n-coupons.com/vendor/composer/autoload_real.php |
| 6 | /var/www/html/discounts-n-coupons.com/vendor/composer/platform_check.php |
| 7 | /var/www/html/discounts-n-coupons.com/vendor/composer/ClassLoader.php |
| 8 | /var/www/html/discounts-n-coupons.com/vendor/composer/autoload_static.php |
| 9 | /var/www/html/discounts-n-coupons.com/vendor/myclabs/deep-copy/src/DeepCopy/deep_copy.php |
| 10 | /var/www/html/discounts-n-coupons.com/vendor/phpunit/phpunit/src/Framework/Assert/Functions.php |
| 11 | /var/www/html/discounts-n-coupons.com/vendor/symfony/polyfill-mbstring/bootstrap.php |
| 12 | /var/www/html/discounts-n-coupons.com/vendor/symfony/polyfill-mbstring/bootstrap80.php |
| 13 | /var/www/html/discounts-n-coupons.com/vendor/symfony/deprecation-contracts/function.php |
| 14 | /var/www/html/discounts-n-coupons.com/vendor/ralouphie/getallheaders/src/getallheaders.php |
| 15 | /var/www/html/discounts-n-coupons.com/vendor/symfony/polyfill-ctype/bootstrap.php |
| 16 | /var/www/html/discounts-n-coupons.com/vendor/symfony/polyfill-ctype/bootstrap80.php |
| 17 | /var/www/html/discounts-n-coupons.com/vendor/guzzlehttp/promises/src/functions_include.php |
| 18 | /var/www/html/discounts-n-coupons.com/vendor/guzzlehttp/promises/src/functions.php |
| 19 | /var/www/html/discounts-n-coupons.com/vendor/symfony/polyfill-intl-grapheme/bootstrap.php |
| 20 | /var/www/html/discounts-n-coupons.com/vendor/symfony/polyfill-intl-normalizer/bootstrap.php |
| 21 | /var/www/html/discounts-n-coupons.com/vendor/symfony/polyfill-intl-normalizer/bootstrap80.php |
| 22 | /var/www/html/discounts-n-coupons.com/vendor/symfony/string/Resources/functions.php |
| 23 | /var/www/html/discounts-n-coupons.com/vendor/guzzlehttp/guzzle/src/functions_include.php |
| 24 | /var/www/html/discounts-n-coupons.com/vendor/guzzlehttp/guzzle/src/functions.php |
| 25 | /var/www/html/discounts-n-coupons.com/vendor/symfony/var-dumper/Resources/functions/dump.php |
| 26 | /var/www/html/discounts-n-coupons.com/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php |
| 27 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient-services/autoload.php |
| 28 | /var/www/html/discounts-n-coupons.com/vendor/psy/psysh/src/functions.php |
| 29 | /var/www/html/discounts-n-coupons.com/vendor/codeception/codeception/functions.php |
| 30 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/aliases.php |
| 31 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/Client.php |
| 32 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/Service.php |
| 33 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/AccessToken/Revoke.php |
| 34 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/AccessToken/Verify.php |
| 35 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/Model.php |
| 36 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/Utils/UriTemplate.php |
| 37 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/AuthHandler/Guzzle6AuthHandler.php |
| 38 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/AuthHandler/Guzzle7AuthHandler.php |
| 39 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/AuthHandler/Guzzle5AuthHandler.php |
| 40 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/AuthHandler/AuthHandlerFactory.php |
| 41 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/Http/Batch.php |
| 42 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/Http/MediaFileUpload.php |
| 43 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/Http/REST.php |
| 44 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/Task/Retryable.php |
| 45 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/Task/Exception.php |
| 46 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/Exception.php |
| 47 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/Task/Runner.php |
| 48 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/Collection.php |
| 49 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/Service/Exception.php |
| 50 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/Service/Resource.php |
| 51 | /var/www/html/discounts-n-coupons.com/vendor/google/apiclient/src/Task/Composer.php |
| 52 | /var/www/html/discounts-n-coupons.com/vendor/phalcon/dd/src/helper.php |
| 53 | /var/www/html/discounts-n-coupons.com/vendor/clsystems/php-registry/src/Registry.php |
| 54 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Helper/Config.php |
| 55 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Helper/Asset.php |
| 56 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Mvc/View/ViewBase.php |
| 57 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Helper/Volt.php |
| 58 | /var/www/html/discounts-n-coupons.com/src/app/Lib/CmsApplication.php |
| 59 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Helper/Language.php |
| 60 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Helper/FileSystem.php |
| 61 | /var/www/html/discounts-n-coupons.com/src/app/Language/de-DE/Locale.php |
| 62 | /var/www/html/discounts-n-coupons.com/src/app/Language/en-GB/Locale.php |
| 63 | /var/www/html/discounts-n-coupons.com/src/app/Language/nl-NL/Locale.php |
| 64 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Helper/Uri.php |
| 65 | /var/www/html/discounts-n-coupons.com/src/app/Language/en-GB/en-GB.php |
| 66 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Helper/Event.php |
| 67 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Mvc/Model/Config.php |
| 68 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Mvc/Model/ModelBase.php |
| 69 | /var/www/html/discounts-n-coupons.com/src/app/Plugin/Cms/SiteMap/SiteMap.php |
| 70 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Plugin.php |
| 71 | /var/www/html/discounts-n-coupons.com/src/app/Plugin/Cms/SiteMap/Language/en-GB.php |
| 72 | /var/www/html/discounts-n-coupons.com/src/app/Plugin/Cms/SocialLogin/SocialLogin.php |
| 73 | /var/www/html/discounts-n-coupons.com/src/app/Plugin/System/Backup/Backup.php |
| 74 | /var/www/html/discounts-n-coupons.com/src/app/Plugin/System/Backup/Language/en-GB.php |
| 75 | /var/www/html/discounts-n-coupons.com/src/app/Plugin/System/Cms/Cms.php |
| 76 | /var/www/html/discounts-n-coupons.com/src/app/Config/Router.php |
| 77 | /var/www/html/discounts-n-coupons.com/src/app/Config/Router/Site.php |
| 78 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Mvc/Controller/DisplayController.php |
| 79 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Mvc/Controller/ControllerBase.php |
| 80 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Helper/User.php |
| 81 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Helper/State.php |
| 82 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Mvc/Model/User.php |
| 83 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Mvc/Model/UcmItem.php |
| 84 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Helper/UcmItem.php |
| 85 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Mvc/Model/Post.php |
| 86 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Mvc/Model/PostCategory.php |
| 87 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Mvc/Model/Nested.php |
| 88 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Helper/Text.php |
| 89 | /var/www/html/discounts-n-coupons.com/cache/volt/Tmpl_Site_PhalCMS_Post_Show.volt.php |
| 90 | /var/www/html/discounts-n-coupons.com/cache/volt/Tmpl_System_Breadcrumb_Breadcrumb.volt.php |
| 91 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Helper/IconSvg.php |
| 92 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Helper/Image.php |
| 93 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Mvc/Model/Rating.php |
| 94 | /var/www/html/discounts-n-coupons.com/cache/volt/Tmpl_System_UcmItem_Description.volt.php |
| 95 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Mvc/Model/UcmFieldValue.php |
| 96 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Mvc/Model/UcmField.php |
| 97 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Mvc/Model/Tag.php |
| 98 | /var/www/html/discounts-n-coupons.com/src/app/Lib/Mvc/Model/UcmItemMap.php |
| Memory | |
|---|---|
| Usage | 2097152 |