2009-06-30 10:46:00 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-07-01 06:09:17 +00:00
|
|
|
* Classes and functions for the template engine.
|
2009-06-30 10:46:00 +00:00
|
|
|
*
|
2009-07-01 06:09:17 +00:00
|
|
|
* @author The phpLDAPadmin development team
|
|
|
|
* @package phpLDAPadmin
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2009-06-30 10:46:00 +00:00
|
|
|
* Represents a attribute whose values are multiline text
|
2009-07-01 06:09:17 +00:00
|
|
|
*
|
|
|
|
* @package phpLDAPadmin
|
|
|
|
* @subpackage Templates
|
2009-06-30 10:46:00 +00:00
|
|
|
*/
|
|
|
|
class MultiLineAttribute extends Attribute {
|
2009-07-01 06:09:17 +00:00
|
|
|
protected $rows = 0;
|
|
|
|
protected $cols = 0;
|
2009-06-30 10:46:00 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|