getEntries() public method

Get the entries represented by this LDIF object.
public getEntries ( ) : LdapTools\Ldif\Entry\LdifEntryInterface[]
return LdapTools\Ldif\Entry\LdifEntryInterface[]
Example #1
0
 /**
  * Determine whether the comment should be added to the LDIF itself, or if it's a comment for an entry within the
  * LDIF. If it's for an entry in the LDIF, then we make the assumption that we an empty line separates comments
  * between the LDIF comments overall and the start of a comment for an entry. This seems like the most reasonable
  * way to do it, though it still may not be perfect.
  *
  * @param \LdapTools\Ldif\Ldif $ldif
  */
 protected function addCommentToQueueOrLdif(Ldif $ldif)
 {
     $comment = $this->getContinuedValues(substr($this->currentLine(), 1));
     // Remove the single space from the start of a comment, but leave the others intact.
     if ($this->startsWith(' ', $comment)) {
         $comment = substr($comment, 1);
     }
     // If we already have an entry added to LDIF, then the comment should go in the queue for the next entry.
     if (count($ldif->getEntries()) > 0) {
         $this->commentQueue[] = $comment;
         // Check the section of the LDIF to look for an empty line. If so, assume it's for a future entry.
     } elseif (array_search('', array_slice($this->lines, 0, $this->line))) {
         $this->commentQueue[] = $comment;
         // No empty lines and we have not reached an entry yet, so this should be a comment for the LDIF overall.
     } else {
         $ldif->addComment($comment);
     }
 }