| 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/plugins/pagebuilderck/text/layouts/ |
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;
?>
<div id="elementscontainer">
<div class="menulink" tab="tab_edition"><?php echo Pagebuilderck\CKText::_('CK_TEXT_EDITION'); ?></div>
<div class="tab menustyles ckproperty tab_fullscreen" id="tab_edition">
<?php // echo PagebuilderckHelper::renderEditionButtons(); ?>
<textarea id="<?php echo $id; ?>_text" data-id="<?php echo $id; ?>_text" class="joomla-editor-tinymce"></textarea>
</div>
<div class="menulink" tab="tab_blocstyles"><?php echo Pagebuilderck\CKText::_('CK_STYLES'); ?></div>
<div class="tab menustyles ckproperty" id="tab_blocstyles">
<?php echo $this->menustyles->createBlocStyles('bloc') ?>
</div>
</div>
<script language="javascript" type="text/javascript">
function ckLoadEditionPopup() {
var focus = $ck('.editfocus');
var textID = '<?php echo $id; ?>_text';
content = focus.find('.cktext').html();
// var search = /<img(.*?)src="<?php echo str_replace('/', '\/', Pagebuilderck\CKUri::root(true)); ?>\/(.*?)"/g;
// content = content.replace(search, '<img src="$2"');
content = ckContentToEditor(content);
$ck('#' + textID).val(content);
// $ck('#previewarea .ckstyle').html(focus.find('.ckstyle').html());
// $ck('#previewarea .cktype').html(focus.find('.cktext').html());
ckLoadEditorOnTheFly(textID);
ckFillEditionPopup(focus.attr('id'));
}
function ckBeforeSaveEditionPopup() {
var textID = '<?php echo $id; ?>_text';
ckSaveEditorOnTheFly(textID);
var content = $ck('[data-id="' + textID + '"]').val();
content = ckEditorToContent(content);
var focus = $ck('.editfocus');
focus.find('.cktext').html(content);
// ckSaveEditionPopup(focus.attr('id'));
// ckCloseEditionPopup();
}
/*
* Method automatically called in ckCloseEditionPopup() if exists
*/
function ckBeforeCloseEditionPopup() {
var textID = '<?php echo $id; ?>_text';
ckRemoveEditorOnTheFly(textID);
}
function ckSaveInlineEditionPopup() {
ckBeforeSaveEditionPopup();
}
function ckUpdatePreviewArea() {
}
</script>