PHP Class Imbo\EventListener\ImageVariations\Database\Mongo

Valid parameters for this driver: - (string) databaseName Name of the database. Defaults to 'imbo' - (string) server The server string to use when connecting to MongoDB. Defaults to 'mongodb://localhost:27017' - (array) options Options to use when creating the MongoClient instance. Defaults to ['connect' => true, 'connectTimeoutMS' => 1000].
Author: Christer Edvartsen ([email protected])
Inheritance: implements Imbo\EventListener\ImageVariations\Database\DatabaseInterface
Datei anzeigen Open project: imbo/imbo

Public Methods

Method Description
__construct ( array $params = null, MongoDB\Client $client = null, MonboDB\Collection $collection = null ) Class constructor
deleteImageVariations ( $user, $imageIdentifier, $width = null )
getBestMatch ( $user, $imageIdentifier, $width )
storeImageVariationMetadata ( $user, $imageIdentifier, $width, $height )

Private Methods

Method Description
getCollection ( ) : MonboDB\Collection Get the mongo collection
getMongoClient ( ) : MongoDB\Client Get the mongo client instance

Method Details

__construct() public method

Class constructor
public __construct ( array $params = null, MongoDB\Client $client = null, MonboDB\Collection $collection = null )
$params array Parameters for the driver
$client MongoDB\Client MongoClient instance
$collection MonboDB\Collection MongoCollection instance for the image variation collection

deleteImageVariations() public method

public deleteImageVariations ( $user, $imageIdentifier, $width = null )

getBestMatch() public method

public getBestMatch ( $user, $imageIdentifier, $width )

storeImageVariationMetadata() public method

public storeImageVariationMetadata ( $user, $imageIdentifier, $width, $height )