Removed a few bugs in the Frontend regarding incompatible data types (inheritance)
This commit is contained in:
parent
9c407e750f
commit
8aaf1bf057
@ -11,11 +11,12 @@ defined('_JEXEC') or die;
|
|||||||
class ClubsViewClubAssoc extends HtmlView
|
class ClubsViewClubAssoc extends HtmlView
|
||||||
{
|
{
|
||||||
|
|
||||||
public function display(string $tpl = null)
|
public function display($tpl = null)
|
||||||
{
|
{
|
||||||
// FIXME Insert code from DB
|
// FIXME Insert code from DB
|
||||||
$inp = Factory::getApplication()->input;
|
$inp = Factory::getApplication()->input;
|
||||||
|
|
||||||
|
$this->personId = 34;
|
||||||
$this->userName = 'Max Muster';
|
$this->userName = 'Max Muster';
|
||||||
$this->userMail = 'Foo@bar.com';
|
$this->userMail = 'Foo@bar.com';
|
||||||
$this->userPhone = '34';
|
$this->userPhone = '34';
|
||||||
|
@ -10,7 +10,7 @@ defined('_JEXEC') or die;
|
|||||||
class ClubsViewClubData extends HtmlView
|
class ClubsViewClubData extends HtmlView
|
||||||
{
|
{
|
||||||
|
|
||||||
public function display(string $tpl = null)
|
public function display($tpl = null)
|
||||||
{
|
{
|
||||||
// FIXME Insert code from DB
|
// FIXME Insert code from DB
|
||||||
$this->clubid = 43;
|
$this->clubid = 43;
|
||||||
|
@ -10,7 +10,7 @@ defined('_JEXEC') or die;
|
|||||||
class ClubsViewClubPlace extends HtmlView
|
class ClubsViewClubPlace extends HtmlView
|
||||||
{
|
{
|
||||||
|
|
||||||
public function display(string $tpl = null)
|
public function display($tpl = null)
|
||||||
{
|
{
|
||||||
// FIXME Insert code from DB
|
// FIXME Insert code from DB
|
||||||
$this->clubid = 43;
|
$this->clubid = 43;
|
||||||
|
@ -10,7 +10,7 @@ defined('_JEXEC') or die;
|
|||||||
class ClubsViewClubPlaces extends HtmlView
|
class ClubsViewClubPlaces extends HtmlView
|
||||||
{
|
{
|
||||||
|
|
||||||
public function display(string $tpl = null)
|
public function display($tpl = null)
|
||||||
{
|
{
|
||||||
// FIXME Insert code from DB
|
// FIXME Insert code from DB
|
||||||
$this->clubid = 43;
|
$this->clubid = 43;
|
||||||
|
@ -10,7 +10,7 @@ defined('_JEXEC') or die;
|
|||||||
class ClubsViewSearchPerson extends HtmlView
|
class ClubsViewSearchPerson extends HtmlView
|
||||||
{
|
{
|
||||||
|
|
||||||
public function display(string $tpl = null)
|
public function display($tpl = null)
|
||||||
{
|
{
|
||||||
// FIXME Insert code from DB
|
// FIXME Insert code from DB
|
||||||
$inp = Factory::getApplication()->input;
|
$inp = Factory::getApplication()->input;
|
||||||
|
@ -9,7 +9,7 @@ defined('_JEXEC') or die;
|
|||||||
|
|
||||||
class ClubsViewUSerdata extends HtmlView
|
class ClubsViewUSerdata extends HtmlView
|
||||||
{
|
{
|
||||||
public function display(string $tpl = null)
|
public function display($tpl = null)
|
||||||
{
|
{
|
||||||
Factory::getDocument()->addStyleSheet(Uri::base(true) . 'components/com_clubs/css/clubs.css');
|
Factory::getDocument()->addStyleSheet(Uri::base(true) . 'components/com_clubs/css/clubs.css');
|
||||||
parent::display($tpl);
|
parent::display($tpl);
|
||||||
|
Loading…
Reference in New Issue
Block a user