Change all remaining trigger_error() into throw new Exception()
This commit is contained in:
parent
d4d42752d4
commit
2f0438ff15
@ -133,7 +133,7 @@ class PHPWord_Section_Footer
|
||||
$this->_elementCollection[] = $image;
|
||||
return $image;
|
||||
} else {
|
||||
trigger_error('Src does not exist or invalid image type.', E_USER_ERROR);
|
||||
throw new Exception('Src does not exist or invalid image type.');
|
||||
}
|
||||
}
|
||||
|
||||
@ -154,7 +154,7 @@ class PHPWord_Section_Footer
|
||||
$this->_elementCollection[] = $memoryImage;
|
||||
return $memoryImage;
|
||||
} else {
|
||||
trigger_error('Unsupported image type.');
|
||||
throw new Exception('Unsupported image type.');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -162,7 +162,7 @@ class PHPWord_Section_Header
|
||||
$this->_elementCollection[] = $image;
|
||||
return $image;
|
||||
} else {
|
||||
trigger_error('Src does not exist or invalid image type.', E_USER_ERROR);
|
||||
throw new Exception('Src does not exist or invalid image type.');
|
||||
}
|
||||
}
|
||||
|
||||
@ -183,7 +183,7 @@ class PHPWord_Section_Header
|
||||
$this->_elementCollection[] = $memoryImage;
|
||||
return $memoryImage;
|
||||
} else {
|
||||
trigger_error('Unsupported image type.');
|
||||
throw new Exception('Unsupported image type.');
|
||||
}
|
||||
}
|
||||
|
||||
@ -223,7 +223,7 @@ class PHPWord_Section_Header
|
||||
$this->_elementCollection[] = $image;
|
||||
return $image;
|
||||
} else {
|
||||
trigger_error('Src does not exist or invalid image type.', E_USER_ERROR);
|
||||
throw new Exception('Src does not exist or invalid image type.');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -140,7 +140,7 @@ class PHPWord_Section_Table_Cell
|
||||
$this->_elementCollection[] = $link;
|
||||
return $link;
|
||||
} else {
|
||||
trigger_error('Unsupported Link header / footer reference');
|
||||
throw new Exception('Unsupported Link header / footer reference');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@ -198,7 +198,7 @@ class PHPWord_Section_Table_Cell
|
||||
$this->_elementCollection[] = $image;
|
||||
return $image;
|
||||
} else {
|
||||
trigger_error('Source does not exist or unsupported image type.');
|
||||
throw new Exception('Source does not exist or unsupported image type.');
|
||||
}
|
||||
}
|
||||
|
||||
@ -225,7 +225,7 @@ class PHPWord_Section_Table_Cell
|
||||
$this->_elementCollection[] = $memoryImage;
|
||||
return $memoryImage;
|
||||
} else {
|
||||
trigger_error('Unsupported image type.');
|
||||
throw new Exception('Unsupported image type.');
|
||||
}
|
||||
}
|
||||
|
||||
@ -266,7 +266,7 @@ class PHPWord_Section_Table_Cell
|
||||
$this->_elementCollection[] = $object;
|
||||
return $object;
|
||||
} else {
|
||||
trigger_error('Source does not exist or unsupported object type.');
|
||||
throw new Exception('Source does not exist or unsupported object type.');
|
||||
}
|
||||
}
|
||||
|
||||
@ -288,7 +288,7 @@ class PHPWord_Section_Table_Cell
|
||||
$this->_elementCollection[] = $ptext;
|
||||
return $ptext;
|
||||
} else {
|
||||
trigger_error('addPreserveText only supported in footer/header.');
|
||||
throw new Exception('addPreserveText only supported in footer/header.');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -127,7 +127,7 @@ class PHPWord_Section_TextRun
|
||||
$this->_elementCollection[] = $image;
|
||||
return $image;
|
||||
} else {
|
||||
trigger_error('Source does not exist or unsupported image type.');
|
||||
throw new Exception('Source does not exist or unsupported image type.');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -164,7 +164,7 @@ class PHPWord_Template
|
||||
$rowStart = strrpos($this->_documentXML, "<w:tr>", ((strlen($this->_documentXML) - $offset) * -1));
|
||||
}
|
||||
if (!$rowStart) {
|
||||
trigger_error("Can not find the start position of the row to clone.");
|
||||
throw new Exception("Can not find the start position of the row to clone.");
|
||||
return false;
|
||||
}
|
||||
return $rowStart;
|
||||
@ -208,7 +208,7 @@ class PHPWord_Template
|
||||
|
||||
$tagPos = strpos($this->_documentXML, $search);
|
||||
if (!$tagPos) {
|
||||
trigger_error("Can not clone row, template variable not found or variable contains markup.");
|
||||
throw new Exception("Can not clone row, template variable not found or variable contains markup.");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user