mirror of
https://github.com/e107inc/e107.git
synced 2025-01-16 20:28:28 +01:00
Bootstrap 4 fixes. USERTHEME fix.
This commit is contained in:
parent
14862f0463
commit
1a510cb897
@ -1619,7 +1619,7 @@ class e107
|
||||
}
|
||||
else
|
||||
{
|
||||
$themedir= self::getPref('sitetheme');
|
||||
$themedir= deftrue('USERTHEME', self::getPref('sitetheme'));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -89,7 +89,7 @@ class e_theme
|
||||
{
|
||||
if($theme === null)
|
||||
{
|
||||
$theme = e107::pref('core','sitetheme');
|
||||
$theme = deftrue('USERTHEME', e107::pref('core','sitetheme'));
|
||||
}
|
||||
|
||||
if(!is_readable(e_THEME.$theme."/layouts/".$key."_layout.html") || !is_readable(e_THEME.$theme."/theme.html"))
|
||||
@ -1125,7 +1125,6 @@ class e_theme
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
// check for valid theme.
|
||||
if (@fopen(e_THEME . $themeDir . '/theme.php', 'r'))
|
||||
{
|
||||
@ -1160,12 +1159,14 @@ class e_theme
|
||||
define('THEME', e_THEME . $e107tmp_theme . '/');
|
||||
define('THEME_ABS', e_THEME_ABS . $e107tmp_theme . '/');
|
||||
define('THEME_VERSION', 2.3);
|
||||
define('THEME_LEGACY', false);
|
||||
define('USERTHEME', 'bootstrap3');
|
||||
define('BOOTSTRAP', 3);
|
||||
define('FONTAWESOME', 4);
|
||||
|
||||
if (ADMIN && strpos(e_SELF, $ADMIN_DIRECTORY) === false)
|
||||
if (ADMIN && (e_ADMIN_AREA !== true))
|
||||
{
|
||||
echo '<script>alert("' . $tp->toJS(CORE_LAN1) . '")</script>';
|
||||
$tm = e107::getSingleton('themeHandler');
|
||||
$tm->setTheme($e107tmp_theme);
|
||||
echo "<div class='alert alert-danger'><b>".$themeDir."</b> ".str_replace('\n','<br />',CORE_LAN1)."</div>";
|
||||
}
|
||||
|
||||
e107::getDebug()->logTime('Theme Check End');
|
||||
|
@ -66,7 +66,7 @@ function gallery_load_prettyphoto() // @lonalore FIXME Stop loading this on ever
|
||||
if(vartrue($plugPref['downloadable'], false))
|
||||
{
|
||||
$settings['prettyphoto']['image_markup'] .= '<span class="download-btn">';
|
||||
$settings['prettyphoto']['image_markup'] .= '<a class="btn btn-default btn-secondary btn-xs" href="{path}">' . LAN_DOWNLOAD . '</a>';
|
||||
$settings['prettyphoto']['image_markup'] .= '<a class="btn btn-default btn-secondary btn-sm btn-xs" href="{path}">' . LAN_DOWNLOAD . '</a>';
|
||||
$settings['prettyphoto']['image_markup'] .= '</span>';
|
||||
}
|
||||
|
||||
|
@ -66,10 +66,10 @@ $GALLERY_TEMPLATE['slideshow_wrapper'] = '
|
||||
</div>
|
||||
|
||||
<div class="gallery-slideshow-controls">
|
||||
<a href="#" class="gallery-control gal-next btn btn-xs btn-default btn-secondary pull-right float-right">
|
||||
<a href="#" class="gallery-control gal-next btn btn-sm btn-xs btn-default btn-secondary pull-right float-right">
|
||||
' . LAN_NEXT . ' {GLYPH=fa-chevron-right}
|
||||
</a>
|
||||
<a href="#" class="gallery-control gal-prev btn btn-xs btn-default btn-secondary">
|
||||
<a href="#" class="gallery-control gal-prev btn btn-sm btn-xs btn-default btn-secondary">
|
||||
{GLYPH=fa-chevron-left} ' . LAN_PREVIOUS . '
|
||||
</a>
|
||||
<span class="gallery-slide-jumper-container">
|
||||
|
@ -57,8 +57,8 @@ if(!$OTHERNEWS_STYLE)
|
||||
}
|
||||
$template = e107::getTemplate('news', 'news_menu', 'other', true, true);
|
||||
|
||||
$item_selector = '<div class="btn-group pull-right float-right"><a class="btn btn-mini btn-xs btn-default btn-secondary" href="#otherNews" data-slide="prev" data-bs-slide="prev">‹</a>
|
||||
<a class="btn btn-mini btn-xs btn-default btn-secondary" href="#otherNews" data-slide="next" data-bs-slide="next">›</a></div>';
|
||||
$item_selector = '<div class="btn-group pull-right float-right"><a class="btn btn-mini btn-sm btn-xs btn-default btn-secondary" href="#otherNews" data-slide="prev" data-bs-slide="prev">‹</a>
|
||||
<a class="btn btn-sm btn-mini btn-xs btn-default btn-secondary" href="#otherNews" data-slide="next" data-bs-slide="next">›</a></div>';
|
||||
|
||||
if(!empty($parms['caption']))
|
||||
{
|
||||
|
@ -27,7 +27,7 @@ if (!defined('e107_INIT')) { exit; }
|
||||
|
||||
if(deftrue('BOOTSTRAP') && deftrue('FONTAWESOME'))
|
||||
{
|
||||
define('PM_INBOX_ICON', e107::getParser()->toGlyph('fa-inbox'));
|
||||
define('PM_INBOX_ICON', e107::getParser()->toGlyph('fa-inbox').e107::getParser()->toGlyph('fa-arrow-down'));
|
||||
// Icon candidate to stacked fontawesome icons...
|
||||
define('PM_OUTBOX_ICON', e107::getParser()->toGlyph('fa-inbox').e107::getParser()->toGlyph('fa-arrow-up'));
|
||||
// Icon candidate to animated fontawesome icons...
|
||||
|
Loading…
x
Reference in New Issue
Block a user