summaryrefslogtreecommitdiff
blob: d9831018fd1d618de60e7f0fce8aced978012570 (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
46
47
48
<?

	class PortageLicense {
	
		private $name;
		private $pdf;
	
		function __construct($license = null) {
		
			global $hits;
			$hits['license']++;
		
			if($license)
				$this->setLicense($license);
		
		}
		
		public function setLicense($str) {
		
			$str = basename($str);
			
			$tree =& PortageTree::singleton();
			
			if(file_exists($tree->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;
		}
		
	
	}
?>