You are here

function DB_common::provides in Flickr API 5

Tells whether the present driver supports a given feature

Parameters

string $feature the feature you're curious about:

Return value

bool whether this driver supports $feature

File

phpFlickr/PEAR/DB/common.php, line 470

Class

DB_common
DB_common is the base class from which each database driver class extends

Code

function provides($feature) {
  return $this->features[$feature];
}