Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

glpi / Vigilo / VigiloHostTemplate.php @ 0d761a49

History | View | Annotate | Download (270 Bytes)

1
<?php
2

    
3
class VigiloHostTemplate extends VigiloXml
4
{
5
    protected $name;
6

    
7
    public function __construct($tpl)
8
    {
9
        $this->name = $tpl;
10
    }
11

    
12
    public function __toString()
13
    {
14
        return self::sprintf('<template>%s</template>', $this->name);
15
    }
16
}