This commit is contained in:
Diego Najar 2018-01-22 22:07:04 +01:00
parent 62b30f4381
commit 13d681634a
1 changed files with 10 additions and 0 deletions

View File

@ -328,6 +328,16 @@ class Page {
return $fileName;
}
// Returns the absolute URL of the thumbnail of the cover image, FALSE if the page doen't have cover image
public function thumbCoverImage()
{
$coverImageFilename = $this->coverImage(false);
if ($coverImageFilename==false) {
return false;
}
return DOMAIN_UPLOADS_THUMBNAILS.$coverImageFilename;
}
// Returns TRUE if the content has the text splited
public function readMore()
{