MIOLO20
Carregando...
Procurando...
Nenhuma entrada encontrada
mmoduleheader.class
Ir para a documentação deste ficheiro.
1<?php
3{
4 var $object;
5 var $target;
6
8 {
9 parent::__construct();
10 $this->object = $object;
11 $this->target = $target;
12 }
13
14 function GetText()
15 {
16 return $this->object . ($this->target != '' ? ': ' . $this->target : '');
17 }
18
19 function GenerateInner()
20 {
21 $this->inner = $this->GetText();
22 $this->SetBoxClass('m-module-header');
23 }
24}
25?>
__construct($object, $target)