37 lines
668 B
PHP
37 lines
668 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'];
|
|
}
|
|
|
|
public function getArea()
|
|
{
|
|
return $this->getValues()['area'];
|
|
}
|
|
|
|
public function setName($name)
|
|
{
|
|
$this->setValue('name', $name);
|
|
}
|
|
|
|
public function setArea($area)
|
|
{
|
|
$this->setValue('area', $area);
|
|
}
|
|
} |