コード例 #1
0
ファイル: class.PDFParser.php プロジェクト: biwax/OVOMA
 /**
  * Get an HTML-formatted link to the PDF of the menu
  */
 protected function getMenuFormattedLink()
 {
     $menuURL = $this->getMenuURL();
     if (!is_null($menuURL)) {
         return getFormattedURL($this->getMenuURL(), $this->isDayMenu());
     } else {
         return getFallbackURL($this->getBaseMenuURL());
     }
 }
コード例 #2
0
ファイル: utils.php プロジェクト: biwax/OVOMA
function getFallbackURL($url)
{
    if (endsInsensitiveWith($url, '.pdf')) {
        return getFormattedURL(getBaseURL($url));
    }
    return getFormattedURL($url);
}