mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@310851 c90b9560-bf6c-de11-be94-00142212c4b1
70 lines
1.8 KiB
XML
70 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
|
|
<chapter xml:id="kadm5.examples" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
&reftitle.examples;
|
|
<section xml:id="kadm5.examples-connect">
|
|
<title>Basic usage</title>
|
|
<para>
|
|
This simple example shows how to connect, query, print
|
|
resulting principals and disconnect from a KADM5 database.
|
|
<example>
|
|
<title>KADM5 extension overview example</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
|
|
$handle = kadm5_init_with_password("afs-1", "GONICUS.LOCAL", "admin/admin", "password");
|
|
|
|
print "<h1>get_principals</h1>\n";
|
|
$principals = kadm5_get_principals($handle);
|
|
for( $i=0; $i<count($principals); $i++)
|
|
print "$principals[$i]<br>\n";
|
|
|
|
print "<h1>get_policies</h1>\n";
|
|
$policies = kadm5_get_policies($handle);
|
|
for( $i=0; $i<count($policies); $i++)
|
|
print "$policies[$i]<br>\n";
|
|
|
|
print "<h1>get_principal burbach@GONICUS.LOCAL</h1>\n";
|
|
|
|
$options = kadm5_get_principal($handle, "burbach@GONICUS.LOCAL" );
|
|
$keys = array_keys($options);
|
|
for( $i=0; $i<count($keys); $i++) {
|
|
$value = $options[$keys[$i]];
|
|
print "$keys[$i]: $value<br>\n";
|
|
}
|
|
|
|
$options = array(KADM5_PRINC_EXPIRE_TIME => 0);
|
|
kadm5_modify_principal($handle, "burbach@GONICUS.LOCAL", $options);
|
|
|
|
kadm5_destroy($handle);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
</section>
|
|
</chapter>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|
|
|