34 lines
830 B
PHP
34 lines
830 B
PHP
<?php
|
|
|
|
// No direct access.
|
|
defined('_JEXEC') or die;
|
|
|
|
class CommonClubsModelFactoryUser extends AbstractCommonClubsModelFactory
|
|
{
|
|
public function fetchAttributes()
|
|
{
|
|
return array(
|
|
new CommonClubsModelColumnString('user'),
|
|
new CommonClubsModelColumnString('name'),
|
|
new CommonClubsModelColumnString('password'),
|
|
new CommonClubsModelColumnString('address'),
|
|
new CommonClubsModelColumnString('city'),
|
|
new CommonClubsModelColumnString('mail'),
|
|
new CommonClubsModelColumnString('phone'),
|
|
new CommonClubsModelColumnString('mobile')
|
|
);
|
|
}
|
|
|
|
public function getTableName()
|
|
{
|
|
return '#__club_users';
|
|
}
|
|
|
|
public function getClassName()
|
|
{
|
|
return 'CommonClubsModelUser';
|
|
}
|
|
|
|
|
|
}
|