Created basic backend for club view
This commit is contained in:
@@ -108,7 +108,7 @@ class ClubsClub extends AbstractClubsModel
|
||||
/**
|
||||
* @param string $homapge
|
||||
*/
|
||||
public function setHomapge(string $homapge)
|
||||
public function setHomepage(string $homapge)
|
||||
{
|
||||
$this->homepage = $homapge;
|
||||
}
|
||||
@@ -232,12 +232,12 @@ class ClubsClub extends AbstractClubsModel
|
||||
|
||||
protected function getDataMappings()
|
||||
{
|
||||
return array('name', 'address', 'city', 'homepage', 'mail', 'iban', 'bic', 'charitable');
|
||||
return array('name', 'address', 'city', 'homepage', 'mail', 'iban', 'bic', 'charitable', 'president');
|
||||
}
|
||||
|
||||
protected function getRequiredDataMappings()
|
||||
{
|
||||
return array('name', 'address', 'city', 'mail', 'iban', 'bic', 'charitable');
|
||||
return array('name', 'address', 'city', 'mail', 'iban', 'bic');
|
||||
}
|
||||
|
||||
private const tableName = '#__club_clubs';
|
||||
|
||||
Reference in New Issue
Block a user