Added second class to debug 1:n relation, which is working in general

This commit is contained in:
2019-05-22 15:47:10 +02:00
parent b868f0fe86
commit cb624c19eb
5 changed files with 54 additions and 4 deletions

View File

@@ -0,0 +1,27 @@
<?php
// No direct access.
defined('_JEXEC') or die;
class CommonClubsModelFactoryUser extends AbstractCommonClubsModelFactory
{
public function getAttributes()
{
return array(
'user'=>array(),
'name'=>array()
);
}
public function getTableName()
{
return '#__club_users';
}
public function getClassName()
{
return 'CommonClubsModelUser';
}
}