blob: 0e09a0128f42f6270b251a847244cc24c5590271 (
plain)
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
|
<?php
class ReplaceContentTest extends TPage
{
function appendContent($sender, $param)
{
$this->CallbackClient->appendContent($this->subpanel, $this->content->Text);
}
function prependContent($sender, $param)
{
$this->CallbackClient->prependContent($this->subpanel, $this->content->Text);
}
function insertContentBefore($sender, $param)
{
$this->CallbackClient->insertContentBefore($this->subpanel, $this->content->Text);
}
function insertContentAfter($sender, $param)
{
$this->CallbackClient->insertContentAfter($this->subpanel, $this->content->Text);
}
function replaceContent($sender, $param)
{
$this->CallbackClient->replaceContent($this->subpanel, $this->content->Text);
}
}
?>
|