PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom2
/
layouts
/
joomla
/
toolbar
<?php /** * @package Joomla.Site * @subpackage Layout * * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('JPATH_BASE') or die; JHtml::_('behavior.core'); /** * Generic toolbar button layout to open a modal * ----------------------------------------------- * @param array $displayData Button parameters. Default supported parameters: * - selector string Unique DOM identifier for the modal. CSS id without # * - class string Button class * - icon string Button icon * - text string Button text */ $selector = $displayData['selector']; $class = isset($displayData['class']) ? $displayData['class'] : 'btn btn-small'; $icon = isset($displayData['icon']) ? $displayData['icon'] : 'out-3'; $text = isset($displayData['text']) ? $displayData['text'] : ''; ?> <button class="<?php echo $class; ?>" data-toggle="modal" data-target="#<?php echo $selector; ?>"> <span class="icon-<?php echo $icon; ?>" aria-hidden="true"></span> <?php echo $text; ?> </button>
[+]
..
[-] base.php
[edit]
[-] batch.php
[edit]
[-] confirm.php
[edit]
[-] containerclose.php
[edit]
[-] containeropen.php
[edit]
[-] help.php
[edit]
[-] iconclass.php
[edit]
[-] index.html
[edit]
[-] link.php
[edit]
[-] modal.php
[edit]
[-] popup.php
[edit]
[-] separator.php
[edit]
[-] slider.php
[edit]
[-] standard.php
[edit]
[-] title.php
[edit]
[-] versions.php
[edit]
[-] .htaccess.disabled
[edit]