1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-11 00:54:49 +02:00

Moved library loading into class2. Fixes Fontawesome not loading early enough when added via theme.xml (with forum and possibly other parts of e107). Added the FONTAWESOME constant to Paths/Variables debug output.

This commit is contained in:
Cameron
2019-04-11 10:47:50 -07:00
parent 0ac0ab0b21
commit f148e20837
4 changed files with 29 additions and 28 deletions

View File

@@ -91,8 +91,6 @@ function loadJSAddons()
}
}
// Load library dependencies.
e107::getTheme('current', true)->loadLibrary();
// Load other JS files.
loadJSAddons();
@@ -497,26 +495,26 @@ echo "</head>
echo getModal();
echo getAlert();
function getModal($caption = '', $type='')
function getModal()
{
if(deftrue('BOOTSTRAP')) // see bootstrap3/admin_template.php
{
return '';
}
if(deftrue('BOOTSTRAP')) // see bootstrap3/admin_template.php
{
return '';
}
if(e_PAGE == 'menus.php' && vartrue($_GET['configure'])) // Menu Manager iFrame disable
{
if(e_PAGE == 'menus.php' && vartrue($_GET['configure'])) // Menu Manager iFrame disable
{
return null;
}
/*
if(e_PAGE == "image.php")
{
return;
}
}
*/
if(e_PAGE == "image.php")
{
// return;
}
return '
return '
<div id="uiModal" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
@@ -537,16 +535,11 @@ echo getAlert();
</div>
</div>';
}
}
function getAlert($caption='')
function getAlert()
{
// style="box-shadow:0px 15px 8px #000;width:300px;position:absolute;left:40%;right:40%;top:15%;z-index:10000"
return '<div id="uiAlert" class="notifications center"><!-- empty --></div>';
}