| Server IP : 89.248.107.232 / Your IP : 216.73.217.70 Web Server : Apache System : Linux host2.kasilh.com 5.14.0-687.36.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 7 05:40:49 EDT 2026 x86_64 User : seg ( 10005) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/seg-sa.es/gessing.es/wp-content/plugins/akeebabackupwp/app/Awf/Html/ |
Upload File : |
<?php
/**
* @package Awf
* @copyright 2014-2016 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU GPL version 3 or later
*/
namespace Awf\Html;
/**
* An abstraction around Bootstrap collapsible panels (accordions)
*
* @see http://getbootstrap.com/javascript/#collapse
*
* Use:
* echo Accordion::start('myAccordion');
* echo Accordion::panel('My first panel', 'panel-first', 'myAccordion');
* echo "Some HTML for the first panel contents";
* echo Accordion::panel('My second panel', 'panel-second', 'myAccordion');
* echo "Some HTML for the second panel contents";
* echo Accordion::end();
*/
class Accordion
{
/**
* Opens the current accordion group
*
* @param string $id The ID of the accordion
*
* @return string
*/
public static function start($id)
{
return <<< HTML
<div class="panel-group" id="$id">
<div style="display: none"><div><div>
HTML;
}
/**
* Close the current accordion group
*
* @return string HTML to close the accordion group
*/
public static function end()
{
return <<< HTML
</div>
</div>
</div>
</div>
HTML;
}
/**
* @param string $title The title HTML of this panel
* @param string $id The ID of this panel
* @param string $accordionId The ID of the accordion this panel belongs to
* @param string $panelStyle The style of this panel (default, warning, info, success, danger)
* @param boolean $open Is this panel open in the accordion?
*/
public static function panel($title, $id, $accordionId, $panelStyle = 'default', $open = false)
{
// Open a new panel inside the accordion
$in = $open ? 'in' : '';
echo <<< HTML
</div>
</div>
</div>
<div class="panel panel-$panelStyle">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#$accordionId" href="#$id">
$title
</a>
</h4>
</div>
<div id="$id" class="panel-collapse collapse $in">
<div class="panel-body">
HTML;
}
}