Documentation and more understandable code.
This commit is contained in:
parent
286b54e527
commit
f6df1f1dd3
|
@ -61,11 +61,16 @@ class ImageFile
|
||||||
{
|
{
|
||||||
$this->id = $id;
|
$this->id = $id;
|
||||||
if (!empty($this->id)) {
|
if (!empty($this->id)) {
|
||||||
$this->fileRecord = File::getKV('id', $this->id);
|
$this->fileRecord = new File();
|
||||||
if (!$this->fileRecord instanceof File) {
|
$this->fileRecord->id = $this->id;
|
||||||
throw new ServerException('Expected File object did not exist.');
|
if (!$this->find(true)) {
|
||||||
|
// If we have set an ID, we need that ID to exist!
|
||||||
|
throw new NoResultException($this->fileRecord);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// These do not have to be the same as fileRecord->filename for example,
|
||||||
|
// since we may have generated an image source file from something else!
|
||||||
$this->filepath = $filepath;
|
$this->filepath = $filepath;
|
||||||
$this->filename = basename($filepath);
|
$this->filename = basename($filepath);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user