2023-07-26 09:09:42 +00:00
< ? php
/*----------------------------------------------------------------------------------| io . vdm . dev |----/
Vast Development Method
/-------------------------------------------------------------------------------------------------------/
@ package getBible . net
@ created 3 rd December , 2015
@ author Llewellyn van der Merwe < https :// getbible . net >
@ git Get Bible < https :// git . vdm . dev / getBible >
@ github Get Bible < https :// github . com / getBible >
@ support Get Bible < https :// git . vdm . dev / getBible / support >
@ copyright Copyright ( C ) 2015. All Rights Reserved
@ license GNU / GPL Version 2 or later - http :// www . gnu . org / licenses / gpl - 2.0 . html
/------------------------------------------------------------------------------------------------------*/
2024-01-29 07:31:35 +00:00
use Joomla\CMS\Language\Text ;
2023-07-26 09:09:42 +00:00
// No direct access to this file
2024-01-23 17:16:25 +00:00
defined ( '_JEXEC' ) or die ;
2023-07-26 09:09:42 +00:00
?>
< ? php if ( isset ( $this -> icons [ 'main' ]) && is_array ( $this -> icons [ 'main' ])) : ?>
< ? php foreach ( $this -> icons [ 'main' ] as $icon ) : ?>
< div class = " dashboard-wraper " >
2024-01-23 17:16:25 +00:00
< div class = " dashboard-content " >
2023-07-26 09:09:42 +00:00
< a class = " icon " href = " <?php echo $icon->url ; ?> " >
< img alt = " <?php echo $icon->alt ; ?> " src = " components/com_getbible/assets/images/icons/<?php echo $icon->image ; ?> " >
2023-12-23 16:05:05 +00:00
< span class = " dashboard-title " >< ? php echo Text :: _ ( $icon -> name ); ?> </span>
2023-07-26 09:09:42 +00:00
</ a >
</ div >
</ div >
< ? php endforeach ; ?>
< div class = " clearfix " ></ div >
< ? php else : ?>
2023-12-23 16:05:05 +00:00
< div class = " alert alert-error " >< h4 class = " alert-heading " >< ? php echo Text :: _ ( " Permission denied, or not correctly set " ); ?> </h4><div class="alert-message"><?php echo Text::_("Please notify your System Administrator if result is unexpected."); ?></div></div>
2023-07-26 09:09:42 +00:00
< ? php endif ; ?>