当前位置: 首页>>代码示例>>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;未经允许,请勿转载。