phpldapadmin/lib/MultiLineAttribute.php

36 lines
586 B
PHP
Raw Normal View History

2009-06-30 10:46:00 +00:00
<?php
/**
* Classes and functions for the template engine.
2009-06-30 10:46:00 +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
*
* @package phpLDAPadmin
* @subpackage Templates
2009-06-30 10:46:00 +00:00
*/
class MultiLineAttribute extends PLAAttribute {
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;
}
}
?>