本文整理汇总了PHP中Horde_Util::closeWindowJS方法的典型用法代码示例。如果您正苦于以下问题:PHP Horde_Util::closeWindowJS方法的具体用法?PHP Horde_Util::closeWindowJS怎么用?PHP Horde_Util::closeWindowJS使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Horde_Util
的用法示例。
在下文中一共展示了Horde_Util::closeWindowJS方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: switch
/* We'll need the comic object to build the image name */
$comic = $klutz->comicObject($index);
switch ($actionID) {
case 'save_comic':
/* Try to retrieve the image directly from storage first*/
$image = $klutz_driver->retrieveImage($index, $date);
if (is_string($image) && substr($image, 0, 4) == 'http') {
$comic = $klutz->comicObject($index);
$image = $comic->fetchImage($date);
}
if (!is_a($image, 'Klutz_Image')) {
PEAR::raiseError(_("There was an error retrieving the comic."));
} else {
$desc = Horde_Util::getFormData('desc', '');
$image_data = array('filename' => $comic->name . '-' . strftime('%m%d%Y', $date) . '.' . str_replace('image/', '', $image->type), 'description' => $desc, 'data' => $image->data, 'type' => $image->type, 'tags' => explode(',', $tags));
$gallery = Horde_Util::getFormData('gallery');
$res = $registry->call('images/saveImage', array(null, $gallery, $image_data));
if (is_a($res, 'PEAR_Error')) {
$notification->push($res, 'horde.error');
break;
}
Horde_Util::closeWindowJS();
}
exit;
}
/* Build the list of galleries. */
$id = $prefs->getValue('comicgallery');
$gallerylist = $registry->call('images/selectGalleries', array(null, PERMS_EDIT, null, true, 0, 0, $id));
$page_output->header(array('title' => _("Save Image")));
require KLUTZ_TEMPLATES . '/savecomic.html.php';
$page_output->footer();