Club frontend partly created, missing the special cases
This commit is contained in:
@@ -5,33 +5,78 @@ use Joomla\CMS\Router\Route;
|
||||
// No direct access.
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$clubid = $this->club->getId();
|
||||
|
||||
?>
|
||||
|
||||
<h1><?php echo htmlentities($this->club->getName()); ?></h1>
|
||||
<h1><span class='clubs_content_row'><?php
|
||||
// echo htmlentities($this->club->getName());
|
||||
$partHandler = new ClubsPartClubName($clubid);
|
||||
echo $partHandler->getViewPart();
|
||||
?></span></h1>
|
||||
|
||||
<div class='clubs_row'>
|
||||
<div class='clubs_title_row'>Adresse</div>
|
||||
<div class='clubs_content_row'><?php echo nl2br(htmlentities($this->club->getAddress())); ?></div>
|
||||
<div class='clubs_content_row'>
|
||||
<?php
|
||||
$partHandler = new ClubsPartClubAddress($clubid);
|
||||
echo $partHandler->getViewPart();
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class='clubs_row'>
|
||||
<div class='clubs_title_row'>Stadt</div>
|
||||
<div class='clubs_content_row'><?php echo htmlentities($this->club->getCity()); ?></div>
|
||||
<div class='clubs_content_row'>
|
||||
<?php
|
||||
$partHandler = new ClubsPartClubCity($clubid);
|
||||
echo $partHandler->getViewPart();
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class='clubs_row'>
|
||||
<div class='clubs_title_row'>Homepage</div>
|
||||
<div class='clubs_content_row'><a href='<?php echo htmlentities($this->club->getHomepage()); ?>' target='_blank'><?php echo htmlentities($this->club->getHomepage()); ?></a></div>
|
||||
<div class='clubs_content_row'>
|
||||
<?php
|
||||
$partHandler = new ClubsPartClubHomepage($clubid);
|
||||
echo $partHandler->getViewPart();
|
||||
?><!-- <a href='<?php echo htmlentities($this->club->getHomepage()); ?>' target='_blank'><?php echo htmlentities($this->club->getHomepage()); ?></a>-->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class='clubs_row'>
|
||||
<div class='clubs_title_row'>Mail-Adresse</div>
|
||||
<div class='clubs_content_row'><a href='mailto:<?php echo htmlentities($this->club->getMail()); ?>'><?php echo htmlentities($this->club->getMail()); ?></a></div>
|
||||
<div class='clubs_content_row'>
|
||||
<?php
|
||||
$partHandler = new ClubsPartClubMail($clubid);
|
||||
echo $partHandler->getViewPart();
|
||||
?>
|
||||
<!--
|
||||
<a href='mailto:<?php echo htmlentities($this->club->getMail()); ?>'><?php echo htmlentities($this->club->getMail()); ?></a>
|
||||
-->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class='clubs_row'>
|
||||
<div class='clubs_title_row'>IBAN / BIC</div>
|
||||
<div class='clubs_content_row'><?php echo htmlentities($this->club->getIban()); ?> / <?php echo htmlentities($this->club->getBic()); ?></div>
|
||||
<div class='clubs_content_row' style='display: flex;'>
|
||||
<div style='flex: 1 0 0;'>
|
||||
<?php
|
||||
$partHandler = new ClubsPartClubIban($clubid);
|
||||
echo $partHandler->getViewPart();
|
||||
// echo htmlentities($this->club->getIban());
|
||||
?>
|
||||
</div>
|
||||
<span style='margin: 0px 0.75em'>/</span>
|
||||
<div style='flex: 1 0 0;'>
|
||||
<?php
|
||||
$partHandler = new ClubsPartClubBic($clubid);
|
||||
echo $partHandler->getViewPart();
|
||||
// echo htmlentities($this->club->getBic());
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class='clubs_row'>
|
||||
|
||||
Reference in New Issue
Block a user