24 lines
383 B
PHP
24 lines
383 B
PHP
<?php
|
|
|
|
|
|
// No direct access.
|
|
defined('_JEXEC') or die;
|
|
|
|
class ClubsControllerOffer extends AbstractClubsController
|
|
{
|
|
protected function getNameOfElement()
|
|
{
|
|
return 'offer';
|
|
}
|
|
|
|
protected function getDataMapping()
|
|
{
|
|
return array(
|
|
'name' => array('required'=>true, 'name'=>'Bezeichnung', 'filter'=>'string')
|
|
);
|
|
}
|
|
|
|
|
|
|
|
}
|