TYPO3 CMS  TYPO3_6-2
AbstractLinktype.php
Go to the documentation of this file.
1 <?php
3 
23 
29  protected $errorParams = array();
30 
39  public function fetchType($value, $type, $key) {
40  if ($value['type'] == $key) {
41  $type = $value['type'];
42  }
43  return $type;
44  }
45 
52  protected function setErrorParams($value) {
53  $this->errorParams = $value;
54  }
55 
61  public function getErrorParams() {
62  return $this->errorParams;
63  }
64 
71  public function getBrokenUrl($row) {
72  return $row['url'];
73  }
74 
75 }