You've already forked joomla_test
first commit
This commit is contained in:
25
layouts/joomla/quickicons/icon.php
Normal file
25
layouts/joomla/quickicons/icon.php
Normal file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$id = empty($displayData['id']) ? '' : (' id="' . $displayData['id'] . '"');
|
||||
$target = empty($displayData['target']) ? '' : (' target="' . $displayData['target'] . '"');
|
||||
$onclick = empty($displayData['onclick']) ? '' : (' onclick="' . $displayData['onclick'] . '"');
|
||||
$title = empty($displayData['title']) ? '' : (' title="' . $this->escape($displayData['title']) . '"');
|
||||
$text = empty($displayData['text']) ? '' : ('<span>' . $displayData['text'] . '</span>')
|
||||
|
||||
?>
|
||||
<div class="row-fluid"<?php echo $id; ?>>
|
||||
<div class="span12">
|
||||
<a href="<?php echo $displayData['link']; ?>"<?php echo $target . $onclick . $title; ?>>
|
||||
<i class="icon-<?php echo $displayData['image']; ?>"></i> <?php echo $text; ?>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
1
layouts/joomla/quickicons/index.html
Normal file
1
layouts/joomla/quickicons/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
Reference in New Issue
Block a user