本文整理匯總了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');