hasCapability() 공개 메소드

Checks if this backend has a certain capability.
public hasCapability ( string $capability ) : boolean
$capability string The capability to check for.
리턴 boolean Supported or not.
예제 #1
0
파일: Share.php 프로젝트: horde/horde
 /**
  * Checks if this backend has a certain capability.
  *
  * @param string $capability  The capability to check for.
  *
  * @return boolean  Supported or not.
  */
 public function hasCapability($capability)
 {
     return $this->_driver->hasCapability($capability);
 }