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


PHP Ldap::save_config方法代碼示例

本文整理匯總了PHP中Ldap::save_config方法的典型用法代碼示例。如果您正苦於以下問題:PHP Ldap::save_config方法的具體用法?PHP Ldap::save_config怎麽用?PHP Ldap::save_config使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Ldap的用法示例。


在下文中一共展示了Ldap::save_config方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: install

 /**
  * plugin installation
  *
  * perform here all needed step for the plugin installation
  * such as create default config, add database tables,
  * add fields to existing tables, create local folders...
  */
 function install($plugin_version, &$errors = array())
 {
     global $conf;
     $config = new Ldap();
     if (file_exists(LDAP_LOGIN_PATH . 'data.dat')) {
         $config->load_config();
     } else {
         $config->load_default_config();
     }
     $config->save_config();
     $this->installed = true;
 }
開發者ID:kvakanet,項目名稱:ldap_login,代碼行數:19,代碼來源:maintain.inc.php

示例2:

$template->assign('ALLOW_NEWUSERS', $me->config['allow_newusers']);
// do we send a mail to admins in case of new users ?
$template->assign('ADVERTISE_ADMINS', $me->config['advertise_admin_new_ldapuser']);
// do we send the piwigo (!) password to the mail address provided by ldap ?
$template->assign('SEND_CASUAL_MAIL', $me->config['send_password_by_mail_ldap']);
// Is there a restriction in the ldap users group ?
// Only members of this ldap group can log in !
$template->assign('USERS_GROUP', $me->config['users_group']);
if (isset($_POST['save'])) {
    $me->config['users_group'] = $_POST['USERS_GROUP'];
    if (isset($_POST['ALLOW_NEWUSERS'])) {
        $me->config['allow_newusers'] = True;
    } else {
        $me->config['allow_newusers'] = False;
    }
    if (isset($_POST['ADVERTISE_ADMINS'])) {
        $me->config['advertise_admin_new_ldapuser'] = True;
    } else {
        $me->config['advertise_admin_new_ldapuser'] = False;
    }
    if (isset($_POST['SEND_CASUAL_MAIL'])) {
        $me->config['send_password_by_mail_ldap'] = True;
    } else {
        $me->config['send_password_by_mail_ldap'] = False;
    }
}
// Save LDAP configuration
if (isset($_POST['save'])) {
    $me->save_config();
}
$template->assign_var_from_handle('ADMIN_CONTENT', 'plugin_admin_content');
開發者ID:kvakanet,項目名稱:ldap_login,代碼行數:31,代碼來源:newusers.php


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