Component-Builder/admin/tmpl/repositories/emptystate.php
Robot c51ef999a9
Release of v5.0.1-alpha5
Add repositories for better integration with gitea. Refactored the Data classes. Add new Data classes.
2024-06-21 03:25:28 +02:00

29 lines
912 B
PHP

<?php
/**
* @package Joomla.Component.Builder
*
* @created 30th April, 2015
* @author Llewellyn van der Merwe <https://dev.vdm.io>
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
use Joomla\CMS\Layout\LayoutHelper;
// No direct access to this file
defined('_JEXEC') or die;
$displayData = [
'textPrefix' => 'COM_COMPONENTBUILDER_REPOSITORIES',
'formURL' => 'index.php?option=com_componentbuilder&view=repositories',
'icon' => 'icon-share',
];
if ($this->user->authorise('repository.create', 'com_componentbuilder'))
{
$displayData['createURL'] = 'index.php?option=com_componentbuilder&task=repository.add';
}
echo LayoutHelper::render('joomla.content.emptystate', $displayData);