2016-01-30 20:28:43 +00:00
< ? php
2018-05-18 06:28:27 +00:00
/**
* @ package Joomla . Component . Builder
*
* @ created 30 th April , 2015
* @ author Llewellyn van der Merwe < http :// www . joomlacomponentbuilder . com >
* @ github Joomla Component Builder < https :// github . com / vdm - io / Joomla - Component - Builder >
2021-01-03 16:49:35 +00:00
* @ copyright Copyright ( C ) 2015 Vast Development Method . All rights reserved .
2018-05-18 06:28:27 +00:00
* @ license GNU General Public License version 2 or later ; see LICENSE . txt
*/
2016-01-30 20:28:43 +00:00
// No direct access to this file
defined ( '_JEXEC' ) or die ( 'Restricted access' );
?>
2016-05-20 05:00:31 +00:00
< ? php if ( isset ( $this -> icons [ 'main' ]) && is_array ( $this -> icons [ 'main' ])) : ?>
2016-01-30 20:28:43 +00:00
< ? php foreach ( $this -> icons [ 'main' ] as $icon ) : ?>
2016-05-20 05:00:31 +00:00
< div class = " dashboard-wraper " >
< div class = " dashboard-content " >
< a class = " icon " href = " <?php echo $icon->url ; ?> " >
< img alt = " <?php echo $icon->alt ; ?> " src = " components/com_componentbuilder/assets/images/icons/<?php echo $icon->image ; ?> " >
< span class = " dashboard-title " >< ? php echo JText :: _ ( $icon -> name ); ?> </span>
</ a >
</ div >
</ div >
< ? php endforeach ; ?>
< div class = " clearfix " ></ div >
< ? php else : ?>
< div class = " alert alert-error " >< h4 class = " alert-heading " >< ? php echo JText :: _ ( " Permission denied, or not correctly set " ); ?> </h4><div class="alert-message"><?php echo JText::_("Please notify your System Administrator if result is unexpected."); ?></div></div>
2016-01-30 20:28:43 +00:00
< ? php endif ; ?>