blob: f2691818495b4deb7fe1ae0919b1441e8749e39a (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<?
class PortageLicense extends PortageTree {
private $name;
private $pdf;
function __construct($license = null) {
parent::__construct();
if($license)
$this->setLicense($license);
}
public function setLicense($str) {
$str = basename($str);
if(file_exists($this->getTree()."/licenses/$str")) {
if(substr($str, -4, 4) == ".pdf") {
$this->name = basename($str, ".pdf");
$this->pdf = true;
} else {
$this->name = $str;
$this->pdf = false;
}
}
}
public function getName() {
return $this->name;
}
public function isPDF() {
return $this->pdf;
}
}
?>
|