HummingBirdAnimeClient/src/AnimeClient/Component/Tabs.php

60 lines
1.6 KiB
PHP
Raw Normal View History

<?php declare(strict_types=1);
/**
* Hummingbird Anime List Client
*
* An API client for Kitsu to manage anime and manga watch lists
*
2021-02-04 11:57:01 -05:00
* PHP version 8
*
* @package HummingbirdAnimeClient
* @author Timothy J. Warren <tim@timshomepage.net>
2021-01-13 01:52:03 -05:00
* @copyright 2015 - 2021 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-12-10 17:06:50 -05:00
* @version 5.2
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\Component;
final class Tabs {
use ComponentTrait;
/**
* Creates a tabbed content view
*
* @param string $name the name attribute for the input[type-option] form elements
* also used to generate id attributes
* @param array $tabData The data used to create the tab content, indexed by the tab label
* @param callable $cb The function to generate the tab content
2020-08-26 17:26:42 -04:00
* @param string $className
* @param bool $hasSectionWrapper
* @return string
*/
public function __invoke(
string $name,
array $tabData,
callable $cb,
2020-08-26 17:26:42 -04:00
string $className = 'content media-wrap flex flex-wrap flex-justify-start',
bool $hasSectionWrapper = false
): string
{
if (count($tabData) < 2)
{
return $this->render('single-tab.php', [
'name' => $name,
'data' => $tabData,
'callback' => $cb,
'className' => $className . ' single-tab',
'hasSectionWrapper' => $hasSectionWrapper,
]);
}
return $this->render('tabs.php', [
'name' => $name,
'data' => $tabData,
'callback' => $cb,
'className' => $className,
2020-08-26 17:26:42 -04:00
'hasSectionWrapper' => $hasSectionWrapper,
]);
}
}