Fixed gh-637 so that the header values will be added. Updated the copyright to only show the first year so we need not update these again.

This commit is contained in:
2021-01-03 18:49:35 +02:00
parent 75fa49e517
commit d9da5d9fc4
1467 changed files with 1491 additions and 1481 deletions

View File

@ -5,7 +5,7 @@
* @created 30th April, 2015
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
* @copyright Copyright (C) 2015 - 2021 Vast Development Method. All rights reserved.
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
@ -48,15 +48,23 @@ defined('JPATH_BASE') or die('Restricted access');
}
</script>
<div class="alert alert-error">
<h4 class="alert-heading">
<span class="icon-trash"></span>
<?= JText::_("COM_COMPONENTBUILDER_TRASHED_ITEMS") ?>
</h4>
<p><?= JText::_("COM_COMPONENTBUILDER_YOU_ARE_CURRENTLY_VIEWING_THE_TRASHED_ITEMS") ?></p>
<button onclick="emptyTrash();" class="btn btn-small btn-danger">
<span class="icon-delete" aria-hidden="true"></span>
<?= JText::_("COM_COMPONENTBUILDER_EMPTY_TRASH") ?>
</button>
<?php if (empty($displayData->items)): ?>
<h4 class="alert-heading">
<span class="icon-trash"></span>
<?= JText::_("COM_COMPONENTBUILDER_TRASH_AREA") ?>
</h4>
<p><?= JText::_("COM_COMPONENTBUILDER_YOU_ARE_CURRENTLY_VIEWING_THE_TRASH_AREA_AND_YOU_DONT_HAVE_ANY_ITEMS_IN_TRASH_AT_THE_MOMENT") ?></p>
<?php else: ?>
<h4 class="alert-heading">
<span class="icon-trash"></span>
<?= JText::_("COM_COMPONENTBUILDER_TRASHED_ITEMS") ?>
</h4>
<p><?= JText::_("COM_COMPONENTBUILDER_YOU_ARE_CURRENTLY_VIEWING_THE_TRASHED_ITEMS") ?></p>
<button onclick="emptyTrash();" class="btn btn-small btn-danger">
<span class="icon-delete" aria-hidden="true"></span>
<?= JText::_("COM_COMPONENTBUILDER_EMPTY_TRASH") ?>
</button>
<?php endif; ?>
<button onclick="exitTrash();" class="btn btn-small">
<span class="icon-back" aria-hidden="true"></span>
<?= JText::_("COM_COMPONENTBUILDER_EXIT_TRASH") ?>