chore: Update copyright

This commit is contained in:
Marvin Flock
2025-03-18 20:35:00 +01:00
parent 5d85be8937
commit 563e0e6294
@@ -12,38 +12,23 @@ jimport('joomla.application.component.view');
/** /**
* SportsManager View * SportsManager View
*/ */
class SportsManagerViewSportsManager extends JViewLegacy class SportsManagerViewSportsManager extends JViewLegacy
{ {
/** /**
* SportsManager view display method * SportsManager view display method
* @return void * @return void
*/ */
function display($tpl = null) function display($tpl = null)
{ {
JToolbarHelper::title(JText::_('COM_SPORTSMANAGER')); JToolbarHelper::title(JText::_('COM_SPORTSMANAGER'));
?> ?>
<h2><?php echo JText::_('COM_SPORTSMANAGER'); ?> Copyright &copy; 2006 &#8211; 2014 Sven Nickel</h2> <h3><?php echo JText::_('COM_SPORTSMANAGER'); ?> &#8211; Created by Sven Nickel | Maintained by DTFB</h3>
<?php <?php
/*
// Get data from the model
$items = $this->get('Items');
$pagination = $this->get('Pagination');
// Check for errors.
if (count($errors = $this->get('Errors')))
{
JError::raiseError(500, implode('<br />', $errors));
return false;
}
// Assign data to the view
$this->items = $items;
$this->pagination = $pagination;
*/
// Display the template // Display the template
parent::display($tpl); parent::display($tpl);
} }
} }