コード例 #1
0
ファイル: File.php プロジェクト: schwarer2006/wikia
 /**
  * Get the path of the thumbnail directory, or a particular file if $suffix is specified
  *
  * @param $suffix bool|string if not false, the name of a thumbnail file
  *
  * @return string
  */
 function getThumbPath($suffix = false)
 {
     $this->assertRepoDefined();
     return $this->repo->getZonePath('thumb') . '/' . $this->getThumbRel($suffix);
 }