mirror of
https://github.com/Deutscher-Tischfussballbund/com_sportsmanager.git
synced 2026-06-10 06:27:52 +00:00
chore: Update copyright
This commit is contained in:
+18
-33
@@ -2,48 +2,33 @@
|
|||||||
/*
|
/*
|
||||||
* Sports Manager (C) 2006-2020, Sven Nickel
|
* Sports Manager (C) 2006-2020, Sven Nickel
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// No direct access to this file
|
// No direct access to this file
|
||||||
defined('_JEXEC') or die('Restricted access');
|
defined('_JEXEC') or die('Restricted access');
|
||||||
|
|
||||||
// import Joomla view library
|
// import Joomla view library
|
||||||
jimport('joomla.application.component.view');
|
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 © 2006 – 2014 Sven Nickel</h2>
|
<h3><?php echo JText::_('COM_SPORTSMANAGER'); ?> – Created by Sven Nickel | Maintained by DTFB</h3>
|
||||||
<?php
|
<?php
|
||||||
/*
|
|
||||||
// Get data from the model
|
|
||||||
$items = $this->get('Items');
|
// Display the template
|
||||||
$pagination = $this->get('Pagination');
|
parent::display($tpl);
|
||||||
|
}
|
||||||
// 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
|
|
||||||
parent::display($tpl);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user