mirror of
https://github.com/e107inc/e107.git
synced 2025-08-12 01:25:01 +02:00
This commit is contained in:
@@ -415,7 +415,7 @@ class download_shortcodes extends e_shortcode
|
||||
|
||||
if(deftrue('BOOTSTRAP'))
|
||||
{
|
||||
$img = e107::getParser()->toGlyph('icon-download.glyph',false);
|
||||
$img = e107::getParser()->toGlyph('fa-download',false);
|
||||
// $img = '<i class="icon-download"></i>';
|
||||
}
|
||||
|
||||
@@ -704,7 +704,7 @@ class download_shortcodes extends e_shortcode
|
||||
|
||||
if(deftrue('BOOTSTRAP'))
|
||||
{
|
||||
$img = e107::getParser()->toGlyph('download',$parm); // '<i class="icon-download"></i>';
|
||||
$img = e107::getParser()->toGlyph('fa-download',$parm); // '<i class="icon-download"></i>';
|
||||
}
|
||||
|
||||
if ($pref['agree_flag'] == 1)
|
||||
@@ -955,7 +955,7 @@ class download_shortcodes extends e_shortcode
|
||||
|
||||
$url = e107::url('download', 'item', $dlrowrow);
|
||||
|
||||
$icon = (deftrue('BOOTSTRAP')) ? $tp->toGlyph('chevron-left') : '<<';
|
||||
$icon = (deftrue('BOOTSTRAP')) ? $tp->toGlyph('fa-chevron-left') : '<<';
|
||||
|
||||
return "<a class='e-tip' href='".$url ."' title=\"".$dlrowrow['download_name']."\">".$icon." ".LAN_PREVIOUS."</a>\n";
|
||||
|
||||
@@ -982,7 +982,7 @@ class download_shortcodes extends e_shortcode
|
||||
extract($dlrowrow);
|
||||
$url = $url = e107::url('download', 'item', $dlrowrow);
|
||||
|
||||
$icon = (deftrue('BOOTSTRAP')) ? $tp->toGlyph('chevron-right') : '>>';
|
||||
$icon = (deftrue('BOOTSTRAP')) ? $tp->toGlyph('fa-chevron-right') : '>>';
|
||||
|
||||
return "<a class='e-tip' href='".$url."' title=\"".$dlrowrow['download_name']."\">".LAN_NEXT." ".$icon."</a>\n";
|
||||
|
||||
|
Reference in New Issue
Block a user