blob: c31f38b173358519fe5fb568220747b715f807c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
Prado::using('Lib.phptal.PHPTAL');
class MailTemplate extends PHPTAL {
private $_immediate = TRUE;
public function isImmediate() {
return $this->_immediate;
}
public function toggleImmediate($value) {
$this->_immediate = TPropertyValue::ensureBoolean($value);
}
}
?>
|