當前位置: 首頁>>代碼示例>>PHP>>正文


PHP osc_user_registration_enabled函數代碼示例

本文整理匯總了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));
     }
 }
開發者ID:nsswaga,項目名稱:OSClass,代碼行數:12,代碼來源:register.php

示例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()) {
            ?>
                            &bull; <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">
開發者ID:blairmain,項目名稱:theme-realestate,代碼行數:31,代碼來源:header.php

示例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');
開發者ID:mylastof,項目名稱:os-class,代碼行數:31,代碼來源:settings.php


注:本文中的osc_user_registration_enabled函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。