22 lines
376 B
PHP
22 lines
376 B
PHP
<?php
|
|
|
|
|
|
// No direct access.
|
|
defined('_JEXEC') or die;
|
|
|
|
class ClubsControllerPosition extends AbstractClubsController
|
|
{
|
|
protected function getNameOfElement()
|
|
{
|
|
return 'position';
|
|
}
|
|
|
|
protected function getDataMapping()
|
|
{
|
|
return array(
|
|
'name'=>array('required'=>true, 'filter'=>'string', 'name'=>'Bezeichung')
|
|
);
|
|
}
|
|
|
|
}
|