Home
last modified time | relevance | path

Searched refs:entry (Results 101 – 125 of 455) sorted by last modified time

12345678910>>...19

/plugin/xtern/
H A Dadmin.php91 foreach($site AS $entry=>$data) {
/plugin/xtern/scripts/
H A Dchk_links.php14 foreach($site AS $entry=>$data) {
/plugin/xcom/lang/en/
H A Dhowto.txt70 …s will be entered into the remote wiki's text boxes. **Note:** the title entry must be set flush …
/plugin/newpagetemplate/
H A Dnewpage.ini4 ; Eeach site requires a title and at least one entry of page id
/plugin/pureldap/classes/
H A DGroupHierarchyCache.php85 /** @var Entry $entry */
86 foreach ($entries as $entry) {
87 $dn = (string)$entry->getDn();
89 if ($entry->has('memberOf')) {
90 $parents = $entry->get('memberOf')->getValues();
H A DADClient.php29 $entry = $this->getUserEntry($username);
30 if ($entry === null) return null;
31 return $this->entry2User($entry);
35 * Get the LDAP entry for the given user
72 $entry = $this->getUserEntry($username);
73 if ($entry === null) {
88 $entry->remove('unicodePwd', $this->encodePassword($oldpass));
89 $entry->add('unicodePwd', $this->encodePassword($newpass));
92 $entry->set('unicodePwd', $this->encodePassword($newpass));
96 $this->ldap->update($entry);
227 entry2User(Entry $entry) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/ldap/
H A DREADME.md76 foreach ($entries as $entry) {
77 echo "Entry: ".$entry->getDn().PHP_EOL;
95 # Create a new LDAP entry object
96 $entry = (new Entry('cn=foo,dc=domain,dc=local'))
100 # Create the entry with the LDAP client
102 $ldap->create($entry);
104 echo sprintf('Error adding entry (%s): %s', $e->getCode(), $e->getMessage()).PHP_EOL;
111 # Use the read() method of the LDAP client to search for a specific entry.
113 $entry = $ldap->read('cn=foo,dc=domain,dc=local');
116 if ($entry) {
[all...]
H A DCHANGELOG.md49 * Add a "fromArray" method to make constructing entry objects from arrays sound more natural.
60 * Add a create convenience method to the LdapClient to create a single LDAP entry.
61 * Add a read convenience method to the LdapClient to return a single LDAP entry.
62 * Add an update convenience method to the LdapClient to update a single LDAP entry.
63 * Add a delete convenience method to the LdapClient to delete a single LDAP entry.
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DModifyDnRequest.php30 * entry LDAPDN,
163 $entry = $type->getChild(0);
168 if (!($entry instanceof OctetStringType && $newRdn instanceof OctetStringType && $deleteOldRdn instanceof BooleanType)) {
179 return new self($entry->getValue(), $newRdn->getValue(), $deleteOldRdn->getValue(), $newSuperior);
H A DAddRequest.php27 * A request to add an entry to LDAP. RFC 4511, 4.7.
30 * entry LDAPDN,
56 protected $entry;
59 * @param Entry $entry
61 public function __construct(Entry $entry)
63 $this->entry = $entry;
71 return $this->entry;
75 * @param Entry $entry argument
78 public function setEntry(Entry $entry)
53 protected $entry; global() variable in FreeDSx\\Ldap\\Operation\\Request\\AddRequest
58 __construct(Entry $entry) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DSearchResultEntry.php24 * A search result entry. RFC 4511, 4.5.2.
42 protected $entry;
45 * @param Entry $entry
47 public function __construct(Entry $entry)
49 $this->entry = $entry;
57 return $this->entry;
69 throw new ProtocolException('The search result entry is malformed.');
104 foreach ($this->entry->getAttributes() as $attribute) {
112 $asn1->addChild(Asn1::octetString($this->entry
41 protected $entry; global() variable in FreeDSx\\Ldap\\Operation\\Response\\SearchResultEntry
46 __construct(Entry $entry) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DOperations.php58 * Add an entry to LDAP.
60 * @param Entry $entry
63 public static function add(Entry $entry)
65 return new AddRequest($entry);
113 * A comparison operation to check if an entry has an attribute with a certain value.
123 * Delete an entry from LDAP by its DN.
141 * Perform modification(s) on an LDAP entry.
149 * Move an LDAP entry to a new parent DN location.
177 * Rename an LDAP entry by modifying its RDN.
61 add(Entry $entry) global() argument
H A DLdapClient.php113 * Check whether an entry matches a certain attribute and value.
131 * Create a new entry.
133 * @param Entry $entry
138 public function create(Entry $entry, Control ...$controls): LdapMessageResponse
140 $response = $this->sendAndReceive(Operations::add($entry), ...$controls);
141 $entry->changes()->reset();
147 * Read an entry.
149 * @param string $entry
155 public function read(string $entry = '', $attributes = [], Control ...$controls): ?Entry
158 return $this->readOrFail($entry,
134 create(Entry $entry, Control...$controls) global() argument
151 read(string $entry = '', $attributes = [], Control...$controls) global() argument
172 readOrFail(string $entry = '', $attributes = [], Control...$controls) global() argument
193 delete(string $entry, Control...$controls) global() argument
206 update(Entry $entry, Control...$controls) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ClientProtocolHandler/
H A DClientSearchHandler.php75 $entry = $response->getEntry();
76 $entries[] = $entry;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DClientProtocolHandler.php125 $entry = $searchResponse->getEntries()->first();
126 if ($entry === null) {
127 throw new OperationException('Expected a single entry for the RootDSE. None received.');
129 $this->rootDse = $entry;
131 return $entry;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ServerProtocolHandler/
H A DServerRootDseHandler.php58 $entry = Entry::fromArray('', [
67 $entry->add(
73 $entry->add(
79 $entry->set('vendorVersion', $options['vendor_version']);
82 $entry->set('altServer', $options['alt_server']);
87 $this->filterEntryAttributes($request, $entry);
90 $entry = $this->rootDseHandler->rootDse(
93 $entry
100 new SearchResultEntry($entry)
110 * Filters attributes from an entry t
84 filterEntryAttributes(SearchRequest $request, Entry $entry) global() argument
[all...]
H A DServerSearchHandler.php
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DRangeRetrieval.php23 * Provides simple helper APIs for retrieving ranged results for an entry attribute.
44 * Get a specific ranged attribute by name from an entry. If it does not exist it will return null.
48 public function getRanged(Entry $entry, $attribute): ?Attribute
52 foreach ($this->getAllRanged($entry) as $rangedAttribute) {
62 * Get all ranged attributes as an array from a entry.
64 * @param Entry $entry
68 public function getAllRanged(Entry $entry): array
72 foreach ($entry->getAttributes() as $attribute) {
89 * A simple check to determine if an entry contains any ranged attributes. Optionally pass an attribute
91 * @param Entry $entry
46 getRanged(Entry $entry, $attribute) global() argument
65 getAllRanged(Entry $entry) global() argument
92 hasRanged(Entry $entry, $attribute = null) global() argument
122 getMoreValues($entry, Attribute $attribute, $amount = '*') global() argument
161 getAllValues($entry, $attribute) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DEntries.php25 * Represents a collection of entry objects.
61 foreach ($entries as $entry) {
62 if (($index = array_search($entry, $this->entries, true)) !== false) {
71 * Check whether or not an entry (either an Entry object or string DN) exists within the entries.
73 * @param Entry|Dn|string $entry
76 public function has($entry): bool
78 if ($entry instanceof Entry) {
79 return (array_search($entry, $this->entries, true) !== false);
83 if ((string) $entry === $entryObj->getDn()->toString()) {
92 * Get an entry fro
67 has($entry) global() argument
[all...]
/plugin/move/admin/
H A Dmain.php136 foreach((array) $data as $entry) {
137 if($entry['class'] == 'ns') {
138 if($entry['type'] == 'page') {
139 $this->plan->addPageNamespaceMove($entry['src'], $entry['dst']);
140 } elseif($entry['type'] == 'media') {
141 $this->plan->addMediaNamespaceMove($entry['src'], $entry['dst']);
143 } elseif($entry['class'] == 'doc') {
144 if($entry['typ
[all...]
/plugin/passpolicy/
H A D10k-common-passwords.txt4735 entry
H A Dwords.txt1141 entry
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/ext/
H A Dmaxminddb.c297 int status = MMDB_get_entry_data_list(&result.entry, &entry_data_list); in get_record()
/plugin/quickstats/scripts/
H A Dread_ini.php8 foreach ($ini_array as $entry) {
10 if(strpos($entry,'[') !== false){
11 $header = trim($entry,'[]');
18 $temp[$header][] = trim($entry);
/plugin/bloglinks/
H A Daction.php4 * Bloglinks Plugin: displays a link to the previous and the next blog entry above posts in configured namespaces
155 function _linkTemplate($entry, $type) {
159 '@@TITLE@@' => $entry['title'],
160 '@@AUTHOR@@' => $entry['user'],
161 '@@DATE@@' => date($conf['dformat'], $entry['date']),
149 _linkTemplate($entry, $type) global() argument

12345678910>>...19