26 lines
485 B
PHP
26 lines
485 B
PHP
<?php
|
|
namespace cli;
|
|
|
|
use nulib\app\cli\Application;
|
|
|
|
abstract class LdapApplication extends Application {
|
|
use TLdapApplication;
|
|
|
|
const LOAD_PARAMS = true;
|
|
|
|
const LDAP_SECTION = [
|
|
"title" => "CONNEXION LDAP",
|
|
["-C", "--config", "args" => "file"],
|
|
["-H", "--uri", "args" => 1],
|
|
["-D", "--binddn", "args" => 1],
|
|
["-w", "--password", "args" => 1],
|
|
];
|
|
|
|
const ARGS = [
|
|
"sections" => [
|
|
self::VERBOSITY_SECTION,
|
|
self::LDAP_SECTION,
|
|
],
|
|
];
|
|
}
|