1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 12:48:24 +01:00
php-e107/e107_core/templates/membersonly_template.php

48 lines
1.4 KiB
PHP
Raw Normal View History

2006-12-02 04:36:16 +00:00
<?php
if (!defined('e107_INIT')) { exit; }
2015-02-14 01:11:44 -08:00
/*
2006-12-02 04:36:16 +00:00
$MEMBERSONLY_BEGIN = "<div style='width:75%;margin-right:auto;margin-left:auto'><br /><br />";
$MEMBERSONLY_CAPTION = "<div style='text-align:center'>".LAN_MEMBERS_0."</div>";
$MEMBERSONLY_TABLE = "
<div style='text-align:center'>
2012-12-22 00:59:56 -08:00
<table class='table fborder' style='width:75%;margin-right:auto;margin-left:auto'>
2006-12-02 04:36:16 +00:00
<tr>
<td class='forumheader3' style='text-align:center'><br />".LAN_MEMBERS_1." ".LAN_MEMBERS_2;
if ($pref['user_reg'])
{
$MEMBERSONLY_TABLE .= " ".LAN_MEMBERS_3." ";
}
$MEMBERSONLY_TABLE .= "<br /><br /><a href='".e_BASE."index.php'>".LAN_MEMBERS_4."</a>
</td>
</tr>
</table>
</div>
";
$MEMBERSONLY_END = "<div>";
2015-02-14 01:11:44 -08:00
*/
// e107 v2.x
$MEMBERSONLY_TEMPLATE['default']['caption'] = LAN_MEMBERS_0;
$MEMBERSONLY_TEMPLATE['default']['header'] = "<div class='container text-center' style='margin-right:auto;margin-left:auto'><br /><br />";
$MEMBERSONLY_TEMPLATE['default']['body'] = "<div class='alert alert-block text-danger'>
2015-02-14 01:11:44 -08:00
{MEMBERSONLY_RESTRICTED_AREA} {MEMBERSONLY_LOGIN}
{MEMBERSONLY_SIGNUP}<br /><br />{MEMBERSONLY_RETURNTOHOME}
</div>
";
2015-12-03 09:03:44 +01:00
$MEMBERSONLY_TEMPLATE['default']['footer'] = "</div>";
2015-02-14 01:11:44 -08:00
$MEMBERSONLY_TEMPLATE['signup']['header'] = "<div class='container'><div class='text-center'>{LOGO=login}</div>";
$MEMBERSONLY_TEMPLATE['signup']['footer'] = "</div>";