Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

Differences Between: [Versions 310 and 311] [Versions 310 and 400] [Versions 310 and 401]

   1  <?php
   2  /*
   3   * Copyright 2015-2017 MongoDB, Inc.
   4   *
   5   * Licensed under the Apache License, Version 2.0 (the "License");
   6   * you may not use this file except in compliance with the License.
   7   * You may obtain a copy of the License at
   8   *
   9   *   http://www.apache.org/licenses/LICENSE-2.0
  10   *
  11   * Unless required by applicable law or agreed to in writing, software
  12   * distributed under the License is distributed on an "AS IS" BASIS,
  13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14   * See the License for the specific language governing permissions and
  15   * limitations under the License.
  16   */
  17  
  18  namespace MongoDB\Operation;
  19  
  20  use MongoDB\DeleteResult;
  21  use MongoDB\Driver\Exception\RuntimeException as DriverRuntimeException;
  22  use MongoDB\Driver\Server;
  23  use MongoDB\Exception\InvalidArgumentException;
  24  use MongoDB\Exception\UnsupportedException;
  25  
  26  /**
  27   * Operation for deleting multiple document with the delete command.
  28   *
  29   * @api
  30   * @see \MongoDB\Collection::deleteOne()
  31   * @see http://docs.mongodb.org/manual/reference/command/delete/
  32   */
  33  class DeleteMany implements Executable, Explainable
  34  {
  35      /** @var Delete */
  36      private $delete;
  37  
  38      /**
  39       * Constructs a delete command.
  40       *
  41       * Supported options:
  42       *
  43       *  * collation (document): Collation specification.
  44       *
  45       *    This is not supported for server versions < 3.4 and will result in an
  46       *    exception at execution time if used.
  47       *
  48       *  * session (MongoDB\Driver\Session): Client session.
  49       *
  50       *    Sessions are not supported for server versions < 3.6.
  51       *
  52       *  * writeConcern (MongoDB\Driver\WriteConcern): Write concern.
  53       *
  54       * @param string       $databaseName   Database name
  55       * @param string       $collectionName Collection name
  56       * @param array|object $filter         Query by which to delete documents
  57       * @param array        $options        Command options
  58       * @throws InvalidArgumentException for parameter/option parsing errors
  59       */
  60      public function __construct($databaseName, $collectionName, $filter, array $options = [])
  61      {
  62          $this->delete = new Delete($databaseName, $collectionName, $filter, 0, $options);
  63      }
  64  
  65      /**
  66       * Execute the operation.
  67       *
  68       * @see Executable::execute()
  69       * @param Server $server
  70       * @return DeleteResult
  71       * @throws UnsupportedException if collation is used and unsupported
  72       * @throws DriverRuntimeException for other driver errors (e.g. connection errors)
  73       */
  74      public function execute(Server $server)
  75      {
  76          return $this->delete->execute($server);
  77      }
  78  
  79      public function getCommandDocument(Server $server)
  80      {
  81          return $this->delete->getCommandDocument($server);
  82      }
  83  }