TYPO3 CMS  TYPO3_6-2
Extension.php
Go to the documentation of this file.
1 <?php
3 
23 
27  protected $key = '';
28 
32  protected $title = '';
33 
37  protected $icon = '';
38 
42  protected $version = '';
43 
47  protected $stateCls = '';
48 
52  protected $versionislower = '';
53 
57  protected $maxversion = '';
58 
62  protected $updateResult = array();
63 
71  public function __construct($key = '', $title= '', $icon = '') {
72  $this->setKey($key);
73  $this->setTitle($title);
74  $this->setIcon($icon);
75  }
76 
83  public function setIcon($icon) {
84  $this->icon = $icon;
85  }
86 
92  public function getIcon() {
93  return $this->icon;
94  }
95 
102  public function setKey($key) {
103  $this->key = $key;
104  }
105 
111  public function getKey() {
112  return $this->key;
113  }
114 
121  public function setTitle($title) {
122  $this->title = $title;
123  }
124 
130  public function getTitle() {
131  return $this->title;
132  }
133 
140  public function setVersion($version) {
141  $this->version = $version;
142  }
143 
151  public function setVersionFromString($version) {
153  }
154 
160  public function getVersion() {
161  return $this->version;
162  }
163 
170  public function setUpdateResult($updateResult) {
171  $this->updateResult = (array) $updateResult;
172  }
173 
179  public function getUpdateResult() {
180  return $this->updateResult;
181  }
182 }
__construct($key='', $title='', $icon='')
Definition: Extension.php:71