first commit
This commit is contained in:
35
phpldapadmin/lib/MultiLineAttribute.php
Executable file
35
phpldapadmin/lib/MultiLineAttribute.php
Executable file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* Classes and functions for the template engine.
|
||||
*
|
||||
* @author The phpLDAPadmin development team
|
||||
* @package phpLDAPadmin
|
||||
*/
|
||||
|
||||
/**
|
||||
* Represents a attribute whose values are multiline text
|
||||
*
|
||||
* @package phpLDAPadmin
|
||||
* @subpackage Templates
|
||||
*/
|
||||
class MultiLineAttribute extends Attribute {
|
||||
protected $rows = 0;
|
||||
protected $cols = 0;
|
||||
|
||||
public function getRows() {
|
||||
return $this->rows;
|
||||
}
|
||||
|
||||
public function setRows($rows) {
|
||||
$this->rows = $rows;
|
||||
}
|
||||
|
||||
public function getCols() {
|
||||
return $this->cols;
|
||||
}
|
||||
|
||||
public function setCols($cols) {
|
||||
$this->cols = $cols;
|
||||
}
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user