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,19 @@
<?php
// No direct access.
defined('_JEXEC') or die;
class CommonClubsModelUser extends AbstractCommonClubsModel
{
protected function getFactory()
{
return new CommonClubsModelFactoryUser();
}
public function getName()
{
return $this->getValues()['name'];
}
}