本文整理匯總了PHP中OOMedia::fileExists方法的典型用法代碼示例。如果您正苦於以下問題:PHP OOMedia::fileExists方法的具體用法?PHP OOMedia::fileExists怎麽用?PHP OOMedia::fileExists使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類OOMedia
的用法示例。
在下文中一共展示了OOMedia::fileExists方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: foreach
break;
}
}
// Eine beschreibende Spalte schätzen
$desc = '';
foreach (array('med_description') as $col) {
if ($files->hasValue($col) && $files->getValue($col) != '') {
$desc = htmlspecialchars($files->getValue($col));
break;
}
}
if ($desc != '') {
$desc .= '<br />';
}
// wenn datei fehlt
if (!OOMedia::fileExists($file_name)) {
$thumbnail = '<img src="media/mime-error.gif" width="44" height="38" alt="file does not exist" />';
} else {
$file_ext = substr(strrchr($file_name, '.'), 1);
$icon_src = 'media/mime-default.gif';
if (OOMedia::isDocType($file_ext)) {
$icon_src = 'media/mime-' . $file_ext . '.gif';
}
$thumbnail = '<img src="' . $icon_src . '" width="44" height="38" alt="' . $alt . '" title="' . $alt . '" />';
if (OOMedia::_isImage($file_name) && $thumbs) {
$thumbnail = '<img src="' . $REX['HTDOCS_PATH'] . 'files/' . $file_name . '" width="80" alt="' . $alt . '" title="' . $alt . '" />';
if ($image_manager) {
$thumbnail = '<img src="' . $REX['HTDOCS_PATH'] . $REX['FRONTEND_FILE'] . '?rex_img_type=rex_mediapool_preview&rex_img_file=' . $encoded_file_name . '" alt="' . $alt . '" title="' . $alt . '" />';
} else {
if ($image_resize) {
$thumbnail = '<img src="' . $REX['HTDOCS_PATH'] . $REX['FRONTEND_FILE'] . '?rex_resize=80a__' . $encoded_file_name . '" alt="' . $alt . '" title="' . $alt . '" />';