1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 11:50:30 +02:00

{LOGIN_TABLE_FPW_LINK} - added class #3466

This commit is contained in:
Jimako
2018-09-27 14:42:14 +02:00
committed by GitHub
parent c69184848c
commit e1a9355eaf

View File

@@ -189,17 +189,19 @@ class login_shortcodes extends e_shortcode
}
/* example {LOGIN_TABLE_FPW_LINK} */
/* example {LOGIN_TABLE_FPW_LINK: class=dg-btn-2 btn-white radius-3px hover-white size-xl} */
function sc_login_table_fpw_link($parm='')
{
if(empty($this->userReg))
{
return null;
}
return "<a href='".e_BASE."fpw.php'>".LAN_LOGIN_12."</a>";
$class = (!empty($parm['class'])) ? "class='".$parm['class']."'" : "";
return "<a href='".e_HTTP."fpw.php' ".$class.">".LAN_LOGIN_12."</a>";
}
}
?>
?>