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


PHP Ldap::lda_del方法代碼示例

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


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

示例1: elseif

         //}
         print "<tr><td align='right'>Alias actif :</td>\n                <td align='left'><input type='checkbox' name='isactive'\n                {$isactive} tabindex='" . $tab++ . "' /></td></tr>\n";
         print "<tr><td>&nbsp,</td><td align='left'>";
         print "<p><input type='submit' class='button' \n                value='Valider' name='valider' tabindex='" . $tab++ . "' /></p>\n";
         print "</td></tr>";
         print "</table>\n";
         print '</form>';
     }
 } elseif (isset($_GET['del'])) {
     $cn = Html::clean($_GET['del']);
     if (isset($_GET['modif']) && $_GET['modif'] == 'yes') {
         print "<center>";
         print "<p>Suppression {$cn} en cours...</p>";
         // TODO : Verifier que l'objet existe avant sa suppression
         $ldapconn = Ldap::lda_connect(LDAP_ADMIN_DN, LDAP_ADMIN_PASS);
         $sr = Ldap::lda_del($ldapconn, "cn=" . $cn . "," . $rdn);
         if ($sr) {
             print "<p class='strong'>Suppression {$cn} effectu&eacute;e.</p>";
             EvoLog::log("Del alias " . $cn);
         } else {
             print "<p class='error>Erreur, suppression non effectu&eacute;e.</p>";
             EvoLog::log("Delete {$cn} failed");
         }
         print "</center>";
     } else {
         print "<center>";
         print "<p>Vous allez effacer l'alias <b>{$cn}</b>...<br />";
         print "<a href='alias.php?del={$cn}&modif=yes'>Confirmer la suppression</a>";
         print "</center>";
     }
 } else {
開發者ID:Evolix,項目名稱:evoadmin-mail,代碼行數:31,代碼來源:alias.php

示例2: failed

 $uid = Html::clean($_GET['del']);
 if (isset($_GET['modif']) && $_GET['modif'] == 'yes') {
     $ldapconn = Ldap::lda_connect(LDAP_ADMIN_DN, LDAP_ADMIN_PASS);
     print "<center>";
     print "<p>Suppression {$uid} en cours...</p>";
     // Verify if person exists...
     // TODO : /!\ il faudrait verifier le DN plutot que le uid
     if (!Ldap::is_uid($uid)) {
         print "<p class='error>Erreur, compte inexistant</p>";
         EvoLog::log("Delete {$uid} failed (user doesn't exist).");
         // *Try* to verify if user is always in aliases...
     } elseif (Ldap::is_what($uid, 'maildrop') > 1) {
         print "<p class='error>Erreur, compte encore pr&eacute;sent dans certains alias</p>";
         EvoLog::log("Delete {$uid} failed (user always in aliases).");
         // LDAP deletion
     } elseif (Ldap::lda_del($ldapconn, "uid=" . $uid . "," . $rdn)) {
         if (!$conf['domaines']['ldap']['virtual']) {
             // script suppression systeme
             unix_del($uid);
         }
         // TODO : suppression params HORDE
         // $query = 'delete from horde_prefs where pref_uid="' .$uid. '"';
         print "<p class='strong'>Suppression {$uid} effectu&eacute;e.</p>";
         EvoLog::log("Del user " . $uid);
     } else {
         print "<p class='error>Erreur, suppression non effectu&eacute;e.</p>";
         EvoLog::log("Delete {$uid} failed");
     }
     print "</center>";
 } else {
     print "<center>";
開發者ID:Evolix,項目名稱:evoadmin-mail,代碼行數:31,代碼來源:compte.php


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