22 lines
420 B
PHP
22 lines
420 B
PHP
<?php
|
|
|
|
// No direct access.
|
|
defined('_JEXEC') or die;
|
|
|
|
class ClubsPartClubMail extends ClubsHelperPartTextfield
|
|
{
|
|
protected function getPartName()
|
|
{
|
|
return 'club.mail';
|
|
}
|
|
|
|
protected function getEditContent()
|
|
{
|
|
$clubFactory = new CommonClubsModelFactoryClub();
|
|
$club = $clubFactory->loadById($this->id);
|
|
|
|
return htmlentities($club->getMail());
|
|
}
|
|
|
|
}
|