| Server IP : 46.105.57.169 / Your IP : 216.73.216.144 Web Server : Apache System : Linux webd003.cluster120.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : maitricfuz ( 93378) PHP Version : 8.4.10 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/maitricfuz/www/saint-martin-lg/components/com_pagebuilderck/views/page/tmpl/ |
Upload File : |
<?php
/**
* @name Page Builder CK
* @package com_pagebuilderck
* @copyright Copyright (C) 2015. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* @author Cedric Keiflin - https://www.template-creator.com - https://www.joomlack.fr
*/
defined('_JEXEC') or die;
$user = \Joomla\CMS\Factory::getUser();
$canEdit = $user->authorise('core.edit.own', 'com_pagebuilderck');
// frontend medias
PagebuilderckFrontHelper::loadFrontendAssets();
// load the component configuration
$params = \Joomla\CMS\Component\ComponentHelper::getParams('com_pagebuilderck');
// load the page/link configuration
$app = Pagebuilderck\CKFof::getApplication();
$pageParams = $app->getParams();
$doc = Pagebuilderck\CKFof::getDocument();
// add the meta in the page
if ($pageParams->get('menu-meta_description'))
{
$doc->setDescription($pageParams->get('menu-meta_description'));
}
if ($pageParams->get('menu-meta_keywords'))
{
$doc->setMetadata('keywords', $pageParams->get('menu-meta_keywords'));
}
if ($pageParams->get('robots'))
{
$doc->setMetadata('robots', $pageParams->get('robots'));
}
// $this->item->params = new Pagebuilderck\CKRegistry($this->item->params);
?>
<div class="pagebuilderck <?php echo htmlspecialchars($pageParams->get('pageclass_sfx', '')); ?>">
<?php if ($canEdit && $this->input->get('option', '', 'cmd') == 'com_pagebuilderck' ) { ?>
<a class="btn btn-primary" href="<?php echo Pagebuilderck\CKUri::base(true) ?>/index.php?option=com_pagebuilderck&task=page.edit&id=<?php echo $this->item->id ?>"><i class="icon icon-edit"></i> <?php echo Pagebuilderck\CKText::_('CK_EDIT') ?></a>
<?php } ?>
<?php if ($pageParams->get('show_page_heading', '1') && $pageParams->get('page_heading')) { ?>
<div class="page-header">
<h1> <?php echo addslashes($pageParams->get('page_heading')); ?> </h1>
</div>
<?php } ?>
<?php if ($this->item->params->get('showtitle')) { ?>
<<?php echo $this->item->params->get('titletag', 'h1') ?> class="pagebuilderck_title"><?php echo $this->item->title ?></<?php echo $this->item->params->get('titletag', 'h1') ?>>
<?php } ?>
<?php echo $this->item->htmlcode; ?>
</div>