本文整理汇总了PHP中Export::getExportUrl方法的典型用法代码示例。如果您正苦于以下问题:PHP Export::getExportUrl方法的具体用法?PHP Export::getExportUrl怎么用?PHP Export::getExportUrl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Export
的用法示例。
在下文中一共展示了Export::getExportUrl方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: exportFavorites
/**
* Export a list of checked favorites -- actually, we just save the ID list to
* the session so that a separate link can subsequently be used to retrieve the
* actual content.
*
* @return void
* @access public
*/
public function exportFavorites()
{
include_once 'services/Cart/Export.php';
global $configArray;
unset($_SESSION['no_store']);
$_SESSION['exportIDS'] = $_POST['ids'];
$_SESSION['exportFormat'] = $_POST['format'];
$url = Export::getExportUrl();
$html = '<p><a class="save" onclick="hideLightbox();" href="';
if (strtolower($_POST['format']) == 'refworks') {
$html .= $url . '" target="_blank">' . translate('export_refworks') . '</a></p>';
} else {
$html .= $url . '">' . translate('export_download') . '</a></p>';
}
return $this->output(array('result' => translate('Done'), 'result_additional' => $html), JSON::STATUS_OK);
}