26 lines
507 B
PHP
26 lines
507 B
PHP
<?php
|
|
|
|
// No direct access.
|
|
defined('_JEXEC') or die;
|
|
|
|
class CommonClubsModelFactoryPosition extends AbstractCommonClubsModelFactory
|
|
{
|
|
protected function fetchAttributes()
|
|
{
|
|
return array(
|
|
new CommonClubsModelColumnString('name', new CommonClubsControllerMappingString('Bezeichnung'))
|
|
);
|
|
}
|
|
|
|
public function getTableName()
|
|
{
|
|
return '#__club_positions';
|
|
}
|
|
|
|
public function getClassName()
|
|
{
|
|
return 'CommonClubsModelPosition';
|
|
}
|
|
|
|
}
|