43 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * @package         Advanced Custom Fields
 | |
|  * @version         2.8.8 Pro
 | |
|  * 
 | |
|  * @author          Tassos Marinos <info@tassos.gr>
 | |
|  * @link            https://www.tassos.gr
 | |
|  * @copyright       Copyright © 2024 Tassos All Rights Reserved
 | |
|  * @license         GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
 | |
| */
 | |
| 
 | |
| defined('_JEXEC') or die('Restricted access');
 | |
| 
 | |
| use Joomla\CMS\Layout\LayoutHelper;
 | |
| use Joomla\CMS\HTML\HTMLHelper;
 | |
| 
 | |
| extract($displayData);
 | |
| 
 | |
| $items_payload = [
 | |
|     'create_new_template_link' => $create_new_template_link,
 | |
|     'blank_template_label' => $blank_template_label
 | |
| ];
 | |
| $footer_payload = [
 | |
|     'create_new_template_link' => $create_new_template_link,
 | |
|     'project_name' => $project_name
 | |
| ];
 | |
| 
 | |
| $layouts_path = JPATH_PLUGINS . '/system/nrframework/layouts';
 | |
| 
 | |
| HTMLHelper::_('jquery.framework');
 | |
| ?>
 | |
| <div class="tf-library-page<?php echo isset($class) && !empty($class) ? ' ' . $class : ''; ?>" data-preview-url="<?php echo $preview_url; ?>" data-options="<?php echo htmlspecialchars(json_encode($displayData)); ?>">
 | |
|     <?php echo LayoutHelper::render('library/sidebar', [], $layouts_path); ?>
 | |
|     <div class="tf-library-body">
 | |
|         <?php
 | |
|             echo LayoutHelper::render('library/toolbar', [], $layouts_path);
 | |
|             echo LayoutHelper::render('library/noresults', [], $layouts_path);
 | |
|             echo LayoutHelper::render('library/items', $items_payload, $layouts_path);
 | |
|             echo LayoutHelper::render('library/footer', $footer_payload, $layouts_path);
 | |
|         ?>
 | |
|     </div>
 | |
| </div>
 |