RELEASE 1.1.0
This commit is contained in:
55
lib/BinaryAttribute.php
Normal file
55
lib/BinaryAttribute.php
Normal file
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
// $Header: /cvsroot/phpldapadmin/phpldapadmin/lib/BinaryAttribute.php,v 1.2 2007/12/15 07:50:32 wurley Exp $
|
||||
|
||||
/**
|
||||
* @package phpLDAPadmin
|
||||
* @author Xavier Bruyet
|
||||
*
|
||||
* Represents an attribute whose values are binaries
|
||||
*/
|
||||
class BinaryAttribute extends Attribute {
|
||||
protected $filepaths;
|
||||
protected $filenames;
|
||||
|
||||
public function __construct($name, $values) {
|
||||
parent::__construct($name, $values);
|
||||
|
||||
$this->filepaths = array();
|
||||
$this->filenames = array();
|
||||
}
|
||||
|
||||
public function getFileNames() {
|
||||
return $this->filenames;
|
||||
}
|
||||
|
||||
public function getFileName($i) {
|
||||
if (isset($this->filenames[$i])) return $this->filenames[$i];
|
||||
else return null;
|
||||
}
|
||||
|
||||
public function addFileName($name, $i = -1) {
|
||||
if ($i < 0) {
|
||||
$this->filenames[] = $name;
|
||||
} else {
|
||||
$this->filenames[$i] = $name;
|
||||
}
|
||||
}
|
||||
|
||||
public function getFilePaths() {
|
||||
return $this->filepaths;
|
||||
}
|
||||
|
||||
public function getFilePath($i) {
|
||||
if (isset($this->filepaths[$i])) return $this->filepaths[$i];
|
||||
else return null;
|
||||
}
|
||||
|
||||
public function addFilePath($path, $i = -1) {
|
||||
if ($i < 0) {
|
||||
$this->filepaths[] = $path;
|
||||
} else {
|
||||
$this->filepaths[$i] = $path;
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user