1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 PLAAttribute {
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;
}
}
?>
|