本文整理汇总了PHP中OnEvent::window方法的典型用法代码示例。如果您正苦于以下问题:PHP OnEvent::window方法的具体用法?PHP OnEvent::window怎么用?PHP OnEvent::window使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OnEvent
的用法示例。
在下文中一共展示了OnEvent::window方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: previewWindow
public function previewWindow()
{
#echo $this->getID();
#$relPath = $this->getRelPath();
#echo $this->A("FileMimetype");
$BD = new Button("Datei\nherunterladen", "save");
$BD->style("margin:10px;float:right;");
$BD->windowRme("File", $this->getID(), "download");
$BD->onclick("" . OnEvent::closePopup("File"));
$display = "";
if ($this->A("FileIsDir") == "0") {
switch ($this->A("FileMimetype")) {
case "image/jpeg":
case "image/png":
case "image/gif":
case "image/svg":
case "image/svg+xml":
$display .= "{$BD}<div style=\"clear:both;width:600px;max-height:450px;overflow:auto;\"><img style=\"margin:10px;max-width:560px;\" src=\"data:" . $this->A("FileMimetype") . ";base64," . base64_encode(file_get_contents($this->getID())) . "\" /></div>";
break;
case "text/plain":
case "text/x-php":
case "text/x-c++":
$display = "{$BD}<div style=\"clear:both;width:600px;max-height:450px;overflow:auto;\"><p>" . highlight_file($this->ID, true) . "</p></div>";
break;
case "application/pdf":
$display = "<script type=\"text/javascript\">" . OnEvent::window($this, "previewPDF") . OnEvent::closePopup("File") . "</script>";
break;
default:
$display = "<div class=\"highlight\">{$BD}<p style=\"padding-top:10px;\">Es steht leider keine Vorschau<br />für diesen Dateityp zur Verfügung.</p><div style=\"clear:both;\"></div>";
}
} else {
$display = "Verzeichnis";
}
echo $display;
}