23 lines
399 B
PHP
23 lines
399 B
PHP
<?php
|
|
|
|
// No direct access.
|
|
defined('_JEXEC') or die;
|
|
|
|
class CommonClubsModelPlace extends AbstractCommonClubsModel
|
|
{
|
|
protected function getFactory()
|
|
{
|
|
return new CommonClubsModelFactoryPlace();
|
|
}
|
|
|
|
public function getName()
|
|
{
|
|
return $this->getValues()['name'];
|
|
}
|
|
|
|
public function getClub()
|
|
{
|
|
return $this->getValues()['club'];
|
|
}
|
|
|
|
} |