<?php /** * @name Slideshow CK * @package com_slideshowck * @copyright Copyright (C) 2019. 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 */ // no direct access defined('_JEXEC') or die; $imagespath = SLIDESHOWCK_MEDIA_URI .'/images/'; $fieldid = $this->input->get('fieldid', '', 'string'); \Joomla\CMS\HTML\HTMLHelper::_('jquery.framework'); $doc = \Joomla\CMS\Factory::getDocument(); $doc->addStylesheet(SLIDESHOWCK_MEDIA_URI . '/assets/ckbrowse.css'); $doc->addScript(SLIDESHOWCK_MEDIA_URI . '/assets/ckbrowse.js'); ?> <h3><?php echo \Joomla\CMS\Language\Text::_('CK_MENU_ITEMS') ?></h3> <p><?php echo \Joomla\CMS\Language\Text::_('CK_MENU_ITEMS_DESC') ?></p> <div id="ckfoldertreelist"> <?php foreach ($this->menus as $menu) { ?> <div class="ckfoldertree parent"> <div class="ckfoldertreetoggler" onclick="ckToggleTreeSub(this, 0)" data-menutype="<?php echo $menu->menutype; ?>"></div> <div class="ckfoldertreename"><img src="<?php echo $imagespath ?>folder.png" /><?php echo iconv('ISO-8859-1', 'UTF-8', $menu->title); ?></div> </div> <?php } ?> </div> <script> var $ck = window.$ck || jQuery.noConflict(); var URIROOT = window.URIROOT || '<?php echo \Joomla\CMS\Uri\Uri::root(true) ?>'; var cktoken = '<?php echo \Joomla\CMS\Session\Session::getFormToken() ?>'; //ckMakeTooltip(); function ckToggleTreeSub(btn, parentid) { var item = $ck(btn).parent(); if (item.hasClass('ckopened')) { item.removeClass('ckopened'); } else { item.addClass('ckopened'); // load only the items if not already there if (! item.find('.cksubfolder').length) { var menutype = $ck(btn).attr('data-menutype'); ckShowItems(btn, menutype, parentid); } } } function ckShowItems(btn, menutype, parentid) { if ($ck(btn).hasClass('empty')) return; ckAddWaitIcon(btn); var item = $ck(btn).parent(); // ajax call to code and return items layout var myurl = "<?php echo \Joomla\CMS\Uri\Uri::base(true) ?>/index.php?option=com_slideshowck&task=menus.ajaxShowMenuItems&" + cktoken + "=1"; $ck.ajax({ type: "POST", url: myurl, data: { menutype: menutype, parentid: parentid } }).done(function(code) { if (code.trim().length == 0) { $ck(btn).css('opacity', 0).addClass('empty'); } else { item.append(code); ckInitTooltips(); } ckRemoveWaitIcon(btn); }).fail(function() { alert(CKApi.Text._('CK_FAILED', 'Failed')); }); } function ckSetMenuItemUrl(url) { window.parent.document.getElementById('<?php echo $fieldid ?>').value = url; $ck(window.parent.document.getElementById('<?php echo $fieldid ?>')).trigger('change'); window.parent.CKBox.close('#ckmenusmodal .ckboxmodal-button'); } </script>