本文整理汇总了PHP中osc_user_registration_enabled函数的典型用法代码示例。如果您正苦于以下问题:PHP osc_user_registration_enabled函数的具体用法?PHP osc_user_registration_enabled怎么用?PHP osc_user_registration_enabled使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了osc_user_registration_enabled函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
function __construct()
{
parent::__construct();
if (!osc_users_enabled()) {
osc_add_flash_error_message(_m('Users not enabled'));
$this->redirectTo(osc_base_url(true));
}
if (!osc_user_registration_enabled()) {
osc_add_flash_error_message(_m('User registration is not enabled'));
$this->redirectTo(osc_base_url(true));
}
}
示例2: osc_user_login_url
?>
</a>
</li>
<?php
} else {
?>
<li class="first">
<a id="login_open" href="<?php
echo osc_user_login_url();
?>
"><?php
_e('Login', 'realestate');
?>
</a>
<?php
if (osc_user_registration_enabled()) {
?>
• <a href="<?php
echo osc_register_account_url();
?>
"><?php
_e('Register for a free account', 'realestate');
?>
</a>
<?php
}
?>
<form id="login" action="<?php
echo osc_base_url(true);
?>
" method="post">
示例3: osc_users_enabled
</div>
<div class="form-controls">
<label id="enabled_users" class="form-label-checkbox">
<input type="checkbox" id="enabled_users" name="enabled_users" <?php
echo osc_users_enabled() ? 'checked="checked"' : '';
?>
value="1" />
<?php
_e('Users enabled');
?>
</label>
</div>
<div class="form-controls separate-top-medium">
<label id="enabled_user_registration">
<input type="checkbox" id="enabled_user_registration" name="enabled_user_registration" <?php
echo osc_user_registration_enabled() ? 'checked="checked"' : '';
?>
value="1" />
<?php
_e('Anyone can register');
?>
</label>
</div>
<div class="form-controls separate-top-medium">
<label id="enabled_user_validation">
<input type="checkbox" id="enabled_user_validation" name="enabled_user_validation" <?php
echo osc_user_validation_enabled() ? 'checked="checked"' : '';
?>
value="1" />
<?php
_e('Users need to validate their account');